<!DOCTYPE html>
<html>

  <head>
    <meta charset="utf-8" />
    <title>AngularJS Plunker</title>
    <link data-require="bootstrap-css@3.3.6" data-semver="3.3.6" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css" />
    <script data-require="angular.js@<2" data-semver="1.5.0" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
    <script data-require="ui-router@1.0.0alpha0" data-semver="1.0.0alpha0" src="//cdn.rawgit.com/angular-ui/ui-router/1.0.0alpha0/release/angular-ui-router.js"></script>
    <script data-require="jquery@*" data-semver="2.2.0" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
    <script data-require="bootstrap@3.3.6" data-semver="3.3.6" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <script data-require="angular-animate@1.4.1" data-semver="1.4.1" src="https://code.angularjs.org/1.4.1/angular-animate.js"></script>
    <script>document.write('<base href="' + document.location + '" />');</script>
    <link rel="stylesheet" href="style.css" />
    <script src="ProductApp.js"></script>
    <script src="ProductControllers.js"></script>
    <script src="ProductServices.js"></script>
  </head>

  <body ng-app="ProductApp">
    <div ui-view=""></div>
  </body>

</html>
/* Put your css in here */

label {
  min-width: 230px;
}

.fold-animation {
  overflow: hidden;
}

.parentTD {
  border: 3px solid red;
  overflow: hidden;
}
angular.module('ProductApp', [
    'ProductControllers',
    'ProductServices',
    'ngAnimate',
    'ui.router'
  ])
  .animation('.fold-animation', [
    '$animateCss', function ($animateCss) {
        return {
            enter: function (element, doneFn) {
                var height = element[0].offsetHeight;
                return $animateCss(element, {
                    from: { height: '0px' },
                    to: { height: height + 'px' },
                    duration: 0.5 // one second
                }).start().finally(function () {
                    element[0].style.height = '';
                    doneFn();
                });
            },
            leave: function (element, doneFn) {
                var height = element[0].offsetHeight;
                return $animateCss(element, {
                    from: { height: height + 'px' },
                    to: { height: '0px' },
                    duration: 0.5 // one second
                });
            }
        }
    }
    ])
  .run([
    '$rootScope', '$state', '$stateParams',
    function($rootScope, $state, $stateParams) {
      $rootScope.$state = $state;
      $rootScope.$stateParams = $stateParams;
    }
  ])
  .config([
    '$stateProvider',
    '$urlRouterProvider',
    function($stateProvider, $urlRouterProvider) {
      $urlRouterProvider.otherwise('/List');

      $stateProvider
        .state('prod', {
          url: '/List',
          templateUrl: 'List.htm',
          resolve: {
            resolvedProdList: [
              '$stateParams', 'prodService',
              function($stateParams, prodService) {
                return prodService.getProductsList();
                //return prodService.getProductsListComplete();
              }
            ]
          },
          controller: 'prodCtrl'
        });
    }
  ]);
var piControllers = angular.module('ProductControllers', []);

piControllers
    .controller('prodCtrl', [
        '$scope', '$rootScope', '$state', 'resolvedProdList', 'prodService', function ($scope, $rootScope, $state, resolvedProdList, prodService) {
            var currItem = null;

            $rootScope.TabHeading = "Products list";
            $rootScope.TabSubHeading = "";

            $rootScope.Products = resolvedProdList;
        }
    ])
