<!-- Options buttons -->
<button class="btn btn-title" onclick="setOption('title', 'New Sales Report')">New Title</button>
<button class="btn cls" onclick="setOption('type', 'classic')">Classic</button><button class="btn cmp" onclick="setOption('type', 'compact')">Compact</button>
<button class="btn flt" onclick="setOption('type', 'flat')">Flat</button>
<button class="btn hdrs" onclick="setOption('showHeaders', false)">Hide headers</button>
<button class="btn hdrs-on" onclick="setOption('showHeaders', true)">Show headers</button>
<!-- WebDataRocks scripts -->
<link href="https://cdn.webdatarocks.com/latest/webdatarocks.min.css" rel="stylesheet"/>
<script src="https://cdn.webdatarocks.com/latest/webdatarocks.toolbar.min.js"></script>
<script src="https://cdn.webdatarocks.com/latest/webdatarocks.js"></script>
<div id="wdr-component"></div>
var pivot = new WebDataRocks({
    container: "#wdr-component",
    height: 530,
    report: {
        dataSource: {
            data: getData()
        },
        "slice": {
            "rows": [{
                    "uniqueName": "Product Information",
                    "sort": "asc"
                },
                {
                    "uniqueName": "Country",
                    "sort": "asc"
                }
            ],
            "columns": [{
                "uniqueName": "Measures"
            }],
            "measures": [{
                "uniqueName": "Price",
                "aggregation": "sum"
            }],
            "expands": {
                "rows": [{
                    "tuple": [
                        "Business Type.Specialty Bike Shop"
                    ]
                }]
            }
        },
        options: {
            grid: {
                title: "Sales Report"
            }
        }
    }
});

function setOption(option, value) {
    webdatarocks.setOptions({
        grid: {
            [option]: value
        }
    });
    webdatarocks.refresh();
}

function getData() {
    return [{
            "Category": {
                type: "level",
                hierarchy: "Product Information",
                parent: "Business Type"
            },
            "Size": {
                type: "string"
            },
            "Color": {
                type: "string"
            },
            "Destination": {
                type: "string"
            },
            "Business Type": {
                type: "level",
                hierarchy: "Product Information"
            },
            "Country": {
                type: "string"
            },
            "Price": {
                type: "number"
            },
            "Quantity": {
                type: "number"
            },
            "Discount": {
                type: "number"
            }
        },
        {
            "Category": "Accessories",
            "Size": "262 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 174,
            "Quantity": 225,
            "Discount": 23
        },
        {
            "Category": "Accessories",
            "Size": "214 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 502,
            "Quantity": 90,
            "Discount": 17
        },
        {
            "Category": "Accessories",
            "Size": "147 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 242,
            "Quantity": 855,
            "Discount": 37
        },
        {
            "Category": "Accessories",
            "Size": "112 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 102,
            "Quantity": 897,
            "Discount": 42
        },
        {
            "Category": "Accessories",
            "Size": "256 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 126,
            "Quantity": 115,
            "Discount": 44
        },
        {
            "Category": "Accessories",
            "Size": "278 oz",
            "Color": "yellow",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 1246,
            "Quantity": 88,
            "Discount": 47
        },
        {
            "Category": "Accessories",
            "Size": "8 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 680,
            "Quantity": 66,
            "Discount": 80
        },
        {
            "Category": "Accessories",
            "Size": "181 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 1241,
            "Quantity": 939,
            "Discount": 66
        },
        {
            "Category": "Accessories",
            "Size": "181 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 1241,
            "Quantity": 939,
            "Discount": 66
        },
        {
            "Category": "Accessories",
            "Size": "344 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 150,
            "Quantity": 67,
            "Discount": 30
        },
        {
            "Category": "Accessories",
            "Size": "291 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 244,
            "Quantity": 963,
            "Discount": 22
        },
        {
            "Category": "Accessories",
            "Size": "126 oz",
            "Color": "yellow",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 501,
            "Quantity": 556,
            "Discount": 9
        },
        {
            "Category": "Accessories",
            "Size": "317 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 4960,
            "Quantity": 898,
            "Discount": 41
        },
        {
            "Category": "Accessories",
            "Size": "124 oz",
            "Color": "yellow",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 9,
            "Quantity": 578,
            "Discount": 8
        },
        {
            "Category": "Accessories",
            "Size": "23 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 3655,
            "Quantity": 64,
            "Discount": 70
        },
        {
            "Category": "Accessories",
            "Size": "124 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 1654,
            "Quantity": 556,
            "Discount": 95
        },
        {
            "Category": "Accessories",
            "Size": "310 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 1190,
            "Quantity": 292,
            "Discount": 36
        },
        {
            "Category": "Accessories",
            "Size": "277 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 1222,
            "Quantity": 730,
            "Discount": 38
        },
        {
            "Category": "Accessories",
            "Size": "47 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 7941,
            "Quantity": 73,
            "Discount": 53
        },
        {
            "Category": "Bikes",
            "Size": "264 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 6829,
            "Quantity": 19,
            "Discount": 56
        },
        {
            "Category": "Bikes",
            "Size": "76 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 1664,
            "Quantity": 19,
            "Discount": 75
        },
        {
            "Category": "Bikes",
            "Size": "217 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 2995,
            "Quantity": 98,
            "Discount": 88
        },
        {
            "Category": "Bikes",
            "Size": "251 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 1487,
            "Quantity": 96,
            "Discount": 100
        },
        {
            "Category": "Bikes",
            "Size": "292 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 9245,
            "Quantity": 51,
            "Discount": 29
        },
        {
            "Category": "Bikes",
            "Size": "266 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 9008,
            "Quantity": 76,
            "Discount": 66
        },
        {
            "Category": "Bikes",
            "Size": "198 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 9376,
            "Quantity": 92,
            "Discount": 7
        },
        {
            "Category": "Bikes",
            "Size": "109 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 1531,
            "Quantity": 56,
            "Discount": 31
        },
        {
            "Category": "Bikes",
            "Size": "54 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 5421,
            "Quantity": 83,
            "Discount": 22
        },
        {
            "Category": "Bikes",
            "Size": "93 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 6975,
            "Quantity": 73,
            "Discount": 41
        },
        {
            "Category": "Bikes",
            "Size": "297 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 4320,
            "Quantity": 59,
            "Discount": 100
        },
        {
            "Category": "Bikes",
            "Size": "339 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 3200,
            "Quantity": 27,
            "Discount": 41
        },
        {
            "Category": "Bikes",
            "Size": "205 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 6688,
            "Quantity": 22,
            "Discount": 41
        },
        {
            "Category": "Bikes",
            "Size": "226 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 699,
            "Quantity": 22,
            "Discount": 42
        },
        {
            "Category": "Bikes",
            "Size": "311 oz",
            "Color": "purple",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 5403,
            "Quantity": 75,
            "Discount": 70
        },
        {
            "Category": "Bikes",
            "Size": "282 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 6377,
            "Quantity": 28,
            "Discount": 49
        },
        {
            "Category": "Bikes",
            "Size": "286 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 2471,
            "Quantity": 93,
            "Discount": 14
        },
        {
            "Category": "Bikes",
            "Size": "100 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 6650,
            "Quantity": 40,
            "Discount": 4
        },
        {
            "Category": "Clothing",
            "Size": "218 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 865,
            "Quantity": 4513,
            "Discount": 70
        },
        {
            "Category": "Clothing",
            "Size": "216 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 511,
            "Quantity": 4615,
            "Discount": 20
        },
        {
            "Category": "Clothing",
            "Size": "284 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 981,
            "Quantity": 1854,
            "Discount": 36
        },
        {
            "Category": "Clothing",
            "Size": "325 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 57,
            "Quantity": 1187,
            "Discount": 10
        },
        {
            "Category": "Clothing",
            "Size": "192 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 675,
            "Quantity": 1527,
            "Discount": 38
        },
        {
            "Category": "Clothing",
            "Size": "25 oz",
            "Color": "purple",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 40,
            "Quantity": 4342,
            "Discount": 72
        },
        {
            "Category": "Clothing",
            "Size": "95 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 400,
            "Quantity": 8975,
            "Discount": 63
        },
        {
            "Category": "Clothing",
            "Size": "39 oz",
            "Color": "purple",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 971,
            "Quantity": 3522,
            "Discount": 90
        },
        {
            "Category": "Clothing",
            "Size": "36 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 357,
            "Quantity": 3939,
            "Discount": 93
        },
        {
            "Category": "Clothing",
            "Size": "208 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 820,
            "Quantity": 3560,
            "Discount": 40
        },
        {
            "Category": "Clothing",
            "Size": "3 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 520,
            "Quantity": 3892,
            "Discount": 32
        },
        {
            "Category": "Clothing",
            "Size": "147 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 448,
            "Quantity": 3906,
            "Discount": 24
        },
        {
            "Category": "Clothing",
            "Size": "68 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 513,
            "Quantity": 9790,
            "Discount": 40
        },
        {
            "Category": "Clothing",
            "Size": "267 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 977,
            "Quantity": 6107,
            "Discount": 8
        },
        {
            "Category": "Clothing",
            "Size": "33 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 118,
            "Quantity": 4718,
            "Discount": 84
        },
        {
            "Category": "Clothing",
            "Size": "319 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 161,
            "Quantity": 7988,
            "Discount": 29
        },
        {
            "Category": "Clothing",
            "Size": "326 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 239,
            "Quantity": 840,
            "Discount": 89
        },
        {
            "Category": "Clothing",
            "Size": "184 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 327,
            "Quantity": 6574,
            "Discount": 79
        },
        {
            "Category": "Components",
            "Size": "255 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 284,
            "Quantity": 2471,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "144 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 827,
            "Quantity": 4772,
            "Discount": 26
        },
        {
            "Category": "Components",
            "Size": "283 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 967,
            "Quantity": 1646,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "299 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 569,
            "Quantity": 6568,
            "Discount": 58
        },
        {
            "Category": "Components",
            "Size": "88 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 156,
            "Quantity": 7585,
            "Discount": 35
        },
        {
            "Category": "Components",
            "Size": "161 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 845,
            "Quantity": 4208,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "242 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 838,
            "Quantity": 6460,
            "Discount": 41
        },
        {
            "Category": "Components",
            "Size": "25 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 51,
            "Quantity": 410,
            "Discount": 97
        },
        {
            "Category": "Components",
            "Size": "317 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 95,
            "Quantity": 2307,
            "Discount": 64
        },
        {
            "Category": "Components",
            "Size": "295 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 885,
            "Quantity": 6843,
            "Discount": 10
        },
        {
            "Category": "Components",
            "Size": "69 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 239,
            "Quantity": 7541,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "320 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 145,
            "Quantity": 7978,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "104 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 605,
            "Quantity": 458,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "34 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 778,
            "Quantity": 8918,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "194 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 434,
            "Quantity": 1297,
            "Discount": 60
        },
        {
            "Category": "Components",
            "Size": "340 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 732,
            "Quantity": 8420,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "49 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 780,
            "Quantity": 5535,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "94 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 85,
            "Quantity": 2063,
            "Discount": 98
        },
        {
            "Category": "Components",
            "Size": "203 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 672,
            "Quantity": 316,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "350 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 389,
            "Quantity": 4900,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "106 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 81,
            "Quantity": 3674,
            "Discount": 34
        },
        {
            "Category": "Components",
            "Size": "348 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 959,
            "Quantity": 4819,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "200 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 666,
            "Quantity": 780,
            "Discount": 88
        },
        {
            "Category": "Components",
            "Size": "209 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 326,
            "Quantity": 7308,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "220 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 550,
            "Quantity": 3635,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "303 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 192,
            "Quantity": 2895,
            "Discount": 77
        },
        {
            "Category": "Components",
            "Size": "193 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 564,
            "Quantity": 4306,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "53 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 751,
            "Quantity": 4835,
            "Discount": 34
        },
        {
            "Category": "Components",
            "Size": "43 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 750,
            "Quantity": 178,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "114 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 106,
            "Quantity": 4571,
            "Discount": 12
        },
        {
            "Category": "Components",
            "Size": "231 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 436,
            "Quantity": 7733,
            "Discount": 94
        },
        {
            "Category": "Components",
            "Size": "26 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 314,
            "Quantity": 1033,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "140 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 370,
            "Quantity": 5788,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "158 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 984,
            "Quantity": 6047,
            "Discount": 35
        },
        {
            "Category": "Components",
            "Size": "25 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 531,
            "Quantity": 7845,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "231 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 907,
            "Quantity": 3829,
            "Discount": 15
        },
        {
            "Category": "Components",
            "Size": "150 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 233,
            "Quantity": 5546,
            "Discount": 80
        },
        {
            "Category": "Components",
            "Size": "258 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 548,
            "Quantity": 2777,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "119 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 723,
            "Quantity": 9333,
            "Discount": 10
        },
        {
            "Category": "Components",
            "Size": "116 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 55,
            "Quantity": 9755,
            "Discount": 21
        },
        {
            "Category": "Components",
            "Size": "339 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 523,
            "Quantity": 3115,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "263 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 978,
            "Quantity": 1561,
            "Discount": 43
        },
        {
            "Category": "Components",
            "Size": "30 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 522,
            "Quantity": 7101,
            "Discount": 52
        },
        {
            "Category": "Components",
            "Size": "349 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 681,
            "Quantity": 6964,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "67 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 166,
            "Quantity": 1589,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "70 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 342,
            "Quantity": 7198,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "17 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 654,
            "Quantity": 8039,
            "Discount": 10
        },
        {
            "Category": "Components",
            "Size": "270 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 259,
            "Quantity": 8551,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "247 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 756,
            "Quantity": 3897,
            "Discount": 40
        },
        {
            "Category": "Components",
            "Size": "114 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 751,
            "Quantity": 2158,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "39 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 830,
            "Quantity": 4341,
            "Discount": 63
        },
        {
            "Category": "Components",
            "Size": "54 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 789,
            "Quantity": 7973,
            "Discount": 37
        },
        {
            "Category": "Components",
            "Size": "344 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 324,
            "Quantity": 1908,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "39 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 831,
            "Quantity": 6912,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "314 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 86,
            "Quantity": 4346,
            "Discount": 96
        },
        {
            "Category": "Components",
            "Size": "324 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 181,
            "Quantity": 3045,
            "Discount": 48
        },
        {
            "Category": "Components",
            "Size": "148 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 295,
            "Quantity": 3429,
            "Discount": 68
        },
        {
            "Category": "Components",
            "Size": "105 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 675,
            "Quantity": 2581,
            "Discount": 3
        },
        {
            "Category": "Components",
            "Size": "91 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 302,
            "Quantity": 5919,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "39 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 620,
            "Quantity": 180,
            "Discount": 64
        },
        {
            "Category": "Components",
            "Size": "4 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 390,
            "Quantity": 2174,
            "Discount": 22
        },
        {
            "Category": "Components",
            "Size": "266 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 698,
            "Quantity": 2281,
            "Discount": 61
        },
        {
            "Category": "Components",
            "Size": "114 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 195,
            "Quantity": 3606,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "220 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 542,
            "Quantity": 6412,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "15 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 159,
            "Quantity": 7231,
            "Discount": 79
        },
        {
            "Category": "Components",
            "Size": "203 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 190,
            "Quantity": 6419,
            "Discount": 100
        },
        {
            "Category": "Components",
            "Size": "257 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 440,
            "Quantity": 9871,
            "Discount": 88
        },
        {
            "Category": "Components",
            "Size": "236 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 935,
            "Quantity": 9985,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "50 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 971,
            "Quantity": 4955,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "194 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 95,
            "Quantity": 9544,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "293 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 365,
            "Quantity": 1431,
            "Discount": 94
        },
        {
            "Category": "Components",
            "Size": "128 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 566,
            "Quantity": 3776,
            "Discount": 49
        },
        {
            "Category": "Components",
            "Size": "193 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 770,
            "Quantity": 3037,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "342 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 590,
            "Quantity": 434,
            "Discount": 60
        },
        {
            "Category": "Components",
            "Size": "44 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 903,
            "Quantity": 9479,
            "Discount": 96
        },
        {
            "Category": "Components",
            "Size": "123 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 278,
            "Quantity": 8185,
            "Discount": 91
        },
        {
            "Category": "Components",
            "Size": "235 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 551,
            "Quantity": 1950,
            "Discount": 51
        },
        {
            "Category": "Components",
            "Size": "307 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 842,
            "Quantity": 8212,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "197 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 480,
            "Quantity": 4721,
            "Discount": 56
        },
        {
            "Category": "Components",
            "Size": "299 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 705,
            "Quantity": 9027,
            "Discount": 51
        },
        {
            "Category": "Components",
            "Size": "174 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 628,
            "Quantity": 4955,
            "Discount": 30
        },
        {
            "Category": "Components",
            "Size": "4 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 458,
            "Quantity": 8561,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "108 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 549,
            "Quantity": 2214,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "346 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 179,
            "Quantity": 6684,
            "Discount": 94
        },
        {
            "Category": "Components",
            "Size": "236 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 96,
            "Quantity": 2187,
            "Discount": 56
        },
        {
            "Category": "Components",
            "Size": "323 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 361,
            "Quantity": 3485,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "187 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 734,
            "Quantity": 8064,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "210 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 807,
            "Quantity": 9929,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "323 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 348,
            "Quantity": 5143,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "327 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 185,
            "Quantity": 4411,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "190 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 684,
            "Quantity": 1641,
            "Discount": 17
        },
        {
            "Category": "Components",
            "Size": "169 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 828,
            "Quantity": 9451,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "159 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 814,
            "Quantity": 5582,
            "Discount": 65
        },
        {
            "Category": "Components",
            "Size": "63 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 373,
            "Quantity": 8757,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "85 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 889,
            "Quantity": 7752,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "246 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 904,
            "Quantity": 1064,
            "Discount": 17
        },
        {
            "Category": "Components",
            "Size": "280 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 113,
            "Quantity": 3945,
            "Discount": 92
        },
        {
            "Category": "Components",
            "Size": "60 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 342,
            "Quantity": 2508,
            "Discount": 84
        },
        {
            "Category": "Components",
            "Size": "257 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 557,
            "Quantity": 8695,
            "Discount": 90
        },
        {
            "Category": "Components",
            "Size": "103 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 198,
            "Quantity": 5742,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "184 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 188,
            "Quantity": 3430,
            "Discount": 57
        },
        {
            "Category": "Components",
            "Size": "340 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 331,
            "Quantity": 4245,
            "Discount": 37
        },
        {
            "Category": "Components",
            "Size": "251 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 34,
            "Quantity": 5691,
            "Discount": 33
        },
        {
            "Category": "Components",
            "Size": "92 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 231,
            "Quantity": 936,
            "Discount": 33
        },
        {
            "Category": "Components",
            "Size": "107 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 688,
            "Quantity": 9925,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "84 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 53,
            "Quantity": 7524,
            "Discount": 39
        },
        {
            "Category": "Components",
            "Size": "202 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 822,
            "Quantity": 5978,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "309 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 637,
            "Quantity": 7137,
            "Discount": 25
        },
        {
            "Category": "Components",
            "Size": "309 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 180,
            "Quantity": 5678,
            "Discount": 10
        },
        {
            "Category": "Components",
            "Size": "348 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 742,
            "Quantity": 6056,
            "Discount": 33
        },
        {
            "Category": "Components",
            "Size": "39 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 782,
            "Quantity": 8577,
            "Discount": 35
        },
        {
            "Category": "Components",
            "Size": "104 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 115,
            "Quantity": 2586,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "330 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 676,
            "Quantity": 1980,
            "Discount": 30
        },
        {
            "Category": "Components",
            "Size": "96 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 904,
            "Quantity": 1752,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "14 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 981,
            "Quantity": 7228,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "166 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 383,
            "Quantity": 3419,
            "Discount": 13
        },
        {
            "Category": "Components",
            "Size": "298 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 189,
            "Quantity": 6398,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "112 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 423,
            "Quantity": 2636,
            "Discount": 96
        },
        {
            "Category": "Components",
            "Size": "203 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 61,
            "Quantity": 3012,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "18 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 781,
            "Quantity": 6423,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "347 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 758,
            "Quantity": 687,
            "Discount": 4
        },
        {
            "Category": "Components",
            "Size": "277 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 902,
            "Quantity": 7931,
            "Discount": 31
        },
        {
            "Category": "Components",
            "Size": "285 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 619,
            "Quantity": 2797,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "6 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 292,
            "Quantity": 8841,
            "Discount": 22
        },
        {
            "Category": "Components",
            "Size": "336 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 986,
            "Quantity": 9811,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "157 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 194,
            "Quantity": 1320,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "101 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 890,
            "Quantity": 7481,
            "Discount": 58
        },
        {
            "Category": "Components",
            "Size": "346 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 381,
            "Quantity": 5940,
            "Discount": 12
        },
        {
            "Category": "Components",
            "Size": "205 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 735,
            "Quantity": 633,
            "Discount": 57
        },
        {
            "Category": "Components",
            "Size": "195 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 211,
            "Quantity": 6508,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "179 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 834,
            "Quantity": 8234,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "142 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 646,
            "Quantity": 2296,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "36 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 79,
            "Quantity": 726,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "190 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 129,
            "Quantity": 4956,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "81 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 899,
            "Quantity": 2927,
            "Discount": 70
        },
        {
            "Category": "Components",
            "Size": "315 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 266,
            "Quantity": 3561,
            "Discount": 77
        },
        {
            "Category": "Components",
            "Size": "92 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 492,
            "Quantity": 1519,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "158 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 519,
            "Quantity": 2093,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "223 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 549,
            "Quantity": 2363,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "166 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 444,
            "Quantity": 9908,
            "Discount": 52
        },
        {
            "Category": "Components",
            "Size": "236 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 899,
            "Quantity": 6816,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "27 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 596,
            "Quantity": 481,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "28 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 102,
            "Quantity": 9587,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "292 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 189,
            "Quantity": 8228,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "50 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 70,
            "Quantity": 9156,
            "Discount": 38
        },
        {
            "Category": "Components",
            "Size": "20 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 476,
            "Quantity": 1233,
            "Discount": 12
        },
        {
            "Category": "Components",
            "Size": "152 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 466,
            "Quantity": 6456,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "224 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 119,
            "Quantity": 5747,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "18 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 887,
            "Quantity": 9592,
            "Discount": 63
        },
        {
            "Category": "Components",
            "Size": "287 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 730,
            "Quantity": 826,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "246 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 988,
            "Quantity": 4096,
            "Discount": 90
        },
        {
            "Category": "Components",
            "Size": "259 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 409,
            "Quantity": 3091,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "111 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 688,
            "Quantity": 1801,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "160 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 312,
            "Quantity": 2121,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "313 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 193,
            "Quantity": 2728,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "57 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 866,
            "Quantity": 4317,
            "Discount": 58
        },
        {
            "Category": "Components",
            "Size": "175 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 672,
            "Quantity": 703,
            "Discount": 97
        },
        {
            "Category": "Components",
            "Size": "12 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 674,
            "Quantity": 9810,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "45 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 350,
            "Quantity": 8356,
            "Discount": 0
        },
        {
            "Category": "Components",
            "Size": "164 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 182,
            "Quantity": 4151,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "29 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 357,
            "Quantity": 9535,
            "Discount": 87
        },
        {
            "Category": "Components",
            "Size": "250 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 72,
            "Quantity": 6426,
            "Discount": 11
        },
        {
            "Category": "Components",
            "Size": "55 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 752,
            "Quantity": 9260,
            "Discount": 44
        },
        {
            "Category": "Components",
            "Size": "45 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 766,
            "Quantity": 1411,
            "Discount": 10
        },
        {
            "Category": "Components",
            "Size": "102 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 351,
            "Quantity": 4156,
            "Discount": 68
        },
        {
            "Category": "Components",
            "Size": "48 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 799,
            "Quantity": 6014,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "88 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 536,
            "Quantity": 3930,
            "Discount": 61
        },
        {
            "Category": "Components",
            "Size": "302 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 84,
            "Quantity": 4657,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "89 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 488,
            "Quantity": 2746,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "95 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 758,
            "Quantity": 8344,
            "Discount": 65
        },
        {
            "Category": "Components",
            "Size": "45 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 322,
            "Quantity": 8885,
            "Discount": 92
        },
        {
            "Category": "Components",
            "Size": "311 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 909,
            "Quantity": 4780,
            "Discount": 13
        },
        {
            "Category": "Components",
            "Size": "171 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 687,
            "Quantity": 4817,
            "Discount": 100
        },
        {
            "Category": "Components",
            "Size": "155 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 116,
            "Quantity": 4834,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "25 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 797,
            "Quantity": 2034,
            "Discount": 27
        },
        {
            "Category": "Components",
            "Size": "301 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 746,
            "Quantity": 402,
            "Discount": 86
        },
        {
            "Category": "Components",
            "Size": "55 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 193,
            "Quantity": 8886,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "212 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 920,
            "Quantity": 5339,
            "Discount": 48
        },
        {
            "Category": "Components",
            "Size": "105 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 597,
            "Quantity": 8674,
            "Discount": 45
        },
        {
            "Category": "Components",
            "Size": "127 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 712,
            "Quantity": 991,
            "Discount": 38
        },
        {
            "Category": "Components",
            "Size": "303 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 923,
            "Quantity": 4553,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "304 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 314,
            "Quantity": 5330,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "258 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 977,
            "Quantity": 9449,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "58 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 775,
            "Quantity": 5980,
            "Discount": 24
        },
        {
            "Category": "Components",
            "Size": "192 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 451,
            "Quantity": 851,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "1 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 102,
            "Quantity": 581,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "2 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 632,
            "Quantity": 3152,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "210 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 292,
            "Quantity": 3785,
            "Discount": 37
        },
        {
            "Category": "Components",
            "Size": "40 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 93,
            "Quantity": 4998,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "53 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 440,
            "Quantity": 2988,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "245 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 388,
            "Quantity": 2345,
            "Discount": 80
        },
        {
            "Category": "Components",
            "Size": "228 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 984,
            "Quantity": 2116,
            "Discount": 79
        },
        {
            "Category": "Components",
            "Size": "56 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 48,
            "Quantity": 742,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "215 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 992,
            "Quantity": 2500,
            "Discount": 0
        },
        {
            "Category": "Components",
            "Size": "81 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 216,
            "Quantity": 7771,
            "Discount": 82
        },
        {
            "Category": "Components",
            "Size": "212 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 543,
            "Quantity": 927,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "277 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 627,
            "Quantity": 1674,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "128 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 452,
            "Quantity": 6047,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "193 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 911,
            "Quantity": 5372,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "70 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 373,
            "Quantity": 7146,
            "Discount": 95
        },
        {
            "Category": "Components",
            "Size": "271 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 588,
            "Quantity": 756,
            "Discount": 6
        },
        {
            "Category": "Components",
            "Size": "263 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 374,
            "Quantity": 4335,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "272 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 146,
            "Quantity": 2658,
            "Discount": 44
        },
        {
            "Category": "Components",
            "Size": "41 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 306,
            "Quantity": 5543,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "111 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 545,
            "Quantity": 100,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "153 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 387,
            "Quantity": 757,
            "Discount": 40
        },
        {
            "Category": "Components",
            "Size": "280 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 644,
            "Quantity": 8997,
            "Discount": 66
        },
        {
            "Category": "Components",
            "Size": "36 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 851,
            "Quantity": 4247,
            "Discount": 9
        },
        {
            "Category": "Components",
            "Size": "52 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 860,
            "Quantity": 7795,
            "Discount": 39
        },
        {
            "Category": "Components",
            "Size": "15 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 305,
            "Quantity": 1815,
            "Discount": 51
        },
        {
            "Category": "Components",
            "Size": "349 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 837,
            "Quantity": 1342,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "309 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 456,
            "Quantity": 8651,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "116 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 214,
            "Quantity": 150,
            "Discount": 35
        },
        {
            "Category": "Components",
            "Size": "129 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 253,
            "Quantity": 7619,
            "Discount": 31
        },
        {
            "Category": "Components",
            "Size": "249 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 399,
            "Quantity": 4001,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "59 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 733,
            "Quantity": 5481,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "298 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 81,
            "Quantity": 2426,
            "Discount": 63
        },
        {
            "Category": "Components",
            "Size": "95 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 920,
            "Quantity": 7491,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "349 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 750,
            "Quantity": 6334,
            "Discount": 21
        },
        {
            "Category": "Components",
            "Size": "172 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 536,
            "Quantity": 2329,
            "Discount": 70
        },
        {
            "Category": "Components",
            "Size": "270 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 943,
            "Quantity": 3658,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "289 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 346,
            "Quantity": 3765,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "95 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 203,
            "Quantity": 398,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "229 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 978,
            "Quantity": 497,
            "Discount": 81
        },
        {
            "Category": "Cars",
            "Size": "140 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 28849,
            "Quantity": 15,
            "Discount": 69
        },
        {
            "Category": "Cars",
            "Size": "140 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 41350,
            "Quantity": 3,
            "Discount": 63
        },
        {
            "Category": "Cars",
            "Size": "223 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 34563,
            "Quantity": 43,
            "Discount": 0
        },
        {
            "Category": "Cars",
            "Size": "350 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 29638,
            "Quantity": 59,
            "Discount": 78
        },
        {
            "Category": "Cars",
            "Size": "279 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 53737,
            "Quantity": 49,
            "Discount": 17
        },
        {
            "Category": "Cars",
            "Size": "253 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 31974,
            "Quantity": 57,
            "Discount": 58
        },
        {
            "Category": "Cars",
            "Size": "193 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 58383,
            "Quantity": 37,
            "Discount": 84
        },
        {
            "Category": "Cars",
            "Size": "245 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 52421,
            "Quantity": 27,
            "Discount": 31
        },
        {
            "Category": "Cars",
            "Size": "97 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 55410,
            "Quantity": 41,
            "Discount": 30
        },
        {
            "Category": "Cars",
            "Size": "145 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 32640,
            "Quantity": 51,
            "Discount": 46
        },
        {
            "Category": "Cars",
            "Size": "128 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 6529,
            "Quantity": 27,
            "Discount": 82
        },
        {
            "Category": "Cars",
            "Size": "102 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 7769,
            "Quantity": 24,
            "Discount": 36
        },
        {
            "Category": "Cars",
            "Size": "218 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 30275,
            "Quantity": 60,
            "Discount": 62
        },
        {
            "Category": "Cars",
            "Size": "342 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 27607,
            "Quantity": 51,
            "Discount": 62
        },
        {
            "Category": "Cars",
            "Size": "108 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 25123,
            "Quantity": 49,
            "Discount": 51
        },
        {
            "Category": "Cars",
            "Size": "185 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 19302,
            "Quantity": 60,
            "Discount": 0
        },
        {
            "Category": "Cars",
            "Size": "30 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 23360,
            "Quantity": 33,
            "Discount": 83
        },
        {
            "Category": "Cars",
            "Size": "90 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 11932,
            "Quantity": 33,
            "Discount": 89
        },
        {
            "Category": "Cars",
            "Size": "19 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 37690,
            "Quantity": 47,
            "Discount": 73
        },
        {
            "Category": "Cars",
            "Size": "145 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 4210,
            "Quantity": 28,
            "Discount": 55
        },
        {
            "Category": "Cars",
            "Size": "188 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 37789,
            "Quantity": 7,
            "Discount": 35
        },
        {
            "Category": "Cars",
            "Size": "115 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 19231,
            "Quantity": 43,
            "Discount": 98
        },
        {
            "Category": "Cars",
            "Size": "46 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 35546,
            "Quantity": 33,
            "Discount": 69
        },
        {
            "Category": "Cars",
            "Size": "272 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 8564,
            "Quantity": 53,
            "Discount": 94
        },
        {
            "Category": "Cars",
            "Size": "300 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 8640,
            "Quantity": 56,
            "Discount": 21
        },
        {
            "Category": "Cars",
            "Size": "290 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 27166,
            "Quantity": 39,
            "Discount": 69
        },
        {
            "Category": "Cars",
            "Size": "159 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 41694,
            "Quantity": 56,
            "Discount": 31
        },
        {
            "Category": "Cars",
            "Size": "140 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 32146,
            "Quantity": 58,
            "Discount": 31
        },
        {
            "Category": "Cars",
            "Size": "345 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 41357,
            "Quantity": 37,
            "Discount": 34
        },
        {
            "Category": "Cars",
            "Size": "69 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 51936,
            "Quantity": 45,
            "Discount": 87
        },
        {
            "Category": "Cars",
            "Size": "151 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 388436,
            "Quantity": 50,
            "Discount": 19
        },
        {
            "Category": "Cars",
            "Size": "269 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 30384,
            "Quantity": 3,
            "Discount": 98
        },
        {
            "Category": "Cars",
            "Size": "205 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 50190,
            "Quantity": 6,
            "Discount": 15
        },
        {
            "Category": "Cars",
            "Size": "34 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 173481,
            "Quantity": 5,
            "Discount": 92
        },
        {
            "Category": "Cars",
            "Size": "259 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 14598,
            "Quantity": 37,
            "Discount": 4
        },
        {
            "Category": "Cars",
            "Size": "37 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 20013,
            "Quantity": 3,
            "Discount": 64
        },
        {
            "Category": "Cars",
            "Size": "255 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 40203,
            "Quantity": 12,
            "Discount": 53
        },
        {
            "Category": "Cars",
            "Size": "240 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 19505,
            "Quantity": 2,
            "Discount": 56
        },
        {
            "Category": "Cars",
            "Size": "102 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 56675,
            "Quantity": 35,
            "Discount": 41
        },
        {
            "Category": "Cars",
            "Size": "99 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 52117,
            "Quantity": 4,
            "Discount": 81
        },
        {
            "Category": "Cars",
            "Size": "6 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 8902,
            "Quantity": 5,
            "Discount": 62
        },
        {
            "Category": "Cars",
            "Size": "344 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 57322,
            "Quantity": 44,
            "Discount": 57
        },
        {
            "Category": "Cars",
            "Size": "341 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 13667,
            "Quantity": 29,
            "Discount": 66
        },
        {
            "Category": "Cars",
            "Size": "87 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 68483,
            "Quantity": 23,
            "Discount": 31
        },
        {
            "Category": "Cars",
            "Size": "109 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 12979,
            "Quantity": 4,
            "Discount": 34
        },
        {
            "Category": "Cars",
            "Size": "229 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 16950,
            "Quantity": 4,
            "Discount": 99
        },
        {
            "Category": "Cars",
            "Size": "127 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 12766,
            "Quantity": 59,
            "Discount": 68
        },
        {
            "Category": "Cars",
            "Size": "310 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 20699,
            "Quantity": 38,
            "Discount": 89
        },
        {
            "Category": "Cars",
            "Size": "24 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 36607,
            "Quantity": 59,
            "Discount": 18
        },
        {
            "Category": "Cars",
            "Size": "312 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 15976,
            "Quantity": 29,
            "Discount": 51
        },
        {
            "Category": "Cars",
            "Size": "236 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 7043,
            "Quantity": 27,
            "Discount": 89
        },
        {
            "Category": "Cars",
            "Size": "53 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 6662,
            "Quantity": 31,
            "Discount": 52
        },
        {
            "Category": "Cars",
            "Size": "280 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 22318,
            "Quantity": 7,
            "Discount": 42
        },
        {
            "Category": "Cars",
            "Size": "303 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 43935,
            "Quantity": 55,
            "Discount": 12
        },
        {
            "Category": "Accessories",
            "Size": "36 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 174,
            "Quantity": 605,
            "Discount": 43
        },
        {
            "Category": "Accessories",
            "Size": "65 oz",
            "Color": "yellow",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 502,
            "Quantity": 825,
            "Discount": 33
        },
        {
            "Category": "Accessories",
            "Size": "6 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 242,
            "Quantity": 71,
            "Discount": 41
        },
        {
            "Category": "Accessories",
            "Size": "2 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 102,
            "Quantity": 561,
            "Discount": 92
        },
        {
            "Category": "Accessories",
            "Size": "90 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 126,
            "Quantity": 233,
            "Discount": 49
        },
        {
            "Category": "Accessories",
            "Size": "23 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 1246,
            "Quantity": 331,
            "Discount": 98
        },
        {
            "Category": "Accessories",
            "Size": "148 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 680,
            "Quantity": 144,
            "Discount": 11
        },
        {
            "Category": "Accessories",
            "Size": "97 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 1241,
            "Quantity": 483,
            "Discount": 21
        },
        {
            "Category": "Accessories",
            "Size": "198 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 150,
            "Quantity": 99,
            "Discount": 12
        },
        {
            "Category": "Accessories",
            "Size": "281 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 244,
            "Quantity": 686,
            "Discount": 75
        },
        {
            "Category": "Accessories",
            "Size": "3 oz",
            "Color": "yellow",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 501,
            "Quantity": 126,
            "Discount": 20
        },
        {
            "Category": "Accessories",
            "Size": "111 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 4960,
            "Quantity": 930,
            "Discount": 39
        },
        {
            "Category": "Accessories",
            "Size": "135 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 9,
            "Quantity": 966,
            "Discount": 90
        },
        {
            "Category": "Accessories",
            "Size": "304 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 3655,
            "Quantity": 999,
            "Discount": 73
        },
        {
            "Category": "Accessories",
            "Size": "25 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 1654,
            "Quantity": 959,
            "Discount": 99
        },
        {
            "Category": "Accessories",
            "Size": "185 oz",
            "Color": "yellow",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 1190,
            "Quantity": 28,
            "Discount": 53
        },
        {
            "Category": "Accessories",
            "Size": "10 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 1222,
            "Quantity": 405,
            "Discount": 41
        },
        {
            "Category": "Accessories",
            "Size": "237 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 7941,
            "Quantity": 84,
            "Discount": 61
        },
        {
            "Category": "Bikes",
            "Size": "16 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 7310,
            "Quantity": 31,
            "Discount": 44
        },
        {
            "Category": "Bikes",
            "Size": "122 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 9423,
            "Quantity": 21,
            "Discount": 79
        },
        {
            "Category": "Bikes",
            "Size": "3 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 9225,
            "Quantity": 20,
            "Discount": 58
        },
        {
            "Category": "Bikes",
            "Size": "86 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 1624,
            "Quantity": 48,
            "Discount": 74
        },
        {
            "Category": "Bikes",
            "Size": "306 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 7217,
            "Quantity": 31,
            "Discount": 81
        },
        {
            "Category": "Bikes",
            "Size": "172 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 4467,
            "Quantity": 16,
            "Discount": 90
        },
        {
            "Category": "Bikes",
            "Size": "87 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 3449,
            "Quantity": 63,
            "Discount": 6
        },
        {
            "Category": "Bikes",
            "Size": "334 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 738,
            "Quantity": 35,
            "Discount": 28
        },
        {
            "Category": "Bikes",
            "Size": "107 oz",
            "Color": "yellow",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 8457,
            "Quantity": 35,
            "Discount": 99
        },
        {
            "Category": "Bikes",
            "Size": "350 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 2876,
            "Quantity": 20,
            "Discount": 99
        },
        {
            "Category": "Bikes",
            "Size": "327 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 8142,
            "Quantity": 29,
            "Discount": 36
        },
        {
            "Category": "Bikes",
            "Size": "37 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 5042,
            "Quantity": 73,
            "Discount": 23
        },
        {
            "Category": "Bikes",
            "Size": "276 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 8393,
            "Quantity": 56,
            "Discount": 97
        },
        {
            "Category": "Bikes",
            "Size": "53 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 2002,
            "Quantity": 53,
            "Discount": 88
        },
        {
            "Category": "Bikes",
            "Size": "281 oz",
            "Color": "purple",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 5532,
            "Quantity": 92,
            "Discount": 61
        },
        {
            "Category": "Bikes",
            "Size": "108 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 6665,
            "Quantity": 87,
            "Discount": 99
        },
        {
            "Category": "Bikes",
            "Size": "192 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 3449,
            "Quantity": 91,
            "Discount": 39
        },
        {
            "Category": "Bikes",
            "Size": "181 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 3871,
            "Quantity": 41,
            "Discount": 55
        },
        {
            "Category": "Clothing",
            "Size": "228 oz",
            "Color": "yellow",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 573,
            "Quantity": 1850,
            "Discount": 87
        },
        {
            "Category": "Clothing",
            "Size": "226 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 122,
            "Quantity": 2474,
            "Discount": 53
        },
        {
            "Category": "Clothing",
            "Size": "77 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 358,
            "Quantity": 9752,
            "Discount": 53
        },
        {
            "Category": "Clothing",
            "Size": "112 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 535,
            "Quantity": 9996,
            "Discount": 3
        },
        {
            "Category": "Clothing",
            "Size": "292 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 12,
            "Quantity": 3128,
            "Discount": 52
        },
        {
            "Category": "Clothing",
            "Size": "22 oz",
            "Color": "purple",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 422,
            "Quantity": 6602,
            "Discount": 60
        },
        {
            "Category": "Clothing",
            "Size": "133 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 548,
            "Quantity": 4819,
            "Discount": 82
        },
        {
            "Category": "Clothing",
            "Size": "235 oz",
            "Color": "purple",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 955,
            "Quantity": 3379,
            "Discount": 93
        },
        {
            "Category": "Clothing",
            "Size": "107 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 919,
            "Quantity": 3763,
            "Discount": 36
        },
        {
            "Category": "Clothing",
            "Size": "230 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 772,
            "Quantity": 7329,
            "Discount": 67
        },
        {
            "Category": "Clothing",
            "Size": "161 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 322,
            "Quantity": 6948,
            "Discount": 64
        },
        {
            "Category": "Clothing",
            "Size": "328 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 153,
            "Quantity": 2122,
            "Discount": 64
        },
        {
            "Category": "Clothing",
            "Size": "108 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 56,
            "Quantity": 4993,
            "Discount": 36
        },
        {
            "Category": "Clothing",
            "Size": "190 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 269,
            "Quantity": 6431,
            "Discount": 29
        },
        {
            "Category": "Clothing",
            "Size": "54 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 797,
            "Quantity": 7253,
            "Discount": 74
        },
        {
            "Category": "Clothing",
            "Size": "198 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 593,
            "Quantity": 3836,
            "Discount": 5
        },
        {
            "Category": "Clothing",
            "Size": "63 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 957,
            "Quantity": 5405,
            "Discount": 80
        },
        {
            "Category": "Clothing",
            "Size": "169 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 976,
            "Quantity": 6190,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "312 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 645,
            "Quantity": 7079,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "115 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 445,
            "Quantity": 7289,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "240 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 73,
            "Quantity": 8624,
            "Discount": 10
        },
        {
            "Category": "Components",
            "Size": "18 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 776,
            "Quantity": 3344,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "48 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 444,
            "Quantity": 2591,
            "Discount": 82
        },
        {
            "Category": "Components",
            "Size": "46 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 547,
            "Quantity": 9271,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "124 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 58,
            "Quantity": 1469,
            "Discount": 12
        },
        {
            "Category": "Components",
            "Size": "155 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 95,
            "Quantity": 5239,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "172 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 193,
            "Quantity": 4019,
            "Discount": 98
        },
        {
            "Category": "Components",
            "Size": "119 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 383,
            "Quantity": 8248,
            "Discount": 9
        },
        {
            "Category": "Components",
            "Size": "27 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 344,
            "Quantity": 5566,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "225 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 365,
            "Quantity": 4454,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "214 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 543,
            "Quantity": 5380,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "97 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 687,
            "Quantity": 4264,
            "Discount": 43
        },
        {
            "Category": "Components",
            "Size": "25 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 283,
            "Quantity": 791,
            "Discount": 95
        },
        {
            "Category": "Components",
            "Size": "267 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 35,
            "Quantity": 1843,
            "Discount": 90
        },
        {
            "Category": "Components",
            "Size": "57 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 844,
            "Quantity": 8074,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "142 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 754,
            "Quantity": 8246,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "151 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 533,
            "Quantity": 6920,
            "Discount": 24
        },
        {
            "Category": "Components",
            "Size": "183 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 139,
            "Quantity": 6053,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "267 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 551,
            "Quantity": 5177,
            "Discount": 84
        },
        {
            "Category": "Components",
            "Size": "330 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 455,
            "Quantity": 1610,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "9 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 805,
            "Quantity": 9759,
            "Discount": 52
        },
        {
            "Category": "Components",
            "Size": "54 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 207,
            "Quantity": 8172,
            "Discount": 79
        },
        {
            "Category": "Components",
            "Size": "18 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 360,
            "Quantity": 2152,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "174 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 929,
            "Quantity": 5383,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "48 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 225,
            "Quantity": 2347,
            "Discount": 48
        },
        {
            "Category": "Components",
            "Size": "196 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 52,
            "Quantity": 551,
            "Discount": 45
        },
        {
            "Category": "Components",
            "Size": "30 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 25,
            "Quantity": 3937,
            "Discount": 31
        },
        {
            "Category": "Components",
            "Size": "226 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 85,
            "Quantity": 4960,
            "Discount": 24
        },
        {
            "Category": "Components",
            "Size": "288 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 846,
            "Quantity": 4494,
            "Discount": 23
        },
        {
            "Category": "Components",
            "Size": "142 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 122,
            "Quantity": 5248,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "343 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 542,
            "Quantity": 8465,
            "Discount": 68
        },
        {
            "Category": "Components",
            "Size": "126 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 645,
            "Quantity": 3214,
            "Discount": 84
        },
        {
            "Category": "Components",
            "Size": "202 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 995,
            "Quantity": 5569,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "97 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 485,
            "Quantity": 329,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "272 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 212,
            "Quantity": 4057,
            "Discount": 27
        },
        {
            "Category": "Components",
            "Size": "334 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 183,
            "Quantity": 1242,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "301 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 502,
            "Quantity": 6990,
            "Discount": 4
        },
        {
            "Category": "Components",
            "Size": "324 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 678,
            "Quantity": 2603,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "78 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 224,
            "Quantity": 403,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "250 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 765,
            "Quantity": 672,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "35 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 193,
            "Quantity": 3731,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "289 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 793,
            "Quantity": 849,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "193 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 958,
            "Quantity": 2509,
            "Discount": 37
        },
        {
            "Category": "Components",
            "Size": "181 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 891,
            "Quantity": 4710,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "38 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 69,
            "Quantity": 7560,
            "Discount": 41
        },
        {
            "Category": "Components",
            "Size": "185 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 479,
            "Quantity": 1757,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "103 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 34,
            "Quantity": 2740,
            "Discount": 27
        },
        {
            "Category": "Components",
            "Size": "175 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 992,
            "Quantity": 9024,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "216 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 754,
            "Quantity": 703,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "160 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 908,
            "Quantity": 8846,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "272 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 166,
            "Quantity": 9070,
            "Discount": 49
        },
        {
            "Category": "Components",
            "Size": "92 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 831,
            "Quantity": 5055,
            "Discount": 6
        },
        {
            "Category": "Components",
            "Size": "274 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 313,
            "Quantity": 4520,
            "Discount": 30
        },
        {
            "Category": "Components",
            "Size": "281 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 616,
            "Quantity": 3911,
            "Discount": 13
        },
        {
            "Category": "Components",
            "Size": "132 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 636,
            "Quantity": 4305,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "150 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 601,
            "Quantity": 400,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "316 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 680,
            "Quantity": 414,
            "Discount": 43
        },
        {
            "Category": "Components",
            "Size": "159 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 707,
            "Quantity": 8900,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "84 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 877,
            "Quantity": 1662,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "301 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 706,
            "Quantity": 7611,
            "Discount": 21
        },
        {
            "Category": "Components",
            "Size": "91 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 495,
            "Quantity": 6507,
            "Discount": 15
        },
        {
            "Category": "Components",
            "Size": "125 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 370,
            "Quantity": 3836,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "149 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 490,
            "Quantity": 8751,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "50 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 207,
            "Quantity": 5350,
            "Discount": 3
        },
        {
            "Category": "Components",
            "Size": "299 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 287,
            "Quantity": 3216,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "110 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 366,
            "Quantity": 1157,
            "Discount": 94
        },
        {
            "Category": "Components",
            "Size": "282 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 660,
            "Quantity": 3618,
            "Discount": 58
        },
        {
            "Category": "Components",
            "Size": "100 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 502,
            "Quantity": 8895,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "317 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 691,
            "Quantity": 1936,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "254 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 765,
            "Quantity": 3610,
            "Discount": 37
        },
        {
            "Category": "Components",
            "Size": "38 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 903,
            "Quantity": 8582,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "122 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 766,
            "Quantity": 5804,
            "Discount": 27
        },
        {
            "Category": "Components",
            "Size": "129 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 315,
            "Quantity": 8684,
            "Discount": 65
        },
        {
            "Category": "Components",
            "Size": "196 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 246,
            "Quantity": 267,
            "Discount": 25
        },
        {
            "Category": "Components",
            "Size": "322 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 619,
            "Quantity": 9788,
            "Discount": 23
        },
        {
            "Category": "Components",
            "Size": "156 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 674,
            "Quantity": 5068,
            "Discount": 80
        },
        {
            "Category": "Components",
            "Size": "212 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 511,
            "Quantity": 4314,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "349 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 706,
            "Quantity": 8906,
            "Discount": 61
        },
        {
            "Category": "Components",
            "Size": "220 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 338,
            "Quantity": 3630,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "286 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 34,
            "Quantity": 6256,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "287 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 222,
            "Quantity": 945,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "10 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 962,
            "Quantity": 4718,
            "Discount": 97
        },
        {
            "Category": "Components",
            "Size": "296 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 954,
            "Quantity": 977,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "168 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 954,
            "Quantity": 6371,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "105 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 366,
            "Quantity": 3357,
            "Discount": 30
        },
        {
            "Category": "Components",
            "Size": "242 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 666,
            "Quantity": 5730,
            "Discount": 88
        },
        {
            "Category": "Components",
            "Size": "327 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 489,
            "Quantity": 9161,
            "Discount": 91
        },
        {
            "Category": "Components",
            "Size": "276 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 960,
            "Quantity": 1492,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "250 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 908,
            "Quantity": 6235,
            "Discount": 94
        },
        {
            "Category": "Components",
            "Size": "76 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 861,
            "Quantity": 6070,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "45 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 74,
            "Quantity": 3358,
            "Discount": 9
        },
        {
            "Category": "Components",
            "Size": "137 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 119,
            "Quantity": 3431,
            "Discount": 61
        },
        {
            "Category": "Components",
            "Size": "270 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 663,
            "Quantity": 1399,
            "Discount": 26
        },
        {
            "Category": "Components",
            "Size": "129 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 32,
            "Quantity": 5544,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "34 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 625,
            "Quantity": 7303,
            "Discount": 2
        },
        {
            "Category": "Components",
            "Size": "65 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 376,
            "Quantity": 879,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "124 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 622,
            "Quantity": 4345,
            "Discount": 71
        },
        {
            "Category": "Components",
            "Size": "46 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 53,
            "Quantity": 6543,
            "Discount": 65
        },
        {
            "Category": "Components",
            "Size": "174 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 846,
            "Quantity": 3878,
            "Discount": 60
        },
        {
            "Category": "Components",
            "Size": "6 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 743,
            "Quantity": 4086,
            "Discount": 95
        },
        {
            "Category": "Components",
            "Size": "131 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 412,
            "Quantity": 9739,
            "Discount": 29
        },
        {
            "Category": "Components",
            "Size": "186 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 500,
            "Quantity": 4686,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "173 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 11,
            "Quantity": 521,
            "Discount": 80
        },
        {
            "Category": "Components",
            "Size": "277 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 624,
            "Quantity": 4697,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "292 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 483,
            "Quantity": 6271,
            "Discount": 75
        },
        {
            "Category": "Components",
            "Size": "140 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 384,
            "Quantity": 9825,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "197 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 277,
            "Quantity": 8509,
            "Discount": 57
        },
        {
            "Category": "Components",
            "Size": "87 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 614,
            "Quantity": 7424,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "107 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 913,
            "Quantity": 7601,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "9 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 610,
            "Quantity": 9938,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "200 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 965,
            "Quantity": 2181,
            "Discount": 49
        },
        {
            "Category": "Components",
            "Size": "284 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 794,
            "Quantity": 9925,
            "Discount": 37
        },
        {
            "Category": "Components",
            "Size": "83 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 632,
            "Quantity": 8874,
            "Discount": 43
        },
        {
            "Category": "Components",
            "Size": "327 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 418,
            "Quantity": 7398,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "259 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 680,
            "Quantity": 320,
            "Discount": 82
        },
        {
            "Category": "Components",
            "Size": "126 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 44,
            "Quantity": 9688,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "109 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 195,
            "Quantity": 3271,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "7 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 938,
            "Quantity": 5153,
            "Discount": 25
        },
        {
            "Category": "Components",
            "Size": "205 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 768,
            "Quantity": 2423,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "303 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 567,
            "Quantity": 127,
            "Discount": 51
        },
        {
            "Category": "Components",
            "Size": "125 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 521,
            "Quantity": 8131,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "321 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 928,
            "Quantity": 8763,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "56 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 949,
            "Quantity": 2054,
            "Discount": 79
        },
        {
            "Category": "Components",
            "Size": "223 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 113,
            "Quantity": 552,
            "Discount": 0
        },
        {
            "Category": "Components",
            "Size": "299 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 273,
            "Quantity": 1418,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "86 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 669,
            "Quantity": 2752,
            "Discount": 13
        },
        {
            "Category": "Components",
            "Size": "96 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 905,
            "Quantity": 2326,
            "Discount": 16
        },
        {
            "Category": "Components",
            "Size": "324 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 996,
            "Quantity": 7181,
            "Discount": 15
        },
        {
            "Category": "Components",
            "Size": "169 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 265,
            "Quantity": 6498,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "246 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 376,
            "Quantity": 8198,
            "Discount": 4
        },
        {
            "Category": "Components",
            "Size": "147 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 541,
            "Quantity": 5319,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "142 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 529,
            "Quantity": 6244,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "22 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 363,
            "Quantity": 8279,
            "Discount": 24
        },
        {
            "Category": "Components",
            "Size": "78 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 713,
            "Quantity": 5587,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "343 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 411,
            "Quantity": 8200,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "346 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 247,
            "Quantity": 9598,
            "Discount": 2
        },
        {
            "Category": "Components",
            "Size": "247 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 781,
            "Quantity": 3662,
            "Discount": 63
        },
        {
            "Category": "Components",
            "Size": "325 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 175,
            "Quantity": 3539,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "27 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 609,
            "Quantity": 2904,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "269 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 72,
            "Quantity": 4962,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "71 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 344,
            "Quantity": 7016,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "264 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 874,
            "Quantity": 4941,
            "Discount": 39
        },
        {
            "Category": "Components",
            "Size": "177 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 578,
            "Quantity": 5169,
            "Discount": 20
        },
        {
            "Category": "Components",
            "Size": "161 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 505,
            "Quantity": 3668,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "312 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 586,
            "Quantity": 5521,
            "Discount": 3
        },
        {
            "Category": "Components",
            "Size": "149 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 950,
            "Quantity": 4597,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "21 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 302,
            "Quantity": 963,
            "Discount": 68
        },
        {
            "Category": "Components",
            "Size": "2 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 648,
            "Quantity": 9159,
            "Discount": 60
        },
        {
            "Category": "Components",
            "Size": "169 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 487,
            "Quantity": 7781,
            "Discount": 43
        },
        {
            "Category": "Components",
            "Size": "5 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 262,
            "Quantity": 5294,
            "Discount": 66
        },
        {
            "Category": "Components",
            "Size": "103 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 697,
            "Quantity": 3467,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "217 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 608,
            "Quantity": 523,
            "Discount": 17
        },
        {
            "Category": "Components",
            "Size": "49 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 504,
            "Quantity": 9693,
            "Discount": 44
        },
        {
            "Category": "Components",
            "Size": "68 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 778,
            "Quantity": 3778,
            "Discount": 97
        },
        {
            "Category": "Components",
            "Size": "320 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 51,
            "Quantity": 8972,
            "Discount": 60
        },
        {
            "Category": "Components",
            "Size": "175 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 675,
            "Quantity": 9852,
            "Discount": 48
        },
        {
            "Category": "Components",
            "Size": "344 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 428,
            "Quantity": 5002,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "91 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 330,
            "Quantity": 2568,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "38 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 785,
            "Quantity": 3211,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "94 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 243,
            "Quantity": 7902,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "55 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 331,
            "Quantity": 299,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "273 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 768,
            "Quantity": 1347,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "143 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 319,
            "Quantity": 2080,
            "Discount": 38
        },
        {
            "Category": "Components",
            "Size": "261 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 401,
            "Quantity": 598,
            "Discount": 90
        },
        {
            "Category": "Components",
            "Size": "329 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 576,
            "Quantity": 412,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "273 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 950,
            "Quantity": 2507,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "206 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 381,
            "Quantity": 1925,
            "Discount": 35
        },
        {
            "Category": "Components",
            "Size": "347 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 79,
            "Quantity": 4682,
            "Discount": 45
        },
        {
            "Category": "Components",
            "Size": "124 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 357,
            "Quantity": 583,
            "Discount": 9
        },
        {
            "Category": "Components",
            "Size": "117 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 309,
            "Quantity": 9357,
            "Discount": 52
        },
        {
            "Category": "Components",
            "Size": "44 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 83,
            "Quantity": 9559,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "172 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 77,
            "Quantity": 7107,
            "Discount": 39
        },
        {
            "Category": "Components",
            "Size": "176 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 152,
            "Quantity": 7686,
            "Discount": 38
        },
        {
            "Category": "Components",
            "Size": "322 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 46,
            "Quantity": 9908,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "222 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 104,
            "Quantity": 1092,
            "Discount": 49
        },
        {
            "Category": "Components",
            "Size": "194 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 86,
            "Quantity": 2975,
            "Discount": 87
        },
        {
            "Category": "Components",
            "Size": "215 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 743,
            "Quantity": 8945,
            "Discount": 40
        },
        {
            "Category": "Components",
            "Size": "146 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 666,
            "Quantity": 6199,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "272 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 376,
            "Quantity": 9751,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "101 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 391,
            "Quantity": 4799,
            "Discount": 51
        },
        {
            "Category": "Components",
            "Size": "130 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 636,
            "Quantity": 650,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "188 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 656,
            "Quantity": 5629,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "76 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 229,
            "Quantity": 7565,
            "Discount": 87
        },
        {
            "Category": "Components",
            "Size": "141 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 413,
            "Quantity": 6320,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "350 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 802,
            "Quantity": 5251,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "81 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 337,
            "Quantity": 1825,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "349 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 631,
            "Quantity": 1818,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "182 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 482,
            "Quantity": 2118,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "276 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 717,
            "Quantity": 124,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "77 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 405,
            "Quantity": 980,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "228 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 108,
            "Quantity": 6474,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "49 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 190,
            "Quantity": 3303,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "187 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 328,
            "Quantity": 9574,
            "Discount": 94
        },
        {
            "Category": "Components",
            "Size": "322 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 841,
            "Quantity": 4661,
            "Discount": 44
        },
        {
            "Category": "Components",
            "Size": "69 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 847,
            "Quantity": 4541,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "194 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 843,
            "Quantity": 6201,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "238 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 958,
            "Quantity": 1885,
            "Discount": 81
        },
        {
            "Category": "Components",
            "Size": "241 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 496,
            "Quantity": 2066,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "4 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 504,
            "Quantity": 7668,
            "Discount": 98
        },
        {
            "Category": "Components",
            "Size": "135 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 40,
            "Quantity": 8296,
            "Discount": 14
        },
        {
            "Category": "Components",
            "Size": "162 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 777,
            "Quantity": 6754,
            "Discount": 88
        },
        {
            "Category": "Components",
            "Size": "244 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 457,
            "Quantity": 5011,
            "Discount": 86
        },
        {
            "Category": "Components",
            "Size": "322 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 532,
            "Quantity": 3745,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "110 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 260,
            "Quantity": 8153,
            "Discount": 87
        },
        {
            "Category": "Components",
            "Size": "196 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 329,
            "Quantity": 8625,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "234 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 364,
            "Quantity": 762,
            "Discount": 88
        },
        {
            "Category": "Components",
            "Size": "26 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 961,
            "Quantity": 5083,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "256 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 740,
            "Quantity": 6461,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "263 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 393,
            "Quantity": 5756,
            "Discount": 26
        },
        {
            "Category": "Components",
            "Size": "269 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 499,
            "Quantity": 2359,
            "Discount": 11
        },
        {
            "Category": "Components",
            "Size": "324 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 412,
            "Quantity": 4512,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "15 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 797,
            "Quantity": 4892,
            "Discount": 31
        },
        {
            "Category": "Components",
            "Size": "306 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 730,
            "Quantity": 7342,
            "Discount": 72
        },
        {
            "Category": "Components",
            "Size": "91 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 578,
            "Quantity": 6783,
            "Discount": 48
        },
        {
            "Category": "Components",
            "Size": "58 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 718,
            "Quantity": 8154,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "59 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 807,
            "Quantity": 2875,
            "Discount": 11
        },
        {
            "Category": "Components",
            "Size": "306 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 598,
            "Quantity": 4782,
            "Discount": 31
        },
        {
            "Category": "Components",
            "Size": "132 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 412,
            "Quantity": 440,
            "Discount": 24
        },
        {
            "Category": "Components",
            "Size": "147 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 407,
            "Quantity": 9706,
            "Discount": 32
        },
        {
            "Category": "Components",
            "Size": "231 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 480,
            "Quantity": 3599,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "304 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 755,
            "Quantity": 7251,
            "Discount": 92
        },
        {
            "Category": "Components",
            "Size": "76 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 96,
            "Quantity": 8862,
            "Discount": 33
        },
        {
            "Category": "Cars",
            "Size": "4 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 28832,
            "Quantity": 20,
            "Discount": 30
        },
        {
            "Category": "Cars",
            "Size": "245 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 25115,
            "Quantity": 38,
            "Discount": 5
        },
        {
            "Category": "Cars",
            "Size": "33 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 44932,
            "Quantity": 17,
            "Discount": 70
        },
        {
            "Category": "Cars",
            "Size": "54 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 54071,
            "Quantity": 11,
            "Discount": 61
        },
        {
            "Category": "Cars",
            "Size": "35 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 59030,
            "Quantity": 49,
            "Discount": 55
        },
        {
            "Category": "Cars",
            "Size": "114 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 46757,
            "Quantity": 40,
            "Discount": 12
        },
        {
            "Category": "Cars",
            "Size": "97 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 43134,
            "Quantity": 32,
            "Discount": 41
        },
        {
            "Category": "Cars",
            "Size": "308 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 9403,
            "Quantity": 23,
            "Discount": 95
        },
        {
            "Category": "Cars",
            "Size": "168 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 20437,
            "Quantity": 10,
            "Discount": 49
        },
        {
            "Category": "Cars",
            "Size": "79 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 7726,
            "Quantity": 38,
            "Discount": 27
        },
        {
            "Category": "Cars",
            "Size": "50 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 36101,
            "Quantity": 17,
            "Discount": 83
        },
        {
            "Category": "Cars",
            "Size": "34 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 2280,
            "Quantity": 24,
            "Discount": 69
        },
        {
            "Category": "Cars",
            "Size": "112 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 36395,
            "Quantity": 33,
            "Discount": 30
        },
        {
            "Category": "Cars",
            "Size": "136 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 38544,
            "Quantity": 7,
            "Discount": 85
        },
        {
            "Category": "Cars",
            "Size": "293 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 51754,
            "Quantity": 9,
            "Discount": 13
        },
        {
            "Category": "Cars",
            "Size": "62 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 35354,
            "Quantity": 1,
            "Discount": 95
        },
        {
            "Category": "Cars",
            "Size": "171 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 51742,
            "Quantity": 34,
            "Discount": 39
        },
        {
            "Category": "Cars",
            "Size": "8 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 15310,
            "Quantity": 38,
            "Discount": 49
        },
        {
            "Category": "Cars",
            "Size": "159 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 4550,
            "Quantity": 16,
            "Discount": 54
        },
        {
            "Category": "Cars",
            "Size": "121 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 18582,
            "Quantity": 58,
            "Discount": 59
        },
        {
            "Category": "Cars",
            "Size": "18 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 47120,
            "Quantity": 42,
            "Discount": 100
        },
        {
            "Category": "Cars",
            "Size": "276 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 15100,
            "Quantity": 36,
            "Discount": 53
        },
        {
            "Category": "Cars",
            "Size": "52 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 6606,
            "Quantity": 37,
            "Discount": 55
        },
        {
            "Category": "Cars",
            "Size": "295 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 10684,
            "Quantity": 43,
            "Discount": 65
        },
        {
            "Category": "Cars",
            "Size": "106 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 20976,
            "Quantity": 55,
            "Discount": 33
        },
        {
            "Category": "Cars",
            "Size": "144 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 34487,
            "Quantity": 40,
            "Discount": 60
        },
        {
            "Category": "Cars",
            "Size": "284 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 33428,
            "Quantity": 52,
            "Discount": 91
        },
        {
            "Category": "Cars",
            "Size": "108 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 23236,
            "Quantity": 45,
            "Discount": 86
        },
        {
            "Category": "Cars",
            "Size": "62 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 8303,
            "Quantity": 10,
            "Discount": 91
        },
        {
            "Category": "Cars",
            "Size": "120 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 38552,
            "Quantity": 15,
            "Discount": 6
        },
        {
            "Category": "Cars",
            "Size": "156 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 9718,
            "Quantity": 18,
            "Discount": 76
        },
        {
            "Category": "Cars",
            "Size": "261 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 39460,
            "Quantity": 5,
            "Discount": 39
        },
        {
            "Category": "Cars",
            "Size": "339 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 22319,
            "Quantity": 58,
            "Discount": 83
        },
        {
            "Category": "Cars",
            "Size": "339 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 37048,
            "Quantity": 49,
            "Discount": 59
        },
        {
            "Category": "Cars",
            "Size": "325 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 36241,
            "Quantity": 59,
            "Discount": 43
        },
        {
            "Category": "Cars",
            "Size": "322 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 13270,
            "Quantity": 42,
            "Discount": 31
        },
        {
            "Category": "Cars",
            "Size": "326 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 9065,
            "Quantity": 2,
            "Discount": 57
        },
        {
            "Category": "Cars",
            "Size": "67 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 7560,
            "Quantity": 28,
            "Discount": 9
        },
        {
            "Category": "Cars",
            "Size": "48 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 32950,
            "Quantity": 35,
            "Discount": 14
        },
        {
            "Category": "Cars",
            "Size": "181 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 47837,
            "Quantity": 16,
            "Discount": 35
        },
        {
            "Category": "Cars",
            "Size": "211 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 15195,
            "Quantity": 19,
            "Discount": 24
        },
        {
            "Category": "Cars",
            "Size": "192 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 34759,
            "Quantity": 37,
            "Discount": 64
        },
        {
            "Category": "Cars",
            "Size": "256 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 21195,
            "Quantity": 1,
            "Discount": 30
        },
        {
            "Category": "Cars",
            "Size": "48 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 623,
            "Quantity": 55,
            "Discount": 19
        },
        {
            "Category": "Cars",
            "Size": "348 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 27052,
            "Quantity": 41,
            "Discount": 91
        },
        {
            "Category": "Cars",
            "Size": "158 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 37983,
            "Quantity": 58,
            "Discount": 74
        },
        {
            "Category": "Cars",
            "Size": "277 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 22172,
            "Quantity": 1,
            "Discount": 44
        },
        {
            "Category": "Cars",
            "Size": "257 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 21879,
            "Quantity": 36,
            "Discount": 10
        },
        {
            "Category": "Cars",
            "Size": "115 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 40065,
            "Quantity": 45,
            "Discount": 0
        },
        {
            "Category": "Cars",
            "Size": "338 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 10116,
            "Quantity": 52,
            "Discount": 42
        },
        {
            "Category": "Cars",
            "Size": "87 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 43266,
            "Quantity": 30,
            "Discount": 91
        },
        {
            "Category": "Cars",
            "Size": "287 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 56999,
            "Quantity": 58,
            "Discount": 58
        },
        {
            "Category": "Cars",
            "Size": "240 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 31754,
            "Quantity": 55,
            "Discount": 79
        },
        {
            "Category": "Cars",
            "Size": "219 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 29428,
            "Quantity": 42,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "75 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 999,
            "Quantity": 6023,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "247 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 168,
            "Quantity": 1863,
            "Discount": 75
        },
        {
            "Category": "Components",
            "Size": "97 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 892,
            "Quantity": 3917,
            "Discount": 96
        },
        {
            "Category": "Components",
            "Size": "297 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 418,
            "Quantity": 3832,
            "Discount": 50
        },
        {
            "Category": "Components",
            "Size": "350 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 459,
            "Quantity": 9624,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "201 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 757,
            "Quantity": 1642,
            "Discount": 66
        },
        {
            "Category": "Components",
            "Size": "89 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 225,
            "Quantity": 2104,
            "Discount": 0
        },
        {
            "Category": "Components",
            "Size": "4 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 890,
            "Quantity": 1531,
            "Discount": 84
        },
        {
            "Category": "Components",
            "Size": "279 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 662,
            "Quantity": 1698,
            "Discount": 61
        },
        {
            "Category": "Components",
            "Size": "22 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 505,
            "Quantity": 1213,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "238 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 996,
            "Quantity": 6706,
            "Discount": 70
        },
        {
            "Category": "Components",
            "Size": "308 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 245,
            "Quantity": 2272,
            "Discount": 21
        },
        {
            "Category": "Components",
            "Size": "346 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 388,
            "Quantity": 2326,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "19 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 632,
            "Quantity": 3212,
            "Discount": 95
        },
        {
            "Category": "Components",
            "Size": "107 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 576,
            "Quantity": 4015,
            "Discount": 64
        },
        {
            "Category": "Components",
            "Size": "170 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 783,
            "Quantity": 9245,
            "Discount": 25
        },
        {
            "Category": "Components",
            "Size": "173 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 30,
            "Quantity": 846,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "92 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 102,
            "Quantity": 2788,
            "Discount": 13
        },
        {
            "Category": "Components",
            "Size": "60 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 611,
            "Quantity": 5158,
            "Discount": 4
        },
        {
            "Category": "Components",
            "Size": "225 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 241,
            "Quantity": 2085,
            "Discount": 21
        },
        {
            "Category": "Components",
            "Size": "282 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 490,
            "Quantity": 7373,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "315 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 646,
            "Quantity": 4248,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "62 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 55,
            "Quantity": 5314,
            "Discount": 39
        },
        {
            "Category": "Components",
            "Size": "235 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 33,
            "Quantity": 1713,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "127 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 473,
            "Quantity": 6585,
            "Discount": 49
        },
        {
            "Category": "Components",
            "Size": "328 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 322,
            "Quantity": 1877,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "271 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 235,
            "Quantity": 6409,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "324 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 683,
            "Quantity": 9767,
            "Discount": 17
        },
        {
            "Category": "Components",
            "Size": "43 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 657,
            "Quantity": 1580,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "160 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 774,
            "Quantity": 4956,
            "Discount": 2
        },
        {
            "Category": "Components",
            "Size": "63 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 595,
            "Quantity": 2661,
            "Discount": 99
        },
        {
            "Category": "Components",
            "Size": "163 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 564,
            "Quantity": 9512,
            "Discount": 25
        },
        {
            "Category": "Components",
            "Size": "182 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 365,
            "Quantity": 5654,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "18 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 273,
            "Quantity": 1169,
            "Discount": 23
        },
        {
            "Category": "Components",
            "Size": "297 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 462,
            "Quantity": 8007,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "121 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 635,
            "Quantity": 6827,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "208 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 53,
            "Quantity": 3817,
            "Discount": 22
        },
        {
            "Category": "Components",
            "Size": "71 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 362,
            "Quantity": 4733,
            "Discount": 40
        },
        {
            "Category": "Cars",
            "Size": "194 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 8684,
            "Quantity": 39,
            "Discount": 100
        },
        {
            "Category": "Cars",
            "Size": "145 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 19963,
            "Quantity": 56,
            "Discount": 34
        },
        {
            "Category": "Cars",
            "Size": "115 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 19938,
            "Quantity": 47,
            "Discount": 33
        },
        {
            "Category": "Cars",
            "Size": "33 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 6088,
            "Quantity": 58,
            "Discount": 76
        },
        {
            "Category": "Cars",
            "Size": "42 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 25832,
            "Quantity": 3,
            "Discount": 94
        },
        {
            "Category": "Cars",
            "Size": "252 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 25706,
            "Quantity": 15,
            "Discount": 98
        },
        {
            "Category": "Cars",
            "Size": "221 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 36145,
            "Quantity": 58,
            "Discount": 97
        },
        {
            "Category": "Cars",
            "Size": "91 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 46466,
            "Quantity": 52,
            "Discount": 22
        },
        {
            "Category": "Cars",
            "Size": "106 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 16873,
            "Quantity": 47,
            "Discount": 38
        },
        {
            "Category": "Cars",
            "Size": "124 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 1586,
            "Quantity": 3,
            "Discount": 68
        },
        {
            "Category": "Cars",
            "Size": "71 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 8947,
            "Quantity": 44,
            "Discount": 72
        },
        {
            "Category": "Cars",
            "Size": "314 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 43687,
            "Quantity": 46,
            "Discount": 46
        },
        {
            "Category": "Cars",
            "Size": "329 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 25947,
            "Quantity": 36,
            "Discount": 17
        },
        {
            "Category": "Cars",
            "Size": "255 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 23972,
            "Quantity": 36,
            "Discount": 49
        },
        {
            "Category": "Cars",
            "Size": "241 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 5717,
            "Quantity": 23,
            "Discount": 96
        },
        {
            "Category": "Cars",
            "Size": "188 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 39056,
            "Quantity": 7,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "307 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 660,
            "Quantity": 5623,
            "Discount": 83
        },
        {
            "Category": "Components",
            "Size": "185 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 176,
            "Quantity": 1401,
            "Discount": 35
        },
        {
            "Category": "Components",
            "Size": "108 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 994,
            "Quantity": 9882,
            "Discount": 1
        },
        {
            "Category": "Components",
            "Size": "249 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 962,
            "Quantity": 3258,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "145 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 483,
            "Quantity": 6517,
            "Discount": 86
        },
        {
            "Category": "Components",
            "Size": "58 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 146,
            "Quantity": 9510,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "340 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 270,
            "Quantity": 182,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "300 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 215,
            "Quantity": 5292,
            "Discount": 23
        },
        {
            "Category": "Components",
            "Size": "349 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 859,
            "Quantity": 6227,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "240 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 703,
            "Quantity": 539,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "285 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 172,
            "Quantity": 1409,
            "Discount": 67
        },
        {
            "Category": "Components",
            "Size": "169 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 776,
            "Quantity": 4987,
            "Discount": 4
        },
        {
            "Category": "Components",
            "Size": "79 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 195,
            "Quantity": 1834,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "220 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 562,
            "Quantity": 7903,
            "Discount": 0
        },
        {
            "Category": "Components",
            "Size": "178 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 469,
            "Quantity": 8694,
            "Discount": 8
        },
        {
            "Category": "Components",
            "Size": "194 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 318,
            "Quantity": 3636,
            "Discount": 68
        },
        {
            "Category": "Components",
            "Size": "15 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 941,
            "Quantity": 750,
            "Discount": 25
        },
        {
            "Category": "Components",
            "Size": "147 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 220,
            "Quantity": 8586,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "115 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 58,
            "Quantity": 8024,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "136 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 48,
            "Quantity": 8552,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "198 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 700,
            "Quantity": 3292,
            "Discount": 80
        },
        {
            "Category": "Components",
            "Size": "84 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 594,
            "Quantity": 4517,
            "Discount": 17
        },
        {
            "Category": "Components",
            "Size": "236 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 61,
            "Quantity": 6171,
            "Discount": 31
        },
        {
            "Category": "Components",
            "Size": "311 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 560,
            "Quantity": 4815,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "129 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 958,
            "Quantity": 4967,
            "Discount": 23
        },
        {
            "Category": "Components",
            "Size": "234 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 206,
            "Quantity": 7635,
            "Discount": 47
        },
        {
            "Category": "Components",
            "Size": "238 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 40,
            "Quantity": 2057,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "317 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 208,
            "Quantity": 7764,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "139 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 917,
            "Quantity": 4945,
            "Discount": 54
        },
        {
            "Category": "Components",
            "Size": "60 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 226,
            "Quantity": 7058,
            "Discount": 82
        },
        {
            "Category": "Components",
            "Size": "162 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 995,
            "Quantity": 6785,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "137 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 14,
            "Quantity": 5222,
            "Discount": 15
        },
        {
            "Category": "Components",
            "Size": "88 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 347,
            "Quantity": 9027,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "81 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 306,
            "Quantity": 917,
            "Discount": 84
        },
        {
            "Category": "Components",
            "Size": "287 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 308,
            "Quantity": 3216,
            "Discount": 52
        },
        {
            "Category": "Components",
            "Size": "177 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 194,
            "Quantity": 1274,
            "Discount": 88
        },
        {
            "Category": "Components",
            "Size": "136 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 746,
            "Quantity": 8268,
            "Discount": 46
        },
        {
            "Category": "Components",
            "Size": "178 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 137,
            "Quantity": 6245,
            "Discount": 79
        },
        {
            "Category": "Cars",
            "Size": "206 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 17741,
            "Quantity": 58,
            "Discount": 42
        },
        {
            "Category": "Cars",
            "Size": "293 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 15501,
            "Quantity": 13,
            "Discount": 14
        },
        {
            "Category": "Cars",
            "Size": "293 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 57051,
            "Quantity": 8,
            "Discount": 84
        },
        {
            "Category": "Cars",
            "Size": "271 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 10713,
            "Quantity": 16,
            "Discount": 33
        },
        {
            "Category": "Cars",
            "Size": "68 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 30166,
            "Quantity": 59,
            "Discount": 7
        },
        {
            "Category": "Cars",
            "Size": "53 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 54286,
            "Quantity": 36,
            "Discount": 22
        },
        {
            "Category": "Cars",
            "Size": "200 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 6095,
            "Quantity": 10,
            "Discount": 88
        },
        {
            "Category": "Cars",
            "Size": "332 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 11624,
            "Quantity": 43,
            "Discount": 47
        },
        {
            "Category": "Cars",
            "Size": "30 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 12866,
            "Quantity": 60,
            "Discount": 27
        },
        {
            "Category": "Cars",
            "Size": "15 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 26637,
            "Quantity": 20,
            "Discount": 34
        },
        {
            "Category": "Cars",
            "Size": "340 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 14959,
            "Quantity": 41,
            "Discount": 14
        },
        {
            "Category": "Cars",
            "Size": "125 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 30873,
            "Quantity": 15,
            "Discount": 78
        },
        {
            "Category": "Cars",
            "Size": "121 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 59783,
            "Quantity": 13,
            "Discount": 66
        },
        {
            "Category": "Cars",
            "Size": "321 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 57039,
            "Quantity": 27,
            "Discount": 14
        },
        {
            "Category": "Cars",
            "Size": "167 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 33260,
            "Quantity": 39,
            "Discount": 44
        },
        {
            "Category": "Cars",
            "Size": "110 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 3745,
            "Quantity": 22,
            "Discount": 68
        },
        {
            "Category": "Components",
            "Size": "308 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 258,
            "Quantity": 7979,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "334 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 878,
            "Quantity": 5115,
            "Discount": 30
        },
        {
            "Category": "Components",
            "Size": "124 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 534,
            "Quantity": 8651,
            "Discount": 90
        },
        {
            "Category": "Components",
            "Size": "48 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 716,
            "Quantity": 7552,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "206 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 693,
            "Quantity": 8414,
            "Discount": 91
        },
        {
            "Category": "Components",
            "Size": "78 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 753,
            "Quantity": 6339,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "350 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 356,
            "Quantity": 1761,
            "Discount": 2
        },
        {
            "Category": "Components",
            "Size": "52 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 124,
            "Quantity": 4673,
            "Discount": 36
        },
        {
            "Category": "Components",
            "Size": "134 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 602,
            "Quantity": 4038,
            "Discount": 41
        },
        {
            "Category": "Components",
            "Size": "224 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 662,
            "Quantity": 3496,
            "Discount": 93
        },
        {
            "Category": "Components",
            "Size": "157 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 110,
            "Quantity": 587,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "328 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 520,
            "Quantity": 8535,
            "Discount": 84
        },
        {
            "Category": "Components",
            "Size": "328 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 177,
            "Quantity": 1208,
            "Discount": 11
        },
        {
            "Category": "Components",
            "Size": "113 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 428,
            "Quantity": 7126,
            "Discount": 62
        },
        {
            "Category": "Components",
            "Size": "307 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 264,
            "Quantity": 7877,
            "Discount": 13
        },
        {
            "Category": "Components",
            "Size": "123 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 395,
            "Quantity": 1086,
            "Discount": 90
        },
        {
            "Category": "Components",
            "Size": "253 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 485,
            "Quantity": 9746,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "28 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 925,
            "Quantity": 1416,
            "Discount": 45
        },
        {
            "Category": "Components",
            "Size": "2 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 189,
            "Quantity": 3088,
            "Discount": 3
        },
        {
            "Category": "Components",
            "Size": "312 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 459,
            "Quantity": 8394,
            "Discount": 41
        },
        {
            "Category": "Components",
            "Size": "202 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 745,
            "Quantity": 9252,
            "Discount": 57
        },
        {
            "Category": "Components",
            "Size": "27 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 493,
            "Quantity": 6918,
            "Discount": 4
        },
        {
            "Category": "Components",
            "Size": "312 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 376,
            "Quantity": 9196,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "75 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 332,
            "Quantity": 5130,
            "Discount": 9
        },
        {
            "Category": "Components",
            "Size": "251 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 777,
            "Quantity": 6356,
            "Discount": 58
        },
        {
            "Category": "Components",
            "Size": "139 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 919,
            "Quantity": 3621,
            "Discount": 85
        },
        {
            "Category": "Components",
            "Size": "97 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 536,
            "Quantity": 214,
            "Discount": 58
        },
        {
            "Category": "Components",
            "Size": "155 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 152,
            "Quantity": 9581,
            "Discount": 98
        },
        {
            "Category": "Components",
            "Size": "29 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 666,
            "Quantity": 2549,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "250 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 336,
            "Quantity": 7845,
            "Discount": 11
        },
        {
            "Category": "Components",
            "Size": "111 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 305,
            "Quantity": 5163,
            "Discount": 12
        },
        {
            "Category": "Components",
            "Size": "84 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 738,
            "Quantity": 8963,
            "Discount": 59
        },
        {
            "Category": "Components",
            "Size": "268 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 687,
            "Quantity": 1763,
            "Discount": 64
        },
        {
            "Category": "Components",
            "Size": "160 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 686,
            "Quantity": 9857,
            "Discount": 52
        },
        {
            "Category": "Components",
            "Size": "257 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 671,
            "Quantity": 2035,
            "Discount": 55
        },
        {
            "Category": "Components",
            "Size": "58 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 136,
            "Quantity": 5437,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "24 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 701,
            "Quantity": 1860,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "237 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 32,
            "Quantity": 2471,
            "Discount": 76
        },
        {
            "Category": "Cars",
            "Size": "257 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 56947,
            "Quantity": 49,
            "Discount": 90
        },
        {
            "Category": "Cars",
            "Size": "147 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 55342,
            "Quantity": 53,
            "Discount": 56
        },
        {
            "Category": "Cars",
            "Size": "100 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 22784,
            "Quantity": 36,
            "Discount": 12
        },
        {
            "Category": "Cars",
            "Size": "128 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 19722,
            "Quantity": 38,
            "Discount": 6
        },
        {
            "Category": "Cars",
            "Size": "90 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 6743,
            "Quantity": 28,
            "Discount": 49
        },
        {
            "Category": "Cars",
            "Size": "257 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 18673,
            "Quantity": 2,
            "Discount": 38
        },
        {
            "Category": "Cars",
            "Size": "274 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 49650,
            "Quantity": 17,
            "Discount": 24
        },
        {
            "Category": "Cars",
            "Size": "328 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 53599,
            "Quantity": 59,
            "Discount": 97
        },
        {
            "Category": "Cars",
            "Size": "112 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 36460,
            "Quantity": 58,
            "Discount": 100
        },
        {
            "Category": "Cars",
            "Size": "61 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 57571,
            "Quantity": 37,
            "Discount": 56
        },
        {
            "Category": "Cars",
            "Size": "323 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 47317,
            "Quantity": 45,
            "Discount": 83
        },
        {
            "Category": "Cars",
            "Size": "158 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 12166,
            "Quantity": 19,
            "Discount": 30
        },
        {
            "Category": "Cars",
            "Size": "175 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 2560,
            "Quantity": 18,
            "Discount": 72
        },
        {
            "Category": "Cars",
            "Size": "124 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 19974,
            "Quantity": 36,
            "Discount": 11
        },
        {
            "Category": "Cars",
            "Size": "172 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 59455,
            "Quantity": 4,
            "Discount": 12
        },
        {
            "Category": "Cars",
            "Size": "307 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 4684,
            "Quantity": 11,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "17 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 347,
            "Quantity": 8680,
            "Discount": 39
        },
        {
            "Category": "Components",
            "Size": "181 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 611,
            "Quantity": 6518,
            "Discount": 24
        },
        {
            "Category": "Components",
            "Size": "41 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 411,
            "Quantity": 8165,
            "Discount": 77
        },
        {
            "Category": "Components",
            "Size": "203 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 34,
            "Quantity": 5412,
            "Discount": 53
        },
        {
            "Category": "Components",
            "Size": "89 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 677,
            "Quantity": 1707,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "197 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 760,
            "Quantity": 2492,
            "Discount": 81
        },
        {
            "Category": "Components",
            "Size": "79 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 336,
            "Quantity": 758,
            "Discount": 22
        },
        {
            "Category": "Components",
            "Size": "170 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 395,
            "Quantity": 4268,
            "Discount": 12
        },
        {
            "Category": "Components",
            "Size": "286 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 34,
            "Quantity": 6125,
            "Discount": 51
        },
        {
            "Category": "Components",
            "Size": "16 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 659,
            "Quantity": 393,
            "Discount": 66
        },
        {
            "Category": "Components",
            "Size": "72 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 165,
            "Quantity": 9383,
            "Discount": 22
        },
        {
            "Category": "Components",
            "Size": "102 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 836,
            "Quantity": 9514,
            "Discount": 19
        },
        {
            "Category": "Components",
            "Size": "7 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 625,
            "Quantity": 6753,
            "Discount": 3
        },
        {
            "Category": "Components",
            "Size": "173 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 86,
            "Quantity": 8137,
            "Discount": 92
        },
        {
            "Category": "Components",
            "Size": "229 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 153,
            "Quantity": 6080,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "306 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 269,
            "Quantity": 4198,
            "Discount": 97
        },
        {
            "Category": "Components",
            "Size": "130 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 519,
            "Quantity": 4722,
            "Discount": 42
        },
        {
            "Category": "Components",
            "Size": "67 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 925,
            "Quantity": 5287,
            "Discount": 73
        },
        {
            "Category": "Components",
            "Size": "190 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 741,
            "Quantity": 3804,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "325 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 928,
            "Quantity": 283,
            "Discount": 26
        },
        {
            "Category": "Components",
            "Size": "302 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 686,
            "Quantity": 6027,
            "Discount": 64
        },
        {
            "Category": "Components",
            "Size": "12 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 628,
            "Quantity": 9886,
            "Discount": 78
        },
        {
            "Category": "Components",
            "Size": "336 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 16,
            "Quantity": 9439,
            "Discount": 60
        },
        {
            "Category": "Components",
            "Size": "63 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 105,
            "Quantity": 4911,
            "Discount": 74
        },
        {
            "Category": "Components",
            "Size": "166 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 636,
            "Quantity": 9372,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "312 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 416,
            "Quantity": 1643,
            "Discount": 38
        },
        {
            "Category": "Components",
            "Size": "233 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 447,
            "Quantity": 6737,
            "Discount": 7
        },
        {
            "Category": "Components",
            "Size": "171 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 76,
            "Quantity": 1419,
            "Discount": 28
        },
        {
            "Category": "Components",
            "Size": "312 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 706,
            "Quantity": 1646,
            "Discount": 76
        },
        {
            "Category": "Components",
            "Size": "60 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 205,
            "Quantity": 5725,
            "Discount": 41
        },
        {
            "Category": "Components",
            "Size": "43 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 139,
            "Quantity": 3667,
            "Discount": 23
        },
        {
            "Category": "Components",
            "Size": "283 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 244,
            "Quantity": 9637,
            "Discount": 34
        },
        {
            "Category": "Components",
            "Size": "274 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 355,
            "Quantity": 6069,
            "Discount": 18
        },
        {
            "Category": "Components",
            "Size": "127 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 956,
            "Quantity": 7240,
            "Discount": 21
        },
        {
            "Category": "Components",
            "Size": "253 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 519,
            "Quantity": 3130,
            "Discount": 69
        },
        {
            "Category": "Components",
            "Size": "64 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 16,
            "Quantity": 1339,
            "Discount": 56
        },
        {
            "Category": "Components",
            "Size": "69 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 864,
            "Quantity": 5127,
            "Discount": 89
        },
        {
            "Category": "Components",
            "Size": "7 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 579,
            "Quantity": 5947,
            "Discount": 26
        },
        {
            "Category": "Cars",
            "Size": "146 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 43924,
            "Quantity": 23,
            "Discount": 40
        },
        {
            "Category": "Cars",
            "Size": "84 oz",
            "Color": "white",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 41952,
            "Quantity": 43,
            "Discount": 36
        },
        {
            "Category": "Cars",
            "Size": "131 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 5826,
            "Quantity": 31,
            "Discount": 11
        },
        {
            "Category": "Cars",
            "Size": "190 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 59747,
            "Quantity": 59,
            "Discount": 57
        },
        {
            "Category": "Cars",
            "Size": "248 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 24784,
            "Quantity": 23,
            "Discount": 86
        },
        {
            "Category": "Cars",
            "Size": "73 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 16775,
            "Quantity": 19,
            "Discount": 52
        },
        {
            "Category": "Cars",
            "Size": "343 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 42975,
            "Quantity": 26,
            "Discount": 62
        },
        {
            "Category": "Cars",
            "Size": "346 oz",
            "Color": "green",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 25316,
            "Quantity": 28,
            "Discount": 38
        },
        {
            "Category": "Cars",
            "Size": "30 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 21044,
            "Quantity": 28,
            "Discount": 66
        },
        {
            "Category": "Cars",
            "Size": "252 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 2083,
            "Quantity": 14,
            "Discount": 52
        },
        {
            "Category": "Cars",
            "Size": "199 oz",
            "Color": "white",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 25789,
            "Quantity": 21,
            "Discount": 55
        },
        {
            "Category": "Cars",
            "Size": "105 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 16806,
            "Quantity": 24,
            "Discount": 32
        },
        {
            "Category": "Cars",
            "Size": "201 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 10818,
            "Quantity": 26,
            "Discount": 22
        },
        {
            "Category": "Cars",
            "Size": "345 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 46741,
            "Quantity": 54,
            "Discount": 68
        },
        {
            "Category": "Cars",
            "Size": "3 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 51389,
            "Quantity": 45,
            "Discount": 29
        },
        {
            "Category": "Cars",
            "Size": "297 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 34215,
            "Quantity": 43,
            "Discount": 7
        },
        {
            "Category": "Accessories",
            "Size": "127 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 174,
            "Quantity": 854,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "317 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 502,
            "Quantity": 227,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "194 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 242,
            "Quantity": 121,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "310 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 102,
            "Quantity": 289,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "11 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 126,
            "Quantity": 48,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "163 oz",
            "Color": "yellow",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 1246,
            "Quantity": 944,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "169 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 680,
            "Quantity": 639,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "152 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 1241,
            "Quantity": 892,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "332 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 150,
            "Quantity": 953,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "333 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 244,
            "Quantity": 791,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "295 oz",
            "Color": "yellow",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 501,
            "Quantity": 20,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "284 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 4960,
            "Quantity": 336,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "339 oz",
            "Color": "yellow",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 9,
            "Quantity": 121,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "343 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 3655,
            "Quantity": 812,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "326 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 1654,
            "Quantity": 663,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "139 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 1190,
            "Quantity": 108,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "193 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 1222,
            "Quantity": 459,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "186 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 7941,
            "Quantity": 386,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "114 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 2038,
            "Quantity": 94,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "238 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 3271,
            "Quantity": 20,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "98 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 1706,
            "Quantity": 77,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "345 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 3297,
            "Quantity": 65,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "15 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 518,
            "Quantity": 98,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "197 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 2047,
            "Quantity": 59,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "267 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 5582,
            "Quantity": 65,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "185 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 4235,
            "Quantity": 56,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "156 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 9127,
            "Quantity": 21,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "40 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 4297,
            "Quantity": 12,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "304 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 7214,
            "Quantity": 58,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "149 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 8641,
            "Quantity": 73,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "181 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 7833,
            "Quantity": 20,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "118 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 6627,
            "Quantity": 89,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "130 oz",
            "Color": "purple",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 9979,
            "Quantity": 61,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "53 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 2751,
            "Quantity": 39,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "91 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 1167,
            "Quantity": 51,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "261 oz",
            "Color": "blue",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 8236,
            "Quantity": 16,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "91 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 62,
            "Quantity": 4061,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "338 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 512,
            "Quantity": 3852,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "41 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 861,
            "Quantity": 8426,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "18 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 454,
            "Quantity": 821,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "167 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 44,
            "Quantity": 3402,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "143 oz",
            "Color": "purple",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 698,
            "Quantity": 2570,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "18 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 838,
            "Quantity": 6220,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "76 oz",
            "Color": "purple",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 708,
            "Quantity": 3030,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "127 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 486,
            "Quantity": 8539,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "164 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 160,
            "Quantity": 8231,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "185 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 403,
            "Quantity": 4240,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "271 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 259,
            "Quantity": 8317,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "76 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 373,
            "Quantity": 9660,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "60 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 781,
            "Quantity": 6787,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "26 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 839,
            "Quantity": 8285,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "180 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 102,
            "Quantity": 5120,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "34 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 837,
            "Quantity": 6726,
            "Discount": ""
        },
        {
            "Category": "Clothing",
            "Size": "128 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 385,
            "Quantity": 7670,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "16 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 356,
            "Quantity": 3141,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "216 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 829,
            "Quantity": 6800,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "219 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 842,
            "Quantity": 9285,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "343 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 740,
            "Quantity": 3246,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "212 oz",
            "Color": "blue",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 822,
            "Quantity": 5027,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "74 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 785,
            "Quantity": 4653,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "168 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 250,
            "Quantity": 3974,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "36 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 414,
            "Quantity": 1668,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "286 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 253,
            "Quantity": 741,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "303 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 730,
            "Quantity": 4650,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "231 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 430,
            "Quantity": 4001,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "70 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 678,
            "Quantity": 1938,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "6 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 363,
            "Quantity": 6459,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "14 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 735,
            "Quantity": 352,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "109 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 766,
            "Quantity": 6306,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "169 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 113,
            "Quantity": 6532,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "42 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 22,
            "Quantity": 5766,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "233 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 797,
            "Quantity": 6738,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "318 oz",
            "Color": "blue",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 26,
            "Quantity": 4829,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "55 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 515,
            "Quantity": 971,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "118 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 959,
            "Quantity": 9815,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "64 oz",
            "Color": "white",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 72,
            "Quantity": 8940,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "72 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 204,
            "Quantity": 2766,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "205 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 838,
            "Quantity": 4115,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "78 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 705,
            "Quantity": 5804,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "78 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 369,
            "Quantity": 2138,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "317 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 804,
            "Quantity": 964,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "259 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 35,
            "Quantity": 2548,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "251 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 700,
            "Quantity": 3288,
            "Discount": ""
        },
        {
            "Category": "Components",
            "Size": "141 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 108,
            "Quantity": 2821,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "121 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 174,
            "Quantity": 459,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "278 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 502,
            "Quantity": 662,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "67 oz",
            "Color": "white",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 242,
            "Quantity": 856,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "345 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 102,
            "Quantity": 828,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "149 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 126,
            "Quantity": 385,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "196 oz",
            "Color": "yellow",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 1246,
            "Quantity": 721,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "225 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 680,
            "Quantity": 386,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "107 oz",
            "Color": "yellow",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 1241,
            "Quantity": 920,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "170 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 150,
            "Quantity": 335,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "140 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 244,
            "Quantity": 365,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "336 oz",
            "Color": "yellow",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 501,
            "Quantity": 248,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "343 oz",
            "Color": "red",
            "Destination": "United States",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 4960,
            "Quantity": 762,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "228 oz",
            "Color": "yellow",
            "Destination": "Australia",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 9,
            "Quantity": 487,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "65 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 3655,
            "Quantity": 522,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "321 oz",
            "Color": "green",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 1654,
            "Quantity": 108,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "142 oz",
            "Color": "yellow",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 1190,
            "Quantity": 219,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "344 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "United Kingdom",
            "Price": 1222,
            "Quantity": 419,
            "Discount": ""
        },
        {
            "Category": "Accessories",
            "Size": "29 oz",
            "Color": "white",
            "Destination": "United States",
            "Business Type": "Warehouse",
            "Country": "United States",
            "Price": 7941,
            "Quantity": 60,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "283 oz",
            "Color": "white",
            "Destination": "Australia",
            "Business Type": "Specialty Bike Shop",
            "Country": "Australia",
            "Price": 6152,
            "Quantity": 64,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "81 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Specialty Bike Shop",
            "Country": "Canada",
            "Price": 7623,
            "Quantity": 44,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "219 oz",
            "Color": "red",
            "Destination": "France",
            "Business Type": "Specialty Bike Shop",
            "Country": "France",
            "Price": 3971,
            "Quantity": 17,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "238 oz",
            "Color": "green",
            "Destination": "Germany",
            "Business Type": "Specialty Bike Shop",
            "Country": "Germany",
            "Price": 3591,
            "Quantity": 11,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "286 oz",
            "Color": "green",
            "Destination": "United Kingdom",
            "Business Type": "Specialty Bike Shop",
            "Country": "United Kingdom",
            "Price": 2564,
            "Quantity": 61,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "333 oz",
            "Color": "green",
            "Destination": "United States",
            "Business Type": "Specialty Bike Shop",
            "Country": "United States",
            "Price": 5165,
            "Quantity": 13,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "242 oz",
            "Color": "green",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "Australia",
            "Price": 2344,
            "Quantity": 56,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "67 oz",
            "Color": "red",
            "Destination": "Canada",
            "Business Type": "Value Added Reseller",
            "Country": "Canada",
            "Price": 3864,
            "Quantity": 24,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "40 oz",
            "Color": "yellow",
            "Destination": "France",
            "Business Type": "Value Added Reseller",
            "Country": "France",
            "Price": 9845,
            "Quantity": 23,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "201 oz",
            "Color": "red",
            "Destination": "Germany",
            "Business Type": "Value Added Reseller",
            "Country": "Germany",
            "Price": 4822,
            "Quantity": 27,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "1 oz",
            "Color": "blue",
            "Destination": "United Kingdom",
            "Business Type": "Value Added Reseller",
            "Country": "United Kingdom",
            "Price": 3857,
            "Quantity": 98,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "141 oz",
            "Color": "red",
            "Destination": "Australia",
            "Business Type": "Value Added Reseller",
            "Country": "United States",
            "Price": 2360,
            "Quantity": 55,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "182 oz",
            "Color": "blue",
            "Destination": "Canada",
            "Business Type": "Warehouse",
            "Country": "Australia",
            "Price": 8499,
            "Quantity": 62,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "294 oz",
            "Color": "blue",
            "Destination": "France",
            "Business Type": "Warehouse",
            "Country": "Canada",
            "Price": 4516,
            "Quantity": 38,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "158 oz",
            "Color": "purple",
            "Destination": "Germany",
            "Business Type": "Warehouse",
            "Country": "France",
            "Price": 5239,
            "Quantity": 39,
            "Discount": ""
        },
        {
            "Category": "Bikes",
            "Size": "243 oz",
            "Color": "red",
            "Destination": "United Kingdom",
            "Business Type": "Warehouse",
            "Country": "Germany",
            "Price": 9633,
            "Quantity": 19,
            "Discount": ""
        }
    ]
}

External CSS

  1. https://cdn.webdatarocks.com/demo.css

External JavaScript

This Pen doesn't use any external JavaScript resources.