;
angular.module('ProductServices', [])
    .service('prodService', [
        '$q', '$http', '$state', function ($q, $http, $state) {

            this.getProductsList = function () {

                var defer = $q.defer();

                var list = [];

                list.push({ ProductID: 680, Name: 'HL Road Frame - Black, 58', ProductNumber: 'FR-R92B-58', Color: 'Black', StandardCost: 1059.31, ListPrice: 1431.5, Size: '58', Weight: '1016.04', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '35947', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 706, Name: 'HL Road Frame - Red, 58', ProductNumber: 'FR-R92R-58', Color: 'Red', StandardCost: 1059.31, ListPrice: 1431.5, Size: '58', Weight: '1016.04', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '35947', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 707, Name: 'Sport-100 Helmet, Red', ProductNumber: 'HL-U509-R', Color: 'Red', StandardCost: 13.0863, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 35, ProductModelID: '33', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 708, Name: 'Sport-100 Helmet, Black', ProductNumber: 'HL-U509', Color: 'Black', StandardCost: 13.0863, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 35, ProductModelID: '33', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 709, Name: 'Mountain Bike Socks, M', ProductNumber: 'SO-B909-M', Color: 'White', StandardCost: 3.3963, ListPrice: 9.5, Size: 'M', Weight: 'NULL', ProductCategoryID: 27, ProductModelID: '18', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 710, Name: 'Mountain Bike Socks, L', ProductNumber: 'SO-B909-L', Color: 'White', StandardCost: 3.3963, ListPrice: 9.5, Size: 'L', Weight: 'NULL', ProductCategoryID: 27, ProductModelID: '18', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 711, Name: 'Sport-100 Helmet, Blue', ProductNumber: 'HL-U509-B', Color: 'Blue', StandardCost: 13.0863, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 35, ProductModelID: '33', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 712, Name: 'AWC Logo Cap', ProductNumber: 'CA-1098', Color: 'Multi', StandardCost: 6.9223, ListPrice: 8.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 23, ProductModelID: '2', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 713, Name: 'Long-Sleeve Logo Jersey, S', ProductNumber: 'LJ-0192-S', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 714, Name: 'Long-Sleeve Logo Jersey, M', ProductNumber: 'LJ-0192-M', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 715, Name: 'Long-Sleeve Logo Jersey, L', ProductNumber: 'LJ-0192-L', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 716, Name: 'Long-Sleeve Logo Jersey, XL', ProductNumber: 'LJ-0192-X', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'XL', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 717, Name: 'HL Road Frame - Red, 62', ProductNumber: 'FR-R92R-62', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '62', Weight: '1043.26', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 718, Name: 'HL Road Frame - Red, 44', ProductNumber: 'FR-R92R-44', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '44', Weight: '961.61', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 719, Name: 'HL Road Frame - Red, 48', ProductNumber: 'FR-R92R-48', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '48', Weight: '979.75', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 720, Name: 'HL Road Frame - Red, 52', ProductNumber: 'FR-R92R-52', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '52', Weight: '997.9', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 721, Name: 'HL Road Frame - Red, 56', ProductNumber: 'FR-R92R-56', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '56', Weight: '1016.04', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 722, Name: 'LL Road Frame - Black, 58', ProductNumber: 'FR-R38B-58', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '58', Weight: '1115.83', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 723, Name: 'LL Road Frame - Black, 60', ProductNumber: 'FR-R38B-60', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '60', Weight: '1124.9', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 724, Name: 'LL Road Frame - Black, 62', ProductNumber: 'FR-R38B-62', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '62', Weight: '1133.98', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 725, Name: 'LL Road Frame - Red, 44', ProductNumber: 'FR-R38R-44', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '44', Weight: '1052.33', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 726, Name: 'LL Road Frame - Red, 48', ProductNumber: 'FR-R38R-48', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '48', Weight: '1070.47', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 727, Name: 'LL Road Frame - Red, 52', ProductNumber: 'FR-R38R-52', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '52', Weight: '1088.62', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 728, Name: 'LL Road Frame - Red, 58', ProductNumber: 'FR-R38R-58', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '58', Weight: '1115.83', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });

                defer.resolve(list);

                return defer.promise;

            };

            this.getProductsListComplete = function () {

                var defer = $q.defer();

                var list = [];

                list.push({ ProductID: 680, Name: 'HL Road Frame - Black, 58', ProductNumber: 'FR-R92B-58', Color: 'Black', StandardCost: 1059.31, ListPrice: 1431.5, Size: '58', Weight: '1016.04', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '35947', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 706, Name: 'HL Road Frame - Red, 58', ProductNumber: 'FR-R92R-58', Color: 'Red', StandardCost: 1059.31, ListPrice: 1431.5, Size: '58', Weight: '1016.04', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '35947', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 707, Name: 'Sport-100 Helmet, Red', ProductNumber: 'HL-U509-R', Color: 'Red', StandardCost: 13.0863, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 35, ProductModelID: '33', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 708, Name: 'Sport-100 Helmet, Black', ProductNumber: 'HL-U509', Color: 'Black', StandardCost: 13.0863, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 35, ProductModelID: '33', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 709, Name: 'Mountain Bike Socks, M', ProductNumber: 'SO-B909-M', Color: 'White', StandardCost: 3.3963, ListPrice: 9.5, Size: 'M', Weight: 'NULL', ProductCategoryID: 27, ProductModelID: '18', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 710, Name: 'Mountain Bike Socks, L', ProductNumber: 'SO-B909-L', Color: 'White', StandardCost: 3.3963, ListPrice: 9.5, Size: 'L', Weight: 'NULL', ProductCategoryID: 27, ProductModelID: '18', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 711, Name: 'Sport-100 Helmet, Blue', ProductNumber: 'HL-U509-B', Color: 'Blue', StandardCost: 13.0863, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 35, ProductModelID: '33', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 712, Name: 'AWC Logo Cap', ProductNumber: 'CA-1098', Color: 'Multi', StandardCost: 6.9223, ListPrice: 8.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 23, ProductModelID: '2', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 713, Name: 'Long-Sleeve Logo Jersey, S', ProductNumber: 'LJ-0192-S', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 714, Name: 'Long-Sleeve Logo Jersey, M', ProductNumber: 'LJ-0192-M', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 715, Name: 'Long-Sleeve Logo Jersey, L', ProductNumber: 'LJ-0192-L', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 716, Name: 'Long-Sleeve Logo Jersey, XL', ProductNumber: 'LJ-0192-X', Color: 'Multi', StandardCost: 38.4923, ListPrice: 49.99, Size: 'XL', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '11', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 717, Name: 'HL Road Frame - Red, 62', ProductNumber: 'FR-R92R-62', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '62', Weight: '1043.26', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 718, Name: 'HL Road Frame - Red, 44', ProductNumber: 'FR-R92R-44', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '44', Weight: '961.61', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 719, Name: 'HL Road Frame - Red, 48', ProductNumber: 'FR-R92R-48', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '48', Weight: '979.75', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 720, Name: 'HL Road Frame - Red, 52', ProductNumber: 'FR-R92R-52', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '52', Weight: '997.9', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 721, Name: 'HL Road Frame - Red, 56', ProductNumber: 'FR-R92R-56', Color: 'Red', StandardCost: 868.6342, ListPrice: 1431.5, Size: '56', Weight: '1016.04', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 722, Name: 'LL Road Frame - Black, 58', ProductNumber: 'FR-R38B-58', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '58', Weight: '1115.83', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 723, Name: 'LL Road Frame - Black, 60', ProductNumber: 'FR-R38B-60', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '60', Weight: '1124.9', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 724, Name: 'LL Road Frame - Black, 62', ProductNumber: 'FR-R38B-62', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '62', Weight: '1133.98', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 725, Name: 'LL Road Frame - Red, 44', ProductNumber: 'FR-R38R-44', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '44', Weight: '1052.33', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 726, Name: 'LL Road Frame - Red, 48', ProductNumber: 'FR-R38R-48', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '48', Weight: '1070.47', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 727, Name: 'LL Road Frame - Red, 52', ProductNumber: 'FR-R38R-52', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '52', Weight: '1088.62', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 728, Name: 'LL Road Frame - Red, 58', ProductNumber: 'FR-R38R-58', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '58', Weight: '1115.83', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 729, Name: 'LL Road Frame - Red, 60', ProductNumber: 'FR-R38R-60', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '60', Weight: '1124.9', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 730, Name: 'LL Road Frame - Red, 62', ProductNumber: 'FR-R38R-62', Color: 'Red', StandardCost: 187.1571, ListPrice: 337.22, Size: '62', Weight: '1133.98', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 731, Name: 'ML Road Frame - Red, 44', ProductNumber: 'FR-R72R-44', Color: 'Red', StandardCost: 352.1394, ListPrice: 594.83, Size: '44', Weight: '1006.97', ProductCategoryID: 18, ProductModelID: '16', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 732, Name: 'ML Road Frame - Red, 48', ProductNumber: 'FR-R72R-48', Color: 'Red', StandardCost: 352.1394, ListPrice: 594.83, Size: '48', Weight: '1025.11', ProductCategoryID: 18, ProductModelID: '16', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 733, Name: 'ML Road Frame - Red, 52', ProductNumber: 'FR-R72R-52', Color: 'Red', StandardCost: 352.1394, ListPrice: 594.83, Size: '52', Weight: '1043.26', ProductCategoryID: 18, ProductModelID: '16', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 734, Name: 'ML Road Frame - Red, 58', ProductNumber: 'FR-R72R-58', Color: 'Red', StandardCost: 352.1394, ListPrice: 594.83, Size: '58', Weight: '1070.47', ProductCategoryID: 18, ProductModelID: '16', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 735, Name: 'ML Road Frame - Red, 60', ProductNumber: 'FR-R72R-60', Color: 'Red', StandardCost: 352.1394, ListPrice: 594.83, Size: '60', Weight: '1079.54', ProductCategoryID: 18, ProductModelID: '16', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 736, Name: 'LL Road Frame - Black, 44', ProductNumber: 'FR-R38B-44', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '44', Weight: '1052.33', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 737, Name: 'LL Road Frame - Black, 48', ProductNumber: 'FR-R38B-48', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '48', Weight: '1070.47', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 738, Name: 'LL Road Frame - Black, 52', ProductNumber: 'FR-R38B-52', Color: 'Black', StandardCost: 204.6251, ListPrice: 337.22, Size: '52', Weight: '1088.62', ProductCategoryID: 18, ProductModelID: '9', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 739, Name: 'HL Mountain Frame - Silver, 42', ProductNumber: 'FR-M94S-42', Color: 'Silver', StandardCost: 747.2002, ListPrice: 1364.5, Size: '42', Weight: '1233.76', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 740, Name: 'HL Mountain Frame - Silver, 44', ProductNumber: 'FR-M94S-44', Color: 'Silver', StandardCost: 706.811, ListPrice: 1364.5, Size: '44', Weight: '1251.91', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 741, Name: 'HL Mountain Frame - Silver, 48', ProductNumber: 'FR-M94S-52', Color: 'Silver', StandardCost: 706.811, ListPrice: 1364.5, Size: '48', Weight: '1270.05', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 742, Name: 'HL Mountain Frame - Silver, 46', ProductNumber: 'FR-M94S-46', Color: 'Silver', StandardCost: 747.2002, ListPrice: 1364.5, Size: '46', Weight: '1288.2', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 743, Name: 'HL Mountain Frame - Black, 42', ProductNumber: 'FR-M94B-42', Color: 'Black', StandardCost: 739.041, ListPrice: 1349.6, Size: '42', Weight: '1233.76', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 744, Name: 'HL Mountain Frame - Black, 44', ProductNumber: 'FR-M94B-44', Color: 'Black', StandardCost: 699.0928, ListPrice: 1349.6, Size: '44', Weight: '1251.91', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 745, Name: 'HL Mountain Frame - Black, 48', ProductNumber: 'FR-M94B-48', Color: 'Black', StandardCost: 699.0928, ListPrice: 1349.6, Size: '48', Weight: '1270.05', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 746, Name: 'HL Mountain Frame - Black, 46', ProductNumber: 'FR-M94B-46', Color: 'Black', StandardCost: 739.041, ListPrice: 1349.6, Size: '46', Weight: '1288.2', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 747, Name: 'HL Mountain Frame - Black, 38', ProductNumber: 'FR-M94B-38', Color: 'Black', StandardCost: 739.041, ListPrice: 1349.6, Size: '38', Weight: '1215.62', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 748, Name: 'HL Mountain Frame - Silver, 38', ProductNumber: 'FR-M94S-38', Color: 'Silver', StandardCost: 747.2002, ListPrice: 1364.5, Size: '38', Weight: '1215.62', ProductCategoryID: 16, ProductModelID: '5', SellStartDate: '37073', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 749, Name: 'Road-150 Red, 62', ProductNumber: 'BK-R93R-62', Color: 'Red', StandardCost: 2171.2942, ListPrice: 3578.27, Size: '62', Weight: '6803.85', ProductCategoryID: 6, ProductModelID: '25', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 750, Name: 'Road-150 Red, 44', ProductNumber: 'BK-R93R-44', Color: 'Red', StandardCost: 2171.2942, ListPrice: 3578.27, Size: '44', Weight: '6245.93', ProductCategoryID: 6, ProductModelID: '25', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 751, Name: 'Road-150 Red, 48', ProductNumber: 'BK-R93R-48', Color: 'Red', StandardCost: 2171.2942, ListPrice: 3578.27, Size: '48', Weight: '6409.23', ProductCategoryID: 6, ProductModelID: '25', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 752, Name: 'Road-150 Red, 52', ProductNumber: 'BK-R93R-52', Color: 'Red', StandardCost: 2171.2942, ListPrice: 3578.27, Size: '52', Weight: '6540.77', ProductCategoryID: 6, ProductModelID: '25', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 753, Name: 'Road-150 Red, 56', ProductNumber: 'BK-R93R-56', Color: 'Red', StandardCost: 2171.2942, ListPrice: 3578.27, Size: '56', Weight: '6658.7', ProductCategoryID: 6, ProductModelID: '25', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 754, Name: 'Road-450 Red, 58', ProductNumber: 'BK-R68R-58', Color: 'Red', StandardCost: 884.7083, ListPrice: 1457.99, Size: '58', Weight: '8069.37', ProductCategoryID: 6, ProductModelID: '28', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 755, Name: 'Road-450 Red, 60', ProductNumber: 'BK-R68R-60', Color: 'Red', StandardCost: 884.7083, ListPrice: 1457.99, Size: '60', Weight: '8119.26', ProductCategoryID: 6, ProductModelID: '28', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 756, Name: 'Road-450 Red, 44', ProductNumber: 'BK-R68R-44', Color: 'Red', StandardCost: 884.7083, ListPrice: 1457.99, Size: '44', Weight: '7606.7', ProductCategoryID: 6, ProductModelID: '28', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 757, Name: 'Road-450 Red, 48', ProductNumber: 'BK-R68R-48', Color: 'Red', StandardCost: 884.7083, ListPrice: 1457.99, Size: '48', Weight: '7770', ProductCategoryID: 6, ProductModelID: '28', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 758, Name: 'Road-450 Red, 52', ProductNumber: 'BK-R68R-52', Color: 'Red', StandardCost: 884.7083, ListPrice: 1457.99, Size: '52', Weight: '7901.54', ProductCategoryID: 6, ProductModelID: '28', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 759, Name: 'Road-650 Red, 58', ProductNumber: 'BK-R50R-58', Color: 'Red', StandardCost: 486.7066, ListPrice: 782.99, Size: '58', Weight: '8976.55', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 760, Name: 'Road-650 Red, 60', ProductNumber: 'BK-R50R-60', Color: 'Red', StandardCost: 486.7066, ListPrice: 782.99, Size: '60', Weight: '9026.44', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 761, Name: 'Road-650 Red, 62', ProductNumber: 'BK-R50R-62', Color: 'Red', StandardCost: 486.7066, ListPrice: 782.99, Size: '62', Weight: '9071.8', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 762, Name: 'Road-650 Red, 44', ProductNumber: 'BK-R50R-44', Color: 'Red', StandardCost: 486.7066, ListPrice: 782.99, Size: '44', Weight: '8513.88', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 763, Name: 'Road-650 Red, 48', ProductNumber: 'BK-R50R-48', Color: 'Red', StandardCost: 486.7066, ListPrice: 782.99, Size: '48', Weight: '8677.18', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 764, Name: 'Road-650 Red, 52', ProductNumber: 'BK-R50R-52', Color: 'Red', StandardCost: 486.7066, ListPrice: 782.99, Size: '52', Weight: '8808.72', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 765, Name: 'Road-650 Black, 58', ProductNumber: 'BK-R50B-58', Color: 'Black', StandardCost: 486.7066, ListPrice: 782.99, Size: '58', Weight: '8976.55', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 766, Name: 'Road-650 Black, 60', ProductNumber: 'BK-R50B-60', Color: 'Black', StandardCost: 486.7066, ListPrice: 782.99, Size: '60', Weight: '9026.44', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 767, Name: 'Road-650 Black, 62', ProductNumber: 'BK-R50B-62', Color: 'Black', StandardCost: 486.7066, ListPrice: 782.99, Size: '62', Weight: '9071.8', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 768, Name: 'Road-650 Black, 44', ProductNumber: 'BK-R50B-44', Color: 'Black', StandardCost: 486.7066, ListPrice: 782.99, Size: '44', Weight: '8513.88', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 769, Name: 'Road-650 Black, 48', ProductNumber: 'BK-R50B-48', Color: 'Black', StandardCost: 486.7066, ListPrice: 782.99, Size: '48', Weight: '8677.18', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 770, Name: 'Road-650 Black, 52', ProductNumber: 'BK-R50B-52', Color: 'Black', StandardCost: 486.7066, ListPrice: 782.99, Size: '52', Weight: '8808.72', ProductCategoryID: 6, ProductModelID: '30', SellStartDate: '37073', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 771, Name: 'Mountain-100 Silver, 38', ProductNumber: 'BK-M82S-38', Color: 'Silver', StandardCost: 1912.1544, ListPrice: 3399.99, Size: '38', Weight: '9230.56', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 772, Name: 'Mountain-100 Silver, 42', ProductNumber: 'BK-M82S-42', Color: 'Silver', StandardCost: 1912.1544, ListPrice: 3399.99, Size: '42', Weight: '9421.06', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 773, Name: 'Mountain-100 Silver, 44', ProductNumber: 'BK-M82S-44', Color: 'Silver', StandardCost: 1912.1544, ListPrice: 3399.99, Size: '44', Weight: '9584.36', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 774, Name: 'Mountain-100 Silver, 48', ProductNumber: 'BK-M82S-48', Color: 'Silver', StandardCost: 1912.1544, ListPrice: 3399.99, Size: '48', Weight: '9715.9', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 775, Name: 'Mountain-100 Black, 38', ProductNumber: 'BK-M82B-38', Color: 'Black', StandardCost: 1898.0944, ListPrice: 3374.99, Size: '38', Weight: '9230.56', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 776, Name: 'Mountain-100 Black, 42', ProductNumber: 'BK-M82B-42', Color: 'Black', StandardCost: 1898.0944, ListPrice: 3374.99, Size: '42', Weight: '9421.06', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 777, Name: 'Mountain-100 Black, 44', ProductNumber: 'BK-M82B-44', Color: 'Black', StandardCost: 1898.0944, ListPrice: 3374.99, Size: '44', Weight: '9584.36', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 778, Name: 'Mountain-100 Black, 48', ProductNumber: 'BK-M82B-48', Color: 'Black', StandardCost: 1898.0944, ListPrice: 3374.99, Size: '48', Weight: '9715.9', ProductCategoryID: 5, ProductModelID: '19', SellStartDate: '37073', SellEndDate: '37437', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 779, Name: 'Mountain-200 Silver, 38', ProductNumber: 'BK-M68S-38', Color: 'Silver', StandardCost: 1265.6195, ListPrice: 2319.99, Size: '38', Weight: '10591.33', ProductCategoryID: 5, ProductModelID: '20', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 780, Name: 'Mountain-200 Silver, 42', ProductNumber: 'BK-M68S-42', Color: 'Silver', StandardCost: 1265.6195, ListPrice: 2319.99, Size: '42', Weight: '10781.83', ProductCategoryID: 5, ProductModelID: '20', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 781, Name: 'Mountain-200 Silver, 46', ProductNumber: 'BK-M68S-46', Color: 'Silver', StandardCost: 1265.6195, ListPrice: 2319.99, Size: '46', Weight: '10945.13', ProductCategoryID: 5, ProductModelID: '20', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 782, Name: 'Mountain-200 Black, 38', ProductNumber: 'BK-M68B-38', Color: 'Black', StandardCost: 1251.9813, ListPrice: 2294.99, Size: '38', Weight: '10591.33', ProductCategoryID: 5, ProductModelID: '20', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 783, Name: 'Mountain-200 Black, 42', ProductNumber: 'BK-M68B-42', Color: 'Black', StandardCost: 1251.9813, ListPrice: 2294.99, Size: '42', Weight: '10781.83', ProductCategoryID: 5, ProductModelID: '20', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 784, Name: 'Mountain-200 Black, 46', ProductNumber: 'BK-M68B-46', Color: 'Black', StandardCost: 1251.9813, ListPrice: 2294.99, Size: '46', Weight: '10945.13', ProductCategoryID: 5, ProductModelID: '20', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 785, Name: 'Mountain-300 Black, 38', ProductNumber: 'BK-M47B-38', Color: 'Black', StandardCost: 598.4354, ListPrice: 1079.99, Size: '38', Weight: '11498.51', ProductCategoryID: 5, ProductModelID: '21', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 786, Name: 'Mountain-300 Black, 40', ProductNumber: 'BK-M47B-40', Color: 'Black', StandardCost: 598.4354, ListPrice: 1079.99, Size: '40', Weight: '11689.01', ProductCategoryID: 5, ProductModelID: '21', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 787, Name: 'Mountain-300 Black, 44', ProductNumber: 'BK-M47B-44', Color: 'Black', StandardCost: 598.4354, ListPrice: 1079.99, Size: '44', Weight: '11852.31', ProductCategoryID: 5, ProductModelID: '21', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 788, Name: 'Mountain-300 Black, 48', ProductNumber: 'BK-M47B-48', Color: 'Black', StandardCost: 598.4354, ListPrice: 1079.99, Size: '48', Weight: '11983.85', ProductCategoryID: 5, ProductModelID: '21', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 789, Name: 'Road-250 Red, 44', ProductNumber: 'BK-R89R-44', Color: 'Red', StandardCost: 1518.7864, ListPrice: 2443.35, Size: '44', Weight: '6699.52', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 790, Name: 'Road-250 Red, 48', ProductNumber: 'BK-R89R-48', Color: 'Red', StandardCost: 1518.7864, ListPrice: 2443.35, Size: '48', Weight: '6862.82', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 791, Name: 'Road-250 Red, 52', ProductNumber: 'BK-R89R-52', Color: 'Red', StandardCost: 1518.7864, ListPrice: 2443.35, Size: '52', Weight: '6994.36', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 792, Name: 'Road-250 Red, 58', ProductNumber: 'BK-R89R-58', Color: 'Red', StandardCost: 1554.9479, ListPrice: 2443.35, Size: '58', Weight: '7162.19', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 793, Name: 'Road-250 Black, 44', ProductNumber: 'BK-R89B-44', Color: 'Black', StandardCost: 1554.9479, ListPrice: 2443.35, Size: '44', Weight: '6699.52', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 794, Name: 'Road-250 Black, 48', ProductNumber: 'BK-R89B-48', Color: 'Black', StandardCost: 1554.9479, ListPrice: 2443.35, Size: '48', Weight: '6862.82', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 795, Name: 'Road-250 Black, 52', ProductNumber: 'BK-R89B-52', Color: 'Black', StandardCost: 1554.9479, ListPrice: 2443.35, Size: '52', Weight: '6994.36', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 796, Name: 'Road-250 Black, 58', ProductNumber: 'BK-R89B-58', Color: 'Black', StandardCost: 1554.9479, ListPrice: 2443.35, Size: '58', Weight: '7112.29', ProductCategoryID: 6, ProductModelID: '26', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 797, Name: 'Road-550-W Yellow, 38', ProductNumber: 'BK-R64Y-38', Color: 'Yellow', StandardCost: 713.0798, ListPrice: 1120.49, Size: '38', Weight: '7869.79', ProductCategoryID: 6, ProductModelID: '29', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 798, Name: 'Road-550-W Yellow, 40', ProductNumber: 'BK-R64Y-40', Color: 'Yellow', StandardCost: 713.0798, ListPrice: 1120.49, Size: '40', Weight: '8060.29', ProductCategoryID: 6, ProductModelID: '29', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 799, Name: 'Road-550-W Yellow, 42', ProductNumber: 'BK-R64Y-42', Color: 'Yellow', StandardCost: 713.0798, ListPrice: 1120.49, Size: '42', Weight: '8223.59', ProductCategoryID: 6, ProductModelID: '29', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 800, Name: 'Road-550-W Yellow, 44', ProductNumber: 'BK-R64Y-44', Color: 'Yellow', StandardCost: 713.0798, ListPrice: 1120.49, Size: '44', Weight: '8355.13', ProductCategoryID: 6, ProductModelID: '29', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 801, Name: 'Road-550-W Yellow, 48', ProductNumber: 'BK-R64Y-48', Color: 'Yellow', StandardCost: 713.0798, ListPrice: 1120.49, Size: '48', Weight: '8473.06', ProductCategoryID: 6, ProductModelID: '29', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 802, Name: 'LL Fork', ProductNumber: 'FK-1639', Color: 'NULL', StandardCost: 65.8097, ListPrice: 148.22, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 14, ProductModelID: '104', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 803, Name: 'ML Fork', ProductNumber: 'FK-5136', Color: 'NULL', StandardCost: 77.9176, ListPrice: 175.49, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 14, ProductModelID: '105', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 804, Name: 'HL Fork', ProductNumber: 'FK-9939', Color: 'NULL', StandardCost: 101.8936, ListPrice: 229.49, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 14, ProductModelID: '106', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 805, Name: 'LL Headset', ProductNumber: 'HS-0296', Color: 'NULL', StandardCost: 15.1848, ListPrice: 34.2, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 15, ProductModelID: '59', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 806, Name: 'ML Headset', ProductNumber: 'HS-2451', Color: 'NULL', StandardCost: 45.4168, ListPrice: 102.29, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 15, ProductModelID: '60', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 807, Name: 'HL Headset', ProductNumber: 'HS-3479', Color: 'NULL', StandardCost: 55.3801, ListPrice: 124.73, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 15, ProductModelID: '61', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 808, Name: 'LL Mountain Handlebars', ProductNumber: 'HB-M243', Color: 'NULL', StandardCost: 19.7758, ListPrice: 44.54, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '52', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 809, Name: 'ML Mountain Handlebars', ProductNumber: 'HB-M763', Color: 'NULL', StandardCost: 27.4925, ListPrice: 61.92, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '54', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 810, Name: 'HL Mountain Handlebars', ProductNumber: 'HB-M918', Color: 'NULL', StandardCost: 53.3999, ListPrice: 120.27, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '55', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 811, Name: 'LL Road Handlebars', ProductNumber: 'HB-R504', Color: 'NULL', StandardCost: 19.7758, ListPrice: 44.54, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '56', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 812, Name: 'ML Road Handlebars', ProductNumber: 'HB-R720', Color: 'NULL', StandardCost: 27.4925, ListPrice: 61.92, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '57', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 813, Name: 'HL Road Handlebars', ProductNumber: 'HB-R956', Color: 'NULL', StandardCost: 53.3999, ListPrice: 120.27, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '58', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 814, Name: 'ML Mountain Frame - Black, 38', ProductNumber: 'FR-M63B-38', Color: 'Black', StandardCost: 185.8193, ListPrice: 348.76, Size: '38', Weight: '1238.3', ProductCategoryID: 16, ProductModelID: '15', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 815, Name: 'LL Mountain Front Wheel', ProductNumber: 'FW-M423', Color: 'Black', StandardCost: 26.9708, ListPrice: 60.745, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '42', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 816, Name: 'ML Mountain Front Wheel', ProductNumber: 'FW-M762', Color: 'Black', StandardCost: 92.8071, ListPrice: 209.025, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '45', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 817, Name: 'HL Mountain Front Wheel', ProductNumber: 'FW-M928', Color: 'Black', StandardCost: 133.2955, ListPrice: 300.215, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '46', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 818, Name: 'LL Road Front Wheel', ProductNumber: 'FW-R623', Color: 'Black', StandardCost: 37.9909, ListPrice: 85.565, Size: 'NULL', Weight: '900', ProductCategoryID: 21, ProductModelID: '49', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 819, Name: 'ML Road Front Wheel', ProductNumber: 'FW-R762', Color: 'Black', StandardCost: 110.2829, ListPrice: 248.385, Size: 'NULL', Weight: '850', ProductCategoryID: 21, ProductModelID: '50', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 820, Name: 'HL Road Front Wheel', ProductNumber: 'FW-R820', Color: 'Black', StandardCost: 146.5466, ListPrice: 330.06, Size: 'NULL', Weight: '650', ProductCategoryID: 21, ProductModelID: '51', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 821, Name: 'Touring Front Wheel', ProductNumber: 'FW-T905', Color: 'Black', StandardCost: 96.7964, ListPrice: 218.01, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '44', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 822, Name: 'ML Road Frame-W - Yellow, 38', ProductNumber: 'FR-R72Y-38', Color: 'Yellow', StandardCost: 360.9428, ListPrice: 594.83, Size: '38', Weight: '988.83', ProductCategoryID: 18, ProductModelID: '17', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 823, Name: 'LL Mountain Rear Wheel', ProductNumber: 'RW-M423', Color: 'Black', StandardCost: 38.9588, ListPrice: 87.745, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '123', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 824, Name: 'ML Mountain Rear Wheel', ProductNumber: 'RW-M762', Color: 'Black', StandardCost: 104.7951, ListPrice: 236.025, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '124', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 825, Name: 'HL Mountain Rear Wheel', ProductNumber: 'RW-M928', Color: 'Black', StandardCost: 145.2835, ListPrice: 327.215, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '125', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 826, Name: 'LL Road Rear Wheel', ProductNumber: 'RW-R623', Color: 'Black', StandardCost: 49.9789, ListPrice: 112.565, Size: 'NULL', Weight: '1050', ProductCategoryID: 21, ProductModelID: '126', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 827, Name: 'ML Road Rear Wheel', ProductNumber: 'RW-R762', Color: 'Black', StandardCost: 122.2709, ListPrice: 275.385, Size: 'NULL', Weight: '1000', ProductCategoryID: 21, ProductModelID: '77', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 828, Name: 'HL Road Rear Wheel', ProductNumber: 'RW-R820', Color: 'Black', StandardCost: 158.5346, ListPrice: 357.06, Size: 'NULL', Weight: '890', ProductCategoryID: 21, ProductModelID: '78', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 829, Name: 'Touring Rear Wheel', ProductNumber: 'RW-T905', Color: 'Black', StandardCost: 108.7844, ListPrice: 245.01, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 21, ProductModelID: '43', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 830, Name: 'ML Mountain Frame - Black, 40', ProductNumber: 'FR-M63B-40', Color: 'Black', StandardCost: 185.8193, ListPrice: 348.76, Size: '40', Weight: '1256.44', ProductCategoryID: 16, ProductModelID: '14', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 831, Name: 'ML Mountain Frame - Black, 44', ProductNumber: 'FR-M63B-44', Color: 'Black', StandardCost: 185.8193, ListPrice: 348.76, Size: '44', Weight: '1274.59', ProductCategoryID: 16, ProductModelID: '14', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 832, Name: 'ML Mountain Frame - Black, 48', ProductNumber: 'FR-M63B-48', Color: 'Black', StandardCost: 185.8193, ListPrice: 348.76, Size: '48', Weight: '1292.73', ProductCategoryID: 16, ProductModelID: '14', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 833, Name: 'ML Road Frame-W - Yellow, 40', ProductNumber: 'FR-R72Y-40', Color: 'Yellow', StandardCost: 360.9428, ListPrice: 594.83, Size: '40', Weight: '1006.97', ProductCategoryID: 18, ProductModelID: '17', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 834, Name: 'ML Road Frame-W - Yellow, 42', ProductNumber: 'FR-R72Y-42', Color: 'Yellow', StandardCost: 360.9428, ListPrice: 594.83, Size: '42', Weight: '1025.11', ProductCategoryID: 18, ProductModelID: '17', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 835, Name: 'ML Road Frame-W - Yellow, 44', ProductNumber: 'FR-R72Y-44', Color: 'Yellow', StandardCost: 360.9428, ListPrice: 594.83, Size: '44', Weight: '1043.26', ProductCategoryID: 18, ProductModelID: '17', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 836, Name: 'ML Road Frame-W - Yellow, 48', ProductNumber: 'FR-R72Y-48', Color: 'Yellow', StandardCost: 360.9428, ListPrice: 594.83, Size: '48', Weight: '1061.4', ProductCategoryID: 18, ProductModelID: '17', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 837, Name: 'HL Road Frame - Black, 62', ProductNumber: 'FR-R92B-62', Color: 'Black', StandardCost: 868.6342, ListPrice: 1431.5, Size: '62', Weight: '1043.26', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 838, Name: 'HL Road Frame - Black, 44', ProductNumber: 'FR-R92B-44', Color: 'Black', StandardCost: 868.6342, ListPrice: 1431.5, Size: '44', Weight: '961.61', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 839, Name: 'HL Road Frame - Black, 48', ProductNumber: 'FR-R92B-48', Color: 'Black', StandardCost: 868.6342, ListPrice: 1431.5, Size: '48', Weight: '979.75', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 840, Name: 'HL Road Frame - Black, 52', ProductNumber: 'FR-R92B-52', Color: 'Black', StandardCost: 868.6342, ListPrice: 1431.5, Size: '52', Weight: '997.9', ProductCategoryID: 18, ProductModelID: '6', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 841, Name: 'Mens Sports Shorts, S', ProductNumber: 'SH-M897-S', Color: 'Black', StandardCost: 24.7459, ListPrice: 59.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '13', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 842, Name: 'Touring-Panniers, Large', ProductNumber: 'PA-T100', Color: 'Grey', StandardCost: 51.5625, ListPrice: 125, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 39, ProductModelID: '120', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 843, Name: 'Cable Lock', ProductNumber: 'LO-C100', Color: 'NULL', StandardCost: 10.3125, ListPrice: 25, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 38, ProductModelID: '115', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 844, Name: 'Minipump', ProductNumber: 'PU-0452', Color: 'NULL', StandardCost: 8.2459, ListPrice: 19.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 40, ProductModelID: '116', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 845, Name: 'Mountain Pump', ProductNumber: 'PU-M044', Color: 'NULL', StandardCost: 10.3084, ListPrice: 24.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 40, ProductModelID: '117', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 846, Name: 'Taillights - Battery-Powered', ProductNumber: 'LT-T990', Color: 'NULL', StandardCost: 5.7709, ListPrice: 13.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 37, ProductModelID: '108', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 847, Name: 'Headlights - Dual-Beam', ProductNumber: 'LT-H902', Color: 'NULL', StandardCost: 14.4334, ListPrice: 34.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 37, ProductModelID: '109', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 848, Name: 'Headlights - Weatherproof', ProductNumber: 'LT-H903', Color: 'NULL', StandardCost: 18.5584, ListPrice: 44.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 37, ProductModelID: '110', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 849, Name: 'Mens Sports Shorts, M', ProductNumber: 'SH-M897-M', Color: 'Black', StandardCost: 24.7459, ListPrice: 59.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '13', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 850, Name: 'Mens Sports Shorts, L', ProductNumber: 'SH-M897-L', Color: 'Black', StandardCost: 24.7459, ListPrice: 59.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '13', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 851, Name: 'Mens Sports Shorts, XL', ProductNumber: 'SH-M897-X', Color: 'Black', StandardCost: 24.7459, ListPrice: 59.99, Size: 'XL', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '13', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 852, Name: 'Womens Tights, S', ProductNumber: 'TG-W091-S', Color: 'Black', StandardCost: 30.9334, ListPrice: 74.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 28, ProductModelID: '38', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 853, Name: 'Womens Tights, M', ProductNumber: 'TG-W091-M', Color: 'Black', StandardCost: 30.9334, ListPrice: 74.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 28, ProductModelID: '38', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 854, Name: 'Womens Tights, L', ProductNumber: 'TG-W091-L', Color: 'Black', StandardCost: 30.9334, ListPrice: 74.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 28, ProductModelID: '38', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 855, Name: 'Mens Bib-Shorts, S', ProductNumber: 'SB-M891-S', Color: 'Multi', StandardCost: 37.1209, ListPrice: 89.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 22, ProductModelID: '12', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 856, Name: 'Mens Bib-Shorts, M', ProductNumber: 'SB-M891-M', Color: 'Multi', StandardCost: 37.1209, ListPrice: 89.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 22, ProductModelID: '12', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 857, Name: 'Mens Bib-Shorts, L', ProductNumber: 'SB-M891-L', Color: 'Multi', StandardCost: 37.1209, ListPrice: 89.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 22, ProductModelID: '12', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 858, Name: 'Half-Finger Gloves, S', ProductNumber: 'GL-H102-S', Color: 'Black', StandardCost: 9.1593, ListPrice: 24.49, Size: 'S', Weight: 'NULL', ProductCategoryID: 24, ProductModelID: '4', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 859, Name: 'Half-Finger Gloves, M', ProductNumber: 'GL-H102-M', Color: 'Black', StandardCost: 9.1593, ListPrice: 24.49, Size: 'M', Weight: 'NULL', ProductCategoryID: 24, ProductModelID: '4', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 860, Name: 'Half-Finger Gloves, L', ProductNumber: 'GL-H102-L', Color: 'Black', StandardCost: 9.1593, ListPrice: 24.49, Size: 'L', Weight: 'NULL', ProductCategoryID: 24, ProductModelID: '4', SellStartDate: '37438', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 861, Name: 'Full-Finger Gloves, S', ProductNumber: 'GL-F110-S', Color: 'Black', StandardCost: 15.6709, ListPrice: 37.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 24, ProductModelID: '3', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 862, Name: 'Full-Finger Gloves, M', ProductNumber: 'GL-F110-M', Color: 'Black', StandardCost: 15.6709, ListPrice: 37.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 24, ProductModelID: '3', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 863, Name: 'Full-Finger Gloves, L', ProductNumber: 'GL-F110-L', Color: 'Black', StandardCost: 15.6709, ListPrice: 37.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 24, ProductModelID: '3', SellStartDate: '37438', SellEndDate: '37802', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 864, Name: 'Classic Vest, S', ProductNumber: 'VE-C304-S', Color: 'Blue', StandardCost: 23.749, ListPrice: 63.5, Size: 'S', Weight: 'NULL', ProductCategoryID: 29, ProductModelID: '1', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 865, Name: 'Classic Vest, M', ProductNumber: 'VE-C304-M', Color: 'Blue', StandardCost: 23.749, ListPrice: 63.5, Size: 'M', Weight: 'NULL', ProductCategoryID: 29, ProductModelID: '1', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 866, Name: 'Classic Vest, L', ProductNumber: 'VE-C304-L', Color: 'Blue', StandardCost: 23.749, ListPrice: 63.5, Size: 'L', Weight: 'NULL', ProductCategoryID: 29, ProductModelID: '1', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 867, Name: 'Womens Mountain Shorts, S', ProductNumber: 'SH-W890-S', Color: 'Black', StandardCost: 26.1763, ListPrice: 69.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '37', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 868, Name: 'Womens Mountain Shorts, M', ProductNumber: 'SH-W890-M', Color: 'Black', StandardCost: 26.1763, ListPrice: 69.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '37', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 869, Name: 'Womens Mountain Shorts, L', ProductNumber: 'SH-W890-L', Color: 'Black', StandardCost: 26.1763, ListPrice: 69.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 26, ProductModelID: '37', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 870, Name: 'Water Bottle - 30 oz.', ProductNumber: 'WB-H098', Color: 'NULL', StandardCost: 1.8663, ListPrice: 4.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 32, ProductModelID: '111', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 871, Name: 'Mountain Bottle Cage', ProductNumber: 'BC-M005', Color: 'NULL', StandardCost: 3.7363, ListPrice: 9.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 32, ProductModelID: '112', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 872, Name: 'Road Bottle Cage', ProductNumber: 'BC-R205', Color: 'NULL', StandardCost: 3.3623, ListPrice: 8.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 32, ProductModelID: '113', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 873, Name: 'Patch Kit/8 Patches', ProductNumber: 'PK-7098', Color: 'NULL', StandardCost: 0.8565, ListPrice: 2.29, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '114', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 874, Name: 'Racing Socks, M', ProductNumber: 'SO-R809-M', Color: 'White', StandardCost: 3.3623, ListPrice: 8.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 27, ProductModelID: '24', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 875, Name: 'Racing Socks, L', ProductNumber: 'SO-R809-L', Color: 'White', StandardCost: 3.3623, ListPrice: 8.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 27, ProductModelID: '24', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 876, Name: 'Hitch Rack - 4-Bike', ProductNumber: 'RA-H123', Color: 'NULL', StandardCost: 44.88, ListPrice: 120, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 30, ProductModelID: '118', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 877, Name: 'Bike Wash - Dissolver', ProductNumber: 'CL-9009', Color: 'NULL', StandardCost: 2.9733, ListPrice: 7.95, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 33, ProductModelID: '119', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 878, Name: 'Fender Set - Mountain', ProductNumber: 'FE-6654', Color: 'NULL', StandardCost: 8.2205, ListPrice: 21.98, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 34, ProductModelID: '121', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 879, Name: 'All-Purpose Bike Stand', ProductNumber: 'ST-1401', Color: 'NULL', StandardCost: 59.466, ListPrice: 159, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 31, ProductModelID: '122', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 880, Name: 'Hydration Pack - 70 oz.', ProductNumber: 'HY-1023-70', Color: 'Silver', StandardCost: 20.5663, ListPrice: 54.99, Size: '70', Weight: 'NULL', ProductCategoryID: 36, ProductModelID: '107', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 881, Name: 'Short-Sleeve Classic Jersey, S', ProductNumber: 'SJ-0194-S', Color: 'Yellow', StandardCost: 41.5723, ListPrice: 53.99, Size: 'S', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '32', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 882, Name: 'Short-Sleeve Classic Jersey, M', ProductNumber: 'SJ-0194-M', Color: 'Yellow', StandardCost: 41.5723, ListPrice: 53.99, Size: 'M', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '32', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 883, Name: 'Short-Sleeve Classic Jersey, L', ProductNumber: 'SJ-0194-L', Color: 'Yellow', StandardCost: 41.5723, ListPrice: 53.99, Size: 'L', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '32', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 884, Name: 'Short-Sleeve Classic Jersey, XL', ProductNumber: 'SJ-0194-X', Color: 'Yellow', StandardCost: 41.5723, ListPrice: 53.99, Size: 'XL', Weight: 'NULL', ProductCategoryID: 25, ProductModelID: '32', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 885, Name: 'HL Touring Frame - Yellow, 60', ProductNumber: 'FR-T98Y-60', Color: 'Yellow', StandardCost: 601.7437, ListPrice: 1003.91, Size: '60', Weight: '1397.06', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 886, Name: 'LL Touring Frame - Yellow, 62', ProductNumber: 'FR-T67Y-62', Color: 'Yellow', StandardCost: 199.8519, ListPrice: 333.42, Size: '62', Weight: '1451.49', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 887, Name: 'HL Touring Frame - Yellow, 46', ProductNumber: 'FR-T98Y-46', Color: 'Yellow', StandardCost: 601.7437, ListPrice: 1003.91, Size: '46', Weight: '1342.63', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 888, Name: 'HL Touring Frame - Yellow, 50', ProductNumber: 'FR-T98Y-50', Color: 'Yellow', StandardCost: 601.7437, ListPrice: 1003.91, Size: '50', Weight: '1360.77', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 889, Name: 'HL Touring Frame - Yellow, 54', ProductNumber: 'FR-T98Y-54', Color: 'Yellow', StandardCost: 601.7437, ListPrice: 1003.91, Size: '54', Weight: '1378.91', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 890, Name: 'HL Touring Frame - Blue, 46', ProductNumber: 'FR-T98U-46', Color: 'Blue', StandardCost: 601.7437, ListPrice: 1003.91, Size: '46', Weight: '1342.63', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 891, Name: 'HL Touring Frame - Blue, 50', ProductNumber: 'FR-T98U-50', Color: 'Blue', StandardCost: 601.7437, ListPrice: 1003.91, Size: '50', Weight: '1360.77', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 892, Name: 'HL Touring Frame - Blue, 54', ProductNumber: 'FR-T98U-54', Color: 'Blue', StandardCost: 601.7437, ListPrice: 1003.91, Size: '54', Weight: '1378.91', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 893, Name: 'HL Touring Frame - Blue, 60', ProductNumber: 'FR-T98U-60', Color: 'Blue', StandardCost: 601.7437, ListPrice: 1003.91, Size: '60', Weight: '1397.06', ProductCategoryID: 20, ProductModelID: '7', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 894, Name: 'Rear Derailleur', ProductNumber: 'RD-2308', Color: 'Silver', StandardCost: 53.9282, ListPrice: 121.46, Size: 'NULL', Weight: '215', ProductCategoryID: 13, ProductModelID: '127', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 895, Name: 'LL Touring Frame - Blue, 50', ProductNumber: 'FR-T67U-50', Color: 'Blue', StandardCost: 199.8519, ListPrice: 333.42, Size: '50', Weight: '1406.13', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 896, Name: 'LL Touring Frame - Blue, 54', ProductNumber: 'FR-T67U-54', Color: 'Blue', StandardCost: 199.8519, ListPrice: 333.42, Size: '54', Weight: '1424.27', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 897, Name: 'LL Touring Frame - Blue, 58', ProductNumber: 'FR-T67U-58', Color: 'Blue', StandardCost: 199.8519, ListPrice: 333.42, Size: '58', Weight: '1433.34', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 898, Name: 'LL Touring Frame - Blue, 62', ProductNumber: 'FR-T67U-62', Color: 'Blue', StandardCost: 199.8519, ListPrice: 333.42, Size: '62', Weight: '1451.49', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 899, Name: 'LL Touring Frame - Yellow, 44', ProductNumber: 'FR-T67Y-44', Color: 'Yellow', StandardCost: 199.8519, ListPrice: 333.42, Size: '44', Weight: '1369.84', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 900, Name: 'LL Touring Frame - Yellow, 50', ProductNumber: 'FR-T67Y-50', Color: 'Yellow', StandardCost: 199.8519, ListPrice: 333.42, Size: '50', Weight: '1406.13', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 901, Name: 'LL Touring Frame - Yellow, 54', ProductNumber: 'FR-T67Y-54', Color: 'Yellow', StandardCost: 199.8519, ListPrice: 333.42, Size: '54', Weight: '1424.27', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 902, Name: 'LL Touring Frame - Yellow, 58', ProductNumber: 'FR-T67Y-58', Color: 'Yellow', StandardCost: 199.8519, ListPrice: 333.42, Size: '58', Weight: '1433.34', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 903, Name: 'LL Touring Frame - Blue, 44', ProductNumber: 'FR-T67U-44', Color: 'Blue', StandardCost: 199.8519, ListPrice: 333.42, Size: '44', Weight: '1369.84', ProductCategoryID: 20, ProductModelID: '10', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 904, Name: 'ML Mountain Frame-W - Silver, 40', ProductNumber: 'FR-M63S-40', Color: 'Silver', StandardCost: 199.3757, ListPrice: 364.09, Size: '40', Weight: '1256.44', ProductCategoryID: 16, ProductModelID: '15', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 905, Name: 'ML Mountain Frame-W - Silver, 42', ProductNumber: 'FR-M63S-42', Color: 'Silver', StandardCost: 199.3757, ListPrice: 364.09, Size: '42', Weight: '1274.59', ProductCategoryID: 16, ProductModelID: '15', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 906, Name: 'ML Mountain Frame-W - Silver, 46', ProductNumber: 'FR-M63S-46', Color: 'Silver', StandardCost: 199.3757, ListPrice: 364.09, Size: '46', Weight: '1292.73', ProductCategoryID: 16, ProductModelID: '15', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 907, Name: 'Rear Brakes', ProductNumber: 'RB-9231', Color: 'Silver', StandardCost: 47.286, ListPrice: 106.5, Size: 'NULL', Weight: '317', ProductCategoryID: 10, ProductModelID: '128', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 908, Name: 'LL Mountain Seat/Saddle', ProductNumber: 'SE-M236', Color: 'NULL', StandardCost: 12.0413, ListPrice: 27.12, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '79', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 909, Name: 'ML Mountain Seat/Saddle', ProductNumber: 'SE-M798', Color: 'NULL', StandardCost: 17.3782, ListPrice: 39.14, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '80', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 910, Name: 'HL Mountain Seat/Saddle', ProductNumber: 'SE-M940', Color: 'NULL', StandardCost: 23.3722, ListPrice: 52.64, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '81', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 911, Name: 'LL Road Seat/Saddle', ProductNumber: 'SE-R581', Color: 'NULL', StandardCost: 12.0413, ListPrice: 27.12, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '82', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 912, Name: 'ML Road Seat/Saddle', ProductNumber: 'SE-R908', Color: 'NULL', StandardCost: 17.3782, ListPrice: 39.14, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '83', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 913, Name: 'HL Road Seat/Saddle', ProductNumber: 'SE-R995', Color: 'NULL', StandardCost: 23.3722, ListPrice: 52.64, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '84', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 914, Name: 'LL Touring Seat/Saddle', ProductNumber: 'SE-T312', Color: 'NULL', StandardCost: 12.0413, ListPrice: 27.12, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '66', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 915, Name: 'ML Touring Seat/Saddle', ProductNumber: 'SE-T762', Color: 'NULL', StandardCost: 17.3782, ListPrice: 39.14, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '65', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 916, Name: 'HL Touring Seat/Saddle', ProductNumber: 'SE-T924', Color: 'NULL', StandardCost: 23.3722, ListPrice: 52.64, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 19, ProductModelID: '67', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 917, Name: 'LL Mountain Frame - Silver, 42', ProductNumber: 'FR-M21S-42', Color: 'Silver', StandardCost: 144.5938, ListPrice: 264.05, Size: '42', Weight: '1324.48', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 918, Name: 'LL Mountain Frame - Silver, 44', ProductNumber: 'FR-M21S-44', Color: 'Silver', StandardCost: 144.5938, ListPrice: 264.05, Size: '44', Weight: '1342.63', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 919, Name: 'LL Mountain Frame - Silver, 48', ProductNumber: 'FR-M21S-48', Color: 'Silver', StandardCost: 144.5938, ListPrice: 264.05, Size: '48', Weight: '1360.77', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 920, Name: 'LL Mountain Frame - Silver, 52', ProductNumber: 'FR-M21S-52', Color: 'Silver', StandardCost: 144.5938, ListPrice: 264.05, Size: '52', Weight: '1378.91', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 921, Name: 'Mountain Tire Tube', ProductNumber: 'TT-M928', Color: 'NULL', StandardCost: 1.8663, ListPrice: 4.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '92', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 922, Name: 'Road Tire Tube', ProductNumber: 'TT-R982', Color: 'NULL', StandardCost: 1.4923, ListPrice: 3.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '93', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 923, Name: 'Touring Tire Tube', ProductNumber: 'TT-T092', Color: 'NULL', StandardCost: 1.8663, ListPrice: 4.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '94', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 924, Name: 'LL Mountain Frame - Black, 42', ProductNumber: 'FR-M21B-42', Color: 'Black', StandardCost: 136.785, ListPrice: 249.79, Size: '42', Weight: '1324.48', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 925, Name: 'LL Mountain Frame - Black, 44', ProductNumber: 'FR-M21B-44', Color: 'Black', StandardCost: 136.785, ListPrice: 249.79, Size: '44', Weight: '1342.63', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 926, Name: 'LL Mountain Frame - Black, 48', ProductNumber: 'FR-M21B-48', Color: 'Black', StandardCost: 136.785, ListPrice: 249.79, Size: '48', Weight: '1360.77', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 927, Name: 'LL Mountain Frame - Black, 52', ProductNumber: 'FR-M21B-52', Color: 'Black', StandardCost: 136.785, ListPrice: 249.79, Size: '52', Weight: '1378.91', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 928, Name: 'LL Mountain Tire', ProductNumber: 'TI-M267', Color: 'NULL', StandardCost: 9.3463, ListPrice: 24.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '85', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 929, Name: 'ML Mountain Tire', ProductNumber: 'TI-M602', Color: 'NULL', StandardCost: 11.2163, ListPrice: 29.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '86', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 930, Name: 'HL Mountain Tire', ProductNumber: 'TI-M823', Color: 'NULL', StandardCost: 13.09, ListPrice: 35, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '87', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 931, Name: 'LL Road Tire', ProductNumber: 'TI-R092', Color: 'NULL', StandardCost: 8.0373, ListPrice: 21.49, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '88', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 932, Name: 'ML Road Tire', ProductNumber: 'TI-R628', Color: 'NULL', StandardCost: 9.3463, ListPrice: 24.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '89', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 933, Name: 'HL Road Tire', ProductNumber: 'TI-R982', Color: 'NULL', StandardCost: 12.1924, ListPrice: 32.6, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '90', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 934, Name: 'Touring Tire', ProductNumber: 'TI-T723', Color: 'NULL', StandardCost: 10.8423, ListPrice: 28.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 41, ProductModelID: '91', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 935, Name: 'LL Mountain Pedal', ProductNumber: 'PD-M282', Color: 'Silver/Black', StandardCost: 17.9776, ListPrice: 40.49, Size: 'NULL', Weight: '218', ProductCategoryID: 17, ProductModelID: '62', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 936, Name: 'ML Mountain Pedal', ProductNumber: 'PD-M340', Color: 'Silver/Black', StandardCost: 27.568, ListPrice: 62.09, Size: 'NULL', Weight: '215', ProductCategoryID: 17, ProductModelID: '63', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 937, Name: 'HL Mountain Pedal', ProductNumber: 'PD-M562', Color: 'Silver/Black', StandardCost: 35.9596, ListPrice: 80.99, Size: 'NULL', Weight: '185', ProductCategoryID: 17, ProductModelID: '64', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 938, Name: 'LL Road Pedal', ProductNumber: 'PD-R347', Color: 'Silver/Black', StandardCost: 17.9776, ListPrice: 40.49, Size: 'NULL', Weight: '189', ProductCategoryID: 17, ProductModelID: '68', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 939, Name: 'ML Road Pedal', ProductNumber: 'PD-R563', Color: 'Silver/Black', StandardCost: 27.568, ListPrice: 62.09, Size: 'NULL', Weight: '168', ProductCategoryID: 17, ProductModelID: '69', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 940, Name: 'HL Road Pedal', ProductNumber: 'PD-R853', Color: 'Silver/Black', StandardCost: 35.9596, ListPrice: 80.99, Size: 'NULL', Weight: '149', ProductCategoryID: 17, ProductModelID: '70', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 941, Name: 'Touring Pedal', ProductNumber: 'PD-T852', Color: 'Silver/Black', StandardCost: 35.9596, ListPrice: 80.99, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 17, ProductModelID: '53', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 942, Name: 'ML Mountain Frame-W - Silver, 38', ProductNumber: 'FR-M63S-38', Color: 'Silver', StandardCost: 199.3757, ListPrice: 364.09, Size: '38', Weight: '1238.3', ProductCategoryID: 16, ProductModelID: '15', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 943, Name: 'LL Mountain Frame - Black, 40', ProductNumber: 'FR-M21B-40', Color: 'Black', StandardCost: 136.785, ListPrice: 249.79, Size: '40', Weight: '1306.34', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 944, Name: 'LL Mountain Frame - Silver, 40', ProductNumber: 'FR-M21S-40', Color: 'Silver', StandardCost: 144.5938, ListPrice: 264.05, Size: '40', Weight: '1306.34', ProductCategoryID: 16, ProductModelID: '8', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 945, Name: 'Front Derailleur', ProductNumber: 'FD-2342', Color: 'Silver', StandardCost: 40.6216, ListPrice: 91.49, Size: 'NULL', Weight: '88', ProductCategoryID: 13, ProductModelID: '103', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 946, Name: 'LL Touring Handlebars', ProductNumber: 'HB-T721', Color: 'NULL', StandardCost: 20.464, ListPrice: 46.09, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '47', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 947, Name: 'HL Touring Handlebars', ProductNumber: 'HB-T928', Color: 'NULL', StandardCost: 40.6571, ListPrice: 91.57, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 8, ProductModelID: '48', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 948, Name: 'Front Brakes', ProductNumber: 'FB-9873', Color: 'Silver', StandardCost: 47.286, ListPrice: 106.5, Size: 'NULL', Weight: '317', ProductCategoryID: 10, ProductModelID: '102', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 949, Name: 'LL Crankset', ProductNumber: 'CS-4759', Color: 'Black', StandardCost: 77.9176, ListPrice: 175.49, Size: 'NULL', Weight: '600', ProductCategoryID: 12, ProductModelID: '99', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 950, Name: 'ML Crankset', ProductNumber: 'CS-6583', Color: 'Black', StandardCost: 113.8816, ListPrice: 256.49, Size: 'NULL', Weight: '635', ProductCategoryID: 12, ProductModelID: '100', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 951, Name: 'HL Crankset', ProductNumber: 'CS-9183', Color: 'Black', StandardCost: 179.8156, ListPrice: 404.99, Size: 'NULL', Weight: '575', ProductCategoryID: 12, ProductModelID: '101', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 952, Name: 'Chain', ProductNumber: 'CH-0234', Color: 'Silver', StandardCost: 8.9866, ListPrice: 20.24, Size: 'NULL', Weight: 'NULL', ProductCategoryID: 11, ProductModelID: '98', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 953, Name: 'Touring-2000 Blue, 60', ProductNumber: 'BK-T44U-60', Color: 'Blue', StandardCost: 755.1508, ListPrice: 1214.85, Size: '60', Weight: '12655.16', ProductCategoryID: 7, ProductModelID: '35', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 954, Name: 'Touring-1000 Yellow, 46', ProductNumber: 'BK-T79Y-46', Color: 'Yellow', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '46', Weight: '11398.72', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 955, Name: 'Touring-1000 Yellow, 50', ProductNumber: 'BK-T79Y-50', Color: 'Yellow', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '50', Weight: '11530.26', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 956, Name: 'Touring-1000 Yellow, 54', ProductNumber: 'BK-T79Y-54', Color: 'Yellow', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '54', Weight: '11648.19', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 957, Name: 'Touring-1000 Yellow, 60', ProductNumber: 'BK-T79Y-60', Color: 'Yellow', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '60', Weight: '11747.98', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 958, Name: 'Touring-3000 Blue, 54', ProductNumber: 'BK-T18U-54', Color: 'Blue', StandardCost: 461.4448, ListPrice: 742.35, Size: '54', Weight: '13462.55', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 959, Name: 'Touring-3000 Blue, 58', ProductNumber: 'BK-T18U-58', Color: 'Blue', StandardCost: 461.4448, ListPrice: 742.35, Size: '58', Weight: '13562.34', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 960, Name: 'Touring-3000 Blue, 62', ProductNumber: 'BK-T18U-62', Color: 'Blue', StandardCost: 461.4448, ListPrice: 742.35, Size: '62', Weight: '13607.7', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 961, Name: 'Touring-3000 Yellow, 44', ProductNumber: 'BK-T18Y-44', Color: 'Yellow', StandardCost: 461.4448, ListPrice: 742.35, Size: '44', Weight: '13049.78', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 962, Name: 'Touring-3000 Yellow, 50', ProductNumber: 'BK-T18Y-50', Color: 'Yellow', StandardCost: 461.4448, ListPrice: 742.35, Size: '50', Weight: '13213.08', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 963, Name: 'Touring-3000 Yellow, 54', ProductNumber: 'BK-T18Y-54', Color: 'Yellow', StandardCost: 461.4448, ListPrice: 742.35, Size: '54', Weight: '13344.62', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 964, Name: 'Touring-3000 Yellow, 58', ProductNumber: 'BK-T18Y-58', Color: 'Yellow', StandardCost: 461.4448, ListPrice: 742.35, Size: '58', Weight: '13512.45', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 965, Name: 'Touring-3000 Yellow, 62', ProductNumber: 'BK-T18Y-62', Color: 'Yellow', StandardCost: 461.4448, ListPrice: 742.35, Size: '62', Weight: '13607.7', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 966, Name: 'Touring-1000 Blue, 46', ProductNumber: 'BK-T79U-46', Color: 'Blue', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '46', Weight: '11398.72', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 967, Name: 'Touring-1000 Blue, 50', ProductNumber: 'BK-T79U-50', Color: 'Blue', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '50', Weight: '11530.26', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 968, Name: 'Touring-1000 Blue, 54', ProductNumber: 'BK-T79U-54', Color: 'Blue', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '54', Weight: '11648.19', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 969, Name: 'Touring-1000 Blue, 60', ProductNumber: 'BK-T79U-60', Color: 'Blue', StandardCost: 1481.9379, ListPrice: 2384.07, Size: '60', Weight: '11747.98', ProductCategoryID: 7, ProductModelID: '34', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 970, Name: 'Touring-2000 Blue, 46', ProductNumber: 'BK-T44U-46', Color: 'Blue', StandardCost: 755.1508, ListPrice: 1214.85, Size: '46', Weight: '12305.9', ProductCategoryID: 7, ProductModelID: '35', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 971, Name: 'Touring-2000 Blue, 50', ProductNumber: 'BK-T44U-50', Color: 'Blue', StandardCost: 755.1508, ListPrice: 1214.85, Size: '50', Weight: '12437.44', ProductCategoryID: 7, ProductModelID: '35', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 972, Name: 'Touring-2000 Blue, 54', ProductNumber: 'BK-T44U-54', Color: 'Blue', StandardCost: 755.1508, ListPrice: 1214.85, Size: '54', Weight: '12555.37', ProductCategoryID: 7, ProductModelID: '35', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 973, Name: 'Road-350-W Yellow, 40', ProductNumber: 'BK-R79Y-40', Color: 'Yellow', StandardCost: 1082.51, ListPrice: 1700.99, Size: '40', Weight: '6962.61', ProductCategoryID: 6, ProductModelID: '27', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 974, Name: 'Road-350-W Yellow, 42', ProductNumber: 'BK-R79Y-42', Color: 'Yellow', StandardCost: 1082.51, ListPrice: 1700.99, Size: '42', Weight: '7153.11', ProductCategoryID: 6, ProductModelID: '27', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 975, Name: 'Road-350-W Yellow, 44', ProductNumber: 'BK-R79Y-44', Color: 'Yellow', StandardCost: 1082.51, ListPrice: 1700.99, Size: '44', Weight: '7316.41', ProductCategoryID: 6, ProductModelID: '27', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 976, Name: 'Road-350-W Yellow, 48', ProductNumber: 'BK-R79Y-48', Color: 'Yellow', StandardCost: 1082.51, ListPrice: 1700.99, Size: '48', Weight: '7447.95', ProductCategoryID: 6, ProductModelID: '27', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 977, Name: 'Road-750 Black, 58', ProductNumber: 'BK-R19B-58', Color: 'Black', StandardCost: 343.6496, ListPrice: 539.99, Size: '58', Weight: '9430.14', ProductCategoryID: 6, ProductModelID: '31', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 978, Name: 'Touring-3000 Blue, 44', ProductNumber: 'BK-T18U-44', Color: 'Blue', StandardCost: 461.4448, ListPrice: 742.35, Size: '44', Weight: '13049.78', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 979, Name: 'Touring-3000 Blue, 50', ProductNumber: 'BK-T18U-50', Color: 'Blue', StandardCost: 461.4448, ListPrice: 742.35, Size: '50', Weight: '13213.08', ProductCategoryID: 7, ProductModelID: '36', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 980, Name: 'Mountain-400-W Silver, 38', ProductNumber: 'BK-M38S-38', Color: 'Silver', StandardCost: 419.7784, ListPrice: 769.49, Size: '38', Weight: '11952.1', ProductCategoryID: 5, ProductModelID: '22', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 981, Name: 'Mountain-400-W Silver, 40', ProductNumber: 'BK-M38S-40', Color: 'Silver', StandardCost: 419.7784, ListPrice: 769.49, Size: '40', Weight: '12142.6', ProductCategoryID: 5, ProductModelID: '22', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 982, Name: 'Mountain-400-W Silver, 42', ProductNumber: 'BK-M38S-42', Color: 'Silver', StandardCost: 419.7784, ListPrice: 769.49, Size: '42', Weight: '12305.9', ProductCategoryID: 5, ProductModelID: '22', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 983, Name: 'Mountain-400-W Silver, 46', ProductNumber: 'BK-M38S-46', Color: 'Silver', StandardCost: 419.7784, ListPrice: 769.49, Size: '46', Weight: '12437.44', ProductCategoryID: 5, ProductModelID: '22', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 984, Name: 'Mountain-500 Silver, 40', ProductNumber: 'BK-M18S-40', Color: 'Silver', StandardCost: 308.2179, ListPrice: 564.99, Size: '40', Weight: '12405.69', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 985, Name: 'Mountain-500 Silver, 42', ProductNumber: 'BK-M18S-42', Color: 'Silver', StandardCost: 308.2179, ListPrice: 564.99, Size: '42', Weight: '12596.19', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 986, Name: 'Mountain-500 Silver, 44', ProductNumber: 'BK-M18S-44', Color: 'Silver', StandardCost: 308.2179, ListPrice: 564.99, Size: '44', Weight: '12759.49', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 987, Name: 'Mountain-500 Silver, 48', ProductNumber: 'BK-M18S-48', Color: 'Silver', StandardCost: 308.2179, ListPrice: 564.99, Size: '48', Weight: '12891.03', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 988, Name: 'Mountain-500 Silver, 52', ProductNumber: 'BK-M18S-52', Color: 'Silver', StandardCost: 308.2179, ListPrice: 564.99, Size: '52', Weight: '13008.96', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 989, Name: 'Mountain-500 Black, 40', ProductNumber: 'BK-M18B-40', Color: 'Black', StandardCost: 294.5797, ListPrice: 539.99, Size: '40', Weight: '12405.69', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 990, Name: 'Mountain-500 Black, 42', ProductNumber: 'BK-M18B-42', Color: 'Black', StandardCost: 294.5797, ListPrice: 539.99, Size: '42', Weight: '12596.19', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 991, Name: 'Mountain-500 Black, 44', ProductNumber: 'BK-M18B-44', Color: 'Black', StandardCost: 294.5797, ListPrice: 539.99, Size: '44', Weight: '12759.49', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 992, Name: 'Mountain-500 Black, 48', ProductNumber: 'BK-M18B-48', Color: 'Black', StandardCost: 294.5797, ListPrice: 539.99, Size: '48', Weight: '12891.03', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 993, Name: 'Mountain-500 Black, 52', ProductNumber: 'BK-M18B-52', Color: 'Black', StandardCost: 294.5797, ListPrice: 539.99, Size: '52', Weight: '13008.96', ProductCategoryID: 5, ProductModelID: '23', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 994, Name: 'LL Bottom Bracket', ProductNumber: 'BB-7421', Color: 'NULL', StandardCost: 23.9716, ListPrice: 53.99, Size: 'NULL', Weight: '223', ProductCategoryID: 9, ProductModelID: '95', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 995, Name: 'ML Bottom Bracket', ProductNumber: 'BB-8107', Color: 'NULL', StandardCost: 44.9506, ListPrice: 101.24, Size: 'NULL', Weight: '168', ProductCategoryID: 9, ProductModelID: '96', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 996, Name: 'HL Bottom Bracket', ProductNumber: 'BB-9108', Color: 'NULL', StandardCost: 53.9416, ListPrice: 121.49, Size: 'NULL', Weight: '170', ProductCategoryID: 9, ProductModelID: '97', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 997, Name: 'Road-750 Black, 44', ProductNumber: 'BK-R19B-44', Color: 'Black', StandardCost: 343.6496, ListPrice: 539.99, Size: '44', Weight: '8967.47', ProductCategoryID: 6, ProductModelID: '31', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 998, Name: 'Road-750 Black, 48', ProductNumber: 'BK-R19B-48', Color: 'Black', StandardCost: 343.6496, ListPrice: 539.99, Size: '48', Weight: '9130.77', ProductCategoryID: 6, ProductModelID: '31', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });
                list.push({ ProductID: 999, Name: 'Road-750 Black, 52', ProductNumber: 'BK-R19B-52', Color: 'Black', StandardCost: 343.6496, ListPrice: 539.99, Size: '52', Weight: '9262.31', ProductCategoryID: 6, ProductModelID: '31', SellStartDate: '37803', SellEndDate: 'NULL', DiscontinuedDate: 'NULL', IsPanelOpened: false });


                defer.resolve(list);

                return defer.promise;

            };


            this.getProductsCategoryList = function () {
                var list = [];

                list.push({ ProductCategoryID: 1, Name: 'Bikes' });
                list.push({ ProductCategoryID: 2, Name: 'Components' });
                list.push({ ProductCategoryID: 3, Name: 'Clothing' });
                list.push({ ProductCategoryID: 4, Name: 'Accessories' });
                list.push({ ProductCategoryID: 5, Name: 'Mountain Bikes' });
                list.push({ ProductCategoryID: 6, Name: 'Road Bikes' });
                list.push({ ProductCategoryID: 7, Name: 'Touring Bikes' });
                list.push({ ProductCategoryID: 8, Name: 'Handlebars' });
                list.push({ ProductCategoryID: 9, Name: 'Bottom Brackets' });
                list.push({ ProductCategoryID: 10, Name: 'Brakes' });
                list.push({ ProductCategoryID: 11, Name: 'Chains' });
                list.push({ ProductCategoryID: 12, Name: 'Cranksets' });
                list.push({ ProductCategoryID: 13, Name: 'Derailleurs' });
                list.push({ ProductCategoryID: 14, Name: 'Forks' });
                list.push({ ProductCategoryID: 15, Name: 'Headsets' });
                list.push({ ProductCategoryID: 16, Name: 'Mountain Frames' });
                list.push({ ProductCategoryID: 17, Name: 'Pedals' });
                list.push({ ProductCategoryID: 18, Name: 'Road Frames' });
                list.push({ ProductCategoryID: 19, Name: 'Saddles' });
                list.push({ ProductCategoryID: 20, Name: 'Touring Frames' });
                list.push({ ProductCategoryID: 21, Name: 'Wheels' });
                list.push({ ProductCategoryID: 22, Name: 'Bib-Shorts' });
                list.push({ ProductCategoryID: 23, Name: 'Caps' });
                list.push({ ProductCategoryID: 24, Name: 'Gloves' });
                list.push({ ProductCategoryID: 25, Name: 'Jerseys' });
                list.push({ ProductCategoryID: 26, Name: 'Shorts' });
                list.push({ ProductCategoryID: 27, Name: 'Socks' });
                list.push({ ProductCategoryID: 28, Name: 'Tights' });
                list.push({ ProductCategoryID: 29, Name: 'Vests' });
                list.push({ ProductCategoryID: 30, Name: 'Bike Racks' });
                list.push({ ProductCategoryID: 31, Name: 'Bike Stands' });
                list.push({ ProductCategoryID: 32, Name: 'Bottles and Cages' });
                list.push({ ProductCategoryID: 33, Name: 'Cleaners' });
                list.push({ ProductCategoryID: 34, Name: 'Fenders' });
                list.push({ ProductCategoryID: 35, Name: 'Helmets' });
                list.push({ ProductCategoryID: 36, Name: 'Hydration Packs' });
                list.push({ ProductCategoryID: 37, Name: 'Lights' });
                list.push({ ProductCategoryID: 38, Name: 'Locks' });
                list.push({ ProductCategoryID: 39, Name: 'Panniers' });
                list.push({ ProductCategoryID: 40, Name: 'Pumps' });
                list.push({ ProductCategoryID: 41, Name: 'Tires and Tubes' });

                return list;
            };

           
        }
    ]);
<h1>{{TabHeading}}</h1>
<table cellpadding="0" cellspacing="0" class="table table-bordered table-condensed">
    <tr>
        <th style="width: 20px;"></th>
        <th>ProductID</th>
        <th>Name</th>
        <th>ProductNumber</th>
        <th>Color</th>
        <th>StandardCost</th>
        <th>ListPrice</th>
        <th>Size</th>
        <th>Weight</th>
        <th>ProductCategoryID</th>
        <th>ProductModelID</th>
        <th>SellStartDate</th>
        <th>SellEndDate</th>
        <th>DiscontinuedDate</th>
        <!--<th>IsPanelOpened</th>-->
        <th style="width: 20px;"></th>
    </tr>
    <tbody ng-repeat="item in Products">
        <tr>
            <td style="width: 20px;">
                <a href="" ng-click="item.IsPanelOpened = !item.IsPanelOpened;" class="btn btn-primary">Edit</a>
            </td>
            <td>{{item.ProductID}}</td>
            <td>{{item.Name}}</td>
            <td>{{item.ProductNumber}}</td>
            <td>{{item.Color}}</td>
            <td>{{item.StandardCost}}</td>
            <td>{{item.ListPrice}}</td>
            <td>{{item.Size}}</td>
            <td>{{item.Weight}}</td>
            <td>{{item.ProductCategoryID}}</td>
            <td>{{item.ProductModelID}}</td>
            <td>{{item.SellStartDate}}</td>
            <td>{{item.SellEndDate}}</td>
            <td>{{item.DiscontinuedDate}}</td>
            <!--<td>{{item.IsPanelOpened}}</td>-->
            <td style="width: 20px;"></td>
        </tr>
        <tr>
            <td colspan="17" class="parentTD">
                <div class="form-horizontal fold-animation" ng-if="item.IsPanelOpened">
                    <h3>{{item.Name}}</h3>
                    <p><label>ProductID</label> <input type="text" name="" ng-model="item.ProductID" /></p>
                    <p><label>Name</label> <input type="text" name="" ng-model="item.Name" /></p>
                    <p><label>ProductNumber</label> <input type="text" name="" ng-model="item.ProductNumber" /></p>
                    <p><label>Color</label> <input type="text" name="" ng-model="item.Color" /></p>
                    <p><label>StandardCost</label> <input type="text" name="" ng-model="item.StandardCost" /></p>
                    <p><label>ListPrice</label> <input type="text" name="" ng-model="item.ListPrice" /></p>
                    <p><label>Size</label> <input type="text" name="" ng-model="item.Size" /></p>
                    <p><label>Weight</label> <input type="text" name="" ng-model="item.Weight" /></p>
                    <!--<p>ProductCategoryID: {{item.ProductCategoryID}}</p>
                    <p>ProductModelID: {{item.ProductModelID}}</p>
                    <p>SellStartDate: {{item.SellStartDate}}</p>
                    <p>SellEndDate: {{item.SellEndDate}}</p>
                    <p>DiscontinuedDate: {{item.DiscontinuedDate}}</p>-->
                </div>
            </td>
        </tr>
    </tbody>
</table>