diff --git a/bin/yugabyte-db b/bin/yugabyte-db index 5a9441fb2949..f080ffe666e9 100755 --- a/bin/yugabyte-db +++ b/bin/yugabyte-db @@ -89,15 +89,14 @@ class YugaByteProcessManager(object): ("Version", "{}-b{}".format(data.get("version_number"), data.get("build_number"))), ("Build Time", data.get("build_timestamp")), ("Build Hash", data.get("git_hash"))] - print(self.get_status_string(title, info_kv_list)) + print(self.get_status_string()) # Starts an interactive YSQL shell. def connect_ysql(self): if self.get_failed_processes(): log_error_and_exit("YugaByte DB is not running. Cannot connect to YSQL.") - path = os.path.join(BIN_DIR, YUGABYTE_API_CLIENT_PROGRAMS["ysql"]) - cmd = [path, "-p", self.configs.saved_data.get("ysql_port")] - os.execv(path, cmd) + ysql_proxy = YsqlProxy(self.configs.saved_data.get("ysql_port")) + ysql_proxy.connect() # Starts an interactive YCQL shell. def connect_ycql(self): @@ -107,6 +106,88 @@ class YugaByteProcessManager(object): cmd = [path, "127.0.0.1", self.configs.saved_data.get("ycql_port")] os.execv(path, cmd) + # Create retail database if it does not exist. + def create_demo_retail(self): + if self.get_failed_processes(): + log_error_and_exit("YugaByte DB is not running. Cannot create sample database.") + + demo_db = "yb_demo_retail" + ysql_proxy = YsqlProxy(self.configs.saved_data.get("ysql_port")) + if not ysql_proxy.db_exists(demo_db): + # Create demo database. + print_and_log("Creating database {}...".format(demo_db)) + _, err = ysql_proxy.create_db(demo_db) + if err: + log_error_and_exit("Failed to create {} database: {}".format(demo_db, err)) + + # Populate demo database. + print_and_log("Populating {} with sample data...".format(demo_db)) + files = [] + for name in ("schema.sql", "products.sql", "users.sql", "reviews.sql", "orders.sql"): + files.append(os.path.join(YUGABYTE_DIR, "share", name)) + _, err = ysql_proxy.load_files(files, db=demo_db) + if err: + log_error_and_exit("Failed to populate data to {}: {}".format(demo_db, err)) + + print_and_log("Successfully loaded sample database!") + print( + "\n################################\n" + "# WELCOME TO THE retail DEMO\n" + "################################\n" + " Database: yb_demo_retail\n" + " |_ users\n" + " |_ products\n" + " |_ orders\n" + " |_ reviews\n\n" + "################################\n" + "# NEXT STEP: RUN THE DEMO\n" + "################################\n" + "$ yugabyte-db demo run retail\n\n" + ) + else: + print_and_log( + "Retail sample database has already been created. " + "Use `yugabyte-db demo run retail` to interact with it.") + + # Run YSQL shell in retail database. + def run_demo_retail(self): + if self.get_failed_processes(): + log_error_and_exit("YugaByte DB is not running. Cannot connect to YSQL.") + + demo_db = "yb_demo_retail" + ysql_proxy = YsqlProxy(self.configs.saved_data.get("ysql_port")) + if ysql_proxy.db_exists(demo_db): + # TODO: Add more commands. + print( + "\n################################\n" + "# SAMPLE QUERIES TO TRY\n" + "################################\n\n" + "# JOINS (find user details of orders):\n" + " SELECT users.id, users.name, users.email, orders.id, orders.total\n" + " FROM orders INNER JOIN users ON orders.user_id=users.id\n" + " LIMIT 10;\n\n" + "For more, go to https://docs.yugabyte.com/latest/quick-start/explore-ysql/\n" + ) + ysql_proxy.connect(db="yb_demo_retail") + else: + log_error_and_exit( + "Retail demo has not been created. Run `yugabyte-db demo create retail`.") + + # Destroy retail database if it exists. + def destroy_demo_retail(self): + if self.get_failed_processes(): + log_error_and_exit("YugaByte DB is not running. Cannot destroy sample database.") + + demo_db = "yb_demo_retail" + ysql_proxy = YsqlProxy(self.configs.saved_data.get("ysql_port")) + if not ysql_proxy.db_exists(demo_db): + log_error_and_exit("Failed to destroy database. Retail demo has not been created.") + else: + _, err = ysql_proxy.drop_db(demo_db) + if err: + log_error_and_exit("Failed to drop database {}: {}".format(demo_db, err)) + print_and_log("Successfully destroyed demo database {}.".format(demo_db)) + # Checks yb-master and yb-tserver are running. Returns failed processes. # TODO: Check postmaster.pid. def get_failed_processes(self): @@ -197,13 +278,11 @@ class YugaByteProcessManager(object): self.configs.saved_data.get("data_dir"))) shutil.rmtree(self.configs.saved_data.get("data_dir")) - # Create data and log dirs. + # Create data directory. if not os.path.exists(self.configs.saved_data.get("data_dir")): - logging.info("Creating data directory %s.", self.configs.saved_data.get("data_dir")) + print_and_log( + "Creating data directory {}.".format(self.configs.saved_data.get("data_dir"))) os.makedirs(self.configs.saved_data.get("data_dir")) - if not os.path.exists(self.configs.saved_data.get("log_dir")): - logging.info("Creating log directory %s.", self.configs.saved_data.get("log_dir")) - os.makedirs(self.configs.saved_data.get("log_dir")) # Start or initialize yb-master and yb-tserver. for name in ("master", "tserver"): @@ -232,8 +311,7 @@ class YugaByteProcessManager(object): if first_run_success and self.is_yb_initialized(): startup_info = self.get_status_string() + \ "YugaByte DB started successfully!\n" \ - "For help, please check out our docs at https://docs.yugabyte.com or " \ - "join us on Slack at https://yugabyte-db.slack.com.\n" + "For help, join us on Slack at https://www.yugabyte.com/slack.\n" print(startup_info) callhome_thread = Thread(target=self.callhome_loop) @@ -386,7 +464,7 @@ class YugaByteProcessManager(object): for cmd, description in ( ("status", "Print status of YugaByte DB."), ("version", "Version of YugaByte DB."), - ("start", "Start YugaByte DB.")): + ("start", "Start YugaByte DB."),): subparser = subparsers.add_parser(cmd, help=description, parents=[common_parser]) func = getattr(self, cmd, None) subparser.set_defaults(func=func) @@ -403,6 +481,34 @@ class YugaByteProcessManager(object): cur_parser.set_defaults(func=func) all_parsers[api] = cur_parser + # Add YSQL demo commands. + demo = subparsers.add_parser("demo", help="Load and interact with preset demo data.") + all_parsers["demo"] = demo + demo_subparser = demo.add_subparsers() + + # TODO: Make below code readable... + create_help = "Create sample database if it does not exist yet." + create_demo = demo_subparser.add_parser("create", help=create_help) + create_demo_subparser = create_demo.add_subparsers() + run_help = "Open interactive shell in sample database." + run_demo = demo_subparser.add_parser("run", help=run_help) + run_demo_subparser = run_demo.add_subparsers() + destroy_help = "Destroy sample database." + destroy_demo = demo_subparser.add_parser("destroy", help=destroy_help) + destroy_demo_subparser = destroy_demo.add_subparsers() + for demo_type, demo_help in ( + ("retail", "Retail is a database with products, users, orders, and reviews."),): + for action, action_help, cur_subparser in ( + ("create", create_help, create_demo_subparser), + ("destroy", destroy_help, destroy_demo_subparser), + ("run", run_help, run_demo_subparser)): + help_msg = "{} {}".format(action_help, demo_help) + cur_parser = cur_subparser.add_parser( + demo_type, help=help_msg, parents=[common_parser]) + func = getattr(self, "{}_demo_{}".format(action, demo_type), None) + cur_parser.set_defaults(func=func) + all_parsers["{}_{}".format(action, demo_type)] = cur_parser + # Commands that can alter configuration file. for cmd in ("start",): cur_parser = all_parsers[cmd] @@ -448,6 +554,7 @@ class Configs(object): "ycql_port": DEFAULT_YCQL_PORT, "universe_uuid": "", "polling_interval": "5", + "yb_demo_retail": False } self.config_file = config_file @@ -654,6 +761,54 @@ class Diagnostics(object): return size +# Proxy for ysqlsh commands. +class YsqlProxy(object): + def __init__(self, port, path=os.path.join(BIN_DIR, YUGABYTE_API_CLIENT_PROGRAMS["ysql"])): + self.port = port + self.path = path + + # Starts interactive YSQL shell. + def connect(self, db=None): + cmd = [self.path, "-p", self.port] + if db: + cmd.extend(["-d", db]) + os.execv(self.path, cmd) + + # Checks if db exists. + # Note that this will return false if ysqlsh can't connect, even if db exists. + def db_exists(self, db): + cmd = [self.path, "-p", self.port, "-q", "-c", "\\t", "-c", + "select datname from pg_catalog.pg_database where datname='{}'".format(db)] + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = p.communicate() + return out.strip() == db + + # Creates specified db. + def create_db(self, db): + cmd = [self.path, "-p", self.port, "-c", "create database {}".format(db)] + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = p.communicate() + return out, err + + # Deletes specified db. + def drop_db(self, db): + cmd = [self.path, "-p", self.port, "-c", "drop database {}".format(db)] + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = p.communicate() + return out, err + + # Runs ysqlsh with specified files. + def load_files(self, filepaths, db=None): + cmd = [self.path, "-p", self.port] + if db: + cmd.extend(["-d", db]) + for path in filepaths: + cmd.extend(["-f", path]) + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = p.communicate() + return out, err + + # Currently unused. Useful for getting diagnostics that are available only through logs. class LogAnalyzer(object): unsupported_error = "not supported yet" @@ -682,6 +837,7 @@ class LogAnalyzer(object): continue yield line + def print_and_log(msg, level=logging.INFO): print(msg) if level == logging.CRITICAL: @@ -693,7 +849,7 @@ def print_and_log(msg, level=logging.INFO): elif level == logging.INFO: logging.info(msg) elif level == logging.DEBUG: - logging.debug(info) + logging.debug(msg) def log_error_and_exit(msg): print_and_log(msg, logging.ERROR) diff --git a/sample/orders.sql b/sample/orders.sql new file mode 100644 index 000000000000..87e7dfb8e2c1 --- /dev/null +++ b/sample/orders.sql @@ -0,0 +1,18760 @@ +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1,'2019-02-11T21:40:27.892Z',NULL,14,2,37.648145389078365,2.07,39.718145389078366,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2,'2018-05-15T08:04:04.580Z',NULL,123,3,110.93145648834248,6.1,117.0376564084763,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3,'2019-12-06T22:22:48.544Z',6.416679208849759,105,2,52.723521442619514,2.9,55.62208681964182,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4,'2019-08-22T16:30:42.392Z',NULL,94,6,109.21864156655383,6.01,115.2207354961295,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5,'2018-10-10T03:34:47.309Z',NULL,132,5,127.88197029833711,7.03,134.94192935296473,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6,'2019-11-06T16:38:50.134Z',NULL,60,3,29.80214751859149,1.64,31.441679133237017,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7,'2018-09-11T11:22:26.521Z',NULL,55,5,95.77128575934437,5.27,101.06105102213039,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8,'2019-06-17T02:37:41.693Z',8.653952930206964,65,7,68.22769726470014,3.75,71.9646003804807,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9,'2017-05-03T16:00:54.923Z',3.594742155259162,184,3,77.3982748679465,4.26,81.6742695904106,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10,'2020-01-17T01:44:37.233Z',NULL,6,2,97.43621265344382,5.36,102.77055805103969,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11,'2018-07-22T20:31:01.969Z',NULL,76,6,63.82421061366486,3.51,67.30535713840213,1); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12,'2018-06-26T23:21:13.271Z',NULL,7,7,148.22900526552291,10.19,158.44538230476374,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13,'2019-04-06T01:04:43.973Z',2.1173410336074987,70,2,57.493003808959784,3.95,61.42339339833593,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14,'2017-05-25T20:50:37.137Z',NULL,139,4,51.18512212784679,3.52,54.67137322414436,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15,'2018-06-26T02:24:38.715Z',NULL,116,5,114.42485125407785,7.87,122.30918146348135,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16,'2017-12-14T11:28:30.031Z',NULL,68,1,76.82895921539838,5.28,82.15964553750338,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17,'2020-02-06T12:14:36.282Z',NULL,48,1,123.20884248534108,8.47,131.65987891080385,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18,'2020-04-10T23:29:46.804Z',NULL,12,2,116.01427581618326,7.98,123.93528398902329,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (19,'2019-02-14T07:28:31.104Z',NULL,136,1,105.20402317157343,7.23,112.53044509193751,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (20,'2018-04-21T04:18:01.863Z',9.480671222888349,160,4,47.59120561297272,3.27,50.86583592650371,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (21,'2018-05-02T03:57:22.388Z',NULL,94,5,109.21864156655383,7.51,116.62982729669602,3); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (22,'2019-12-12T21:32:01.533Z',6.752650070439861,10,1,47.6793282102869,1.38,49.056071014283766,4); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (23,'2019-06-02T11:33:15.096Z',NULL,85,5,54.90104734428525,1.59,56.5115886738793,4); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (24,'2019-09-20T17:28:38.643Z',NULL,14,6,37.648145389078365,1.09,38.74860139651864,4); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (25,'2019-12-21T12:23:13.696Z',NULL,97,2,112.41825444654248,3.26,115.64052715703252,4); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (26,'2018-06-20T02:18:00.254Z',NULL,40,5,99.66240044231697,3.99,103.57613671689575,5); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (27,'2019-04-28T07:01:15.932Z',NULL,14,2,37.648145389078365,1.51,39.11528698753412,6); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (28,'2018-05-23T18:15:24.432Z',9.145059274307002,49,4,131.42865839323724,5.26,136.77951877238795,6); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (29,'2018-03-07T22:56:54.735Z',NULL,45,1,118.0495173798411,4.72,122.6773063807222,6); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (30,'2019-04-15T12:24:20.170Z',NULL,179,3,68.32408657333919,2.73,71.02493653936602,6); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (31,'2018-05-22T04:28:04.569Z',NULL,191,6,128.5841852057933,9,137.8019637279584,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (32,'2018-06-04T05:11:15.294Z',NULL,82,7,60.89545738030947,4.26,65.15833624900348,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (33,'2019-06-18T11:17:03.676Z',6.481030997355338,172,4,122.3651993029456,8.57,130.97012158989244,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (34,'2019-01-04T21:12:38.428Z',NULL,3,1,53.08311732230858,3.72,56.80533257859876,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (35,'2017-10-10T01:37:18.769Z',NULL,21,5,40.38334406304544,2.83,43.27836200894579,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (36,'2018-07-04T00:34:31.322Z',NULL,145,4,61.1983004605443,4.28,65.52684708658961,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (37,'2017-08-30T12:40:52.641Z',NULL,17,4,53.290720311951766,3.73,57.008904417553445,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (38,'2018-07-25T23:27:34.530Z',NULL,39,5,114.58158180283459,8.02,122.43499029028857,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (39,'2018-05-09T03:09:25.897Z',NULL,142,4,70.34853057210945,4.92,75.38095754001415,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (40,'2019-11-21T23:35:02.479Z',NULL,101,2,139.82488066180403,9.79,149.7360813013385,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (41,'2018-12-04T00:08:37.569Z',NULL,51,2,75.65058751905018,5.3,81.10438260941211,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (42,'2019-11-16T08:11:08.666Z',NULL,145,3,61.1983004605443,4.28,65.5559297559252,7); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (43,'2019-11-03T20:24:38.219Z',NULL,193,3,50.38077396807232,3.27,53.70507001111754,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (44,'2017-10-01T14:47:29.444Z',NULL,101,6,93.21658710786936,6.06,99.33443001127412,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (45,'2017-09-25T00:11:10.923Z',NULL,141,5,84.13541698384589,5.47,89.70210897202662,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (46,'2018-06-14T03:09:15.751Z',NULL,8,4,98.83823503993958,6.42,105.27220156289907,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (47,'2018-07-06T00:35:40.063Z',NULL,104,4,106.44215255778118,6.92,113.50392637210302,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (48,'2019-05-16T20:17:06.720Z',NULL,140,5,66.80312547576881,4.34,71.2513752413769,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (49,'2019-11-17T09:19:09.682Z',NULL,157,3,139.8942352373801,9.09,149.0971082279313,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (50,'2018-01-01T07:26:31.444Z',NULL,12,2,116.01427581618326,7.54,123.55572117178238,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (51,'2017-12-06T03:46:28.378Z',NULL,114,2,51.94130981241432,3.38,55.25485080738503,8); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (52,'2018-07-15T23:04:22.325Z',NULL,34,3,74.30391386913199,4.46,78.65666201120496,9); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (53,'2018-09-15T13:06:14.139Z',NULL,79,3,41.616917284159726,2.5,44.22580561704055,9); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (54,'2018-10-26T20:41:23.428Z',7.63762060148704,68,4,115.24343882309758,6.63,122.11637851493803,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (55,'2017-08-16T09:51:35.096Z',NULL,149,5,46.10276691718616,2.65,48.65911128333891,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (56,'2016-12-02T08:04:45.937Z',NULL,109,1,79.36660712128732,4.56,84.05108407223999,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (57,'2020-02-05T03:28:52.924Z',NULL,42,1,38.00410713690931,2.19,40.306509135573634,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (58,'2019-03-09T01:05:15.721Z',NULL,91,1,65.09432810381134,3.74,68.88290318792109,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (59,'2019-04-11T18:53:36.645Z',NULL,71,1,82.80381898788684,4.76,87.53637991989693,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (60,'2018-07-10T03:17:28.857Z',NULL,92,2,124.89242686579996,7.18,132.22951658373907,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (61,'2019-09-23T11:07:08.376Z',NULL,11,3,132.45679913492563,7.62,140.56266342560167,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (62,'2018-10-13T19:02:04.952Z',NULL,198,6,70.14610686710009,4.03,74.17998651599399,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (63,'2018-04-14T19:47:06.649Z',NULL,58,3,78.14578007078882,4.49,82.56808781434164,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (64,'2019-02-23T16:13:35.970Z',NULL,65,2,68.22769726470014,3.92,72.26375031242301,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (65,'2018-09-14T23:33:17.679Z',NULL,53,5,44.27587240151534,2.55,46.731824088077374,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (66,'2018-03-30T20:03:22.716Z',3.4447251023245924,15,1,37.648145389078365,2.16,39.76477470674226,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (67,'2018-05-30T05:01:21.334Z',7.80684729448388,152,5,48.89568729900663,2.81,51.718782977279055,10); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (68,'2019-05-28T14:47:23.973Z',NULL,25,5,68.62263967182464,2.74,71.36659567437728,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (69,'2019-06-28T14:19:18.995Z',NULL,183,8,56.697412301919755,2.27,59.09276090183358,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (70,'2019-11-21T11:21:36.739Z',NULL,22,3,32.136779940663494,1.29,33.41808399293863,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (71,'2017-09-01T11:51:46.788Z',NULL,161,4,31.727470408648482,1.27,32.940865882868835,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (72,'2017-07-18T10:51:55.733Z',NULL,13,5,75.0861692740371,3,78.35146470419957,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (73,'2019-08-18T02:49:20.543Z',NULL,122,7,99.84528328808108,3.99,103.7765084914419,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (74,'2020-02-20T00:36:30.807Z',1.8457579767720553,154,1,81.87529553312261,3.28,85.41374069109672,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (75,'2017-04-10T23:33:10.082Z',NULL,13,2,75.0861692740371,3,77.95866140384386,12); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (76,'2016-12-19T19:40:17.782Z',NULL,185,2,26.384667225677738,1.72,28.098902628941254,15); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (77,'2019-09-27T21:32:36.824Z',NULL,86,4,92.31436670850246,6,98.58295820350527,15); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (78,'2018-05-02T15:42:21.755Z',NULL,165,5,38.30449564120193,2.49,40.85973188769328,15); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (79,'2018-04-25T15:55:31.477Z',NULL,49,4,131.42865839323724,8.54,140.31169305624633,15); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (80,'2019-04-15T14:49:30.838Z',NULL,85,4,54.90104734428525,3.57,58.507615969325414,15); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (81,'2019-10-29T03:41:26.912Z',6.012432951799443,157,4,139.8942352373801,9.09,148.4688281207464,15); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (82,'2018-01-03T09:10:59.771Z',NULL,78,2,41.616917284159726,1.66,43.29608695072889,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (83,'2018-04-28T18:48:34.862Z',6.012432951799443,169,3,59.53172693453274,2.38,61.88628596625975,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (84,'2019-12-26T14:29:19.631Z',NULL,183,2,56.697412301919755,2.27,59.12624080633313,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (85,'2019-06-05T08:15:20.979Z',NULL,104,6,106.44215255778118,4.26,110.42056194431119,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (86,'2016-06-08T10:56:25.212Z',NULL,147,6,44.4315141414441,1.78,46.09258624782886,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (87,'2019-05-06T01:41:27.086Z',NULL,17,3,79.93608046792765,3.2,83.30672226118827,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (88,'2019-08-10T01:39:40.313Z',NULL,14,7,37.648145389078365,1.51,39.350134975792805,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (89,'2016-08-28T16:44:40.361Z',NULL,90,7,82.07974183693327,3.28,85.6527010493753,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (90,'2016-12-29T08:29:20.559Z',NULL,87,1,78.17024226998694,3.13,81.0712956941512,16); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (91,'2019-02-18T12:57:11.124Z',NULL,185,2,39.57700083851661,0,39.57663199309648,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (92,'2017-03-26T08:45:35.004Z',NULL,147,1,44.4315141414441,0,44.59371986162783,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (93,'2017-06-18T11:15:50.035Z',NULL,15,4,25.09876359271891,0,25.175194945524527,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (94,'2019-08-01T00:15:06.426Z',NULL,172,4,122.3651993029456,0,122.77616996249728,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (95,'2017-09-12T15:12:48.010Z',NULL,76,4,42.54947374244324,0,42.64281892675646,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (96,'2018-09-26T23:27:09.597Z',NULL,140,4,66.80312547576881,0,66.78839100928437,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (97,'2019-07-01T01:51:26.871Z',NULL,110,4,55.526746186906664,0,55.2889980153447,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (98,'2020-04-06T00:45:35.910Z',NULL,26,3,68.12471180754113,0,68.04214316881821,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (99,'2019-12-23T09:54:13.302Z',NULL,199,1,115.4300138092855,0,115.80761043142893,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (100,'2017-03-28T22:58:05.087Z',NULL,84,0,54.58418555091025,0,54.68641704834421,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (101,'2018-09-14T06:42:41.636Z',5.053907611508057,30,3,64.17448218067184,0,64.06344204019086,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (102,'2017-12-02T04:32:23.123Z',NULL,95,2,33.212427711035886,0,33.36784130612156,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (103,'2019-09-15T18:30:40.798Z',NULL,172,5,122.3651993029456,0,122.90101714208843,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (104,'2020-02-15T18:57:49.869Z',NULL,23,2,116.86672609493307,0,116.32429000786146,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (105,'2018-03-01T00:41:52.080Z',NULL,118,1,57.627613096978735,0,57.78477375565548,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (106,'2019-06-16T07:59:05.594Z',NULL,158,4,139.8942352373801,0,139.71812294848579,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (107,'2017-05-07T23:40:43.989Z',NULL,12,3,77.34285054412217,0,77.38152575523857,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (108,'2017-12-01T06:15:20.772Z',NULL,127,18,89.65344209669612,0,89.6374365529822,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (109,'2019-09-14T06:23:32.909Z',NULL,172,3,122.3651993029456,0,122.8135687308762,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (110,'2017-05-12T22:58:40.931Z',NULL,102,4,31.361435038520785,0,31.46730344461449,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (111,'2020-04-19T08:27:25.536Z',NULL,56,3,36.37128575934436,0,36.33762057107673,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (112,'2018-06-12T04:48:40.715Z',NULL,115,7,77.91196471862148,0,77.94164494454556,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (113,'2019-09-01T22:01:35.536Z',NULL,182,5,84.48940370476112,0,85.01756541579698,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (114,'2019-12-08T16:20:25.477Z',NULL,108,2,50.094887884945365,0,49.84654793006807,17); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (115,'2017-08-30T06:13:52.097Z',NULL,191,6,85.72279013719552,0,86.029271263595,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (116,'2019-01-01T18:48:23.343Z',NULL,67,2,41.24480890795779,0,41.26025370973873,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (117,'2018-02-26T02:43:13.292Z',NULL,49,2,131.42865839323724,0,131.71312308331136,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (118,'2018-12-18T04:49:24.384Z',NULL,37,29,80.10774204020768,0,79.97412473090259,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (119,'2020-03-26T23:06:05.388Z',NULL,198,1,70.14610686710009,0,70.33549902283389,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (120,'2017-03-29T21:28:18.971Z',NULL,84,1,54.58418555091025,0,54.84317401983205,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (121,'2018-02-03T05:48:55.511Z',5.66093399511347,144,1,61.1983004605443,0,61.23111785253473,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (122,'2018-12-31T20:08:35.474Z',NULL,41,2,63.50890855689462,0,63.42563475771362,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (123,'2017-11-19T17:22:48.891Z',NULL,131,3,75.41148135558485,0,75.870478390174,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (124,'2017-06-13T12:29:10.438Z',NULL,26,5,45.41647453836076,0,45.51555049851821,18); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (125,'2018-07-18T01:04:09.876Z',NULL,129,4,148.1672972165937,0,148.89768659847257,19); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (126,'2019-07-25T00:26:35.948Z',0.5557909425521395,149,4,69.15415037577924,0,69.17358014668844,19); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (127,'2019-08-27T01:20:16.006Z',NULL,25,4,68.62263967182464,4.12,72.71605101852825,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (128,'2018-05-29T01:45:46.631Z',NULL,134,3,42.49233549998661,2.55,45.08432379873971,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (129,'2019-04-26T22:49:56.260Z',NULL,12,3,116.01427581618326,6.96,123.86979026859099,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (130,'2017-05-13T15:57:14.220Z',5.0557909425521395,100,3,45.22324323588729,2.71,47.989773650385786,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (131,'2020-02-05T22:42:57.243Z',NULL,39,6,114.58158180283459,6.87,121.26234489476354,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (132,'2018-07-22T03:39:51.084Z',NULL,161,2,47.59120561297272,2.86,50.28512073024441,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (133,'2016-10-25T11:08:11.678Z',5.868463780972647,36,4,87.29125153827623,5.24,92.8692701673067,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (134,'2020-02-28T13:48:53.779Z',NULL,87,1,117.25536340498041,7.04,125.22207335031936,20); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (135,'2018-01-04T14:19:57.077Z',NULL,120,1,83.5020135028928,4.59,88.08386047261446,21); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (136,'2018-11-21T22:12:37.307Z',NULL,116,2,114.42485125407785,6.29,120.44455096555112,21); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (137,'2017-02-25T07:42:53.951Z',NULL,126,1,83.49598746872304,4.59,87.57952437287346,21); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (138,'2018-03-26T01:51:23.046Z',NULL,62,1,133.5202262591817,7.34,141.63630860796985,21); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (139,'2017-07-31T20:42:22.614Z',NULL,128,3,50.053442096696116,2.75,52.81563183637319,21); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (140,'2017-08-25T10:54:07.427Z',NULL,4,6,73.99178100854834,4.07,78.49429704512552,21); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (141,'2019-06-21T15:05:41.233Z',NULL,132,5,127.88197029833711,9.59,137.50885067010267,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (142,'2018-01-30T19:26:07.656Z',NULL,57,2,122.4223933583994,9.18,132.44824277916473,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (143,'2018-04-05T20:31:27.130Z',2.0958774529271,24,2,112.30643674729413,8.42,121.495629849217,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (144,'2016-12-11T16:41:35.400Z',NULL,15,1,25.09876359271891,1.88,26.921904425921767,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (145,'2017-03-18T07:40:09.855Z',NULL,120,1,55.668009001928525,4.18,59.53162406298413,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (146,'2017-09-29T19:13:15.649Z',NULL,189,6,62.18492169821006,4.66,67.40107423105457,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (147,'2019-05-24T15:36:17.532Z',NULL,71,4,82.80381898788684,6.21,88.85823576563041,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (148,'2019-01-26T14:21:47.436Z',NULL,106,1,52.723521442619514,3.95,56.56723390171032,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (149,'2020-01-25T19:05:08.521Z',NULL,199,2,115.4300138092855,8.66,123.87449640736953,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (150,'2018-11-06T14:12:49.730Z',NULL,104,3,106.44215255778118,7.98,113.66340575590407,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (151,'2019-12-19T07:14:30.039Z',NULL,78,1,41.616917284159726,3.12,44.796447257683404,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (152,'2018-04-28T23:03:07.994Z',NULL,61,3,23.537915510955656,1.77,25.353261234525547,22); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (153,'2018-11-28T15:57:37.123Z',NULL,29,3,123.57448218067185,4.94,129.07046850966185,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (154,'2019-12-25T10:11:36.131Z',NULL,83,1,81.87627832636537,3.28,85.67661597139924,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (155,'2018-04-06T09:28:38.984Z',NULL,21,2,60.57501609456816,2.42,62.58068633333344,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (156,'2020-03-12T01:55:46.721Z',NULL,189,1,93.27738254731509,3.73,97.28000055788928,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (157,'2019-01-14T18:54:49.071Z',NULL,104,2,106.44215255778118,4.26,109.93227892309707,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (158,'2019-08-18T01:58:34.250Z',NULL,78,9,41.616917284159726,1.66,43.58402975808376,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (159,'2018-01-31T23:55:52.385Z',NULL,114,3,77.91196471862148,3.12,80.90200983182172,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (160,'2018-03-01T23:52:38.760Z',NULL,165,1,38.30449564120193,1.53,39.94387887200756,23); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (161,'2020-04-04T04:31:57.111Z',3.19027473484536,29,2,123.57448218067185,8.5,133.29078207339072,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (162,'2019-05-26T14:41:31.227Z',3.19027473484536,126,3,125.24398120308456,8.61,134.6490531487738,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (163,'2018-04-07T02:25:01.256Z',NULL,75,3,125.81276373452337,8.65,134.34188820505327,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (164,'2018-10-22T09:59:09.117Z',NULL,33,7,47.7448636959614,3.28,50.63300951042867,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (165,'2019-08-14T12:35:14.039Z',NULL,10,7,47.6793282102869,3.28,51.41555604695189,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (166,'2019-07-19T13:10:13.348Z',NULL,151,5,91.61302306843446,6.3,98.39755642399079,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (167,'2019-11-15T18:06:11.298Z',NULL,200,3,73.20395711799151,5.03,77.69844392510406,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (168,'2018-04-14T22:05:46.715Z',NULL,186,2,98.9770008385166,6.8,105.1034615708705,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (169,'2019-08-13T20:36:50.982Z',NULL,73,5,71.6287722595695,4.92,76.85256110059626,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (170,'2019-08-03T08:33:03.555Z',NULL,118,7,57.627613096978735,3.96,61.29099379132071,24); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (171,'2020-04-01T17:48:42.785Z',3.079716237586482,58,3,78.14578007078882,4.49,81.99797205522884,29); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (172,'2020-02-17T12:53:40.048Z',NULL,152,2,48.89568729900663,2.81,52.158190996637586,29); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (173,'2018-10-22T18:56:58.539Z',NULL,91,7,65.09432810381134,3.74,68.5948263899836,29); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (174,'2020-04-09T12:03:00.755Z',3.079716237586482,190,3,128.5841852057933,7.39,135.51580933716718,29); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (175,'2019-01-30T10:19:21.084Z',NULL,58,2,78.14578007078882,4.49,82.9662304600896,29); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (176,'2018-10-16T01:03:54.433Z',NULL,154,7,81.87529553312261,4.71,86.718532076223,29); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (177,'2019-06-13T04:34:32.336Z',NULL,154,6,81.87529553312261,5.32,86.5798486529755,30); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (178,'2019-05-27T05:53:31.905Z',NULL,37,5,80.10774204020768,5.21,85.39244099092026,30); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (179,'2019-07-21T15:27:05.546Z',NULL,75,6,125.81276373452337,3.65,129.96150940926339,32); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (180,'2019-02-25T04:03:09.148Z',NULL,75,2,125.81276373452337,3.65,129.96663928588885,32); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (181,'2017-07-05T11:32:31.092Z',NULL,93,6,33.212427711035886,0.96,34.322624506829975,32); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (182,'2020-03-25T23:01:34.064Z',NULL,176,1,57.92480943352658,1.68,60.06327235376401,32); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (183,'2018-08-25T14:09:48.528Z',NULL,87,8,117.25536340498041,3.4,120.57531991069719,32); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (184,'2018-03-29T01:29:18.948Z',NULL,84,1,81.87627832636537,2.37,84.2394955306831,32); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (185,'2018-06-08T20:22:55.203Z',NULL,103,8,47.04215255778118,1.36,48.04977163455966,33); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (186,'2018-12-23T21:15:46.547Z',NULL,108,2,50.094887884945365,1.45,51.16706768559577,33); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (187,'2019-07-18T00:58:53.862Z',NULL,17,5,79.93608046792765,3.44,83.09689170681719,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (188,'2019-04-26T00:15:50.792Z',3.5425360139832858,86,4,92.31436670850246,3.97,95.4479999998783,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (189,'2019-10-16T15:52:56.344Z',NULL,74,7,51.12804227386549,2.2,53.73193441376232,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (190,'2019-12-16T16:03:36.571Z',NULL,54,2,62.09360840402396,2.67,65.37474658371603,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (191,'2019-11-22T02:47:01.230Z',NULL,22,2,32.136779940663494,1.38,33.37831762352474,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (192,'2019-04-02T02:37:15.382Z',NULL,170,3,105.07665741496471,4.52,110.33294721486786,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (193,'2019-04-06T18:49:46.481Z',4.259459768405729,166,3,38.30449564120193,1.65,40.21323452498948,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (194,'2018-01-28T20:48:50.015Z',8.759459768405728,89,2,63.719612755399886,2.74,65.94529980700449,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (195,'2016-06-12T00:42:35.099Z',NULL,45,9,78.6996782532274,3.38,82.00781334438744,34); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (196,'2017-11-05T11:07:50.232Z',NULL,79,3,27.74461152277315,1.39,29.11857821823097,35); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (197,'2019-09-30T12:06:29.945Z',NULL,108,4,50.094887884945365,2.5,52.528350998234735,35); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (198,'2019-08-24T01:13:01.005Z',NULL,143,6,61.1983004605443,3.06,64.57375665730676,35); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (199,'2019-05-08T08:36:37.424Z',NULL,186,4,98.9770008385166,4.95,104.8801962931428,35); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (200,'2018-06-30T04:17:27.188Z',NULL,75,5,125.81276373452337,6.29,131.16132464027126,35); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (201,'2018-03-30T20:23:19.326Z',NULL,72,1,142.20381898788685,9.24,151.4334905091422,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (202,'2018-01-25T16:05:23.868Z',NULL,60,2,29.80214751859149,1.94,31.590051720123533,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (203,'2017-08-17T18:17:48.717Z',NULL,171,6,70.05110494330981,4.55,74.93400185111025,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (204,'2019-05-03T02:44:34.940Z',NULL,151,4,91.61302306843446,5.95,98.01542727924048,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (205,'2018-12-23T06:21:19.583Z',NULL,141,2,126.20312547576883,8.2,133.75633129735897,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (206,'2018-06-22T06:02:43.700Z',NULL,25,7,68.62263967182464,4.46,73.4639328580924,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (207,'2019-03-07T09:51:21.283Z',NULL,106,1,52.723521442619514,3.43,55.76205838948854,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (208,'2018-08-29T06:33:29.708Z',NULL,138,6,113.95078476718615,7.41,120.78356978131559,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (209,'2019-01-05T00:03:51.181Z',NULL,189,2,93.27738254731509,6.06,98.64606378422513,36); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (210,'2017-05-13T15:57:41.168Z',NULL,46,6,78.6996782532274,4.41,82.61238293826868,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (211,'2019-11-09T01:30:22.135Z',NULL,178,4,117.32963250370614,6.57,123.73855884170023,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (212,'2017-10-22T01:27:38.969Z',NULL,111,6,37.01783079127111,2.07,38.88214510228093,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (213,'2017-07-31T17:23:30.923Z',NULL,150,4,85.70276691718615,4.8,90.71701403293285,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (214,'2020-02-10T20:43:35.065Z',NULL,86,1,92.31436670850246,5.17,96.6770896432659,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (215,'2017-03-17T07:57:12.810Z',NULL,186,1,65.98466722567774,3.7,69.0072709003007,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (216,'2017-10-12T03:02:41.080Z',NULL,86,5,61.54291113900164,3.45,65.75869018662576,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (217,'2017-04-08T07:32:20.298Z',NULL,99,2,45.22324323588729,2.53,48.09130720558922,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (218,'2019-03-20T14:58:21.465Z',NULL,134,1,42.49233549998661,2.38,44.65721384591343,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (219,'2017-05-15T14:46:08.296Z',NULL,199,2,76.95334253952366,4.31,80.71687346184818,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (220,'2018-08-26T02:21:12.080Z',NULL,97,6,112.41825444654248,6.3,117.80649653012271,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (221,'2020-02-18T08:30:53.428Z',NULL,129,1,148.1672972165937,8.3,156.81750637923406,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (222,'2019-03-19T18:21:54.714Z',2.474830569494801,99,1,67.83486485383094,3.8,72.00908766865949,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (223,'2018-03-06T11:47:28.486Z',NULL,128,1,75.08016314504417,4.2,80.00827007082361,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (224,'2017-08-16T14:56:15.036Z',NULL,116,8,76.28323416938524,4.27,80.41334529043603,37); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (225,'2018-11-11T21:14:13.900Z',3.198500801146498,84,3,81.87627832636537,4.91,87.10488933291823,38); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (226,'2019-12-15T04:22:52.471Z',NULL,47,2,84.0766209826718,5.04,89.80316077766213,38); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (227,'2018-06-16T19:38:44.027Z',NULL,66,6,136.16126271106958,8.17,143.05367755102802,38); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (228,'2017-04-17T15:21:09.465Z',NULL,182,3,56.326269136507406,3.38,59.983568649853815,38); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (229,'2017-12-26T07:29:57.856Z',NULL,152,2,32.59712486600442,1.96,34.25933496760253,38); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (230,'2020-01-29T03:39:20.564Z',NULL,4,2,110.98767151282252,7.63,117.35136642720215,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (231,'2019-03-22T01:41:44.859Z',NULL,167,1,97.70449564120193,6.72,103.76154078086081,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (232,'2018-11-12T23:45:17.492Z',7.854199191704607,74,2,51.12804227386549,3.52,55.08714479689481,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (233,'2018-08-02T06:00:12.491Z',NULL,182,5,84.48940370476112,5.81,91.18937892098741,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (234,'2018-11-13T21:41:19.636Z',NULL,34,2,74.30391386913199,5.11,79.84418997080454,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (235,'2020-01-03T04:15:50.232Z',NULL,3,1,53.08311732230858,3.65,56.82294671218286,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (236,'2019-06-15T05:15:43.062Z',NULL,79,6,41.616917284159726,2.86,44.21666444135479,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (237,'2017-11-19T22:58:11.972Z',NULL,52,3,69.1172482676769,4.75,74.1413719202313,39); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (238,'2017-12-22T03:09:50.175Z',NULL,9,2,58.31312098526137,3.64,61.576142478371345,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (239,'2019-11-25T10:24:01.591Z',NULL,138,4,113.95078476718615,7.12,121.76651145598889,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (240,'2018-01-24T03:27:21.346Z',NULL,62,2,133.5202262591817,8.35,140.47423188453183,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (241,'2017-10-05T03:52:29.098Z',NULL,175,7,78.21653962235106,4.89,82.44222162267629,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (242,'2017-05-03T05:44:12.070Z',NULL,49,4,87.61910559549149,5.48,93.54233401706847,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (243,'2019-10-16T10:09:52.916Z',NULL,117,4,55.024851254077866,3.44,58.677958848477346,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (244,'2018-08-30T06:58:11.546Z',NULL,152,7,48.89568729900663,3.06,51.972394063179316,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (245,'2019-10-21T16:56:04.968Z',NULL,130,7,75.02573869315137,4.69,80.68323868731879,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (246,'2017-12-13T19:28:29.469Z',3.43488602803831,75,3,83.87517582301558,5.24,88.37700246121238,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (247,'2019-08-04T14:14:32.044Z',NULL,88,9,105.41292031622555,6.59,112.96680124862405,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (248,'2018-11-09T05:47:19.047Z',NULL,18,4,81.90307121097293,5.12,86.86495407738926,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (249,'2019-10-03T20:34:21.626Z',NULL,107,7,50.094887884945365,3.13,53.36408197849717,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (250,'2018-05-17T18:16:42.364Z',NULL,37,4,80.10774204020768,5.01,84.44293367877523,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (251,'2018-07-25T06:15:19.179Z',NULL,121,4,40.44528328808107,2.53,43.04409420603459,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (252,'2016-11-01T15:43:42.662Z',NULL,21,3,40.38334406304544,2.52,42.65846557076474,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (253,'2018-01-23T08:10:09.200Z',NULL,197,2,70.14610686710009,4.38,75.56411182861285,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (254,'2019-08-16T11:44:56.790Z',NULL,129,5,148.1672972165937,9.26,156.33688390064484,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (255,'2017-08-11T23:50:54.901Z',NULL,47,6,56.05108065511453,3.5,58.87194528695535,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (256,'2017-08-01T10:50:43.603Z',NULL,77,6,67.34461152277315,4.21,70.97051199345664,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (257,'2018-02-06T08:34:07.323Z',NULL,80,2,54.91325681036414,3.43,58.3499049054743,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (258,'2017-09-08T17:20:55.080Z',NULL,191,3,85.72279013719552,5.36,90.852023318126,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (259,'2018-11-10T20:53:54.978Z',NULL,73,1,71.6287722595695,4.48,76.46184284695953,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (260,'2017-09-09T16:40:11.602Z',NULL,55,2,63.84752383956291,3.99,66.99944870645123,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (261,'2019-08-26T21:10:14.407Z',1.3602062457243602,115,3,77.91196471862148,4.87,83.03740654322647,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (262,'2019-03-06T01:08:17.786Z',NULL,62,1,133.5202262591817,8.35,143.85207136444828,40); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (263,'2019-02-06T22:19:11.813Z',NULL,138,1,113.95078476718615,6.84,121.41976834932669,41); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (264,'2017-01-03T09:08:02.069Z',NULL,164,1,61.978598800110106,2.48,65.25759107253978,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (265,'2017-08-18T03:33:03.727Z',NULL,146,7,84.03151414144409,3.36,86.45277238659057,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (266,'2019-07-17T17:51:09.590Z',NULL,22,5,32.136779940663494,1.29,33.278920529573234,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (267,'2018-10-28T12:46:48.679Z',NULL,17,4,79.93608046792765,3.2,83.70749106553187,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (268,'2019-06-04T02:52:04.261Z',NULL,90,3,123.1196127553999,4.92,126.43264025722983,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (269,'2019-04-11T19:13:31.013Z',NULL,159,2,35.53017445377361,1.42,36.909818559607324,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (270,'2019-02-26T20:42:08.386Z',NULL,119,1,43.43814329652384,1.74,44.793611860992996,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (271,'2019-12-15T20:10:26.427Z',NULL,30,2,64.17448218067184,2.57,65.97681854234172,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (272,'2018-06-15T16:19:39.973Z',NULL,129,7,148.1672972165937,5.93,154.13220003537157,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (273,'2018-10-09T12:05:39.430Z',NULL,132,6,127.88197029833711,5.12,134.05023562163336,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (274,'2019-05-31T00:40:37.002Z',NULL,149,6,69.15415037577924,2.77,71.34702303103508,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (275,'2018-01-30T17:39:43.668Z',4.460543049546983,17,2,79.93608046792765,3.2,84.41196335059973,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (276,'2018-04-24T23:43:59.535Z',NULL,38,3,66.06937283839378,2.64,67.87614640095575,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (277,'2019-03-22T18:23:24.980Z',NULL,79,1,41.616917284159726,1.66,43.33348543733784,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (278,'2017-09-14T19:35:23.076Z',NULL,121,4,26.96352219205405,1.08,28.484891581004533,42); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (279,'2017-08-10T08:29:32.145Z',NULL,60,7,19.86809834572766,1.19,20.897073629065442,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (280,'2018-10-17T19:07:02.234Z',NULL,8,7,98.83823503993958,5.93,105.04436116705226,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (281,'2017-03-14T20:43:27.742Z',NULL,18,1,54.60204747398195,3.28,57.34706893728227,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (282,'2017-01-08T15:11:26.444Z',NULL,6,1,64.95747510229587,3.9,69.27278277426565,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (283,'2018-10-03T09:10:25.062Z',NULL,39,4,114.58158180283459,6.87,122.88005053279917,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (284,'2017-11-09T21:39:14.743Z',NULL,200,3,48.802638078661005,2.93,52.139876665059,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (285,'2018-05-13T13:08:31.727Z',NULL,118,5,57.627613096978735,3.46,60.50690661866073,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (286,'2018-01-06T22:36:17.244Z',7.959897757905706,115,2,77.91196471862148,4.67,83.02842687886262,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (287,'2019-07-03T23:15:29.897Z',NULL,174,5,111.61430894181083,6.7,117.8434322580816,44); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (288,'2019-04-07T23:26:03.406Z',NULL,120,3,83.5020135028928,5.01,88.91185739546914,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (289,'2019-04-03T03:05:26.275Z',NULL,68,2,115.24343882309758,6.91,121.47227680880327,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (290,'2019-10-27T23:40:28.994Z',NULL,87,3,117.25536340498041,7.04,123.51538004538169,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (291,'2019-06-17T16:21:56.373Z',NULL,194,4,50.38077396807232,3.02,52.93717694886362,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (292,'2017-03-08T12:02:45.306Z',NULL,158,1,93.26282349158673,5.6,99.45967255523763,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (293,'2018-02-02T10:52:34.531Z',NULL,127,2,134.48016314504417,8.07,142.83351613693577,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (294,'2018-01-29T14:34:05.502Z',NULL,11,2,132.45679913492563,7.95,140.3931957861795,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (295,'2020-03-01T11:17:08.503Z',NULL,188,1,33.87738254731509,2.03,36.24786354208219,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (296,'2018-04-29T11:08:07.176Z',NULL,86,2,92.31436670850246,5.54,98.29773609674561,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (297,'2018-03-15T05:50:24.666Z',NULL,149,1,69.15415037577924,4.15,73.23445738304258,45); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (298,'2019-01-31T05:04:04.921Z',NULL,174,2,111.61430894181083,6.7,118.13496639761573,46); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (299,'2019-09-27T08:23:09.843Z',NULL,82,7,60.89545738030947,3.41,64.98852623892408,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (300,'2019-03-05T09:44:19.128Z',NULL,185,1,39.57700083851661,2.22,42.398373536291125,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (301,'2019-03-04T09:53:15.147Z',9.324254543321288,4,1,110.98767151282252,6.22,117.2771630241824,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (302,'2019-05-04T21:46:37.826Z',NULL,14,5,37.648145389078365,2.11,39.59577723258363,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (303,'2019-01-23T15:02:59.201Z',NULL,87,3,117.25536340498041,6.57,125.72843810808136,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (304,'2019-04-17T11:18:12.838Z',NULL,27,4,127.52471180754115,7.14,133.27512285851722,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (305,'2018-01-30T21:03:48.031Z',NULL,5,2,124.1176465275534,6.95,132.52547107813146,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (306,'2017-12-18T22:29:05.330Z',NULL,84,2,54.58418555091025,3.06,58.37569400011331,47); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (307,'2019-11-04T09:13:37.905Z',NULL,99,3,67.83486485383094,4.41,72.50076599326405,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (308,'2020-03-16T16:04:04.843Z',NULL,115,1,77.91196471862148,5.06,83.23154437818819,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (309,'2019-01-16T10:14:37.301Z',NULL,9,2,87.46968147789205,5.69,94.20487302050094,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (310,'2018-05-28T17:57:00.838Z',1.3627504831717419,81,3,43.9329842322118,2.86,46.11639156781814,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (311,'2017-06-22T17:55:26.871Z',NULL,73,5,47.752514839713,3.1,50.946068461194265,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (312,'2019-09-20T21:10:57.257Z',NULL,48,5,123.20884248534108,8.01,133.19095690101338,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (313,'2019-08-27T07:54:06.028Z',NULL,66,5,136.16126271106958,8.85,145.899210355003,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (314,'2018-04-16T04:33:32.237Z',NULL,183,2,56.697412301919755,3.69,59.81758737487091,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (315,'2017-08-16T19:22:10.116Z',NULL,180,5,45.549391048892794,2.96,47.812178512601854,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (316,'2016-06-10T22:50:46.065Z',NULL,33,3,31.829909130640935,2.07,33.701686067486584,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (317,'2017-10-16T04:28:02.995Z',1.814179669588109,18,3,54.60204747398195,3.55,58.05059162737857,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (318,'2020-03-27T21:21:24.171Z',NULL,43,1,76.35255205175756,4.96,81.59280685084616,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (319,'2017-12-29T05:02:42.685Z',NULL,155,2,29.183828734551838,1.9,31.147160711551194,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (320,'2018-03-15T13:08:31.977Z',NULL,91,1,65.09432810381134,4.23,69.6382303637189,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (321,'2017-12-20T20:56:25.082Z',NULL,48,2,82.13922832356072,5.34,87.8744546706753,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (322,'2019-04-17T17:17:59.311Z',NULL,45,2,118.0495173798411,7.67,127.74409202414923,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (323,'2016-11-20T15:28:50.612Z',NULL,30,3,42.7829881204479,2.78,45.75488840009259,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (324,'2018-02-21T18:11:12.050Z',NULL,2,2,105.11984419607644,6.83,111.75079806700505,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (325,'2017-04-25T11:26:11.899Z',NULL,125,3,53.59799471993963,3.48,56.27708785457561,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (326,'2019-06-15T07:53:27.147Z',NULL,108,7,50.094887884945365,3.26,52.63596274749747,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (327,'2016-10-14T01:00:14.110Z',NULL,105,5,35.149014295079674,2.28,37.76557343954759,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (328,'2018-06-19T10:41:09.671Z',NULL,59,4,89.20214751859149,5.8,95.19084162151137,48); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (329,'2019-03-02T03:19:49.517Z',NULL,25,1,68.62263967182464,2.9,72.86755415700623,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (330,'2019-01-22T09:26:18.581Z',NULL,93,1,49.81864156655383,2.1,52.003788633528856,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (331,'2018-05-13T08:19:19.783Z',NULL,142,3,70.34853057210945,2.97,73.86242959600735,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (332,'2017-12-28T06:26:38.621Z',NULL,164,1,61.978598800110106,2.62,65.03911702764272,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (333,'2017-04-12T09:54:46.609Z',3.4669039785687397,126,3,83.49598746872304,3.53,87.17140310741816,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (334,'2019-08-21T22:26:01.217Z',NULL,46,9,118.0495173798411,4.99,123.11226718098052,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (335,'2019-06-28T16:18:51.950Z',NULL,179,8,68.32408657333919,2.89,71.9020069746059,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (336,'2020-02-26T07:08:23.350Z',NULL,112,2,41.329386510090345,1.75,43.630131849366705,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (337,'2018-01-26T19:47:47.780Z',NULL,46,3,118.0495173798411,4.99,122.06441875804397,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (338,'2018-03-09T09:06:58.081Z',NULL,83,1,81.87627832636537,3.46,85.95386030802133,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (339,'2017-09-30T16:10:20.246Z',NULL,199,4,76.95334253952366,3.25,80.34154786510507,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (340,'2017-11-18T12:30:08.404Z',NULL,136,3,70.13601544771562,2.96,73.43576765872746,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (341,'2019-10-04T18:38:56.697Z',NULL,84,8,81.87627832636537,3.46,84.96014481976405,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (342,'2018-04-21T20:31:18.326Z',NULL,5,4,124.1176465275534,5.24,127.28227675709384,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (343,'2019-11-26T16:32:22.666Z',NULL,97,4,112.41825444654248,4.75,117.68018819515018,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (344,'2017-02-01T16:58:02.866Z',NULL,161,2,31.727470408648482,1.34,33.56791272735407,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (345,'2018-10-23T20:00:39.712Z',NULL,37,5,80.10774204020768,3.38,83.09579356698663,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (346,'2018-04-20T16:28:46.875Z',NULL,6,26,97.43621265344382,4.12,101.79606609311715,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (347,'2019-04-13T13:06:45.383Z',NULL,3,3,53.08311732230858,2.24,54.781726089504055,49); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (348,'2018-02-23T18:18:45.971Z',NULL,135,2,45.80402317157342,2.29,48.40600947284492,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (349,'2019-08-26T17:56:18.766Z',NULL,10,10,47.6793282102869,2.38,50.56354867439335,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (350,'2018-12-15T20:45:09.071Z',NULL,2,2,105.11984419607644,5.26,110.86046555050413,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (351,'2016-07-31T08:17:59.684Z',NULL,80,4,36.60883787357609,1.83,38.72055341737509,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (352,'2019-07-17T03:13:00.132Z',NULL,137,6,67.77247956807186,3.39,70.47575431846637,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (353,'2017-09-18T15:22:04.274Z',NULL,7,6,98.81933684368194,4.94,103.38827112093423,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (354,'2017-05-12T16:54:30.447Z',NULL,161,5,31.727470408648482,1.59,33.14061091050696,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (355,'2018-02-11T00:13:02.874Z',4.835365309619927,30,2,64.17448218067184,3.21,67.07979511603139,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (356,'2019-03-21T08:20:33.508Z',NULL,102,1,47.04215255778118,2.35,50.284180677184075,50); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (357,'2019-03-31T07:19:13.677Z',NULL,65,1,68.22769726470014,4.78,74.45901506285419,51); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (358,'2019-04-11T13:03:02.375Z',NULL,200,3,73.20395711799151,5.12,77.38298616695519,51); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (359,'2019-08-13T02:18:29.568Z',NULL,2,7,105.11984419607644,4.2,108.77943135281718,52); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (360,'2018-07-11T14:54:35.341Z',NULL,196,5,70.14610686710009,2.81,72.1760769872859,52); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (361,'2017-08-21T10:43:27.540Z',NULL,199,9,76.95334253952366,3.08,80.27061473358305,52); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (362,'2018-12-12T14:11:02.206Z',NULL,144,3,61.1983004605443,2.45,63.08752753630077,52); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (363,'2017-08-02T20:06:15.705Z',NULL,176,7,38.616539622351056,2.7,41.41921196948136,53); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (364,'2018-06-19T09:14:05.861Z',2.8108339185039846,191,6,128.5841852057933,9,138.2740531398999,53); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (365,'2017-11-20T11:26:38.918Z',NULL,6,3,64.95747510229587,4.55,69.88593603063487,53); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (366,'2019-04-20T04:32:37.824Z',NULL,37,3,80.10774204020768,5.61,84.21873820977267,53); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (367,'2020-01-23T18:15:23.279Z',NULL,86,2,92.31436670850246,5.08,98.1872143022172,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (368,'2019-04-02T14:41:29.836Z',NULL,90,4,123.1196127553999,6.77,128.68723173579426,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (369,'2018-12-22T21:37:37.778Z',NULL,106,2,52.723521442619514,2.9,56.47458349620551,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (370,'2020-02-02T09:51:16.274Z',NULL,41,1,63.50890855689462,3.49,66.0853892324024,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (371,'2020-01-30T09:48:17.537Z',NULL,168,1,118.93172693453273,6.54,124.21047533539897,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (372,'2019-09-11T09:50:37.152Z',NULL,99,3,67.83486485383094,3.73,73.04078947296638,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (373,'2020-01-21T16:40:45.790Z',NULL,37,2,80.10774204020768,4.41,83.46012132805797,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (374,'2018-03-26T06:11:39.416Z',NULL,89,1,63.719612755399886,3.5,67.26094107323665,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (375,'2019-11-27T04:02:56.664Z',NULL,88,2,105.41292031622555,5.8,113.56060055973086,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (376,'2019-03-27T10:36:04.948Z',NULL,50,1,53.64019616819762,2.95,56.20423519482965,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (377,'2019-12-24T21:06:31.946Z',NULL,144,2,61.1983004605443,3.37,65.24134429069547,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (378,'2019-03-28T21:23:27.882Z',NULL,93,1,49.81864156655383,2.74,53.63963971010252,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (379,'2019-03-30T03:26:02.413Z',NULL,143,1,61.1983004605443,3.37,65.75102686554966,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (380,'2018-04-24T04:10:24.251Z',NULL,95,2,49.81864156655383,2.74,52.12071416409949,54); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (381,'2018-08-24T02:12:10.251Z',3.898344060565898,65,5,68.22769726470014,1.98,69.62340790180703,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (382,'2019-08-26T12:44:21.445Z',NULL,142,7,70.34853057210945,2.04,71.49193358733542,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (383,'2020-02-04T14:58:02.739Z',NULL,10,2,47.6793282102869,1.38,48.59156957937413,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (384,'2017-02-08T17:31:32.788Z',NULL,79,2,27.74461152277315,0.8,29.00406572036796,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (385,'2017-07-14T11:37:30.265Z',NULL,124,7,73.95430432556165,2.14,74.85694260575053,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (386,'2020-01-06T17:59:58.214Z',NULL,11,3,132.45679913492563,3.84,136.0827569771057,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (387,'2018-01-23T02:55:19.603Z',NULL,94,2,109.21864156655383,3.17,114.15951778671293,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (388,'2017-10-14T21:21:00.015Z',NULL,33,5,31.829909130640935,0.92,32.30255040917255,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (389,'2018-05-23T03:41:32.176Z',NULL,181,4,143.88940370476112,4.17,148.22314071437344,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (390,'2018-09-11T01:52:10.308Z',NULL,128,5,75.08016314504417,2.18,76.42502365453973,56); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (391,'2019-03-03T12:35:40.795Z',NULL,38,1,66.06937283839378,3.96,69.61636192088085,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (392,'2019-10-25T00:33:50.031Z',NULL,15,4,37.648145389078365,2.26,40.34538717239162,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (393,'2020-02-06T00:28:38.766Z',NULL,39,1,114.58158180283459,6.87,122.28217275024012,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (394,'2018-10-20T15:49:17.571Z',NULL,17,4,79.93608046792765,4.8,85.0858203587512,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (395,'2019-09-19T00:49:00.466Z',NULL,199,5,115.4300138092855,6.93,120.81055827436172,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (396,'2019-09-08T03:58:52.357Z',NULL,32,5,107.1448636959614,6.43,114.31211081088998,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (397,'2018-01-11T22:54:05.414Z',NULL,47,2,84.0766209826718,5.04,90.7499417106083,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (398,'2018-05-13T04:26:35.023Z',NULL,197,5,70.14610686710009,4.21,76.01338201616488,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (399,'2020-04-08T13:59:25.853Z',NULL,24,4,112.30643674729413,6.74,117.27581232867391,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (400,'2017-08-17T17:53:28.363Z',NULL,34,9,49.535942579421324,2.97,52.177464742500625,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (401,'2019-01-06T21:15:34.699Z',NULL,53,2,44.27587240151534,2.66,47.205738088428575,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (402,'2019-05-15T10:11:28.986Z',NULL,159,5,35.53017445377361,2.13,38.41711680247753,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (403,'2017-03-29T14:23:39.433Z',NULL,163,1,22.378598800110105,1.34,23.92224253271061,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (404,'2018-09-17T06:08:23.148Z',NULL,66,5,136.16126271106958,8.17,143.55062850130912,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (405,'2019-01-15T12:03:15.018Z',NULL,116,2,114.42485125407785,6.87,121.51827455929872,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (406,'2020-03-29T05:09:14.418Z',NULL,135,1,45.80402317157342,2.75,47.823498728925955,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (407,'2018-08-27T00:42:25.024Z',NULL,9,6,87.46968147789205,5.25,92.7496706621034,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (408,'2019-10-23T16:42:00.522Z',NULL,94,3,109.21864156655383,6.55,114.89993508058976,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (409,'2020-03-23T15:17:05.632Z',6.422638933252092,108,1,50.094887884945365,3.01,53.896463762580886,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (410,'2017-07-02T12:56:21.145Z',NULL,122,4,66.56352219205405,3.99,70.85148805307942,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (411,'2019-01-19T19:03:08.410Z',NULL,44,2,76.35255205175756,4.58,81.46738668101031,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (412,'2020-03-18T10:48:58.903Z',NULL,17,1,79.93608046792765,4.8,84.86751050635075,57); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (413,'2016-09-30T18:50:30.528Z',NULL,25,4,45.7484264478831,2.74,47.70890910336195,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (414,'2018-03-01T07:57:22.443Z',NULL,141,1,126.20312547576883,7.57,135.3820776557282,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (415,'2020-02-21T21:43:22.083Z',NULL,29,2,123.57448218067185,7.41,131.81705611905855,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (416,'2016-10-28T08:51:33.406Z',NULL,167,6,65.13633042746795,3.91,69.66705580375492,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (417,'2020-04-13T13:39:43.254Z',NULL,26,3,68.12471180754113,4.09,73.945586801666,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (418,'2020-02-14T10:12:57.720Z',NULL,134,2,42.49233549998661,2.55,44.49539115360754,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (419,'2017-08-11T03:41:44.510Z',NULL,146,9,84.03151414144409,5.04,90.61829794465477,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (420,'2016-06-23T18:11:12.940Z',NULL,55,6,63.84752383956291,3.83,68.51641350964162,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (421,'2019-05-16T22:30:22.001Z',NULL,154,4,81.87529553312261,4.91,88.70428676778968,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (422,'2017-01-23T06:32:25.410Z',NULL,109,2,79.36660712128732,4.76,84.6521547546228,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (423,'2019-11-01T13:11:10.807Z',NULL,97,2,112.41825444654248,6.75,121.07592604100273,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (424,'2017-12-09T05:35:23.576Z',NULL,195,2,73.18718264538155,4.39,78.70398675198534,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (425,'2018-06-19T18:12:06.145Z',NULL,139,5,76.77768319177018,4.61,79.88540142515373,58); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (426,'2019-08-18T04:49:44.640Z',1.9723649095629532,111,6,55.526746186906664,1.61,56.54305346585669,59); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (427,'2018-10-16T02:39:22.089Z',NULL,179,5,68.32408657333919,1.98,70.52115094842453,59); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (428,'2020-03-05T00:55:12.827Z',NULL,199,1,115.4300138092855,3.35,118.31446492955719,59); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (429,'2018-08-30T01:53:04.172Z',NULL,108,6,50.094887884945365,1.45,51.637524242886435,59); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (430,'2017-12-11T11:28:30.062Z',NULL,159,2,23.686782969182406,1.42,24.937942498189493,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (431,'2017-10-29T07:04:26.371Z',NULL,94,4,72.81242771103588,4.37,75.97530913131227,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (432,'2019-09-07T09:16:15.917Z',NULL,54,4,62.09360840402396,3.73,66.7328758462609,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (433,'2017-03-14T11:58:50.111Z',NULL,109,1,79.36660712128732,4.76,82.49752305686192,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (434,'2017-01-03T00:26:48.520Z',NULL,120,2,55.668009001928525,3.34,57.932085813587584,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (435,'2019-05-16T01:29:13.430Z',NULL,140,5,66.80312547576881,4.01,69.54596714535174,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (436,'2018-11-14T21:00:27.503Z',NULL,67,4,41.24480890795779,2.47,44.35828856850427,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (437,'2018-06-03T08:17:10.250Z',NULL,139,7,76.77768319177018,4.61,83.21237373146319,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (438,'2018-01-05T20:44:49.943Z',NULL,190,2,128.5841852057933,7.72,137.57231774773834,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (439,'2018-03-25T13:08:50.346Z',NULL,97,1,112.41825444654248,6.75,119.38404141372392,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (440,'2019-12-26T06:59:20.126Z',NULL,157,1,139.8942352373801,8.39,147.24301380092294,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (441,'2018-02-01T00:19:13.758Z',NULL,76,1,63.82421061366486,3.83,68.05809097118585,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (442,'2020-01-17T10:55:52.769Z',NULL,166,1,38.30449564120193,2.3,40.96304727633953,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (443,'2018-11-07T01:21:45.814Z',NULL,110,3,55.526746186906664,3.33,58.192641761478534,60); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (444,'2019-09-01T18:26:39.434Z',NULL,174,6,111.61430894181083,5.3,119.4173523960198,61); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (445,'2016-09-30T11:12:07.118Z',6.876628911620124,118,6,38.418408731319154,1.82,40.12376218898509,61); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (446,'2019-02-13T15:39:53.968Z',NULL,66,2,136.16126271106958,6.47,139.9123127656255,61); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (447,'2018-01-19T06:37:14.795Z',NULL,11,2,132.45679913492563,6.29,140.66457013942542,61); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (448,'2016-12-25T22:19:38.656Z',NULL,1,2,29.463261130679875,1.4,30.25633246374132,61); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (449,'2017-09-02T02:34:34.273Z',NULL,187,6,65.98466722567774,3.96,71.4961674232651,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (450,'2020-03-18T07:55:32.395Z',NULL,190,1,128.5841852057933,7.72,137.45112973190433,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (451,'2019-06-17T19:47:17.628Z',NULL,173,6,122.3651993029456,7.34,128.17857701856124,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (452,'2020-04-09T12:19:46.871Z',NULL,69,2,73.38772304360626,4.4,77.09431003701884,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (453,'2019-01-13T04:03:26.192Z',NULL,145,2,61.1983004605443,3.67,63.78285489131002,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (454,'2020-03-04T07:20:42.504Z',NULL,72,1,142.20381898788685,8.53,150.6933347851434,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (455,'2017-09-20T07:26:12.723Z',NULL,49,5,87.61910559549149,5.26,91.395810106576,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (456,'2018-11-30T18:05:33.044Z',7.541138853904888,171,3,105.07665741496471,6.3,112.56829697856075,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (457,'2018-05-22T04:30:44.305Z',NULL,178,5,117.32963250370614,7.04,124.5196909821671,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (458,'2017-12-09T17:59:11.752Z',NULL,157,2,93.26282349158673,5.6,98.7943660650463,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (459,'2019-03-15T19:51:20.396Z',NULL,171,1,105.07665741496471,6.3,111.74988784408215,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (460,'2020-03-19T05:27:41.001Z',NULL,109,1,119.04991068193098,7.14,127.81347076387381,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (461,'2017-12-12T00:25:52.755Z',NULL,131,2,75.41148135558485,4.52,80.80127557476384,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (462,'2017-07-13T11:33:05.440Z',NULL,44,2,50.90170136783837,3.05,53.32536407714942,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (463,'2019-12-16T10:35:43.140Z',NULL,59,1,89.20214751859149,5.35,93.75123655570917,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (464,'2020-01-13T21:58:59.374Z',NULL,183,1,56.697412301919755,3.4,60.791609236243424,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (465,'2019-05-04T16:41:35.285Z',NULL,178,3,117.32963250370614,7.04,121.97419782345847,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (466,'2018-12-28T12:58:29.042Z',NULL,158,1,139.8942352373801,8.39,151.8981154262864,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (467,'2018-12-24T09:05:48.557Z',6.34963976049332,175,1,117.3248094335266,7.04,125.82643041553015,63); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (468,'2019-08-23T00:57:43.983Z',NULL,80,4,54.91325681036414,2.2,58.61842722995467,64); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (469,'2018-08-13T01:31:58.300Z',NULL,180,6,68.32408657333919,2.73,71.13040885356708,64); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (470,'2019-08-18T07:26:43.339Z',NULL,63,7,133.5202262591817,5.34,141.89874882519297,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (471,'2017-11-13T20:28:23.397Z',NULL,12,2,77.34285054412217,3.09,79.4407328266171,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (472,'2019-12-27T20:21:32.307Z',NULL,76,1,63.82421061366486,2.55,66.22436839451568,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (473,'2019-03-24T09:01:14.827Z',NULL,150,1,128.55415037577922,5.14,136.44156523489087,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (474,'2017-10-31T07:22:14.001Z',NULL,113,7,73.65150250790677,2.95,77.75060305206577,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (475,'2019-10-11T09:47:07.483Z',NULL,197,7,70.14610686710009,2.81,71.66012837265198,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (476,'2020-03-24T20:24:47.644Z',NULL,86,1,92.31436670850246,3.69,97.84516246123424,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (477,'2017-11-02T19:53:34.752Z',NULL,42,2,25.336071424606207,1.01,26.61514718730732,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (478,'2019-04-27T21:03:39.073Z',8.388059406656478,190,3,128.5841852057933,5.14,135.91034753483504,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (479,'2017-07-25T12:09:25.243Z',NULL,55,5,63.84752383956291,2.55,65.37044154843309,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (480,'2018-05-21T05:30:00.660Z',NULL,129,4,148.1672972165937,5.93,155.11814747514092,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (481,'2016-12-14T17:13:11.386Z',NULL,151,2,61.07534871228964,2.44,64.78784694884361,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (482,'2017-06-12T23:52:28.674Z',NULL,72,6,94.80254599192457,3.79,97.47813044447133,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (483,'2018-01-02T19:01:51.174Z',NULL,74,2,51.12804227386549,2.05,54.28385180449206,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (484,'2019-11-25T17:43:52.545Z',NULL,74,3,51.12804227386549,2.05,52.332614020071034,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (485,'2017-11-10T08:05:46.165Z',NULL,77,2,67.34461152277315,2.69,69.8027015475326,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (486,'2018-01-13T16:31:04.766Z',NULL,62,1,133.5202262591817,5.34,141.16101464699383,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (487,'2019-11-21T09:10:06.485Z',3.231974640164916,70,2,57.493003808959784,2.3,60.68725579249943,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (488,'2017-04-26T09:18:38.798Z',NULL,48,3,82.13922832356072,3.29,87.14535371196993,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (489,'2020-04-13T22:31:06.897Z',NULL,181,33,143.88940370476112,5.76,148.8314811023964,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (490,'2018-10-21T20:44:39.621Z',NULL,18,6,81.90307121097293,3.28,86.68056697082629,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (491,'2017-11-20T16:20:53.130Z',NULL,190,3,85.72279013719552,3.43,87.18535661668042,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (492,'2019-06-07T07:36:02.957Z',NULL,20,5,37.32649625046575,1.49,38.748652261326356,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (493,'2017-02-04T10:16:00.936Z',NULL,1,1,29.463261130679875,1.18,30.375193630968674,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (494,'2018-11-08T16:25:53.483Z',NULL,192,2,69.18418520579327,2.77,73.99204940097943,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (495,'2019-07-29T21:06:13.536Z',NULL,6,4,97.43621265344382,3.9,103.18201119587263,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (496,'2017-04-09T12:52:19.187Z',NULL,194,2,33.587182645381546,1.34,35.33146840939703,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (497,'2019-07-17T23:01:18.153Z',NULL,70,5,57.493003808959784,2.3,61.04767977699996,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (498,'2019-03-19T23:33:25.544Z',NULL,86,1,92.31436670850246,3.69,98.77624981080739,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (499,'2017-11-20T01:33:29.306Z',NULL,178,3,78.21975500247076,3.13,83.41519452277176,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (500,'2017-11-25T06:36:09.701Z',NULL,115,3,51.94130981241432,2.08,54.02648606174768,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (501,'2019-11-04T23:23:07.505Z',NULL,113,3,110.47725376186015,4.42,112.82226178332401,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (502,'2018-01-14T02:06:44.968Z',NULL,57,2,122.4223933583994,4.9,130.5197071598022,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (503,'2020-03-28T21:52:21.146Z',5.092972950830345,62,1,133.5202262591817,5.34,139.32487470848483,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (504,'2017-06-15T10:00:23.342Z',NULL,81,6,29.288656154807867,1.17,31.0480661610767,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (505,'2019-06-29T08:12:07.527Z',NULL,70,7,57.493003808959784,2.3,59.12600713059797,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (506,'2019-10-27T05:39:57.067Z',NULL,35,8,71.53687730741436,2.86,74.98490263678397,65); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (507,'2017-08-07T17:14:26.159Z',NULL,142,6,46.8990203814063,1.88,48.189028521382454,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (508,'2016-08-21T02:43:50.773Z',NULL,36,4,87.29125153827623,3.49,89.55239806614959,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (509,'2018-11-12T08:50:33.454Z',4.68266106651563,199,3,115.4300138092855,4.62,118.76539396641445,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (510,'2018-01-05T19:27:01.469Z',4.68266106651563,32,2,107.1448636959614,4.29,110.48958007242227,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (511,'2018-12-29T20:33:52.121Z',NULL,51,2,75.65058751905018,3.03,76.87841341956877,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (512,'2020-02-17T03:42:15.774Z',NULL,24,1,112.30643674729413,4.49,114.8152083345792,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (513,'2018-05-02T22:31:50.488Z',NULL,179,4,68.32408657333919,2.73,69.87229508473077,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (514,'2018-02-26T23:30:46.919Z',NULL,190,2,128.5841852057933,5.14,134.3443482471475,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (515,'2019-02-06T03:49:24.207Z',NULL,7,2,148.22900526552291,5.93,150.50013834758286,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (516,'2018-02-09T13:09:14.358Z',NULL,36,2,130.93687730741433,5.24,133.25641301591858,66); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (517,'2016-12-28T08:49:34.616Z',NULL,113,2,73.65150250790677,5.16,79.2372756447153,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (518,'2018-07-28T07:46:56.706Z',NULL,114,6,77.91196471862148,5.45,85.40453320056703,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (519,'2019-07-01T00:10:10.156Z',NULL,77,5,101.01691728415972,7.07,108.91991812987426,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (520,'2019-05-20T16:58:45.781Z',NULL,111,3,55.526746186906664,3.89,59.512445025291925,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (521,'2017-12-15T14:59:12.994Z',NULL,48,1,82.13922832356072,5.75,85.70397408664222,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (522,'2019-06-06T21:10:20.938Z',NULL,15,6,37.648145389078365,2.64,40.29238697054473,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (523,'2019-01-06T19:44:02.891Z',NULL,150,3,128.55415037577922,9,135.58741086609672,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (524,'2017-03-11T12:21:01.965Z',NULL,171,1,70.05110494330981,4.9,73.51238957493425,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (525,'2017-08-12T18:39:04.103Z',NULL,139,7,51.18512212784679,3.58,54.73868214236741,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (526,'2017-11-13T11:18:27.666Z',NULL,50,3,35.76013077879841,2.5,39.27368126336068,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (527,'2017-03-09T21:58:06.145Z',NULL,160,1,31.727470408648482,2.22,34.5566254775671,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (528,'2018-04-23T09:25:26.221Z',NULL,19,2,64.00675097561322,4.48,70.39899938320313,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (529,'2017-10-19T08:20:17.663Z',NULL,106,3,35.149014295079674,2.46,36.76408840154836,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (530,'2017-03-19T20:56:02.726Z',NULL,23,1,77.91115072995538,5.45,82.9479906229479,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (531,'2020-02-11T19:58:51.215Z',NULL,125,2,80.39699207990944,5.63,87.26147739921424,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (532,'2020-03-12T15:37:38.593Z',NULL,169,1,59.53172693453274,4.17,62.104815774001,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (533,'2019-04-03T14:43:51.300Z',NULL,76,2,63.82421061366486,4.47,68.7894433588639,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (534,'2018-02-21T19:23:57.595Z',NULL,21,1,60.57501609456816,4.24,65.77783612911595,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (535,'2018-09-20T09:29:52.775Z',NULL,194,5,50.38077396807232,3.53,54.02730291436511,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (536,'2016-11-27T05:57:53.227Z',NULL,104,3,70.96143503852079,4.97,76.99473146426797,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (537,'2016-09-24T20:04:25.846Z',NULL,51,5,50.433725012700116,3.53,53.876559067916794,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (538,'2019-11-16T06:22:27.734Z',NULL,115,3,77.91196471862148,5.45,83.25859639545362,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (539,'2016-11-12T15:04:02.834Z',NULL,177,3,85.87953212963993,6.01,92.48679524401395,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (540,'2019-10-04T13:22:03.453Z',NULL,48,5,123.20884248534108,8.62,133.27175055618787,68); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (541,'2017-12-10T19:06:19.343Z',NULL,131,2,75.41148135558485,4.52,79.13935439230066,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (542,'2017-10-13T08:12:40.437Z',NULL,30,5,42.7829881204479,2.57,46.4237287872139,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (543,'2017-11-07T15:29:19.044Z',NULL,78,3,27.74461152277315,1.66,29.962256354974603,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (544,'2020-01-07T21:42:56.098Z',NULL,162,2,33.56789820016516,2.01,35.07911804597749,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (545,'2016-10-31T22:23:38.351Z',NULL,176,6,38.616539622351056,2.32,41.98875141098522,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (546,'2017-12-18T14:09:44.487Z',NULL,86,2,61.54291113900164,3.69,63.67721174833752,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (547,'2018-09-07T17:56:21.957Z',NULL,116,5,114.42485125407785,6.87,123.03344419065316,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (548,'2017-09-18T09:50:46.902Z',3.9506330973221635,52,5,69.1172482676769,4.15,74.13660097758387,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (549,'2019-03-13T16:35:01.056Z',NULL,110,1,55.526746186906664,3.33,59.15257318694617,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (550,'2018-06-16T14:36:07.171Z',NULL,93,7,49.81864156655383,2.99,51.76790507614482,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (551,'2018-12-17T02:54:21.866Z',NULL,101,2,139.82488066180403,8.39,149.0796845975888,69); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (552,'2018-02-03T02:27:04.977Z',NULL,8,2,98.83823503993958,5.44,104.62927234716662,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (553,'2016-12-05T20:35:30.921Z',4.184533125260777,185,2,26.384667225677738,1.45,27.279416951927242,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (554,'2019-10-30T20:36:47.512Z',NULL,84,8,81.87627832636537,4.5,87.28700007187848,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (555,'2018-02-09T01:03:17.177Z',2.520512100319891,169,2,59.53172693453274,3.27,64.74832962027563,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (556,'2018-10-19T16:34:40.010Z',NULL,189,6,93.27738254731509,5.13,98.58531972392475,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (557,'2019-06-26T16:08:04.058Z',NULL,144,7,61.1983004605443,3.37,64.61188912812014,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (558,'2017-01-01T07:10:22.330Z',NULL,85,2,36.6006982295235,2.01,38.83386912282367,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (559,'2018-11-04T18:49:40.522Z',NULL,103,2,47.04215255778118,2.59,50.66021001484481,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (560,'2020-03-18T11:59:40.678Z',NULL,127,1,134.48016314504417,7.4,145.82644987343713,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (561,'2019-01-03T10:45:31.067Z',NULL,47,1,84.0766209826718,4.62,87.85778911071937,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (562,'2017-07-04T04:57:34.585Z',NULL,61,4,15.691943673970439,0.86,17.020861755627458,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (563,'2017-02-20T09:50:38.105Z',NULL,83,2,54.58418555091025,3,56.16931805283598,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (564,'2018-09-16T22:05:20.690Z',NULL,139,6,76.77768319177018,4.22,81.55628201298688,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (565,'2020-02-10T14:46:52.286Z',NULL,31,2,105.65346467128523,5.81,110.5707357173774,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (566,'2016-08-23T10:12:52.767Z',NULL,142,8,46.8990203814063,2.58,50.72230597686733,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (567,'2016-11-21T09:47:54.732Z',NULL,144,3,40.7988669736962,2.24,41.87091836344544,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (568,'2019-06-22T13:53:42.208Z',NULL,59,6,89.20214751859149,4.91,92.94279825657622,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (569,'2018-01-12T09:16:45.095Z',NULL,132,2,127.88197029833711,7.03,136.94951166074443,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (570,'2016-07-18T01:10:43.714Z',NULL,158,5,93.26282349158673,5.13,99.1071278680862,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (571,'2017-07-16T09:00:57.888Z',NULL,60,45,19.86809834572766,1.09,21.349056923953192,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (572,'2017-03-17T12:57:11.440Z',NULL,192,1,46.122790137195516,2.54,49.67311467803386,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (573,'2018-01-19T04:23:38.012Z',NULL,88,2,105.41292031622555,5.8,112.01542943421637,70); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (574,'2020-01-05T15:45:46.402Z',NULL,200,2,73.20395711799151,4.39,79.73523378190829,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (575,'2018-10-22T18:24:55.118Z',7.32921965952276,123,7,110.93145648834248,6.66,119.06710090224144,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (576,'2018-03-22T14:41:44.871Z',NULL,163,1,33.56789820016516,2.01,35.745860323232925,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (577,'2018-08-07T23:34:02.141Z',2.82921965952276,98,6,112.41825444654248,6.75,119.04633040426457,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (578,'2017-09-28T09:12:23.660Z',NULL,20,5,24.884330833643833,1.49,26.162443424237942,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (579,'2020-03-22T18:46:46.562Z',NULL,107,1,50.094887884945365,3.01,52.95159242344872,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (580,'2019-12-30T17:30:53.690Z',NULL,125,1,80.39699207990944,4.82,84.85980314418207,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (581,'2020-02-26T19:26:56.378Z',NULL,149,1,69.15415037577924,4.15,74.00483713746483,72); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (582,'2018-10-27T08:11:40.986Z',4.879512273098634,56,3,36.37128575934436,2.27,38.999404577511314,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (583,'2019-01-14T15:48:16.392Z',NULL,104,1,106.44215255778118,6.65,111.35841098160098,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (584,'2018-09-07T16:49:02.055Z',NULL,136,4,105.20402317157343,6.58,113.5675350661014,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (585,'2019-10-06T05:46:26.788Z',NULL,108,5,50.094887884945365,3.13,52.74961657842628,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (586,'2018-07-07T02:30:48.437Z',NULL,70,4,57.493003808959784,3.59,60.235796663144214,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (587,'2018-01-01T12:32:46.279Z',NULL,90,1,123.1196127553999,7.69,134.76226370934873,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (588,'2018-09-10T05:24:35.771Z',NULL,32,3,107.1448636959614,6.7,116.08877272528528,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (589,'2019-12-14T23:38:00.895Z',NULL,109,2,119.04991068193098,7.44,123.20834174782283,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (590,'2019-05-07T08:45:47.240Z',NULL,165,5,38.30449564120193,2.39,39.78981786717493,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (591,'2017-11-12T18:30:29.544Z',NULL,183,3,37.7982748679465,2.36,41.01619862210667,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (592,'2019-12-28T15:01:22.230Z',NULL,195,2,109.78077396807234,6.86,119.7511372471248,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (593,'2019-10-12T18:19:00.874Z',NULL,146,6,126.04727121216614,7.88,137.35582293688188,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (594,'2018-05-28T00:22:28.333Z',NULL,119,5,43.43814329652384,2.71,46.423267472894416,73); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (595,'2018-11-05T06:51:27.464Z',NULL,166,3,38.30449564120193,2.68,42.21744161229027,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (596,'2018-10-30T15:18:36.464Z',NULL,10,7,47.6793282102869,3.34,50.074760280518035,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (597,'2019-08-23T20:15:03.319Z',NULL,159,9,35.53017445377361,2.49,38.70945912648682,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (598,'2018-08-20T19:34:06.505Z',NULL,11,9,132.45679913492563,9.27,143.68337272095295,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (599,'2019-05-02T16:23:10.538Z',NULL,189,6,93.27738254731509,6.53,100.76397250495064,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (600,'2018-02-24T14:38:24.307Z',NULL,29,2,123.57448218067185,8.65,136.43212797084712,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (601,'2018-08-15T07:40:07.473Z',NULL,192,6,69.18418520579327,4.84,75.50797750399335,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (602,'2017-08-20T12:52:59.111Z',4.290982366516844,85,8,36.6006982295235,2.56,38.65122183510971,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (603,'2018-08-07T15:09:59.738Z',NULL,119,9,43.43814329652384,3.04,45.263282660913475,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (604,'2018-07-14T11:25:18.816Z',NULL,193,7,50.38077396807232,3.53,55.41968918708753,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (605,'2017-07-10T21:19:28.881Z',NULL,85,7,36.6006982295235,2.56,38.092567267118525,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (606,'2017-08-04T22:04:44.584Z',NULL,117,9,36.683234169385244,2.57,39.728152487452824,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (607,'2019-08-04T08:22:40.238Z',NULL,1,7,44.19489169601981,3.09,48.15644739231997,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (608,'2019-08-06T02:00:50.320Z',NULL,195,7,109.78077396807234,7.68,121.20137296834137,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (609,'2019-10-13T12:41:18.075Z',NULL,123,7,110.93145648834248,7.77,117.01995063299688,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (610,'2019-10-07T21:42:52.130Z',NULL,86,6,92.31436670850246,6.46,98.47550675096225,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (611,'2019-09-12T16:07:24.594Z',NULL,31,5,105.65346467128523,7.4,110.70724732556846,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (612,'2019-09-11T05:58:00.257Z',NULL,19,5,64.00675097561322,4.48,69.46639299663428,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (613,'2019-03-26T12:42:44.448Z',NULL,142,1,70.34853057210945,4.92,76.42976706359154,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (614,'2017-04-03T17:05:22.663Z',NULL,185,4,26.384667225677738,1.85,28.438046671431664,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (615,'2020-03-31T23:28:11.385Z',NULL,158,1,139.8942352373801,9.79,153.60970169905661,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (616,'2018-09-05T17:05:43.092Z',NULL,115,4,77.91196471862148,5.45,81.77897807585713,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (617,'2019-07-22T03:46:40.122Z',NULL,161,3,47.59120561297272,3.33,49.70766153776058,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (618,'2017-04-21T16:06:20.776Z',NULL,196,2,46.76407124473339,3.27,51.20827632093987,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (619,'2020-02-16T18:48:51.193Z',NULL,135,2,45.80402317157342,3.21,48.43913218681681,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (620,'2019-05-26T10:33:47.552Z',NULL,93,3,49.81864156655383,3.49,53.169664155209965,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (621,'2020-03-23T12:17:04.703Z',6.44280828433563,122,1,99.84528328808108,6.99,108.36667599400664,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (622,'2018-07-03T01:28:09.369Z',NULL,176,4,57.92480943352658,4.05,61.066977688598996,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (623,'2019-01-13T18:48:15.379Z',NULL,93,2,49.81864156655383,3.49,51.84589835153026,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (624,'2017-05-11T21:58:23.083Z',NULL,30,4,42.7829881204479,2.99,47.41857793770316,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (625,'2020-04-02T00:36:55.134Z',NULL,62,2,133.5202262591817,9.35,144.86138888462918,74); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (626,'2018-09-06T18:55:42.764Z',NULL,54,2,62.09360840402396,2.48,65.1065586643507,75); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (627,'2019-06-30T22:34:43.845Z',0.5061647437752104,95,2,49.81864156655383,3.49,53.17995014110339,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (628,'2018-11-15T01:24:59.793Z',NULL,173,2,122.3651993029456,8.57,128.74966506599375,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (629,'2018-07-17T22:17:21.530Z',NULL,94,3,109.21864156655383,7.65,118.7924764831777,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (630,'2017-02-28T06:28:35.705Z',NULL,24,1,74.87095783152942,5.24,79.55345080262768,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (631,'2019-07-27T02:06:31.150Z',0.5061647437752104,142,2,70.34853057210945,4.92,76.29799477154485,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (632,'2019-03-05T15:45:18.644Z',NULL,197,1,70.14610686710009,4.91,73.54555882773,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (633,'2019-06-14T20:11:09.114Z',NULL,186,6,98.9770008385166,6.93,107.76885655484548,76); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (634,'2019-08-04T04:11:38.248Z',NULL,172,8,122.3651993029456,7.34,131.4409479831879,77); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (635,'2020-01-02T03:22:14.010Z',NULL,128,3,75.08016314504417,4.5,79.37408794247257,77); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (636,'2018-10-20T00:23:26.428Z',NULL,183,7,56.697412301919755,3.4,60.63048695123946,77); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (637,'2019-08-16T13:48:23.913Z',NULL,151,9,91.61302306843446,5.5,95.28371288084226,77); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (638,'2020-01-13T15:40:07.287Z',NULL,128,2,75.08016314504417,4.69,82.2712414381673,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (639,'2018-04-07T19:52:09.738Z',8.18296513477883,130,3,75.02573869315137,4.69,77.85587292537993,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (640,'2017-10-29T04:11:17.285Z',NULL,155,7,29.183828734551838,1.82,31.14242360719331,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (641,'2020-02-15T21:28:02.777Z',NULL,163,2,33.56789820016516,2.1,36.90372541852417,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (642,'2019-10-20T11:57:52.657Z',NULL,143,5,61.1983004605443,3.82,64.79627060328093,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (643,'2019-12-24T12:00:11.081Z',NULL,37,1,80.10774204020768,5.01,85.89339986118182,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (644,'2017-01-30T17:54:16.139Z',NULL,84,1,54.58418555091025,3.41,57.38844481406617,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (645,'2019-10-22T16:46:58.602Z',NULL,93,4,49.81864156655383,3.11,51.3287243955036,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (646,'2016-11-29T08:40:52.314Z',NULL,175,3,78.21653962235106,4.89,84.20724111686913,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (647,'2018-04-23T20:41:26.562Z',2.992762673613207,64,3,143.4221774571866,8.96,155.72690503353925,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (648,'2019-10-15T06:31:14.337Z',NULL,76,4,63.82421061366486,3.99,70.02268087348652,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (649,'2018-12-08T14:29:14.585Z',NULL,192,1,69.18418520579327,4.32,76.12890888639522,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (650,'2020-01-18T16:50:31.309Z',NULL,121,1,40.44528328808107,2.53,43.90423825645283,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (651,'2019-10-03T08:49:03.796Z',NULL,145,5,61.1983004605443,3.82,63.546787862601825,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (652,'2018-05-19T21:27:25.627Z',NULL,67,4,41.24480890795779,2.58,42.60975369525286,80); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (653,'2018-10-07T10:27:57.530Z',NULL,40,4,99.66240044231697,6.48,105.35938524950771,81); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (654,'2017-11-23T17:07:44.311Z',NULL,183,2,37.7982748679465,2.46,41.798242465658035,81); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (655,'2017-12-28T10:09:27.531Z',NULL,198,1,46.76407124473339,0,47.03709458229148,83); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (656,'2018-08-29T05:26:33.132Z',NULL,65,5,68.22769726470014,0,68.75747601363382,83); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (657,'2019-11-11T05:52:50.656Z',NULL,31,3,105.65346467128523,0,105.73822706443595,83); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (658,'2018-11-19T08:37:38.067Z',NULL,17,4,79.93608046792765,5.6,86.425450903966,84); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (659,'2017-07-16T13:38:17.618Z',NULL,79,5,27.74461152277315,1.94,30.785436812265342,84); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (660,'2020-01-28T06:54:53.476Z',NULL,84,1,81.87627832636537,5.73,84.84690760182094,84); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (661,'2019-09-30T00:19:47.131Z',NULL,113,5,110.47725376186015,6.9,115.80133048078208,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (662,'2017-04-27T08:21:05.142Z',NULL,30,4,42.7829881204479,2.67,46.02607457948255,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (663,'2019-12-28T15:00:29.606Z',NULL,188,2,33.87738254731509,2.12,36.69355399826056,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (664,'2019-03-07T23:15:09.342Z',NULL,30,1,64.17448218067184,4.01,70.0959576559991,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (665,'2019-05-21T02:16:03.287Z',NULL,62,4,133.5202262591817,8.35,140.59646286245646,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (666,'2017-04-14T17:09:19.640Z',NULL,64,3,95.61478497145774,5.98,100.06322957315416,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (667,'2020-02-12T23:59:13.486Z',NULL,177,2,128.8192981944599,8.05,132.74048679713385,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (668,'2018-10-20T19:35:32.948Z',NULL,57,5,122.4223933583994,7.65,126.26308504459595,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (669,'2020-02-01T03:24:47.982Z',NULL,96,1,104.82144858590365,6.55,115.328214221491,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (670,'2020-02-15T06:22:16.101Z',NULL,90,2,123.1196127553999,7.69,129.33348659268268,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (671,'2019-11-16T05:17:50.938Z',NULL,115,4,77.91196471862148,4.87,81.99291668105185,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (672,'2019-01-03T08:13:52.234Z',NULL,8,2,98.83823503993958,6.18,108.30108652854949,85); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (673,'2019-09-03T17:26:59.506Z',NULL,19,3,64.00675097561322,4.8,70.65098304772008,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (674,'2018-03-06T04:36:59.161Z',NULL,39,1,114.58158180283459,8.59,122.49281012575156,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (675,'2019-08-21T14:39:27.466Z',NULL,26,7,68.12471180754113,5.11,74.29596344139772,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (676,'2019-02-21T03:49:38.648Z',NULL,70,2,57.493003808959784,4.31,60.00982101562812,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (677,'2016-08-03T20:49:04.297Z',NULL,175,7,78.21653962235106,5.87,87.21401873057435,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (678,'2018-01-17T23:34:56.979Z',NULL,82,2,60.89545738030947,4.57,66.13848581551076,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (679,'2017-10-31T15:52:26.910Z',NULL,93,6,33.212427711035886,2.49,36.39203525875358,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (680,'2019-06-01T10:10:11.540Z',NULL,101,6,139.82488066180403,10.49,155.64004914360925,86); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (681,'2019-05-19T05:54:34.615Z',NULL,124,6,110.93145648834248,0,114.34886520378129,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (682,'2018-11-08T00:47:03.093Z',3.6823411390716974,50,4,53.64019616819762,0,54.873069085788686,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (683,'2019-08-24T16:05:43.329Z',NULL,35,9,71.53687730741436,0,69.68041191658573,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (684,'2019-11-05T09:29:30.573Z',NULL,76,4,63.82421061366486,0,65.00595930900532,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (685,'2017-03-21T02:49:06.398Z',NULL,118,1,38.418408731319154,0,38.4947033067392,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (686,'2019-04-14T12:58:10.215Z',NULL,170,3,105.07665741496471,0,102.20643819783827,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (687,'2018-05-10T17:10:19.325Z',NULL,100,4,67.83486485383094,0,68.34761842643815,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (688,'2017-09-04T12:17:01.878Z',NULL,122,4,66.56352219205405,0,66.68117595680107,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (689,'2018-05-17T16:14:26.680Z',NULL,80,4,54.91325681036414,0,54.40352347225129,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (690,'2018-12-29T21:25:57.126Z',NULL,119,1,43.43814329652384,0,43.410286784099966,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (691,'2018-06-02T00:40:58.931Z',NULL,98,5,112.41825444654248,0,109.62664049194095,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (692,'2019-06-25T18:19:58.956Z',NULL,103,7,47.04215255778118,0,47.34047665271665,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (693,'2019-01-01T00:13:13.471Z',NULL,72,2,142.20381898788685,0,144.59025207366682,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (694,'2020-01-21T16:42:03.957Z',6.568559382201734,96,2,104.82144858590365,0,105.2806989039232,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (695,'2020-04-07T23:19:52.050Z',NULL,73,2,71.6287722595695,0,70.34361303125344,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (696,'2019-10-09T12:08:51.792Z',NULL,11,3,132.45679913492563,0,135.19576231088735,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (697,'2019-05-21T14:41:18.664Z',NULL,113,4,110.47725376186015,0,111.61995699054911,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (698,'2020-01-06T06:00:54.869Z',NULL,99,2,67.83486485383094,0,67.16303352001898,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (699,'2019-12-27T07:21:25.590Z',7.3696158049076175,66,1,136.16126271106958,0,140.51377683166737,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (700,'2019-08-27T01:29:20.679Z',NULL,167,6,97.70449564120193,0,96.23829819666508,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (701,'2018-05-05T11:59:37.779Z',NULL,65,4,68.22769726470014,0,69.90054777998651,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (702,'2017-09-07T22:58:01.080Z',NULL,183,5,37.7982748679465,0,37.694226093309894,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (703,'2017-05-26T15:02:39.609Z',NULL,164,4,61.978598800110106,0,60.19348642116768,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (704,'2019-01-05T18:23:34.165Z',NULL,166,2,38.30449564120193,0,39.54738166190667,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (705,'2019-07-17T09:39:31.567Z',NULL,2,6,105.11984419607644,0,102.9144843237109,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (706,'2019-07-21T13:39:54.596Z',NULL,17,5,79.93608046792765,0,80.04534270189784,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (707,'2019-10-07T13:37:50.799Z',NULL,130,5,75.02573869315137,0,73.29617245555234,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (708,'2019-09-10T20:48:05.524Z',NULL,102,5,47.04215255778118,0,47.532363094188085,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (709,'2020-02-04T00:31:15.194Z',NULL,37,1,80.10774204020768,0,78.77183106707722,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (710,'2018-12-04T20:34:05.792Z',NULL,74,1,51.12804227386549,0,50.01007485859503,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (711,'2018-01-24T09:28:27.417Z',NULL,70,2,57.493003808959784,0,58.57685302601168,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (712,'2017-07-27T01:53:01.655Z',NULL,171,6,70.05110494330981,0,68.86173401348887,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (713,'2018-09-03T14:06:27.763Z',NULL,99,5,67.83486485383094,0,69.65993391520854,87); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (714,'2019-04-19T16:22:32.549Z',NULL,171,3,105.07665741496471,7.88,113.00617383859384,88); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (715,'2017-12-11T06:11:59.410Z',NULL,173,2,81.57679953529707,6.12,85.0107297259339,88); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (716,'2019-08-01T21:39:36.979Z',2.9214782554427075,49,5,131.42865839323724,9.86,138.9306463430706,88); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (717,'2019-06-03T12:36:05.927Z',NULL,116,4,114.42485125407785,7.15,118.11728544268705,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (718,'2019-01-30T02:14:58.760Z',NULL,35,2,71.53687730741436,4.47,74.61078468672082,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (719,'2020-04-15T02:21:17.895Z',NULL,28,4,68.12471180754113,4.26,72.45536907288708,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (720,'2018-11-23T23:55:23.104Z',NULL,167,3,97.70449564120193,6.11,107.85283171862476,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (721,'2019-11-30T12:28:04.433Z',NULL,150,3,128.55415037577922,8.03,135.25155379847695,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (722,'2018-05-03T04:17:13.577Z',NULL,72,5,142.20381898788685,8.89,150.6721632419989,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (723,'2018-05-13T09:31:00.355Z',NULL,8,5,98.83823503993958,6.18,102.84485275260529,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (724,'2018-09-09T01:52:45.233Z',2.873469449031337,200,6,73.20395711799151,4.58,77.82830944702187,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (725,'2018-09-11T01:16:33.895Z',NULL,62,5,133.5202262591817,8.35,143.92441834748354,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (726,'2017-03-19T06:34:46.424Z',NULL,68,1,76.82895921539838,4.8,80.5839619859895,91); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (727,'2019-08-13T11:48:39.259Z',NULL,141,6,126.20312547576883,5.05,128.87607974577477,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (728,'2017-12-24T03:18:31.645Z',NULL,18,2,54.60204747398195,2.18,56.95027701461683,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (729,'2020-03-26T14:02:15.394Z',NULL,119,1,43.43814329652384,1.74,45.28862796227727,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (730,'2018-11-22T08:39:04.130Z',1.1255299466628865,136,2,105.20402317157343,4.21,112.7422663572105,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (731,'2016-07-27T11:27:39.228Z',NULL,36,4,87.29125153827623,3.49,92.70098708451366,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (732,'2019-06-10T09:19:03.502Z',NULL,200,4,73.20395711799151,2.93,77.11366089077345,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (733,'2019-09-14T10:22:59.331Z',NULL,193,2,50.38077396807232,2.02,54.10908761829065,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (734,'2017-06-12T17:25:20.425Z',NULL,133,3,45.654646865558064,1.83,47.94286388895086,92); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (735,'2019-05-15T14:04:48.771Z',NULL,186,3,98.9770008385166,6.43,102.9724362400883,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (736,'2020-01-07T01:22:38.816Z',NULL,185,1,39.57700083851661,2.57,41.90876588137679,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (737,'2019-11-14T14:34:51.055Z',NULL,195,2,109.78077396807234,7.14,115.5648399803298,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (738,'2017-09-28T19:08:59.173Z',NULL,176,4,38.616539622351056,2.51,40.60200716220696,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (739,'2017-02-17T00:07:42.047Z',NULL,105,1,35.149014295079674,2.28,38.34073011920061,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (740,'2017-10-04T22:06:06.478Z',5.625529946662887,36,4,87.29125153827623,5.67,94.24478762108431,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (741,'2018-11-26T01:26:36.376Z',NULL,47,1,84.0766209826718,5.46,87.22059761528298,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (742,'2018-08-02T17:06:51.940Z',6.910434959321889,59,5,89.20214751859149,5.8,93.58369730416617,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (743,'2020-03-22T11:16:30.278Z',NULL,12,1,116.01427581618326,7.54,128.6236417606369,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (744,'2019-10-31T15:34:44.268Z',NULL,26,6,68.12471180754113,4.43,71.60697572046864,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (745,'2019-11-07T12:40:48.917Z',NULL,173,3,122.3651993029456,7.95,133.0245106272899,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (746,'2019-07-25T07:32:13.040Z',NULL,163,6,33.56789820016516,2.18,35.51906783919946,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (747,'2016-07-11T08:10:08.128Z',2.410434959321889,125,4,53.59799471993963,3.48,55.739543343682286,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (748,'2017-02-22T07:39:16.326Z',NULL,51,1,50.433725012700116,3.28,51.93501170120083,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (749,'2019-06-27T02:12:39.361Z',NULL,101,6,139.82488066180403,9.09,145.7796287718546,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (750,'2016-12-22T08:05:14.655Z',NULL,175,2,78.21653962235106,5.08,86.65986506509681,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (751,'2019-12-15T14:47:32.898Z',NULL,182,3,84.48940370476112,5.49,92.47922792872916,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (752,'2016-09-28T15:41:39.271Z',3.55381251677482,192,5,46.122790137195516,3,49.556161978923036,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (753,'2019-12-02T05:06:35.281Z',NULL,49,2,131.42865839323724,8.54,140.6954946461014,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (754,'2017-05-25T05:29:58.947Z',NULL,18,4,54.60204747398195,3.55,59.86151841166276,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (755,'2018-04-25T15:05:51.663Z',NULL,107,2,50.094887884945365,3.26,53.68227464576481,95); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (756,'2019-11-28T20:17:50.031Z',NULL,46,2,118.0495173798411,8.85,126.0434167396784,97); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (757,'2017-09-28T13:25:57.128Z',NULL,165,5,25.536330427467956,1.92,28.129457637396136,97); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (758,'2018-06-29T04:22:18.112Z',NULL,200,6,73.20395711799151,5.49,81.14582647759006,97); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (759,'2017-12-26T22:36:26.021Z',NULL,40,2,66.44160029487797,3.82,71.74492320115145,98); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (760,'2017-11-05T07:15:57.545Z',NULL,168,3,79.28781795635516,4.56,83.22723721662648,98); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (761,'2018-07-03T05:17:37.421Z',NULL,1,4,44.19489169601981,2.54,48.73584344979013,98); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (762,'2017-02-20T19:59:40.619Z',NULL,81,1,29.288656154807867,1.76,31.130140668698427,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (763,'2019-02-01T16:53:10.989Z',NULL,122,2,99.84528328808108,5.99,103.80296311990244,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (764,'2016-06-17T13:55:20.973Z',NULL,105,5,35.149014295079674,2.11,38.259796577749455,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (765,'2017-08-23T08:23:40.241Z',NULL,81,6,29.288656154807867,1.76,31.84069525488796,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (766,'2017-11-26T01:02:19.359Z',NULL,97,3,74.94550296436165,4.5,80.27117490053017,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (767,'2017-11-02T11:20:49.331Z',NULL,191,3,85.72279013719552,5.14,92.60607611259933,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (768,'2019-05-16T05:39:23.902Z',NULL,157,2,139.8942352373801,8.39,147.72794814216675,99); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (769,'2020-04-08T08:32:59.175Z',NULL,89,2,63.719612755399886,2.55,66.95789691679212,100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (770,'2018-03-13T09:45:31.204Z',NULL,137,1,67.77247956807186,2.71,70.87351993988602,100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (771,'2017-04-04T15:07:14.973Z',NULL,184,1,77.3982748679465,3.1,79.64087517504127,100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (772,'2019-10-22T23:16:35.907Z',NULL,11,4,132.45679913492563,5.3,135.88641705517318,100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (773,'2018-10-29T11:28:30.635Z',NULL,199,6,115.4300138092855,4.62,117.94428181678128,100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (774,'2018-11-25T21:25:39.741Z',NULL,83,3,81.87627832636537,3.46,84.82050800874086,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (775,'2017-02-25T23:29:51.047Z',NULL,189,1,62.18492169821006,2.63,63.96415501677895,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (776,'2020-04-07T19:09:58.698Z',1.7728304987408654,28,2,68.12471180754113,2.88,72.95210284673188,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (777,'2020-01-26T18:10:03.294Z',NULL,86,1,92.31436670850246,3.9,97.94699969213902,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (778,'2019-03-30T03:18:37.029Z',NULL,169,1,59.53172693453274,2.52,60.44968286027472,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (779,'2018-09-19T11:51:09.037Z',NULL,103,5,47.04215255778118,1.99,47.91524148649264,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (780,'2020-01-02T10:50:18.902Z',NULL,10,2,47.6793282102869,2.01,47.895180871413096,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (781,'2017-12-05T05:25:26.894Z',NULL,4,2,73.99178100854834,3.13,77.8027593966911,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (782,'2020-04-14T22:36:52.959Z',NULL,106,2,52.723521442619514,2.23,55.83182079593486,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (783,'2018-01-17T04:56:14.160Z',8.903449240219356,15,2,37.648145389078365,1.59,39.67048085096011,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (784,'2019-04-04T17:00:42.223Z',NULL,20,4,37.32649625046575,1.58,38.70557957943578,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (785,'2020-04-01T21:19:15.590Z',NULL,162,4,33.56789820016516,1.42,34.09138877600266,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (786,'2019-04-06T13:18:22.284Z',NULL,20,3,37.32649625046575,1.58,39.68568673685488,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (787,'2019-01-18T01:29:14.907Z',4.403449240219357,59,2,89.20214751859149,3.77,95.83687453264163,101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (788,'2017-09-08T18:39:58.221Z',NULL,38,5,44.04624855892918,3.3,46.854894554037365,105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (789,'2017-02-13T11:59:11.545Z',NULL,154,2,54.58353035541507,4.09,57.997567765927336,105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (790,'2020-01-03T09:26:46.761Z',NULL,33,2,47.7448636959614,3.58,50.087942227192464,105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (791,'2019-11-12T18:10:45.021Z',NULL,61,2,23.537915510955656,1.77,26.24238607856565,105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (792,'2016-12-16T07:09:25.536Z',NULL,30,1,42.7829881204479,2.57,47.13827555919018,107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (793,'2020-03-10T10:11:54.874Z',7.217148629018978,53,1,44.27587240151534,2.66,46.5019466503971,107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (794,'2018-06-22T01:17:43.543Z',7.217148629018978,196,7,70.14610686710009,4.21,77.4357543333632,107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (795,'2019-06-25T12:44:50.110Z',NULL,153,8,66.79892314178237,4.01,70.19525598116172,107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (796,'2017-07-26T14:47:07.589Z',NULL,200,5,48.802638078661005,3.05,52.97532604867981,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (797,'2018-04-17T15:59:11.233Z',NULL,88,3,105.41292031622555,6.59,109.22169834871637,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (798,'2019-03-29T17:35:37.669Z',NULL,181,1,143.88940370476112,8.99,157.83475043670998,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (799,'2018-03-04T06:53:35.288Z',NULL,120,1,83.5020135028928,5.22,89.08664125241602,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (800,'2019-04-09T09:05:01.291Z',NULL,114,3,77.91196471862148,4.87,83.22217601551041,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (801,'2020-03-04T00:38:42.147Z',7.990853892989307,107,1,50.094887884945365,3.13,54.54616269738449,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (802,'2017-09-25T20:37:53.012Z',NULL,151,5,61.07534871228964,3.82,66.85444527850547,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (803,'2018-04-29T06:43:52.806Z',NULL,92,2,124.89242686579996,7.81,130.37363655029026,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (804,'2019-10-11T02:47:44.847Z',NULL,33,5,47.7448636959614,2.98,52.06800171815906,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (805,'2019-05-18T19:02:36.002Z',NULL,10,5,47.6793282102869,2.98,50.013373928301796,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (806,'2019-04-29T09:44:13.083Z',NULL,92,4,124.89242686579996,7.81,130.0612520757978,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (807,'2018-03-18T18:48:09.498Z',NULL,151,1,91.61302306843446,5.73,97.34161026317128,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (808,'2018-08-01T15:01:17.689Z',NULL,110,7,55.526746186906664,3.47,59.08221170048153,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (809,'2018-01-24T23:52:27.548Z',NULL,46,1,118.0495173798411,7.38,123.30348094384155,108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (810,'2017-12-19T15:24:38.408Z',NULL,39,2,76.38772120188973,3.06,82.69042768955862,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (811,'2017-08-20T16:11:41.912Z',8.400855253007334,143,9,40.7988669736962,1.63,44.44227877175387,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (812,'2019-09-12T18:54:47.444Z',NULL,17,5,79.93608046792765,3.2,85.49417989841353,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (813,'2018-06-16T17:31:59.266Z',NULL,107,5,50.094887884945365,2,52.69789232140062,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (814,'2016-09-26T14:05:57.245Z',NULL,128,5,50.053442096696116,2,52.68319762207421,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (815,'2020-03-28T09:32:50.988Z',NULL,174,1,111.61430894181083,4.46,120.62686247072641,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (816,'2019-06-26T19:44:24.364Z',NULL,4,5,110.98767151282252,4.44,116.826371594026,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (817,'2019-09-18T07:50:42.315Z',NULL,189,5,93.27738254731509,3.73,94.09203493163078,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (818,'2019-12-21T20:58:29.473Z',NULL,10,2,47.6793282102869,1.91,51.16440261674969,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (819,'2017-08-27T22:42:03.891Z',NULL,57,8,81.6149289055996,3.26,86.39694106607621,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (820,'2018-01-03T09:56:14.527Z',NULL,101,2,139.82488066180403,5.59,147.71963804848707,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (821,'2017-10-01T08:40:04.827Z',NULL,129,5,98.7781981443958,3.95,101.05214133221587,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (822,'2019-01-21T01:41:29.118Z',NULL,159,2,35.53017445377361,1.42,36.028857252681185,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (823,'2017-02-28T11:53:52.779Z',NULL,48,2,82.13922832356072,3.29,88.12462689865787,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (824,'2017-11-28T23:52:55.601Z',NULL,199,3,76.95334253952366,3.08,77.78620138970336,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (825,'2017-10-15T21:42:56.082Z',2.952475469816841,148,5,92.65447881697106,3.71,97.92174917495258,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (826,'2018-08-21T13:17:56.519Z',3.1863963778978346,73,7,71.6287722595695,2.87,74.87409643973972,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (827,'2017-04-05T05:50:50.744Z',NULL,183,3,37.7982748679465,1.51,38.13631912443055,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (828,'2016-11-26T13:18:12.775Z',NULL,80,3,36.60883787357609,1.46,36.56034956027797,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (829,'2017-01-16T16:27:28.027Z',NULL,107,2,33.39659192329691,1.34,36.25235320787576,111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (830,'2018-07-30T20:37:30.695Z',NULL,146,5,126.04727121216614,9.45,138.35457422987665,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (831,'2020-03-13T17:46:25.398Z',NULL,13,1,112.62925391105566,8.45,125.66071531272426,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (832,'2019-07-13T12:12:17.406Z',NULL,166,34,38.30449564120193,2.87,40.92715992656498,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (833,'2018-09-20T12:38:47.413Z',NULL,28,3,68.12471180754113,5.11,73.67320743714448,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (834,'2017-04-26T10:38:08.193Z',NULL,92,2,83.2616179105333,6.24,92.88639338041081,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (835,'2018-11-29T12:16:04.833Z',NULL,40,2,99.66240044231697,7.47,105.4928000456822,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (836,'2017-07-21T04:30:27.178Z',NULL,185,4,26.384667225677738,1.98,27.728414952514928,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (837,'2017-11-18T14:06:21.422Z',NULL,109,2,79.36660712128732,5.95,84.15751026128426,112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (838,'2018-01-14T12:35:52.446Z',NULL,125,2,80.39699207990944,0,81.68776105569357,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (839,'2018-08-23T01:24:32.123Z',NULL,107,6,50.094887884945365,0,48.11389778794094,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (840,'2019-03-29T23:56:43.287Z',NULL,90,1,123.1196127553999,0,121.99518069181298,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (841,'2020-03-05T10:25:35.209Z',2.0921758371614887,51,1,75.65058751905018,0,74.04290992319387,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (842,'2017-06-02T12:00:04.807Z',NULL,134,4,28.328223666657742,0,27.447437201334548,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (843,'2017-06-16T11:33:54.137Z',NULL,49,4,87.61910559549149,0,87.54487175932967,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (844,'2017-11-19T05:11:49.721Z',NULL,81,2,29.288656154807867,0,28.322494463474694,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (845,'2020-01-21T16:44:34.066Z',NULL,68,2,115.24343882309758,0,115.63023594472232,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (846,'2018-10-26T18:58:02.686Z',3.299233482228156,44,7,76.35255205175756,0,77.26172978584225,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (847,'2019-11-25T08:44:49.142Z',NULL,24,3,112.30643674729413,0,115.07846796632683,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (848,'2018-08-02T10:08:11.194Z',NULL,65,5,68.22769726470014,0,66.00939152973125,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (849,'2018-08-15T05:42:43.041Z',NULL,185,7,39.57700083851661,0,40.31754781633174,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (850,'2017-08-06T17:40:16.810Z',NULL,119,7,28.95876219768256,0,30.31103650532106,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (851,'2017-12-24T19:30:06.999Z',7.7206041140084585,22,2,21.42451996044233,0,21.373356249388856,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (852,'2019-12-01T15:46:06.543Z',NULL,95,2,49.81864156655383,0,51.500365195124964,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (853,'2019-12-16T07:01:05.391Z',NULL,118,2,57.627613096978735,0,57.694240803946684,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (854,'2018-04-26T12:52:29.706Z',NULL,36,3,130.93687730741433,0,133.56928912696614,113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (855,'2018-01-19T04:22:15.003Z',NULL,179,2,68.32408657333919,4.27,71.53488098605949,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (856,'2018-02-21T16:01:25.734Z',NULL,48,2,123.20884248534108,7.7,133.3323828585519,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (857,'2016-12-12T07:20:16.348Z',NULL,118,2,38.418408731319154,2.4,41.02425616842844,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (858,'2017-06-12T05:20:30.375Z',NULL,127,6,89.65344209669612,5.6,99.03061656967562,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (859,'2018-11-05T08:28:05.116Z',NULL,50,2,53.64019616819762,3.35,56.746108697117535,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (860,'2018-09-13T17:37:26.617Z',NULL,42,5,38.00410713690931,2.38,40.5778981054943,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (861,'2018-06-24T23:06:45.806Z',NULL,44,6,76.35255205175756,4.77,81.68163901726778,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (862,'2019-01-29T18:00:35.074Z',NULL,24,2,112.30643674729413,7.02,114.86870185814435,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (863,'2019-07-12T05:02:31.075Z',NULL,42,4,38.00410713690931,2.38,40.538749090692974,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (864,'2017-07-21T05:20:17.696Z',NULL,41,4,42.33927237126308,2.65,45.949073198441056,115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (865,'2019-09-21T04:55:02.738Z',NULL,73,4,71.6287722595695,0,71.57437509259044,116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (866,'2019-05-22T19:39:43.517Z',NULL,4,2,110.98767151282252,0,115.86549387497034,116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (867,'2018-07-17T20:04:45.430Z',NULL,155,2,43.77574310182776,0,43.846883235818055,116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (868,'2018-06-24T15:02:36.828Z',NULL,100,5,67.83486485383094,4.07,74.55540837663209,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (869,'2018-10-12T05:08:23.822Z',NULL,56,6,36.37128575934436,2.18,39.90993106884099,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (870,'2019-03-05T09:26:57.274Z',NULL,66,1,136.16126271106958,8.17,148.31975305844068,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (871,'2017-12-24T03:54:32.398Z',NULL,19,1,42.67116731707548,2.56,44.65325449606037,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (872,'2018-01-01T12:05:41.218Z',5.863491137020991,126,1,125.24398120308456,7.51,128.61130416828777,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (873,'2017-08-19T17:08:31.843Z',NULL,46,6,78.6996782532274,4.72,82.65353598480591,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (874,'2017-07-30T14:11:50.795Z',NULL,58,7,52.097186713859216,3.13,54.014969123922555,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (875,'2018-02-05T22:20:00.965Z',NULL,77,2,101.01691728415972,6.06,105.31151039754363,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (876,'2019-12-24T02:38:43.093Z',NULL,137,3,67.77247956807186,4.07,72.5171777050732,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (877,'2019-04-16T00:27:00.212Z',NULL,133,4,68.4819702983371,4.11,74.55404844472453,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (878,'2017-08-13T15:55:41.781Z',NULL,135,8,30.536015447715613,1.83,32.776734546366484,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (879,'2018-02-26T22:24:12.033Z',8.683497181100467,81,1,43.9329842322118,2.64,48.82734522516295,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (880,'2018-10-29T14:04:25.757Z',NULL,146,5,126.04727121216614,7.56,135.2135411940015,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (881,'2017-09-21T20:45:45.346Z',NULL,83,4,54.58418555091025,3.28,57.510034334799265,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (882,'2019-07-28T02:58:28.258Z',NULL,102,5,47.04215255778118,2.82,49.67357883567367,117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (883,'2017-11-05T11:48:40.566Z',3.6656641417671403,181,4,95.92626913650741,6,101.36149127265479,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (884,'2019-10-28T04:12:37.128Z',NULL,25,7,68.62263967182464,4.29,76.35356682163797,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (885,'2018-03-04T17:13:53.673Z',3.6656641417671403,40,1,99.66240044231697,6.23,103.08246902096553,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (886,'2019-02-14T13:29:22.611Z',NULL,164,2,92.96789820016517,5.81,101.34347850603447,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (887,'2018-05-10T15:09:20.590Z',NULL,150,4,128.55415037577922,8.03,131.11455192978158,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (888,'2017-07-24T09:47:57.995Z',NULL,170,4,70.05110494330981,4.38,73.91731534455273,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (889,'2016-09-21T19:36:45.600Z',NULL,13,4,75.0861692740371,4.69,77.93010138414058,118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (890,'2017-07-17T16:17:38.633Z',NULL,108,5,33.39659192329691,1.34,34.043568596201965,119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (891,'2017-05-17T14:07:03.562Z',NULL,73,6,47.752514839713,1.91,48.467644010812855,119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (892,'2019-04-04T19:36:43.453Z',NULL,139,3,76.77768319177018,3.07,77.22468691382547,119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (893,'2019-02-01T18:37:06.282Z',NULL,107,2,50.094887884945365,3.13,52.78889620290434,120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (894,'2020-03-29T13:11:40.844Z',NULL,60,1,29.80214751859149,2.24,31.202932053715536,122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (895,'2018-08-30T20:34:25.491Z',NULL,7,4,148.22900526552291,11.12,161.5001918356474,122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (896,'2018-12-30T11:32:08.953Z',NULL,6,2,97.43621265344382,7.31,102.04113863983387,122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (897,'2018-10-01T02:42:50.679Z',NULL,78,5,41.616917284159726,3.12,46.87042573736033,122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (898,'2017-12-21T07:24:34.558Z',NULL,35,2,47.691251538276234,2.38,49.04122125939283,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (899,'2018-06-13T14:11:02.559Z',NULL,66,7,136.16126271106958,6.81,142.18703320485477,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (900,'2018-01-16T21:04:35.706Z',NULL,12,2,116.01427581618326,5.8,121.81026191391499,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (901,'2019-01-30T11:14:15.220Z',NULL,154,1,81.87529553312261,4.09,88.41385718566013,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (902,'2019-12-22T06:25:31.266Z',NULL,41,2,63.50890855689462,3.18,66.41983259932273,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (903,'2019-06-30T03:03:18.770Z',NULL,17,7,79.93608046792765,4,86.42802246234643,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (904,'2019-05-31T04:51:30.731Z',NULL,176,4,57.92480943352658,2.9,62.917233825627605,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (905,'2017-08-31T13:22:05.022Z',NULL,73,4,47.752514839713,2.39,51.27594345169988,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (906,'2019-11-10T14:06:41.002Z',7.745167420573109,158,3,139.8942352373801,6.99,142.4525245793596,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (907,'2019-07-20T10:04:16.912Z',7.745167420573109,119,5,43.43814329652384,2.17,45.931068568587705,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (908,'2017-08-28T03:46:28.288Z',NULL,93,7,33.212427711035886,1.66,35.43429417934879,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (909,'2020-03-10T21:41:25.334Z',NULL,64,1,143.4221774571866,7.17,154.9205625712645,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (910,'2019-10-11T02:51:02.594Z',NULL,56,7,36.37128575934436,1.82,39.18413633943837,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (911,'2018-08-12T15:41:25.770Z',NULL,180,9,68.32408657333919,3.42,74.36432383929753,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (912,'2019-04-04T12:31:08.366Z',NULL,97,4,112.41825444654248,5.62,121.38116779024554,124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (913,'2018-12-10T18:04:41.739Z',NULL,59,2,89.20214751859149,5.35,94.1750337363062,125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (914,'2019-06-21T01:33:48.900Z',NULL,88,6,105.41292031622555,6.32,113.98172835323388,125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (915,'2018-12-23T01:38:08.987Z',NULL,181,1,143.88940370476112,8.63,146.80507337520294,125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (916,'2020-04-02T14:49:11.671Z',3.410145772798936,47,2,84.0766209826718,5.04,86.09389759855215,125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (917,'2018-10-07T01:28:58.125Z',NULL,87,6,117.25536340498041,7.04,128.32015585928713,125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (918,'2018-06-23T19:39:24.280Z',NULL,121,6,40.44528328808107,1.17,40.26361690429356,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (919,'2018-03-30T19:36:59.942Z',NULL,117,1,55.024851254077866,1.6,59.59597861775713,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (920,'2019-10-02T02:42:41.286Z',NULL,17,6,79.93608046792765,2.32,80.45310347095489,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (921,'2019-01-26T08:37:05.579Z',NULL,128,2,75.08016314504417,2.18,80.40582139930481,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (922,'2018-10-06T19:24:53.400Z',7.910145772798936,107,4,50.094887884945365,1.45,51.93146399962018,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (923,'2019-01-15T05:20:21.941Z',NULL,93,2,49.81864156655383,1.44,53.80416961067472,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (924,'2017-03-25T03:38:48.324Z',NULL,54,1,41.395738936015974,1.2,44.207288109780045,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (925,'2020-01-29T06:24:42.957Z',NULL,119,1,43.43814329652384,1.26,46.20765372542928,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (926,'2018-12-29T04:54:42.791Z',NULL,10,2,47.6793282102869,1.38,50.97073812575902,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (927,'2018-06-15T08:38:51.916Z',NULL,41,7,63.50890855689462,1.84,65.39680041517565,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (928,'2016-12-30T04:19:23.991Z',NULL,53,3,29.517248267676894,0.86,29.333085599893902,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (929,'2019-11-30T12:01:11.191Z',NULL,16,3,66.11029954877317,1.92,69.79503810659769,128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (930,'2018-12-25T07:42:18.546Z',NULL,32,2,107.1448636959614,6.43,108.99846453964827,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (931,'2019-11-05T03:39:57.562Z',NULL,82,3,60.89545738030947,3.65,65.76291088876684,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (932,'2016-11-01T21:19:01.921Z',NULL,43,2,50.90170136783837,3.05,56.2024464488607,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (933,'2018-07-07T08:10:43.844Z',NULL,117,5,55.024851254077866,3.3,55.71890454920203,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (934,'2017-06-21T20:32:06.781Z',NULL,15,7,25.09876359271891,1.51,27.534592468473306,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (935,'2018-04-17T18:50:46.185Z',NULL,78,3,41.616917284159726,2.5,43.437850866250265,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (936,'2019-08-16T18:27:41.577Z',NULL,96,7,104.82144858590365,6.29,114.39955366219598,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (937,'2020-04-05T03:02:38.800Z',NULL,88,3,105.41292031622555,6.32,116.06477887187458,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (938,'2018-06-04T05:41:53.224Z',NULL,42,6,38.00410713690931,2.28,40.6365621119119,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (939,'2019-04-23T19:51:17.599Z',NULL,182,2,84.48940370476112,5.07,85.6131226676275,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (940,'2019-10-01T14:24:31.441Z',NULL,36,5,130.93687730741433,7.86,142.7555086633684,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (941,'2017-04-05T10:21:16.331Z',NULL,176,4,38.616539622351056,2.32,42.29738237961772,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (942,'2017-01-03T10:27:28.762Z',NULL,34,2,49.535942579421324,2.97,52.609398639617254,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (943,'2019-02-21T00:25:58.052Z',7.447781905715501,172,2,122.3651993029456,7.34,128.29018887208042,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (944,'2019-08-12T01:35:29.677Z',NULL,11,6,132.45679913492563,7.95,144.6498870355943,129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (945,'2017-07-20T12:31:44.141Z',7.447781905715501,81,5,29.288656154807867,1.17,31.683771681099245,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (946,'2020-03-07T06:51:17.136Z',NULL,193,1,50.38077396807232,2.02,52.46770073267179,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (947,'2017-04-07T05:26:06.020Z',NULL,163,3,22.378598800110105,0.9,24.089380735891474,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (948,'2018-01-20T19:08:02.097Z',NULL,171,2,105.07665741496471,4.2,106.0145799774564,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (949,'2019-04-08T01:14:35.802Z',NULL,18,3,81.90307121097293,3.28,88.54128105389438,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (950,'2017-12-08T15:25:46.427Z',NULL,68,2,76.82895921539838,3.07,77.60971825923485,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (951,'2017-02-09T00:01:59.668Z',NULL,105,2,35.149014295079674,1.41,35.03977541734984,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (952,'2018-02-28T02:18:08.337Z',NULL,51,1,75.65058751905018,3.03,76.74294010579595,130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (953,'2020-01-14T17:04:37.745Z',NULL,137,1,67.77247956807186,4.07,68.69018700528878,132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (954,'2020-03-24T20:26:56.801Z',NULL,124,1,110.93145648834248,6.66,112.7424059419848,132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (955,'2020-01-11T17:04:04.765Z',NULL,197,2,70.14610686710009,4.21,73.21520083500238,132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (956,'2018-08-25T10:38:30.680Z',NULL,197,5,70.14610686710009,4.56,72.7015967524538,134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (957,'2018-06-20T09:17:28.741Z',NULL,61,7,23.537915510955656,1.53,24.09357578202269,134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (958,'2019-09-21T12:40:51.326Z',NULL,7,7,148.22900526552291,9.63,160.91704066742318,134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (959,'2019-10-07T04:18:49.467Z',NULL,21,8,60.57501609456816,3.94,62.168470605834514,134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (960,'2019-09-05T21:28:17.856Z',NULL,78,7,41.616917284159726,2.71,45.67804025447793,134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (961,'2019-05-30T11:29:29.503Z',NULL,170,5,105.07665741496471,6.83,109.34637709115665,134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (962,'2019-12-20T06:09:27.018Z',NULL,91,2,65.09432810381134,3.74,70.47749739500898,135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (963,'2020-01-20T17:08:00.936Z',NULL,182,2,84.48940370476112,5.28,90.53468472845728,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (964,'2019-06-24T20:08:49.806Z',NULL,140,6,66.80312547576881,4.18,67.73195900387054,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (965,'2020-01-05T01:45:59.522Z',NULL,57,2,122.4223933583994,7.65,134.39140572102224,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (966,'2020-03-07T12:18:11.989Z',NULL,152,1,48.89568729900663,3.06,51.568842009422454,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (967,'2017-07-07T13:05:08.203Z',NULL,163,2,22.378598800110105,1.4,23.127176980208485,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (968,'2016-12-21T22:09:01.619Z',NULL,42,1,25.336071424606207,1.58,27.611369670911213,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (969,'2020-03-29T02:55:56.950Z',NULL,147,0,66.64727121216615,4.17,72.63295651121288,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (970,'2018-01-07T16:23:42.986Z',NULL,187,2,98.9770008385166,6.19,106.27873707973801,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (971,'2018-07-06T12:23:18.031Z',NULL,142,7,70.34853057210945,4.4,72.28335531257208,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (972,'2017-12-26T00:39:14.754Z',NULL,82,3,40.59697158687298,2.54,44.84468026897238,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (973,'2019-10-08T16:40:09.655Z',NULL,144,6,61.1983004605443,3.82,63.07418189209247,136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (974,'2018-05-17T13:37:18.103Z',NULL,74,4,51.12804227386549,3.52,53.067813584171375,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (975,'2019-06-19T19:07:16.523Z',NULL,85,5,54.90104734428525,3.77,57.26035292878116,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (976,'2019-12-19T15:56:22.896Z',NULL,120,2,83.5020135028928,5.74,94.29807530775707,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (977,'2018-08-01T11:53:21.079Z',NULL,187,6,98.9770008385166,6.8,106.74275408858348,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (978,'2019-08-23T06:50:22.179Z',NULL,182,8,84.48940370476112,5.81,86.81009354719858,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (979,'2019-05-06T15:33:14.180Z',NULL,1,6,44.19489169601981,3.04,48.08396413798855,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (980,'2020-03-20T08:06:43.612Z',NULL,95,1,49.81864156655383,3.43,55.191951122960255,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (981,'2016-08-18T14:57:43.218Z',NULL,36,7,87.29125153827623,6,91.45631073659337,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (982,'2019-03-05T04:56:34.689Z',NULL,22,12,32.136779940663494,2.21,35.42886479731881,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (983,'2019-03-28T23:13:19.701Z',3.158526501182741,73,1,71.6287722595695,4.92,79.69532501832695,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (984,'2020-03-08T13:28:05.275Z',NULL,169,1,59.53172693453274,4.09,65.32233790716566,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (985,'2017-03-11T22:14:29.922Z',NULL,166,1,25.536330427467956,1.76,27.081312974957072,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (986,'2018-11-11T07:19:36.773Z',NULL,127,3,134.48016314504417,9.25,140.7481381017958,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (987,'2019-07-18T18:35:16.822Z',NULL,61,5,23.537915510955656,1.62,26.39633038900908,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (988,'2017-03-05T13:05:04.323Z',NULL,80,1,36.60883787357609,2.52,40.14507726853921,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (989,'2018-09-20T16:19:46.928Z',NULL,164,5,92.96789820016517,6.39,101.7403867820881,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (990,'2019-06-25T03:58:06.198Z',NULL,19,8,64.00675097561322,4.4,69.24095638731741,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (991,'2019-01-11T20:15:48.583Z',NULL,102,2,47.04215255778118,3.23,48.82426870558825,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (992,'2019-10-20T09:41:12.456Z',NULL,32,5,107.1448636959614,7.37,113.24865865272177,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (993,'2018-07-23T04:09:45.438Z',NULL,6,4,97.43621265344382,6.7,106.32208082240007,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (994,'2018-10-23T06:18:32.826Z',NULL,56,5,36.37128575934436,2.5,40.933787141885034,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (995,'2019-08-04T06:05:42.989Z',NULL,132,6,127.88197029833711,8.79,131.71348022632748,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (996,'2019-05-31T07:08:16.280Z',NULL,103,4,47.04215255778118,3.23,52.71649371692598,138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (997,'2017-02-06T09:01:03.028Z',NULL,38,1,44.04624855892918,2.75,48.74547430302893,139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (998,'2020-01-07T23:55:38.455Z',NULL,149,1,69.15415037577924,4.32,70.0828406244417,139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (999,'2019-03-30T20:27:11.929Z',NULL,143,1,61.1983004605443,3.82,61.96100586686807,139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1000,'2018-07-09T11:44:30.243Z',NULL,112,4,41.329386510090345,2.58,43.2479484378626,139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1001,'2019-01-26T08:03:29.443Z',2.0960458317212005,98,1,112.41825444654248,7.03,117.64588810876309,139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1002,'2019-04-14T13:41:56.821Z',NULL,104,2,106.44215255778118,4.26,114.00431017854085,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1003,'2017-11-29T19:05:45.069Z',7.166291989685735,27,3,85.01647453836077,3.4,92.76235613441658,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1004,'2017-09-17T18:51:22.524Z',NULL,136,5,70.13601544771562,2.81,69.53748311775955,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1005,'2016-11-05T16:15:41.657Z',7.166291989685735,55,3,63.84752383956291,2.55,68.0329709106736,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1006,'2018-09-25T23:53:13.376Z',NULL,74,5,51.12804227386549,2.05,54.69177391159083,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1007,'2017-03-26T11:49:25.149Z',NULL,120,1,55.668009001928525,2.23,60.70741526679585,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1008,'2020-04-13T18:04:43.297Z',NULL,13,3,112.62925391105566,4.51,112.34953322867796,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1009,'2019-11-29T16:32:47.939Z',NULL,162,3,33.56789820016516,1.34,36.88459083990811,140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1010,'2019-04-28T12:47:43.797Z',NULL,172,2,122.3651993029456,8.41,135.0554841227931,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1011,'2019-09-07T22:41:46.560Z',NULL,92,4,124.89242686579996,8.59,132.53877823864545,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1012,'2019-07-12T16:09:48.169Z',6.726338518334593,155,6,43.77574310182776,3.01,48.601434087021154,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1013,'2018-04-22T19:53:14.138Z',NULL,113,3,110.47725376186015,7.6,123.01405796927776,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1014,'2018-10-01T08:06:16.942Z',NULL,86,5,92.31436670850246,6.35,100.1841488585688,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1015,'2017-09-13T15:48:16.161Z',NULL,131,4,75.41148135558485,5.18,85.1299566621428,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1016,'2020-01-03T04:16:08.941Z',NULL,86,2,92.31436670850246,6.35,94.21286004704551,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1017,'2018-11-29T09:31:37.072Z',NULL,75,3,125.81276373452337,8.65,140.3007369004201,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1018,'2018-07-27T05:50:37.351Z',NULL,109,4,119.04991068193098,8.18,132.5367778141372,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1019,'2019-02-23T02:31:01.180Z',NULL,186,1,98.9770008385166,6.8,109.08805500010888,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1020,'2017-04-03T18:12:38.545Z',NULL,89,2,42.47974183693326,2.92,47.00278918163136,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1021,'2020-01-16T08:44:21.016Z',NULL,93,2,49.81864156655383,3.43,55.80627391037275,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1022,'2017-03-04T19:50:54.201Z',NULL,68,8,76.82895921539838,5.28,86.0746933932684,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1023,'2020-01-21T00:38:25.075Z',6.528084414518268,200,1,73.20395711799151,5.03,76.53639203607793,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1024,'2017-12-11T07:42:46.914Z',NULL,26,1,45.41647453836076,3.12,47.016113725408715,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1025,'2017-11-17T18:44:41.035Z',NULL,53,3,29.517248267676894,2.03,33.03581300525052,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1026,'2018-12-21T11:55:37.456Z',NULL,1,3,44.19489169601981,3.04,48.7097138709292,141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1027,'2019-01-05T19:36:42.550Z',NULL,153,2,66.79892314178237,3.34,69.30266744356659,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1028,'2020-02-22T18:08:54.515Z',5.194646106400019,119,2,43.43814329652384,2.17,44.35176863324032,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1029,'2020-01-15T05:37:26.384Z',NULL,3,3,53.08311732230858,2.65,54.19665197349647,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1030,'2018-09-29T14:49:34.354Z',NULL,131,7,113.11722203337729,5.66,118.33520391748873,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1031,'2020-02-22T00:51:08.954Z',NULL,108,2,50.094887884945365,2.5,55.37799257507136,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1032,'2018-10-30T22:53:45.877Z',5.194646106400019,193,7,50.38077396807232,2.52,54.67960936113946,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1033,'2020-03-07T18:05:33.659Z',NULL,197,1,70.14610686710009,3.51,70.17996822592258,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1034,'2017-12-28T19:39:25.769Z',NULL,73,1,47.752514839713,2.39,48.8523980011926,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1035,'2019-01-02T17:38:01.115Z',NULL,104,1,106.44215255778118,5.32,109.66830232774542,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1036,'2019-02-10T17:24:11.007Z',NULL,85,2,54.90104734428525,2.75,58.0423451984291,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1037,'2019-03-17T09:04:33.571Z',NULL,109,1,119.04991068193098,5.95,122.77433822705365,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1038,'2017-05-12T01:50:18.754Z',NULL,82,3,40.59697158687298,2.03,42.98779770889484,142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1039,'2017-07-31T01:51:14.506Z',NULL,43,5,50.90170136783837,3.05,56.623639047234526,145); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1040,'2019-04-25T20:02:41.995Z',NULL,28,3,68.12471180754113,4.09,68.66864609988735,145); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1041,'2018-12-10T23:56:40.992Z',NULL,175,2,117.3248094335266,7.04,125.8217416296766,145); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1042,'2018-07-28T10:46:14.415Z',NULL,163,5,33.56789820016516,2.01,35.71551770595415,145); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1043,'2018-08-10T22:36:10.537Z',NULL,34,5,74.30391386913199,5.57,76.47822018876612,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1044,'2020-02-10T15:12:48.408Z',NULL,68,2,115.24343882309758,8.64,125.30728069183884,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1045,'2019-03-23T12:20:11.887Z',1.315292212569155,149,1,69.15415037577924,5.19,78.6854848179936,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1046,'2019-01-26T05:08:50.114Z',NULL,88,1,105.41292031622555,7.91,117.58420248013333,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1047,'2018-07-10T10:30:31.895Z',NULL,128,5,75.08016314504417,5.63,79.3998243114923,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1048,'2018-11-11T23:14:38.963Z',NULL,53,2,44.27587240151534,3.32,46.422138245193054,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1049,'2019-04-19T04:56:25.628Z',NULL,190,2,128.5841852057933,9.64,144.18868486098364,147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1050,'2017-04-29T03:37:15.177Z',NULL,61,3,15.691943673970439,1.1,15.968675813101619,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1051,'2020-02-20T01:10:10.142Z',3.1334519073087255,163,2,33.56789820016516,2.35,35.459113819133975,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1052,'2020-04-03T22:04:49.551Z',NULL,26,4,68.12471180754113,4.77,75.60913757470843,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1053,'2019-01-22T04:59:02.669Z',NULL,145,2,61.1983004605443,4.28,66.38708893809182,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1054,'2019-09-17T22:16:59.264Z',NULL,24,5,112.30643674729413,7.86,117.53492368563515,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1055,'2020-03-23T18:51:37.009Z',NULL,67,1,41.24480890795779,2.89,42.75908427286663,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1056,'2019-06-21T09:20:03.373Z',NULL,160,6,47.59120561297272,3.33,53.330067184584195,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1057,'2018-02-26T10:25:46.923Z',NULL,14,1,37.648145389078365,2.64,42.40204865432122,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1058,'2018-10-13T15:01:41.303Z',NULL,99,2,67.83486485383094,4.75,76.19725433619979,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1059,'2017-08-23T22:10:03.079Z',NULL,110,5,37.01783079127111,2.59,40.40696431959564,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1060,'2019-03-29T06:51:03.601Z',NULL,190,1,128.5841852057933,9,141.26120776072977,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1061,'2019-10-27T17:18:19.048Z',5.183033255347315,89,2,63.719612755399886,4.46,71.7529764379796,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1062,'2019-10-10T05:41:51.312Z',NULL,181,4,143.88940370476112,10.07,159.45114501554508,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1063,'2019-04-15T03:25:58.359Z',NULL,11,3,132.45679913492563,9.27,137.86441929973077,148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1064,'2018-07-18T20:22:17.601Z',NULL,14,4,37.648145389078365,1.62,40.36094840737837,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1065,'2019-02-24T05:52:18.811Z',NULL,122,1,99.84528328808108,4.29,109.40776288630502,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1066,'2017-03-26T12:14:22.315Z',NULL,99,0,45.22324323588729,1.94,45.81274972506452,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1067,'2018-04-05T02:41:39.440Z',NULL,25,1,68.62263967182464,2.95,73.00651714573097,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1068,'2019-07-26T06:13:08.255Z',NULL,172,4,122.3651993029456,5.26,134.12743003417745,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1069,'2017-04-28T04:34:03.603Z',NULL,16,2,44.07353303251545,1.9,43.75541434512084,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1070,'2018-04-17T20:07:37.078Z',5.88334679526122,75,1,125.81276373452337,5.41,136.1312342161813,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1071,'2018-12-30T15:14:40.870Z',NULL,160,2,47.59120561297272,2.05,49.01086767852284,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1072,'2019-02-17T02:43:20.256Z',NULL,1,2,44.19489169601981,1.9,47.76175846975388,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1073,'2018-04-02T23:12:41.377Z',NULL,5,3,124.1176465275534,5.34,122.93248625383379,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1074,'2017-12-14T01:55:07.972Z',NULL,29,3,82.3829881204479,3.54,81.65753792140943,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1075,'2018-02-23T22:43:58.986Z',4.258486481909886,109,2,119.04991068193098,5.12,123.57809380162705,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1076,'2018-11-02T12:48:02.293Z',NULL,5,2,124.1176465275534,5.34,134.0587061408166,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1077,'2019-11-22T22:28:22.447Z',NULL,105,2,52.723521442619514,2.27,56.50632090935828,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1078,'2017-08-04T06:46:20.136Z',NULL,99,6,45.22324323588729,1.94,47.9195816362714,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1079,'2018-03-03T09:07:39.704Z',NULL,138,1,113.95078476718615,4.9,121.72589579876522,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1080,'2018-04-20T03:20:41.317Z',8.758486481909886,92,4,124.89242686579996,5.37,125.07953915393054,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1081,'2018-08-08T20:15:41.412Z',NULL,126,7,125.24398120308456,5.39,134.7397477620143,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1082,'2019-09-23T09:04:21.513Z',NULL,66,5,136.16126271106958,5.85,136.3555356895087,149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1083,'2019-04-21T19:59:09.606Z',NULL,150,4,128.55415037577922,7.71,138.66508496933199,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1084,'2019-07-23T17:49:09.322Z',NULL,58,5,78.14578007078882,4.69,81.98398029893126,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1085,'2020-02-13T07:25:18.807Z',NULL,139,2,76.77768319177018,4.61,79.35182712718114,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1086,'2019-06-22T19:09:02.197Z',NULL,119,8,43.43814329652384,2.61,48.89494932843989,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1087,'2017-09-14T00:51:26.236Z',NULL,175,7,78.21653962235106,4.69,86.36238532226423,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1088,'2018-09-19T09:11:30.137Z',NULL,124,5,110.93145648834248,6.66,113.50886825568762,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1089,'2020-01-15T15:48:00.667Z',8.436147023520693,195,2,109.78077396807234,6.59,115.82684532325744,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1090,'2019-12-23T16:56:30.347Z',NULL,122,2,99.84528328808108,5.99,104.81742602689697,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1091,'2017-07-14T00:25:12.945Z',NULL,89,5,42.47974183693326,2.55,45.35913460351995,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1092,'2019-01-09T05:11:46.758Z',NULL,65,1,68.22769726470014,4.09,70.85269539997486,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1093,'2019-12-07T23:32:38.698Z',NULL,27,2,127.52471180754115,7.65,132.1883426834807,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1094,'2018-01-15T23:17:34.715Z',NULL,17,2,79.93608046792765,4.8,86.63548301533308,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1095,'2019-05-10T22:38:54.628Z',NULL,69,5,73.38772304360626,4.4,82.25412790709203,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1096,'2019-04-10T11:32:33.727Z',NULL,11,2,132.45679913492563,7.95,139.93207916986788,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1097,'2018-12-13T04:12:38.597Z',NULL,150,1,128.55415037577922,7.71,134.6986139113654,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1098,'2018-02-10T18:27:04.038Z',NULL,77,1,101.01691728415972,6.06,108.76611915798611,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1099,'2018-12-13T12:45:29.640Z',NULL,50,2,53.64019616819762,3.22,57.70044210907176,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1100,'2017-06-24T21:22:07.766Z',NULL,34,5,49.535942579421324,2.97,53.00611238090672,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1101,'2017-01-25T03:52:09.464Z',6.432871170385296,168,1,79.28781795635516,4.76,81.58011291224673,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1102,'2018-02-26T14:46:17.563Z',NULL,20,1,37.32649625046575,2.24,41.495587307628384,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1103,'2020-04-18T02:45:50.329Z',NULL,129,3,148.1672972165937,8.89,163.75266164627283,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1104,'2019-05-17T23:28:01.683Z',3.3339453438063247,11,3,132.45679913492563,7.95,148.96895263402234,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1105,'2018-01-14T09:39:26.627Z',NULL,146,1,126.04727121216614,7.56,128.58210854802164,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1106,'2017-04-04T12:34:48.804Z',NULL,184,2,77.3982748679465,4.64,78.5873231185197,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1107,'2019-03-12T05:59:15.161Z',NULL,172,1,122.3651993029456,7.34,134.26561800048245,150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1108,'2018-11-08T09:50:44.037Z',NULL,2,4,105.11984419607644,4.2,110.48333960427792,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1109,'2020-01-14T12:33:28.418Z',NULL,16,2,66.11029954877317,2.64,72.01682979144664,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1110,'2018-09-17T21:17:51.004Z',NULL,78,5,41.616917284159726,1.66,43.23713225638154,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1111,'2017-11-19T13:43:05.560Z',NULL,122,4,66.56352219205405,2.66,71.09148404709946,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1112,'2017-09-07T08:39:03.180Z',NULL,47,6,56.05108065511453,2.24,58.912539174751615,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1113,'2018-09-06T22:24:31.649Z',NULL,135,6,45.80402317157342,1.83,48.92494702066843,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1114,'2018-10-02T22:17:05.090Z',NULL,48,6,123.20884248534108,4.93,126.59775622804271,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1115,'2019-03-07T23:30:45.440Z',NULL,96,1,104.82144858590365,4.19,111.75284667616222,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1116,'2017-04-03T20:22:06.516Z',NULL,30,4,42.7829881204479,1.71,42.18188046675065,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1117,'2019-02-02T18:45:58.293Z',NULL,182,2,84.48940370476112,3.38,86.64940119427627,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1118,'2018-10-30T18:57:57.559Z',NULL,51,7,75.65058751905018,3.03,81.17818575180263,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1119,'2018-08-10T00:29:53.034Z',NULL,99,9,67.83486485383094,2.71,75.06213116088102,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1120,'2019-09-02T17:20:00.043Z',NULL,112,6,41.329386510090345,1.65,43.52143991316238,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1121,'2019-09-30T06:42:36.717Z',NULL,91,5,65.09432810381134,2.6,68.34971118013237,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1122,'2017-08-30T20:56:18.689Z',NULL,90,5,82.07974183693327,3.28,86.68140594251811,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1123,'2018-08-18T20:25:12.036Z',NULL,171,7,105.07665741496471,4.2,112.00104146388904,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1124,'2019-11-20T23:34:39.620Z',NULL,23,3,116.86672609493307,4.67,116.43810774860538,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1125,'2019-07-02T21:43:37.023Z',NULL,19,5,64.00675097561322,2.56,63.59671640010358,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1126,'2017-03-21T18:21:44.552Z',NULL,10,1,31.78621880685793,1.27,31.96683448363757,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1127,'2018-05-24T14:18:12.225Z',NULL,73,6,71.6287722595695,2.87,71.2794287117306,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1128,'2019-11-15T15:46:11.364Z',NULL,75,4,125.81276373452337,5.03,128.31805804826192,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1129,'2019-03-26T08:50:54.616Z',NULL,157,1,139.8942352373801,5.6,138.6850378895595,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1130,'2016-10-24T06:46:13.879Z',NULL,166,8,25.536330427467956,1.02,28.165284389292808,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1131,'2018-08-31T07:43:01.747Z',NULL,58,7,78.14578007078882,3.13,77.25454194616314,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1132,'2019-02-16T10:48:11.104Z',NULL,116,1,114.42485125407785,4.58,116.3398993334483,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1133,'2019-05-01T00:55:43.921Z',NULL,104,5,106.44215255778118,4.26,115.58021193700772,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1134,'2018-01-10T21:04:21.765Z',NULL,71,2,82.80381898788684,3.31,82.7118921344097,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1135,'2018-10-13T15:53:24.679Z',NULL,59,6,89.20214751859149,3.57,92.55166942503311,151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1136,'2016-12-06T06:24:08.014Z',NULL,92,3,83.2616179105333,4.16,91.9438915550746,152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1137,'2019-09-22T01:37:34.955Z',NULL,83,5,81.87627832636537,4.09,88.92424491151222,152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1138,'2018-04-09T17:11:09.589Z',NULL,120,2,83.5020135028928,4.18,93.11818415519261,152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1139,'2017-06-01T19:42:27.921Z',NULL,167,5,65.13633042746795,3.26,65.76949753769583,152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1140,'2017-07-07T02:59:30.289Z',NULL,151,4,61.07534871228964,3.05,65.67745477667073,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1141,'2018-01-31T13:16:39.636Z',NULL,108,2,50.094887884945365,2.5,54.045712414186646,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1142,'2019-09-04T10:41:22.880Z',8.261797875854816,82,6,60.89545738030947,3.04,62.457908023993774,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1143,'2016-11-02T08:10:15.416Z',NULL,73,3,47.752514839713,2.39,53.2015097870326,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1144,'2018-01-23T10:20:31.480Z',3.761797875854815,108,2,50.094887884945365,2.5,49.94978601939345,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1145,'2020-03-28T14:10:43.815Z',NULL,83,1,81.87627832636537,4.09,88.27922291284762,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1146,'2018-03-26T14:43:09.622Z',NULL,133,1,68.4819702983371,3.42,76.3550691533609,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1147,'2020-01-24T23:38:30.041Z',NULL,24,2,112.30643674729413,5.62,111.89552703874016,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1148,'2019-03-03T06:12:18.523Z',NULL,78,1,41.616917284159726,2.08,46.2613106702183,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1149,'2019-11-07T23:35:21.595Z',NULL,145,4,61.1983004605443,3.06,67.35176416739051,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1150,'2019-11-19T18:46:07.327Z',NULL,115,4,77.91196471862148,3.9,79.5995754505121,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1151,'2018-09-11T05:13:50.355Z',NULL,80,5,54.91325681036414,2.75,59.29665004089955,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1152,'2019-06-24T10:30:44.732Z',NULL,40,5,99.66240044231697,4.98,106.85410852415256,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1153,'2018-09-08T19:54:31.608Z',NULL,9,5,87.46968147789205,4.37,87.25248746336233,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1154,'2020-02-27T11:59:06.867Z',NULL,193,2,50.38077396807232,2.52,50.24244765637769,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1155,'2018-03-02T00:01:50.563Z',7.939423295303396,29,1,123.57448218067185,6.18,123.87350483633864,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1156,'2018-04-01T03:17:01.997Z',NULL,176,25,57.92480943352658,2.9,64.306291535471,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1157,'2018-03-15T10:32:32.725Z',NULL,175,1,117.3248094335266,5.87,122.31509858234848,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1158,'2020-02-02T19:52:49.362Z',NULL,83,2,81.87627832636537,4.09,85.950672634024,153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1159,'2019-09-14T22:10:06.808Z',NULL,124,3,110.93145648834248,3.22,118.06057038238781,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1160,'2020-02-23T11:23:27.976Z',NULL,94,1,109.21864156655383,3.17,111.61222657092114,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1161,'2019-06-12T12:34:30.563Z',0.8710584738370528,115,3,77.91196471862148,2.26,76.73734491652121,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1162,'2018-05-25T12:23:12.057Z',NULL,161,2,47.59120561297272,1.38,50.6809981974816,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1163,'2017-06-19T19:24:40.710Z',NULL,184,3,77.3982748679465,2.24,80.10073497123496,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1164,'2019-12-23T17:28:26.035Z',NULL,165,1,38.30449564120193,1.11,39.154138824482956,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1165,'2017-07-15T05:12:18.229Z',NULL,65,3,45.4851315098001,1.32,45.693630542315894,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1166,'2018-02-27T05:15:38.313Z',NULL,115,1,77.91196471862148,2.26,83.61429240141088,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1167,'2018-02-07T21:51:06.320Z',NULL,110,1,55.526746186906664,1.61,54.97782954685784,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1168,'2020-01-05T15:40:26.967Z',NULL,189,2,93.27738254731509,2.71,98.25395997610197,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1169,'2016-09-16T11:13:48.000Z',NULL,161,5,31.727470408648482,0.92,34.34018851704991,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1170,'2017-05-25T07:16:45.944Z',NULL,31,3,70.43564311419016,2.04,69.48992931279824,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1171,'2018-02-01T16:10:22.101Z',NULL,80,1,54.91325681036414,1.59,58.04949523797682,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1172,'2018-07-30T10:05:32.321Z',NULL,10,4,47.6793282102869,1.38,46.339007050905195,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1173,'2018-10-23T13:07:10.414Z',NULL,27,4,127.52471180754115,3.7,131.5197374178077,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1174,'2017-11-17T23:07:24.730Z',NULL,17,2,53.290720311951766,1.55,58.3502718526875,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1175,'2017-02-08T14:03:09.943Z',NULL,73,1,47.752514839713,1.38,48.903112182325216,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1176,'2019-08-08T22:35:48.084Z',NULL,181,4,143.88940370476112,4.17,149.2273371795836,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1177,'2017-08-12T18:41:15.697Z',NULL,121,4,26.96352219205405,0.78,28.755270064925856,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1178,'2018-05-26T11:03:10.356Z',NULL,97,2,112.41825444654248,3.26,115.45763686004754,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1179,'2019-08-18T19:46:01.984Z',NULL,156,4,30.615804149046195,0.89,29.887691554909388,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1180,'2017-04-29T20:26:22.904Z',NULL,31,3,70.43564311419016,2.04,69.02474517710893,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1181,'2016-06-27T02:16:49.792Z',2.706509632289908,125,6,53.59799471993963,1.55,52.357702842486766,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1182,'2017-05-04T10:40:10.487Z',NULL,84,4,54.58418555091025,1.58,56.793396200483265,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1183,'2019-03-02T04:53:26.432Z',NULL,154,1,81.87529553312261,2.37,84.42835953732487,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1184,'2019-04-28T23:59:07.946Z',NULL,13,3,112.62925391105566,3.27,112.65802629466009,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1185,'2017-11-26T04:03:30.183Z',NULL,148,3,92.65447881697106,2.69,97.64976715684502,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1186,'2018-02-20T11:50:21.339Z',NULL,135,1,45.80402317157342,1.33,45.85651856402125,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1187,'2017-12-08T02:25:45.103Z',NULL,121,1,26.96352219205405,0.78,28.36570720879994,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1188,'2017-05-21T18:53:16.764Z',NULL,47,3,56.05108065511453,1.63,59.81938191002933,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1189,'2017-12-22T13:02:10.604Z',NULL,11,2,88.30453275661709,2.56,88.95039625151713,154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1190,'2016-09-20T07:18:23.260Z',NULL,132,6,85.25464686555807,5.12,87.05968398863673,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1191,'2016-12-19T01:28:46.046Z',NULL,188,2,22.584921698210056,1.36,24.260897145993408,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1192,'2018-12-21T01:11:54.232Z',NULL,122,2,99.84528328808108,5.99,106.34247722560696,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1193,'2020-02-19T03:30:57.852Z',NULL,26,1,68.12471180754113,4.09,71.43532699392429,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1194,'2018-11-03T20:33:40.154Z',NULL,14,2,37.648145389078365,2.26,40.88006139812148,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1195,'2016-06-01T18:12:52.802Z',NULL,170,4,70.05110494330981,4.2,75.12478167952808,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1196,'2016-08-01T02:36:07.530Z',NULL,140,5,44.53541698384588,2.67,49.7919298139521,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1197,'2019-07-14T04:36:25.080Z',NULL,120,3,83.5020135028928,5.01,85.9885471607306,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1198,'2019-08-16T16:55:19.884Z',NULL,26,6,68.12471180754113,4.09,70.44596577862907,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1199,'2018-10-22T05:07:06.089Z',NULL,182,68,84.48940370476112,5.07,88.19514855881197,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1200,'2019-08-01T00:37:19.643Z',7.4832433863439665,126,8,125.24398120308456,7.51,138.1547041434967,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1201,'2018-10-22T18:58:59.380Z',NULL,47,5,84.0766209826718,5.04,87.04093569814262,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1202,'2018-09-10T13:26:57.216Z',NULL,192,3,69.18418520579327,4.15,72.08877358079388,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1203,'2019-11-15T08:27:03.566Z',NULL,141,3,126.20312547576883,7.57,128.15854306695346,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1204,'2019-08-19T02:19:30.002Z',NULL,68,6,115.24343882309758,6.91,122.26448905187868,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1205,'2018-12-06T11:58:41.318Z',NULL,194,2,50.38077396807232,3.02,54.50683487869253,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1206,'2019-06-06T03:01:19.015Z',7.9044504957357775,49,8,131.42865839323724,7.89,135.7788524015919,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1207,'2018-11-09T09:36:41.899Z',NULL,164,4,92.96789820016517,5.58,105.1200465772374,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1208,'2018-12-25T23:35:45.712Z',NULL,70,2,57.493003808959784,3.45,60.14728093695249,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1209,'2018-11-18T00:00:04.360Z',3.4044504957357775,88,3,105.41292031622555,6.32,112.88599547005825,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1210,'2017-06-20T18:23:42.777Z',3.4044504957357775,158,6,93.26282349158673,5.6,94.90957544541908,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1211,'2018-09-18T21:56:25.693Z',NULL,127,5,134.48016314504417,8.07,143.39236878983772,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1212,'2016-06-13T09:02:30.147Z',NULL,94,6,72.81242771103588,4.37,77.61759071498122,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1213,'2016-10-05T09:18:59.743Z',NULL,67,6,27.496539271971862,1.65,29.712312636698716,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1214,'2019-09-28T11:05:35.414Z',NULL,190,6,128.5841852057933,7.72,132.6999784256833,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1215,'2019-05-31T03:33:52.849Z',NULL,2,5,105.11984419607644,6.31,108.06876542932612,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1216,'2018-11-07T05:18:57.189Z',NULL,78,4,41.616917284159726,2.5,42.716568527095575,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1217,'2017-05-26T06:19:14.311Z',2.911727369210101,197,5,46.76407124473339,2.81,50.152284839167265,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1218,'2019-06-09T05:49:02.348Z',NULL,106,6,52.723521442619514,3.16,58.00628767830821,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1219,'2018-02-20T04:12:42.944Z',NULL,65,2,68.22769726470014,4.09,74.63532548976046,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1220,'2017-08-20T10:04:37.717Z',NULL,17,8,53.290720311951766,3.2,58.777253408758156,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1221,'2017-12-12T14:59:11.615Z',NULL,92,2,83.2616179105333,5,83.15518129613632,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1222,'2016-10-11T00:23:59.995Z',NULL,9,7,58.31312098526137,3.5,62.46366810985965,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1223,'2019-12-07T21:19:19.488Z',NULL,103,2,47.04215255778118,2.82,51.18022223684252,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1224,'2019-11-19T17:15:01.839Z',NULL,144,3,61.1983004605443,3.67,62.3738391994247,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1225,'2019-05-08T12:27:55.906Z',NULL,18,5,81.90307121097293,4.91,83.81339897390087,155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1226,'2020-03-30T19:51:34.250Z',NULL,81,1,43.9329842322118,2.75,46.269014987515945,156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1227,'2018-09-22T03:04:32.788Z',NULL,106,5,52.723521442619514,3.3,57.64590853517839,156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1228,'2020-01-18T01:19:58.728Z',NULL,177,2,128.8192981944599,8.05,142.62438248596752,156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1229,'2018-05-29T20:20:30.620Z',NULL,101,5,139.82488066180403,8.74,157.42863152331182,156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1230,'2018-05-06T04:56:41.072Z',NULL,57,4,122.4223933583994,7.65,130.64785203746763,156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1231,'2017-11-23T10:50:59.453Z',NULL,142,3,46.8990203814063,2.93,50.75954928054037,156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1232,'2019-05-03T05:22:42.914Z',NULL,134,4,42.49233549998661,1.8,46.777682870835015,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1233,'2020-01-05T00:32:54.154Z',NULL,19,2,64.00675097561322,2.7,63.5143758101323,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1234,'2020-04-02T14:05:23.324Z',NULL,36,3,130.93687730741433,5.53,142.91616615023992,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1235,'2016-12-10T23:04:21.275Z',NULL,119,2,28.95876219768256,1.22,31.460248077227543,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1236,'2017-01-28T23:10:29.715Z',NULL,124,3,73.95430432556165,3.12,80.58740973662547,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1237,'2018-09-16T00:23:19.943Z',NULL,84,6,81.87627832636537,3.46,89.47892068160398,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1238,'2016-10-14T09:10:10.295Z',NULL,154,6,54.58353035541507,2.31,58.42845445341629,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1239,'2017-06-01T02:23:10.202Z',NULL,51,9,50.433725012700116,2.13,52.08847623097396,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1240,'2018-02-20T02:20:57.717Z',NULL,172,2,122.3651993029456,5.17,131.53853092685412,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1241,'2019-07-12T19:51:31.975Z',7.882078139325544,185,6,39.57700083851661,1.67,39.078635909003964,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1242,'2019-02-07T12:46:47.337Z',NULL,196,2,70.14610686710009,2.96,69.71223181774957,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1243,'2019-11-16T21:49:10.857Z',NULL,38,3,66.06937283839378,2.79,70.15128464662547,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1244,'2017-12-09T01:01:05.301Z',NULL,165,1,25.536330427467956,1.08,28.311745813533445,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1245,'2017-01-27T04:29:38.800Z',3.382078139325544,3,2,35.388744881539054,1.5,38.74445475419061,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1246,'2019-06-22T10:29:09.988Z',NULL,72,6,142.20381898788685,6.01,141.85082202257664,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1247,'2017-11-05T01:17:38.167Z',NULL,96,3,69.88096572393577,2.95,68.89173591681059,158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1248,'2019-10-02T08:13:11.879Z',NULL,124,7,110.93145648834248,6.66,113.63275983813517,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1249,'2019-08-26T05:20:50.051Z',NULL,148,9,138.9817182254566,8.34,144.5507537904731,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1250,'2019-10-08T17:56:41.681Z',NULL,187,6,98.9770008385166,5.94,107.24371602037786,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1251,'2019-10-21T17:15:40.299Z',NULL,41,6,63.50890855689462,3.81,65.29742165050554,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1252,'2019-10-09T05:55:00.379Z',NULL,32,6,107.1448636959614,6.43,113.50952026754503,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1253,'2019-10-03T05:04:56.792Z',NULL,169,6,59.53172693453274,3.57,62.2580659719837,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1254,'2018-12-08T07:37:57.248Z',8.735626156407745,104,3,106.44215255778118,6.39,112.93323925868584,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1255,'2018-11-12T19:50:18.214Z',NULL,52,3,103.67587240151535,6.22,110.62021032225066,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1256,'2019-06-23T09:04:31.718Z',NULL,49,5,131.42865839323724,7.89,135.3239329220567,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1257,'2017-12-09T02:50:22.686Z',NULL,7,2,98.81933684368194,5.93,102.05745004231487,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1258,'2017-02-11T07:18:04.720Z',NULL,46,1,78.6996782532274,4.72,84.79477642021573,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1259,'2019-11-28T23:01:21.988Z',NULL,87,3,117.25536340498041,7.04,122.16115075944619,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1260,'2018-09-20T15:12:14.890Z',NULL,183,7,56.697412301919755,3.4,64.03045451113671,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1261,'2017-08-23T19:13:46.055Z',4.235626156407745,147,9,44.4315141414441,2.67,46.8205724231533,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1262,'2019-04-07T08:35:08.363Z',NULL,190,3,128.5841852057933,7.72,142.08735227133198,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1263,'2018-03-17T20:29:31.512Z',NULL,143,1,61.1983004605443,3.67,68.33778362573696,159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1264,'2019-01-26T00:45:25.795Z',3.8283285959449396,9,2,87.46968147789205,3.5,93.65891004425337,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1265,'2018-11-01T06:59:44.577Z',NULL,78,3,41.616917284159726,1.66,45.51900622236653,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1266,'2018-07-16T04:26:52.981Z',NULL,60,5,29.80214751859149,1.19,32.684675717313944,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1267,'2019-11-14T18:43:12.465Z',NULL,17,3,79.93608046792765,3.2,83.88344651709274,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1268,'2019-02-03T17:04:25.909Z',NULL,1,2,44.19489169601981,1.77,43.34832201179685,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1269,'2017-09-27T22:30:10.342Z',NULL,65,6,45.4851315098001,1.82,48.385018579306454,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1270,'2019-04-24T22:22:23.608Z',NULL,116,4,114.42485125407785,4.58,124.51940127665762,161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1271,'2017-04-06T15:28:28.597Z',NULL,44,3,50.90170136783837,3.5,54.06175305532452,164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1272,'2017-06-15T13:25:27.122Z',NULL,100,7,45.22324323588729,3.11,51.83106047241085,164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1273,'2019-04-11T22:16:41.054Z',NULL,186,3,98.9770008385166,6.8,109.63659041198864,164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1274,'2017-07-30T09:00:25.978Z',5.858127843694149,132,4,85.25464686555807,5.86,86.4312340475488,164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1275,'2019-02-10T13:24:53.902Z',NULL,184,1,116.09741230191975,5.51,115.50702605843358,167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1276,'2018-06-09T22:59:07.457Z',NULL,145,6,61.1983004605443,2.91,65.59881321946015,167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1277,'2019-09-02T12:31:41.842Z',1.3581278436941484,20,4,37.32649625046575,1.49,37.99546249950687,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1278,'2018-03-19T21:46:00.829Z',NULL,4,0,110.98767151282252,4.44,123.7943073423316,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1279,'2019-12-28T19:18:09.189Z',NULL,40,1,99.66240044231697,3.99,104.29419168215195,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1280,'2020-03-25T19:21:17.073Z',NULL,14,0,37.648145389078365,1.51,40.876365714138274,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1281,'2018-08-10T10:46:55.981Z',NULL,199,5,115.4300138092855,4.62,128.41150931953052,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1282,'2019-08-02T11:53:32.232Z',NULL,139,7,76.77768319177018,3.07,75.04056978125698,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1283,'2018-10-31T19:26:42.240Z',NULL,58,4,78.14578007078882,3.13,86.35162415889197,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1284,'2019-01-26T13:03:57.509Z',NULL,170,1,105.07665741496471,4.2,116.90413971280557,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1285,'2020-02-07T22:44:48.903Z',NULL,145,1,61.1983004605443,2.45,62.077132586741534,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1286,'2018-03-19T22:33:06.186Z',NULL,109,1,119.04991068193098,4.76,131.8009388292047,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1287,'2018-06-22T16:43:29.830Z',4.082083542775006,174,7,111.61430894181083,4.46,112.40514341633832,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1288,'2018-02-09T08:33:55.490Z',NULL,112,2,41.329386510090345,1.65,43.25659710311128,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1289,'2016-12-26T04:54:45.517Z',NULL,168,2,79.28781795635516,3.17,86.21015820140913,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1290,'2019-08-11T09:19:34.411Z',NULL,182,7,84.48940370476112,3.38,93.78998520801812,169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1291,'2019-08-27T14:24:29.311Z',NULL,41,9,63.50890855689462,0,61.00715147772978,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1292,'2019-04-07T01:07:02.190Z',NULL,136,4,105.20402317157343,0,98.82054329766414,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1293,'2020-02-17T18:43:55.309Z',4.082083542775006,98,2,112.41825444654248,0,112.22245121895212,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1294,'2019-09-24T20:05:19.455Z',8.582083542775006,71,4,82.80381898788684,0,85.48822579858619,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1295,'2019-07-31T04:22:41.694Z',NULL,77,5,101.01691728415972,0,103.69705579351759,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1296,'2018-08-04T07:36:34.389Z',NULL,189,9,93.27738254731509,0,89.65358547685067,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1297,'2019-08-29T01:30:29.787Z',NULL,61,9,23.537915510955656,0,24.056344717671035,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1298,'2019-12-10T05:32:10.682Z',NULL,105,2,52.723521442619514,0,52.857455356966824,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1299,'2018-08-02T20:14:52.676Z',NULL,55,8,95.77128575934437,0,92.71025885733941,170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1300,'2019-06-10T23:12:41.377Z',NULL,58,6,78.14578007078882,4.88,88.06801559672161,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1301,'2019-03-22T06:05:26.137Z',NULL,64,1,143.4221774571866,8.96,145.07690525917397,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1302,'2017-09-26T20:15:42.610Z',NULL,49,4,87.61910559549149,5.48,99.20083239866845,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1303,'2018-07-28T20:47:07.681Z',NULL,161,4,47.59120561297272,2.97,48.54462377278027,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1304,'2017-03-03T13:32:28.680Z',NULL,54,1,41.395738936015974,2.59,46.1217050936102,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1305,'2019-03-18T14:22:14.172Z',NULL,123,1,110.93145648834248,6.93,120.54878328575649,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1306,'2018-05-27T09:54:35.152Z',NULL,85,4,54.90104734428525,3.43,61.65527093160504,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1307,'2017-09-27T04:18:12.467Z',NULL,54,4,41.395738936015974,2.59,45.42842148738519,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1308,'2018-02-18T02:21:55.033Z',NULL,136,1,105.20402317157343,6.58,110.82161011843145,172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1309,'2018-01-15T12:14:25.381Z',NULL,1,2,44.19489169601981,2.54,47.658506881911,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1310,'2018-09-15T03:04:03.965Z',NULL,24,6,112.30643674729413,6.46,123.42195751017437,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1311,'2019-01-29T00:57:09.386Z',9.16345662489764,191,2,128.5841852057933,7.39,127.60933556225963,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1312,'2019-04-06T20:18:34.170Z',NULL,176,3,57.92480943352658,3.33,64.09789543378338,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1313,'2018-09-17T12:25:08.509Z',NULL,164,7,92.96789820016517,5.35,96.08860106276938,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1314,'2020-04-01T01:41:04.238Z',NULL,145,3,61.1983004605443,3.52,61.07613855230518,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1315,'2018-04-12T04:53:48.978Z',NULL,17,3,79.93608046792765,4.6,87.24088030575263,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1316,'2017-05-15T00:01:31.600Z',NULL,89,6,42.47974183693326,2.44,47.12985205061738,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1317,'2019-04-04T22:55:54.718Z',NULL,167,4,97.70449564120193,5.62,107.580920578106,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1318,'2019-12-12T22:07:44.920Z',NULL,176,3,57.92480943352658,3.33,62.97257599574372,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1319,'2018-01-07T13:33:16.975Z',NULL,112,3,41.329386510090345,2.38,41.55573739052764,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1320,'2016-11-01T12:56:20.851Z',9.16345662489764,133,3,45.654646865558064,2.63,49.01134248930908,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1321,'2017-12-16T05:12:36.785Z',NULL,138,2,75.96718984479077,4.37,84.92604003681059,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1322,'2019-03-11T17:55:36.759Z',NULL,132,1,127.88197029833711,7.35,141.05282885674077,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1323,'2019-08-21T14:42:48.205Z',NULL,133,6,68.4819702983371,3.94,74.34567021954783,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1324,'2019-04-28T16:30:43.241Z',NULL,141,2,126.20312547576883,7.26,135.99803464807377,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1325,'2018-02-08T02:26:10.143Z',NULL,181,2,143.88940370476112,8.27,147.76451045047105,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1326,'2018-12-20T16:57:02.149Z',4.339991860631316,95,3,49.81864156655383,2.86,51.805088244672035,173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1327,'2017-10-13T21:22:36.627Z',NULL,134,8,28.328223666657742,2.12,31.627819014149022,174); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1328,'2019-11-04T05:35:03.569Z',NULL,49,4,131.42865839323724,9.86,136.43178051877626,174); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1329,'2019-10-31T03:11:44.256Z',NULL,59,6,89.20214751859149,6.69,97.21473959187918,174); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1330,'2019-01-09T20:28:04.541Z',NULL,169,2,59.53172693453274,3.57,62.84444387226277,176); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1331,'2019-02-07T11:08:59.915Z',NULL,16,2,66.11029954877317,3.97,68.75270226110888,176); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1332,'2018-07-11T22:40:42.638Z',NULL,47,5,84.0766209826718,5.04,91.08876280716449,176); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1333,'2018-05-06T15:10:40.712Z',4.0570266069521015,93,5,49.81864156655383,2.99,56.334383559228925,176); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1334,'2018-03-24T03:27:48.405Z',4.0570266069521015,125,1,80.39699207990944,4.82,88.43970506375182,176); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1335,'2018-03-01T15:43:34.696Z',NULL,6,1,97.43621265344382,6.09,108.57327497218097,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1336,'2019-05-20T08:13:05.720Z',NULL,148,6,138.9817182254566,8.69,156.11305496683758,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1337,'2018-04-29T20:34:02.095Z',NULL,186,4,98.9770008385166,6.19,98.68548036471222,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1338,'2018-02-16T19:56:04.567Z',NULL,62,2,133.5202262591817,8.35,150.48737810047942,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1339,'2018-11-06T22:57:59.139Z',4.0570266069521015,69,3,73.38772304360626,4.59,81.4848698287728,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1340,'2020-01-26T21:56:47.075Z',NULL,45,2,118.0495173798411,7.38,134.72876372622719,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1341,'2019-07-06T12:49:48.044Z',NULL,10,5,47.6793282102869,2.98,50.36230010730168,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1342,'2017-08-01T10:32:40.486Z',8.557026606952101,38,9,44.04624855892918,2.75,48.81577074935545,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1343,'2018-07-28T23:47:38.505Z',NULL,128,7,75.08016314504417,4.69,81.4842431821102,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1344,'2018-11-11T04:21:51.115Z',NULL,87,4,117.25536340498041,7.33,133.93212158241866,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1345,'2019-11-14T09:08:05.004Z',4.383660085324836,55,3,95.77128575934437,5.99,101.76620539599334,177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1346,'2017-12-06T10:36:42.183Z',NULL,68,2,76.82895921539838,3.07,85.7554841152745,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1347,'2020-02-20T11:54:19.889Z',NULL,188,1,33.87738254731509,1.36,35.18743902561296,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1348,'2020-01-17T19:25:57.849Z',NULL,69,2,73.38772304360626,2.94,78.91287227019748,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1349,'2018-11-15T07:16:35.961Z',8.883660085324836,17,4,79.93608046792765,3.2,88.46134914204703,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1350,'2017-11-23T08:23:47.528Z',NULL,176,4,38.616539622351056,1.54,37.66135740938284,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1351,'2019-06-19T12:56:37.033Z',NULL,35,9,71.53687730741436,2.86,73.25790140292112,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1352,'2020-03-14T13:06:15.989Z',NULL,116,1,114.42485125407785,4.58,112.27286179648469,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1353,'2017-10-31T21:16:38.066Z',NULL,180,6,45.549391048892794,1.82,45.21675273616938,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1354,'2018-03-09T23:51:04.902Z',NULL,179,1,68.32408657333919,2.73,71.81833540285253,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1355,'2018-10-11T17:54:33.142Z',NULL,8,4,98.83823503993958,3.95,107.25517741517166,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1356,'2018-12-18T13:16:14.099Z',8.504845746345245,94,2,109.21864156655383,4.37,117.44039152103171,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1357,'2020-01-17T15:05:21.923Z',NULL,73,16,71.6287722595695,2.87,78.13579730198661,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1358,'2019-02-09T01:43:58.810Z',NULL,174,1,111.61430894181083,4.46,121.55270249418858,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1359,'2017-09-06T00:11:40.562Z',NULL,34,5,49.535942579421324,1.98,54.59125029513752,179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1360,'2019-05-21T04:14:05.818Z',4.004845746345245,94,6,109.21864156655383,8.19,112.48098381247684,181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1361,'2017-09-27T09:12:02.810Z',NULL,127,7,89.65344209669612,6.72,97.62080958959913,181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1362,'2018-11-24T01:06:31.384Z',7.932437207642876,170,4,105.07665741496471,7.88,113.65461897596033,181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1363,'2019-12-25T04:03:08.166Z',NULL,155,2,43.77574310182776,3.28,48.55137416191242,181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1364,'2018-05-16T05:10:14.819Z',NULL,160,4,47.59120561297272,3.57,54.676091937977425,181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1365,'2020-03-10T23:05:30.248Z',NULL,86,1,92.31436670850246,5.54,98.72347761532541,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1366,'2018-04-09T04:32:00.802Z',NULL,126,4,125.24398120308456,7.51,129.70160493947947,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1367,'2019-04-28T16:09:55.755Z',NULL,141,3,126.20312547576883,7.57,131.25652729181826,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1368,'2019-06-05T12:47:55.158Z',NULL,36,5,130.93687730741433,7.86,135.99409753925494,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1369,'2018-07-30T10:34:40.331Z',NULL,170,4,105.07665741496471,6.3,106.99002034850636,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1370,'2018-01-19T02:30:16.142Z',NULL,82,2,60.89545738030947,3.65,69.29965407010604,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1371,'2018-08-04T08:12:32.324Z',NULL,154,9,81.87529553312261,4.91,83.99369051564966,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1372,'2018-03-07T02:34:55.617Z',NULL,192,1,69.18418520579327,4.15,74.88319078698545,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1373,'2018-04-19T16:06:40.697Z',NULL,167,3,97.70449564120193,5.86,109.35091712038678,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1374,'2020-04-09T10:12:22.059Z',NULL,46,2,118.0495173798411,7.08,125.71730321259349,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1375,'2019-10-23T13:12:49.336Z',NULL,8,5,98.83823503993958,5.93,110.28342137686268,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1376,'2017-01-15T20:30:38.317Z',NULL,126,2,83.49598746872304,5.01,93.67671626433417,183); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1377,'2018-10-23T15:15:26.243Z',NULL,86,4,92.31436670850246,5.54,103.02983902766258,184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1378,'2017-06-24T01:50:45.961Z',NULL,25,6,45.7484264478831,2.74,48.51695397522114,184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1379,'2018-03-11T21:47:06.006Z',NULL,146,1,126.04727121216614,7.56,125.50157554366645,184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1380,'2017-04-15T02:16:57.584Z',7.318709768022008,12,3,77.34285054412217,4.64,84.96431815849428,184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1381,'2019-05-16T09:03:31.216Z',NULL,13,4,112.62925391105566,6.76,117.86543532120831,184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1382,'2018-08-29T16:56:05.338Z',NULL,120,6,83.5020135028928,3.34,83.75246934433127,186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1383,'2020-02-21T15:05:02.656Z',NULL,112,2,41.329386510090345,1.65,40.66356746614379,186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1384,'2019-07-09T14:23:31.573Z',7.318709768022008,111,6,55.526746186906664,2.22,54.64289826668869,186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1385,'2019-04-22T20:57:09.263Z',6.357948585794247,182,3,84.48940370476112,3.38,91.40713520205627,186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1386,'2018-08-24T23:06:47.215Z',NULL,14,6,37.648145389078365,1.51,41.905455314562616,186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1387,'2020-03-24T20:16:15.881Z',NULL,74,1,51.12804227386549,3.58,51.94355292942357,187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1388,'2018-10-26T11:38:54.157Z',NULL,47,3,84.0766209826718,5.89,90.04767991640767,187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1389,'2018-04-17T17:54:48.214Z',NULL,27,2,127.52471180754115,7.65,129.50942306492706,190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1390,'2017-03-09T05:49:33.532Z',NULL,72,1,94.80254599192457,4.01,103.67654842062493,194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1391,'2019-07-25T03:36:08.306Z',NULL,175,4,117.3248094335266,4.96,130.8094472194543,194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1392,'2018-12-15T06:22:02.791Z',NULL,55,2,95.77128575934437,0,102.62593872183018,197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1393,'2019-09-11T15:25:07.528Z',NULL,102,5,47.04215255778118,0,45.23757058837111,197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1394,'2018-10-17T17:51:08.670Z',1.8579485857942475,4,4,110.98767151282252,0,119.56166192346961,197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1395,'2019-11-26T21:37:17.835Z',NULL,85,2,54.90104734428525,0,56.63964076623261,197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1396,'2019-02-18T13:46:57.173Z',NULL,27,1,127.52471180754115,0,125.81316952980612,197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1397,'2019-01-27T22:57:15.849Z',6.536704768204861,20,2,37.32649625046575,0,38.22608096401707,197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1398,'2020-02-27T05:48:44.529Z',NULL,71,1,82.80381898788684,4.97,88.40638461558798,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1399,'2019-08-06T12:09:28.009Z',NULL,118,6,57.627613096978735,3.46,64.26353271505121,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1400,'2019-01-27T15:58:14.111Z',NULL,148,2,138.9817182254566,8.34,145.1604747252853,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1401,'2019-10-01T11:04:07.158Z',NULL,30,3,64.17448218067184,3.85,66.99188531309585,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1402,'2019-01-17T22:59:14.263Z',NULL,150,1,128.55415037577922,7.71,135.5433601988775,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1403,'2020-01-01T16:25:57.186Z',NULL,162,2,33.56789820016516,2.01,36.93346153195533,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1404,'2018-10-27T00:27:05.773Z',NULL,184,6,116.09741230191975,6.97,129.7975818672355,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1405,'2020-02-29T07:13:04.056Z',NULL,37,1,80.10774204020768,4.81,90.63774492982262,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1406,'2019-11-05T00:20:51.701Z',NULL,61,2,23.537915510955656,1.41,24.237578768535297,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1407,'2017-12-11T12:41:33.997Z',NULL,12,2,77.34285054412217,4.64,87.53720100924076,198); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1408,'2019-08-03T11:02:30.138Z',NULL,92,6,124.89242686579996,7.18,138.44810260182928,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1409,'2019-08-20T00:56:04.925Z',NULL,129,6,148.1672972165937,8.52,146.61544905831732,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1410,'2017-10-19T17:51:49.749Z',NULL,130,5,50.01715912876758,2.88,51.97910290685327,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1411,'2017-11-27T12:15:05.731Z',NULL,147,4,44.4315141414441,2.55,47.231926748205204,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1412,'2019-04-23T14:13:31.541Z',NULL,57,4,122.4223933583994,7.04,133.81811609220398,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1413,'2017-04-19T20:18:47.293Z',NULL,184,3,77.3982748679465,4.45,87.57597502882244,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1414,'2018-07-24T07:03:36.519Z',NULL,138,3,113.95078476718615,6.55,123.54770526162088,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1415,'2018-02-07T14:22:43.536Z',NULL,14,1,37.648145389078365,2.16,40.9451269418887,199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1416,'2020-01-31T07:57:02.432Z',NULL,141,2,126.20312547576883,8.68,142.99464478114913,200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1417,'2019-03-15T16:24:28.358Z',NULL,145,1,61.1983004605443,4.21,64.18999594428888,200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1418,'2018-10-26T00:44:50.893Z',NULL,164,4,92.96789820016517,6.39,107.55914658660096,200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1419,'2018-11-12T05:08:10.817Z',NULL,35,3,71.53687730741436,4.92,73.66400378345581,200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1420,'2017-10-13T17:32:17.497Z',3.0090233054663296,147,6,44.4315141414441,3.05,45.15190692748813,200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1421,'2019-02-24T16:05:03.257Z',NULL,124,1,110.93145648834248,7.63,116.0483967439864,200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1422,'2018-10-15T18:37:18.597Z',NULL,52,4,103.67587240151535,0,108.93989387404089,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1423,'2020-01-12T01:25:34.657Z',NULL,54,1,62.09360840402396,0,59.51901256654819,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1424,'2018-04-10T20:43:37.812Z',NULL,39,2,114.58158180283459,0,110.09816385869274,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1425,'2018-08-28T22:44:04.684Z',NULL,79,6,41.616917284159726,0,39.01612067183602,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1426,'2019-03-31T07:38:00.271Z',NULL,32,1,107.1448636959614,0,106.3533340112972,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1427,'2017-11-17T14:15:37.962Z',NULL,185,2,26.384667225677738,0,26.84369251366448,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1428,'2018-04-18T18:16:50.966Z',NULL,34,2,74.30391386913199,0,77.50109491329832,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1429,'2019-11-06T17:39:17.309Z',NULL,32,2,107.1448636959614,0,115.9867702738476,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1430,'2019-05-18T06:01:44.093Z',4.194243736875546,77,3,101.01691728415972,0,100.94273027778428,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1431,'2017-03-27T01:41:56.393Z',NULL,196,1,46.76407124473339,0,48.46242143684614,201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1432,'2020-03-03T17:42:55.832Z',NULL,177,1,128.8192981944599,8.05,147.18969079796818,203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1433,'2018-08-09T10:08:22.130Z',NULL,142,4,70.34853057210945,4.4,70.05154218183327,203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1434,'2019-05-17T18:10:35.778Z',5.942454301704915,5,3,124.1176465275534,7.76,130.34895916461736,203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1435,'2020-01-15T00:55:48.021Z',NULL,171,2,105.07665741496471,6.57,120.14388892811839,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1436,'2019-08-13T21:20:42.098Z',NULL,14,7,37.648145389078365,2.35,40.82825474256422,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1437,'2019-01-13T21:29:56.592Z',NULL,193,1,50.38077396807232,3.15,53.214208881693004,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1438,'2018-10-04T19:55:06.634Z',NULL,32,4,107.1448636959614,6.7,113.32115600329165,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1439,'2018-12-27T11:18:55.673Z',NULL,104,15,106.44215255778118,6.65,110.70431634831796,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1440,'2017-05-07T08:40:21.611Z',NULL,36,3,87.29125153827623,5.46,91.11872667259249,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1441,'2019-04-16T16:39:59.616Z',NULL,134,2,42.49233549998661,2.66,44.56095176395502,204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1442,'2016-09-10T00:45:38.181Z',NULL,166,2,25.536330427467956,1.79,27.072099304732763,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1443,'2020-01-03T16:47:48.061Z',NULL,70,1,57.493003808959784,4.02,61.519087034501595,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1444,'2019-09-27T04:13:46.772Z',5.942454301704915,164,4,92.96789820016517,6.51,105.60319529377661,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1445,'2018-07-14T09:56:26.779Z',NULL,48,4,123.20884248534108,8.62,129.1679378870787,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1446,'2018-02-09T04:18:45.870Z',NULL,58,2,78.14578007078882,5.47,84.45160386327761,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1447,'2019-04-24T23:33:43.572Z',NULL,113,4,110.47725376186015,7.73,110.41280489565682,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1448,'2019-11-16T22:26:38.662Z',NULL,29,4,123.57448218067185,8.65,135.19926600069186,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1449,'2017-08-17T18:50:00.143Z',8.493938900125807,159,9,23.686782969182406,1.66,26.140675929130502,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1450,'2019-05-19T07:22:10.545Z',NULL,84,6,81.87627832636537,5.73,89.32082726042205,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1451,'2017-10-25T07:39:31.560Z',NULL,180,7,45.549391048892794,3.19,52.75890460638264,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1452,'2018-12-04T07:14:14.923Z',NULL,90,3,123.1196127553999,8.62,126.74229385676742,205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1453,'2018-02-15T12:27:59.206Z',NULL,85,2,54.90104734428525,3.43,62.398478876559246,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1454,'2018-04-20T15:26:24.359Z',NULL,189,4,93.27738254731509,5.83,93.82498508115977,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1455,'2018-10-27T23:04:31.821Z',NULL,103,7,47.04215255778118,2.94,53.42929985730876,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1456,'2020-01-01T13:59:20.248Z',NULL,66,3,136.16126271106958,8.51,153.78230272995177,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1457,'2019-02-19T17:33:30.472Z',NULL,45,2,118.0495173798411,7.38,116.73857718822411,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1458,'2018-11-11T17:51:20.850Z',NULL,63,3,133.5202262591817,8.35,145.0452242824912,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1459,'2019-03-18T03:32:21.407Z',NULL,70,1,57.493003808959784,3.59,57.94850331468098,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1460,'2017-09-10T11:11:55.387Z',NULL,112,6,27.55292434006023,1.72,31.41284204714374,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1461,'2019-01-24T07:08:32.132Z',NULL,70,2,57.493003808959784,3.59,61.065863607351396,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1462,'2019-07-20T17:13:45.466Z',NULL,79,6,41.616917284159726,2.6,43.08868988040843,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1463,'2018-04-27T11:44:58.038Z',NULL,194,3,50.38077396807232,3.15,53.893659547116016,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1464,'2019-07-20T16:01:55.656Z',NULL,1,6,44.19489169601981,2.76,50.31282940538061,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1465,'2020-01-02T15:54:01.775Z',7.17253381698254,42,2,38.00410713690931,2.38,41.08019015508462,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1466,'2017-07-29T23:54:50.419Z',NULL,136,6,70.13601544771562,4.38,72.93267180209864,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1467,'2020-01-28T06:14:04.259Z',NULL,77,3,101.01691728415972,6.31,108.36268462935743,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1468,'2020-03-22T14:41:05.465Z',NULL,33,1,47.7448636959614,2.98,51.817708471469494,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1469,'2020-03-16T04:45:34.385Z',NULL,76,1,63.82421061366486,3.99,73.42968369021453,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1470,'2017-10-03T02:14:50.274Z',NULL,82,8,40.59697158687298,2.54,44.40678224023757,208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1471,'2017-08-08T20:28:22.106Z',NULL,63,7,89.0134841727878,5.56,92.9442301899387,210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1472,'2017-05-12T15:39:49.729Z',NULL,110,5,37.01783079127111,2.31,42.51050239356796,210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1473,'2017-03-04T10:46:17.718Z',NULL,146,1,84.03151414144409,5.25,87.65948470358451,210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1474,'2017-07-14T05:39:11.076Z',NULL,61,4,15.691943673970439,0.63,16.47744924518663,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1475,'2019-07-03T00:41:03.541Z',NULL,128,53,75.08016314504417,3,84.51330427374789,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1476,'2018-05-04T01:26:12.027Z',NULL,16,6,66.11029954877317,2.64,72.0114073659186,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1477,'2019-05-21T13:46:43.617Z',NULL,54,6,62.09360840402396,2.48,64.68812329391959,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1478,'2019-02-15T15:05:56.517Z',NULL,196,2,70.14610686710009,2.81,78.66201021628093,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1479,'2016-11-11T13:12:04.968Z',NULL,146,2,84.03151414144409,3.36,90.82737727840545,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1480,'2019-04-05T17:21:17.100Z',NULL,58,3,78.14578007078882,3.13,85.64468507822093,211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1481,'2018-09-25T13:08:13.730Z',2.4791044575158265,63,6,133.5202262591817,5.34,130.28785236712437,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1482,'2017-12-08T00:29:10.496Z',NULL,94,2,72.81242771103588,2.91,82.20631662323744,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1483,'2017-12-08T03:13:14.552Z',NULL,13,2,75.0861692740371,3,79.77901028518228,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1484,'2018-10-27T01:27:44.226Z',NULL,83,6,81.87627832636537,3.28,91.79551436357536,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1485,'2018-05-16T10:02:45.073Z',NULL,179,4,68.32408657333919,2.73,72.26417116872922,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1486,'2017-12-20T05:46:26.384Z',NULL,126,2,83.49598746872304,3.34,86.46894183042131,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1487,'2020-03-12T05:43:13.119Z',NULL,107,1,50.094887884945365,2,49.59906116615733,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1488,'2019-02-01T21:48:50.109Z',NULL,69,1,73.38772304360626,2.94,80.88285206848113,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1489,'2019-09-23T09:13:47.384Z',NULL,42,6,38.00410713690931,1.52,37.408795885384365,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1490,'2017-10-28T19:20:33.157Z',NULL,90,6,82.07974183693327,3.28,91.02114031679419,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1491,'2019-04-03T03:08:27.573Z',NULL,32,4,107.1448636959614,4.29,110.73161447965296,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1492,'2020-03-14T18:48:41.418Z',NULL,18,1,81.90307121097293,3.28,90.97354879583612,213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1493,'2019-09-11T04:53:58.607Z',NULL,154,3,81.87529553312261,5.12,81.42775503426382,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1494,'2019-12-18T14:03:22.962Z',NULL,23,2,116.86672609493307,7.3,120.24083439694739,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1495,'2020-01-29T23:32:51.050Z',3.1281680140232915,11,2,132.45679913492563,8.28,145.13075026735297,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1496,'2020-04-03T13:03:44.679Z',NULL,86,2,92.31436670850246,5.77,94.31173954878501,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1497,'2019-06-24T15:29:58.266Z',NULL,157,4,139.8942352373801,8.74,156.76844929465136,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1498,'2018-11-18T03:32:51.873Z',7.6281680140232915,119,3,43.43814329652384,2.71,49.39321424866697,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1499,'2020-02-27T02:21:13.658Z',NULL,62,2,133.5202262591817,8.35,146.6522275554838,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1500,'2019-07-13T04:20:26.577Z',NULL,117,3,55.024851254077866,3.44,61.8682966953783,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1501,'2019-06-26T09:36:26.566Z',NULL,59,4,89.20214751859149,5.58,93.06516541184985,215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1502,'2018-03-03T17:27:29.110Z',NULL,7,1,148.22900526552291,5.93,156.01734891284917,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1503,'2019-04-15T21:11:35.163Z',NULL,179,3,68.32408657333919,2.73,67.03913956701038,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1504,'2019-06-06T10:30:09.234Z',NULL,117,6,55.024851254077866,2.2,60.31845127268716,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1505,'2018-02-10T08:43:55.120Z',NULL,83,1,81.87627832636537,3.28,85.51915676609497,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1506,'2018-04-24T07:35:45.028Z',NULL,109,2,119.04991068193098,4.76,116.27480422887731,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1507,'2018-02-11T06:37:34.198Z',NULL,1,2,44.19489169601981,1.77,45.981002877202044,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1508,'2020-04-19T14:07:15.657Z',NULL,28,2,68.12471180754113,2.72,69.51209162165432,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1509,'2017-04-29T00:33:33.554Z',NULL,184,1,77.3982748679465,3.1,83.9141169145546,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1510,'2019-01-17T08:05:29.296Z',NULL,17,1,79.93608046792765,3.2,89.10778223117708,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1511,'2018-12-22T02:27:09.443Z',NULL,117,2,55.024851254077866,2.2,58.61203558477995,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1512,'2019-04-13T02:43:58.276Z',NULL,166,2,38.30449564120193,1.53,40.38307991884145,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1513,'2020-01-07T06:04:24.327Z',NULL,49,1,131.42865839323724,5.26,136.7036952569346,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1514,'2019-10-25T09:16:20.257Z',NULL,73,3,71.6287722595695,2.87,81.05928627192652,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1515,'2017-03-01T03:49:39.618Z',NULL,30,1,42.7829881204479,1.71,44.39096208679294,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1516,'2020-03-17T06:50:01.789Z',7.711102869056271,117,1,55.024851254077866,2.2,53.37068418437869,216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1517,'2018-04-26T10:36:05.302Z',NULL,99,2,67.83486485383094,4.66,70.36241668747196,217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1518,'2019-09-19T17:29:21.865Z',NULL,188,5,33.87738254731509,2.33,36.457936122655354,217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1519,'2019-08-24T11:26:19.530Z',NULL,25,7,68.62263967182464,4.72,78.50760384266714,217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1520,'2020-01-26T05:04:17.229Z',NULL,75,2,125.81276373452337,8.65,145.9050129960857,217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1521,'2018-08-16T14:57:08.410Z',NULL,166,9,38.30449564120193,2.63,40.96179704017848,217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1522,'2019-08-10T21:34:12.006Z',NULL,147,7,66.64727121216615,4.58,72.4356545491958,217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1523,'2018-09-01T06:32:23.048Z',NULL,181,5,143.88940370476112,8.63,164.96985113483913,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1524,'2018-07-16T11:02:24.528Z',NULL,175,5,117.3248094335266,7.04,133.60160309282216,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1525,'2019-07-21T19:45:17.750Z',NULL,137,5,67.77247956807186,4.07,73.84402987566618,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1526,'2019-01-25T16:07:32.619Z',NULL,122,2,99.84528328808108,5.99,114.07779194424992,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1527,'2018-07-26T02:44:01.741Z',NULL,156,3,30.615804149046195,1.84,33.44768346310617,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1528,'2019-06-28T16:57:03.718Z',NULL,4,5,110.98767151282252,6.66,118.6420492271054,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1529,'2018-07-02T09:49:37.172Z',NULL,150,5,128.55415037577922,7.71,130.89661794220953,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1530,'2018-08-08T03:25:56.908Z',NULL,111,6,55.526746186906664,3.33,64.13323554811642,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1531,'2018-12-13T17:49:34.380Z',NULL,75,1,125.81276373452337,7.55,135.2424427081342,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1532,'2018-11-21T09:39:48.937Z',NULL,21,16,60.57501609456816,3.63,63.638126491780994,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1533,'2019-09-08T19:58:05.000Z',6.421238028243499,188,4,33.87738254731509,2.03,38.51011695268777,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1534,'2019-08-11T15:07:31.958Z',NULL,189,6,93.27738254731509,5.6,99.26560815844628,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1535,'2018-09-06T20:12:37.829Z',NULL,61,4,23.537915510955656,1.41,25.981548088769205,218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1536,'2016-09-23T06:32:40.772Z',NULL,44,4,50.90170136783837,3.05,56.41481434885776,221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1537,'2018-08-20T06:38:19.574Z',NULL,1,6,44.19489169601981,2.65,47.04442895731295,221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1538,'2017-07-24T04:21:21.450Z',NULL,112,4,27.55292434006023,1.65,29.675711046736147,221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1539,'2017-05-06T17:10:33.244Z',NULL,122,3,66.56352219205405,3.99,75.31434028602669,221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1540,'2019-01-14T08:26:30.450Z',NULL,106,1,52.723521442619514,3.16,55.162097158029354,221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1541,'2017-11-26T11:44:46.855Z',NULL,109,3,79.36660712128732,5.46,86.25948277129156,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1542,'2017-09-28T06:02:46.985Z',NULL,158,6,93.26282349158673,6.41,103.61581768985636,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1543,'2018-11-27T09:50:12.150Z',NULL,4,3,110.98767151282252,7.63,117.1776606457601,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1544,'2019-07-27T09:10:03.217Z',NULL,20,5,37.32649625046575,2.57,38.52989112339671,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1545,'2019-04-29T07:04:51.952Z',NULL,25,3,68.62263967182464,4.72,73.15153230306115,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1546,'2017-03-29T12:07:28.824Z',NULL,199,1,76.95334253952366,5.29,89.0851878513964,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1547,'2019-01-03T20:32:31.766Z',NULL,107,2,50.094887884945365,3.44,53.95834395714403,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1548,'2019-06-03T00:40:50.413Z',NULL,173,6,122.3651993029456,8.41,133.21870304100756,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1549,'2020-01-10T08:40:14.901Z',NULL,84,2,81.87627832636537,5.63,81.9557589570755,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1550,'2020-02-08T14:58:15.033Z',NULL,57,11,122.4223933583994,8.42,123.63563385350277,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1551,'2020-01-14T03:46:55.527Z',6.462531073103391,150,1,128.55415037577922,8.84,133.04342124674736,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1552,'2018-01-20T10:32:55.326Z',NULL,190,1,128.5841852057933,8.84,135.84435133556184,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1553,'2019-07-01T16:46:48.984Z',NULL,60,3,29.80214751859149,2.05,31.547311982986937,222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1554,'2018-03-31T19:26:08.341Z',NULL,181,1,143.88940370476112,0,151.03863066695493,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1555,'2019-05-26T05:50:21.990Z',NULL,187,5,98.9770008385166,0,92.49707951325776,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1556,'2019-07-10T12:50:40.872Z',NULL,75,5,125.81276373452337,0,120.02808214550699,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1557,'2018-10-06T22:47:00.945Z',NULL,20,6,37.32649625046575,0,37.68325938879507,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1558,'2018-08-03T10:27:03.809Z',1.9625310731033911,197,8,70.14610686710009,0,74.19961802499304,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1559,'2019-07-25T02:33:15.991Z',NULL,142,5,70.34853057210945,0,69.82856489708523,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1560,'2019-02-11T13:35:50.709Z',NULL,75,2,125.81276373452337,0,135.9792341323098,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1561,'2018-05-12T18:04:08.334Z',NULL,164,3,92.96789820016517,0,88.24686498608358,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1562,'2017-07-07T02:20:44.042Z',NULL,157,3,93.26282349158673,0,87.68754395312764,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1563,'2020-02-29T03:20:24.648Z',NULL,20,1,37.32649625046575,0,38.0704458081839,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1564,'2019-09-09T22:12:12.276Z',NULL,148,4,138.9817182254566,0,144.32670135148064,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1565,'2018-07-31T12:35:05.490Z',NULL,68,5,115.24343882309758,0,117.0053684547769,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1566,'2019-03-03T16:58:34.190Z',NULL,119,1,43.43814329652384,0,45.621050788734486,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1567,'2019-09-15T15:16:27.741Z',NULL,150,5,128.55415037577922,0,134.6306631814527,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1568,'2017-08-06T01:18:04.109Z',NULL,7,9,98.81933684368194,0,106.03834681144752,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1569,'2018-01-03T16:14:53.858Z',NULL,117,2,55.024851254077866,0,55.409966399324176,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1570,'2019-05-29T00:50:18.110Z',NULL,65,4,68.22769726470014,0,67.73813563487566,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1571,'2020-03-26T02:09:55.477Z',NULL,124,1,110.93145648834248,0,107.00875179312185,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1572,'2019-12-20T18:42:55.479Z',NULL,19,2,64.00675097561322,0,60.33922207682747,223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1573,'2018-07-14T07:17:57.975Z',NULL,159,6,35.53017445377361,2.04,37.420995547586124,224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1574,'2019-09-30T12:09:09.722Z',NULL,9,6,87.46968147789205,5.03,95.70309869551805,224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1575,'2018-02-07T05:07:18.444Z',NULL,144,2,61.1983004605443,3.52,69.68144399305707,224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1576,'2019-06-13T19:46:54.443Z',NULL,81,8,43.9329842322118,2.53,47.285121720224915,224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1577,'2019-10-25T03:08:53.418Z',NULL,159,7,35.53017445377361,2.04,39.23025136090704,224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1578,'2019-07-17T16:59:46.871Z',NULL,4,6,110.98767151282252,6.66,114.49250161696378,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1579,'2018-02-18T23:21:43.454Z',NULL,15,2,37.648145389078365,2.26,42.49362396268519,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1580,'2019-06-05T19:29:59.561Z',3.514715035914166,66,5,136.16126271106958,8.17,138.8320248119395,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1581,'2018-04-18T22:03:14.284Z',NULL,140,2,66.80312547576881,4.01,76.93301070946907,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1582,'2018-09-15T04:09:32.851Z',NULL,10,4,47.6793282102869,2.86,49.79605110859785,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1583,'2017-01-13T03:05:12.520Z',NULL,156,2,20.41053609936413,1.22,20.67963140577113,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1584,'2020-02-01T23:29:57.262Z',NULL,113,2,110.47725376186015,6.63,124.21323930922826,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1585,'2018-12-16T12:02:55.136Z',NULL,151,3,91.61302306843446,5.5,90.19365660308691,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1586,'2019-01-30T19:19:59.111Z',3.514715035914166,77,3,101.01691728415972,6.06,104.62172306368613,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1587,'2020-04-10T01:08:04.574Z',NULL,79,3,41.616917284159726,2.5,43.84523278674654,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1588,'2019-03-08T07:35:28.742Z',NULL,146,1,126.04727121216614,7.56,133.9452637879159,225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1589,'2019-10-06T15:23:03.569Z',NULL,194,4,50.38077396807232,3.46,54.69842619735112,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1590,'2017-10-17T21:38:23.062Z',NULL,100,4,45.22324323588729,3.11,44.73398977544244,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1591,'2018-01-04T22:58:41.900Z',NULL,121,2,40.44528328808107,2.78,46.9894302858008,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1592,'2019-02-27T10:15:27.183Z',NULL,56,2,36.37128575934436,2.5,37.20989365251202,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1593,'2020-03-26T11:11:21.366Z',NULL,175,1,117.3248094335266,8.07,122.91328094444022,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1594,'2019-09-17T21:21:18.332Z',NULL,34,2,74.30391386913199,5.11,83.16391282747091,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1595,'2020-03-11T00:38:40.864Z',NULL,119,0,43.43814329652384,2.99,44.054058170265556,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1596,'2019-03-21T15:05:11.827Z',NULL,124,0,110.93145648834248,7.63,120.85241572577243,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1597,'2020-02-28T16:20:37.634Z',NULL,196,1,70.14610686710009,4.82,78.27169427815606,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1598,'2019-10-05T02:41:31.333Z',NULL,39,4,114.58158180283459,7.88,130.67553474641466,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1599,'2019-08-16T10:42:43.785Z',NULL,32,7,107.1448636959614,7.37,123.52066482121056,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1600,'2019-07-30T21:47:52.903Z',NULL,176,5,57.92480943352658,3.98,58.5902191062543,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1601,'2017-03-21T09:48:41.831Z',NULL,68,1,76.82895921539838,5.28,86.24672476155092,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1602,'2018-07-23T06:12:43.143Z',NULL,60,3,29.80214751859149,2.05,30.582180835160933,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1603,'2018-09-16T15:17:43.486Z',NULL,67,5,41.24480890795779,2.84,43.75917290252368,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1604,'2018-06-12T15:10:04.697Z',NULL,158,6,139.8942352373801,9.62,141.56844938711401,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1605,'2019-11-19T19:18:04.008Z',NULL,77,2,101.01691728415972,6.94,115.76244746236132,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1606,'2017-07-23T19:53:08.882Z',NULL,43,3,50.90170136783837,3.5,50.47604140234519,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1607,'2019-10-22T22:06:46.631Z',NULL,71,4,82.80381898788684,5.69,82.62785074983508,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1608,'2018-08-16T21:31:58.687Z',NULL,193,3,50.38077396807232,3.46,54.56248478173771,226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1609,'2019-04-30T13:29:29.900Z',NULL,169,2,59.53172693453274,3.57,66.22423361564623,228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1610,'2018-08-04T03:19:36.090Z',NULL,106,5,52.723521442619514,3.16,53.149684574605494,228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1611,'2019-02-05T13:23:10.640Z',NULL,144,1,61.1983004605443,3.67,64.21125784521158,228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1612,'2019-07-06T18:09:41.618Z',NULL,102,3,47.04215255778118,2.82,52.504885120871585,228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1613,'2019-03-21T02:24:15.633Z',NULL,22,0,32.136779940663494,1.93,32.20339271972486,228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1614,'2018-06-27T20:00:09.522Z',NULL,20,3,37.32649625046575,2.24,36.75037775825839,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1615,'2019-04-25T13:02:24.048Z',NULL,186,2,98.9770008385166,5.94,100.27461802011761,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1616,'2019-08-06T20:25:34.978Z',0.9120296575807747,61,5,23.537915510955656,1.41,24.97745735661748,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1617,'2017-02-12T07:05:27.938Z',NULL,118,1,38.418408731319154,2.31,43.97254650678978,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1618,'2018-08-19T11:42:23.663Z',NULL,35,6,71.53687730741436,4.29,71.54985196108561,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1619,'2018-08-17T21:44:30.688Z',NULL,132,6,127.88197029833711,7.67,147.7479133017721,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1620,'2017-09-18T01:08:16.121Z',NULL,197,6,46.76407124473339,2.81,47.61391475910475,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1621,'2019-09-27T01:54:10.850Z',NULL,194,6,50.38077396807232,3.02,52.12934276945261,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1622,'2018-09-03T05:18:36.419Z',NULL,80,4,54.91325681036414,3.29,57.92845320971687,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1623,'2019-06-20T22:45:27.932Z',NULL,123,5,110.93145648834248,6.66,114.32460940190889,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1624,'2019-11-07T06:42:58.171Z',NULL,183,3,56.697412301919755,3.4,63.84512627358602,229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1625,'2018-09-19T01:44:00.177Z',NULL,124,4,110.93145648834248,6.93,122.38058014907516,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1626,'2016-11-29T11:51:58.646Z',NULL,104,2,70.96143503852079,4.44,74.83434512288926,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1627,'2017-05-26T18:51:07.560Z',NULL,18,3,54.60204747398195,3.41,58.85851312270714,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1628,'2017-05-09T10:29:34.459Z',NULL,171,3,70.05110494330981,4.38,69.45735079903167,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1629,'2018-12-28T00:43:41.643Z',NULL,163,2,33.56789820016516,2.1,37.01755243909584,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1630,'2017-11-02T10:55:34.611Z',NULL,13,3,75.0861692740371,4.69,74.29086491521241,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1631,'2018-08-07T03:38:11.002Z',NULL,64,7,143.4221774571866,8.96,142.0823301166218,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1632,'2018-01-17T22:06:07.890Z',NULL,52,2,103.67587240151535,6.48,120.42062290212986,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1633,'2016-08-22T14:28:59.059Z',NULL,66,8,90.77417514071306,5.67,94.88124727380783,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1634,'2018-02-15T05:00:40.734Z',9.669111943074371,166,2,38.30449564120193,2.39,37.7347940169461,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1635,'2019-02-26T20:11:56.619Z',NULL,184,2,116.09741230191975,7.26,134.1607659362687,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1636,'2019-08-10T02:40:20.267Z',NULL,88,8,105.41292031622555,6.59,114.1142297950312,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1637,'2017-02-16T06:03:39.295Z',5.1691119430743715,1,2,29.463261130679875,1.84,33.70323686596983,232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1638,'2018-06-07T14:00:00.269Z',NULL,136,58,105.20402317157343,7.36,105.79889680103145,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1639,'2019-06-05T03:27:33.956Z',5.1691119430743715,49,6,131.42865839323724,9.2,147.03870822590756,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1640,'2019-10-29T15:46:42.837Z',NULL,10,7,47.6793282102869,3.34,47.376800260347224,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1641,'2017-07-25T16:20:10.223Z',NULL,103,7,31.361435038520785,2.2,34.499504506439955,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1642,'2017-12-27T00:38:17.438Z',NULL,154,2,54.58353035541507,3.82,58.10646628331387,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1643,'2019-09-18T23:01:12.999Z',NULL,188,5,33.87738254731509,2.37,33.59589318076197,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1644,'2017-07-29T14:56:23.843Z',3.05083109732558,50,5,35.76013077879841,2.5,39.744817338678224,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1645,'2017-03-27T20:14:00.634Z',NULL,7,1,98.81933684368194,6.92,103.56613595935265,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1646,'2019-03-01T17:04:18.660Z',NULL,169,1,59.53172693453274,4.17,63.10736993650141,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1647,'2018-11-10T03:04:33.599Z',NULL,39,2,114.58158180283459,8.02,122.54952488920867,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1648,'2019-12-11T22:00:20.009Z',NULL,151,2,91.61302306843446,6.41,106.25062167478592,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1649,'2020-02-04T22:49:38.053Z',NULL,8,2,98.83823503993958,6.92,97.51794064930705,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1650,'2019-09-30T03:03:31.143Z',NULL,45,5,118.0495173798411,8.26,128.92065599865379,233); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1651,'2019-09-28T02:49:44.025Z',NULL,31,5,105.65346467128523,0,97.62118499211653,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1652,'2019-02-13T09:46:01.640Z',NULL,168,2,118.93172693453273,0,126.02107578961966,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1653,'2018-08-16T05:39:53.813Z',NULL,186,7,98.9770008385166,0,102.10431411903393,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1654,'2018-05-23T17:08:35.495Z',NULL,129,4,148.1672972165937,0,159.36921839216117,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1655,'2018-12-10T07:37:11.674Z',NULL,192,2,69.18418520579327,0,69.24477955279708,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1656,'2018-10-25T15:51:44.697Z',NULL,8,7,98.83823503993958,0,102.86110335724563,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1657,'2018-08-22T19:39:11.630Z',NULL,4,8,110.98767151282252,0,107.00058456395048,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1658,'2020-02-28T06:15:45.615Z',2.910429292219308,149,2,69.15415037577924,0,71.16327540451037,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1659,'2017-08-24T05:40:46.743Z',NULL,139,6,51.18512212784679,0,47.302357600502894,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1660,'2018-07-26T16:45:05.629Z',NULL,3,5,53.08311732230858,0,50.353005196874896,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1661,'2018-11-15T01:21:49.326Z',NULL,185,3,39.57700083851661,0,37.04772491939266,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1662,'2019-12-02T11:20:24.995Z',NULL,37,2,80.10774204020768,0,78.58607145046129,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1663,'2018-06-11T00:22:23.837Z',NULL,151,8,91.61302306843446,0,89.12785047985415,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1664,'2019-11-16T19:01:41.169Z',NULL,129,3,148.1672972165937,0,154.63497594173504,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1665,'2018-12-27T06:14:30.378Z',NULL,87,2,117.25536340498041,0,116.88266036419344,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1666,'2019-08-14T13:13:50.935Z',NULL,110,8,55.526746186906664,0,51.296700642438154,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1667,'2020-03-27T05:06:24.618Z',NULL,187,1,98.9770008385166,0,99.07464896422829,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1668,'2019-05-31T14:15:27.768Z',NULL,52,3,103.67587240151535,0,101.78216410568953,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1669,'2019-06-26T04:16:34.722Z',NULL,150,6,128.55415037577922,0,130.85143678548278,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1670,'2019-01-13T15:31:30.491Z',NULL,188,2,33.87738254731509,0,35.14469776508286,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1671,'2018-12-05T06:16:35.853Z',NULL,11,2,132.45679913492563,0,144.84656851851182,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1672,'2019-07-22T08:15:56.511Z',NULL,106,5,52.723521442619514,0,52.985690213105904,234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1673,'2018-09-17T22:42:22.949Z',NULL,53,5,44.27587240151534,2.55,44.921768497252266,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1674,'2017-08-22T03:04:23.100Z',NULL,55,8,63.84752383956291,3.67,71.37658797815344,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1675,'2019-08-12T08:58:44.632Z',NULL,84,7,81.87627832636537,4.71,92.57645493310318,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1676,'2019-11-04T16:59:01.579Z',7.615455689329357,59,2,89.20214751859149,5.13,89.7668443709925,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1677,'2018-01-15T20:05:30.814Z',NULL,17,2,79.93608046792765,4.6,86.76521204934794,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1678,'2017-06-18T22:37:39.262Z',NULL,38,6,44.04624855892918,2.53,43.91651502377583,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1679,'2019-04-30T07:39:12.340Z',7.615455689329357,22,3,32.136779940663494,1.85,31.965158794846065,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1680,'2016-07-19T14:08:49.873Z',NULL,51,5,50.433725012700116,2.9,53.57571939451168,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1681,'2020-02-14T18:55:03.083Z',NULL,129,2,148.1672972165937,8.52,169.17982252162366,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1682,'2018-03-25T21:51:07.348Z',3.115455689329357,136,1,105.20402317157343,6.05,108.42503888908864,235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1683,'2019-12-13T13:18:44.162Z',NULL,90,2,123.1196127553999,7.39,132.6247183162999,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1684,'2019-12-31T23:49:10.826Z',NULL,95,3,49.81864156655383,2.99,57.49344274658839,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1685,'2018-08-25T10:35:43.551Z',NULL,52,10,103.67587240151535,6.22,106.79967735271565,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1686,'2017-09-09T05:24:26.465Z',NULL,122,7,66.56352219205405,3.99,74.26702036725698,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1687,'2018-06-27T01:33:24.673Z',NULL,17,7,79.93608046792765,4.8,78.07803959041664,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1688,'2020-03-30T21:58:39.360Z',NULL,28,1,68.12471180754113,4.09,78.03738221004826,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1689,'2019-02-25T15:56:55.656Z',NULL,77,2,101.01691728415972,6.06,110.18453927349232,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1690,'2018-04-10T03:22:35.744Z',NULL,3,3,53.08311732230858,3.18,53.188199653130006,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1691,'2018-09-02T22:22:38.927Z',NULL,160,6,47.59120561297272,2.86,49.600832721034074,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1692,'2020-03-22T00:47:24.248Z',NULL,77,1,101.01691728415972,6.06,114.9130696335489,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1693,'2019-09-27T19:50:42.476Z',NULL,31,6,105.65346467128523,6.34,120.00839362815458,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1694,'2016-10-03T22:17:23.915Z',8.810591234542533,21,7,40.38334406304544,2.42,42.611808944591594,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1695,'2019-10-29T09:52:49.516Z',NULL,165,8,38.30449564120193,2.3,40.78337172085199,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1696,'2018-11-01T11:52:15.642Z',5.660386613495339,86,4,92.31436670850246,5.54,101.10657218031162,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1697,'2018-11-15T12:54:38.125Z',NULL,33,3,47.7448636959614,2.86,50.14498624207312,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1698,'2020-03-01T11:18:39.578Z',NULL,172,1,122.3651993029456,7.34,127.00814908901873,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1699,'2019-05-12T14:22:20.300Z',NULL,183,5,56.697412301919755,3.4,65.6814608800992,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1700,'2018-05-06T14:35:40.467Z',NULL,40,5,99.66240044231697,5.98,97.38414251968652,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1701,'2019-09-07T10:29:36.971Z',NULL,128,5,75.08016314504417,4.5,85.7003619198531,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1702,'2018-03-07T21:05:54.441Z',2.7660350354762295,49,1,131.42865839323724,7.89,142.9359329895956,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1703,'2018-04-27T16:44:17.378Z',NULL,24,3,112.30643674729413,6.74,125.41941311172076,236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1704,'2020-01-10T12:53:33.317Z',NULL,148,2,138.9817182254566,5.98,150.11075016905673,239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1705,'2017-10-27T19:33:08.334Z',NULL,78,7,27.74461152277315,1.66,30.558078177937844,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1706,'2019-10-18T09:24:05.112Z',NULL,169,5,59.53172693453274,3.57,60.60424291090049,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1707,'2019-06-06T09:41:52.773Z',NULL,4,4,110.98767151282252,6.66,121.69956460300429,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1708,'2020-04-06T19:42:17.900Z',7.2660350354762295,66,2,136.16126271106958,8.17,143.40027330189145,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1709,'2017-04-21T07:54:53.642Z',NULL,146,2,84.03151414144409,5.04,84.34690634968631,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1710,'2017-10-12T00:29:14.253Z',NULL,162,5,22.378598800110105,1.34,24.23067629489311,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1711,'2019-02-12T13:00:05.519Z',NULL,120,2,83.5020135028928,5.01,96.1451294069806,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1712,'2017-11-12T03:37:17.879Z',NULL,71,2,55.202545991924566,3.31,58.8678883603075,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1713,'2016-12-11T16:08:07.483Z',NULL,55,1,63.84752383956291,3.83,65.1785863890166,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1714,'2019-01-30T15:21:59.872Z',NULL,40,2,99.66240044231697,5.98,102.21215198563036,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1715,'2020-01-13T18:49:12.990Z',NULL,143,2,61.1983004605443,3.67,69.36327385943538,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1716,'2019-11-20T15:15:11.931Z',NULL,8,2,98.83823503993958,5.93,108.77576994736054,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1717,'2018-06-17T18:14:16.632Z',NULL,151,5,91.61302306843446,5.5,90.41618105749119,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1718,'2020-03-30T17:56:20.895Z',NULL,32,8,107.1448636959614,6.43,118.35564647125003,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1719,'2018-08-23T23:01:43.220Z',NULL,150,6,128.55415037577922,7.71,140.72327803692733,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1720,'2019-06-05T13:48:55.642Z',NULL,22,7,32.136779940663494,1.93,36.14450393311214,240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1721,'2019-06-03T15:26:41.495Z',NULL,75,5,125.81276373452337,8.65,130.9584002603451,242); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1722,'2020-02-08T16:35:18.626Z',NULL,16,1,66.11029954877317,2.79,71.6518896585164,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1723,'2020-03-04T16:16:16.757Z',NULL,67,1,41.24480890795779,1.74,42.62801643094991,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1724,'2019-11-01T17:58:31.438Z',NULL,177,3,128.8192981944599,5.44,136.1539526571425,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1725,'2019-07-12T11:58:36.012Z',NULL,169,7,59.53172693453274,2.52,57.79399869647647,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1726,'2017-11-05T12:44:47.310Z',NULL,106,4,35.149014295079674,1.49,34.38621985675342,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1727,'2020-02-21T03:08:49.459Z',NULL,27,2,127.52471180754115,5.39,143.54377072418038,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1728,'2020-02-16T02:04:28.518Z',NULL,148,2,138.9817182254566,5.87,156.4444575443507,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1729,'2018-08-15T12:44:21.493Z',NULL,81,8,43.9329842322118,1.86,47.04214469331261,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1730,'2018-03-20T04:10:17.766Z',NULL,3,1,53.08311732230858,2.24,53.18655300984244,243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1731,'2018-09-13T11:33:48.105Z',NULL,177,6,128.8192981944599,7.73,143.3694079586953,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1732,'2017-10-14T13:44:12.372Z',9.144031023964146,191,6,85.72279013719552,5.14,91.79677053739124,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1733,'2018-11-22T23:57:34.554Z',4.644031023964146,158,4,139.8942352373801,8.39,161.78163362217376,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1734,'2018-12-21T18:19:58.193Z',NULL,96,3,104.82144858590365,6.29,119.15998836063658,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1735,'2018-10-21T23:50:34.526Z',NULL,78,6,41.616917284159726,2.5,43.979314744877826,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1736,'2019-10-01T20:25:59.055Z',NULL,188,5,33.87738254731509,2.03,39.22931028878555,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1737,'2019-08-12T16:00:33.288Z',NULL,72,8,142.20381898788685,8.53,162.6930357034746,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1738,'2019-07-19T09:13:55.029Z',NULL,199,6,115.4300138092855,6.93,130.7636666741293,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1739,'2020-02-15T06:47:12.798Z',NULL,19,1,64.00675097561322,3.84,72.39526887320578,244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1740,'2019-10-13T13:53:48.556Z',NULL,140,4,66.80312547576881,4.01,76.49961444887924,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1741,'2019-03-19T16:08:18.121Z',5.391742774594802,198,1,70.14610686710009,4.21,76.841743171067,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1742,'2017-12-16T17:01:57.304Z',0.8917427745948023,165,1,25.536330427467956,1.53,25.59174398528368,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1743,'2019-12-02T19:46:20.320Z',0.8917427745948023,95,1,49.81864156655383,2.99,57.83514530561376,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1744,'2017-09-10T12:14:46.658Z',NULL,53,2,29.517248267676894,1.77,29.85578911129083,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1745,'2018-07-17T19:21:05.490Z',NULL,98,3,112.41825444654248,6.75,120.9497984885248,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1746,'2019-01-22T05:48:39.607Z',0.8917427745948023,175,1,117.3248094335266,7.04,134.93990035612103,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1747,'2020-01-23T12:59:58.599Z',NULL,192,1,69.18418520579327,4.15,71.67619192583892,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1748,'2018-05-02T22:47:34.362Z',NULL,86,2,92.31436670850246,5.54,91.75495565795588,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1749,'2018-04-11T23:00:24.590Z',5.563236151256691,81,2,43.9329842322118,2.64,50.957288844424816,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1750,'2019-01-05T22:08:25.692Z',NULL,19,1,64.00675097561322,3.84,70.87235058136504,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1751,'2017-06-02T05:54:50.799Z',NULL,15,4,25.09876359271891,1.51,29.16665069183565,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1752,'2019-07-23T05:02:01.475Z',NULL,127,5,134.48016314504417,8.07,135.4051455274867,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1753,'2018-09-15T10:53:17.835Z',NULL,47,3,84.0766209826718,5.04,92.31781379953307,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1754,'2018-07-16T07:24:03.857Z',NULL,49,3,131.42865839323724,7.89,141.31592052599706,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1755,'2018-11-18T14:47:42.067Z',NULL,94,3,109.21864156655383,6.55,107.35097673501782,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1756,'2020-02-03T01:55:18.819Z',NULL,59,2,89.20214751859149,5.35,95.18505396988076,245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1757,'2019-08-17T16:54:47.922Z',NULL,134,5,42.49233549998661,2.12,44.85857517147298,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1758,'2017-11-12T03:42:20.273Z',1.0632361512566908,44,1,50.90170136783837,2.55,58.17548182978108,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1759,'2017-09-11T22:45:52.145Z',NULL,81,2,29.288656154807867,1.46,29.312511047621438,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1760,'2019-03-26T02:32:30.347Z',NULL,39,0,114.58158180283459,5.73,112.7090987423759,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1761,'2018-03-06T08:34:21.631Z',NULL,77,1,101.01691728415972,5.05,99.33725938824236,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1762,'2020-01-30T14:34:09.778Z',NULL,63,1,133.5202262591817,6.68,141.2857408267338,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1763,'2020-02-21T06:24:21.303Z',NULL,8,1,98.83823503993958,4.94,97.87753879353384,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1764,'2020-03-17T23:26:42.787Z',NULL,154,1,81.87529553312261,4.09,83.64509305238778,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1765,'2019-09-18T22:40:34.444Z',NULL,151,5,91.61302306843446,4.58,92.9259462730609,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1766,'2019-11-08T11:59:18.840Z',NULL,143,3,61.1983004605443,3.06,65.32699485892178,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1767,'2019-07-20T00:05:22.656Z',NULL,98,4,112.41825444654248,5.62,129.9425813848112,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1768,'2019-02-12T00:22:03.679Z',NULL,107,2,50.094887884945365,2.5,56.23683266109079,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1769,'2017-03-04T18:05:05.784Z',NULL,155,13,29.183828734551838,1.46,31.172972089096543,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1770,'2018-08-07T23:35:25.901Z',NULL,28,7,68.12471180754113,3.41,72.00751695240635,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1771,'2019-04-12T09:23:03.317Z',3.4450125447720468,18,2,81.90307121097293,4.1,83.7688688920448,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1772,'2020-03-18T19:53:42.904Z',NULL,134,1,42.49233549998661,2.12,42.21167789161626,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1773,'2020-01-27T10:41:45.422Z',NULL,114,2,77.91196471862148,3.9,81.63478466485688,246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1774,'2018-01-07T14:20:26.082Z',NULL,172,1,122.3651993029456,7.95,123.54596165101634,248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1775,'2017-08-31T12:09:40.453Z',NULL,60,5,19.86809834572766,1.29,22.49181272738221,248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1776,'2019-01-22T21:13:32.651Z',NULL,54,1,62.09360840402396,4.04,69.78237835065751,248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1777,'2020-03-23T00:10:43.723Z',NULL,195,1,109.78077396807234,6.86,128.0870970534065,250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1778,'2018-01-08T10:46:57.603Z',NULL,70,2,57.493003808959784,3.59,63.74847690378994,250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1779,'2019-08-22T14:40:24.554Z',NULL,11,6,132.45679913492563,8.28,148.45728305518898,250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1780,'2019-12-25T02:48:56.936Z',NULL,132,2,127.88197029833711,7.99,149.35049662991267,250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1781,'2018-11-06T00:13:11.125Z',NULL,25,4,68.62263967182464,4.29,75.46170590177724,250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1782,'2018-06-23T23:36:10.458Z',NULL,19,6,64.00675097561322,4,67.18132294115165,250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1783,'2020-02-10T02:24:02.279Z',NULL,189,2,93.27738254731509,3.73,103.76085625598628,251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1784,'2017-09-24T01:37:33.307Z',NULL,125,6,53.59799471993963,2.14,51.155429455631754,251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1785,'2020-02-02T06:55:50.034Z',NULL,59,2,89.20214751859149,3.57,97.34020914343681,251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1786,'2019-12-10T15:44:32.792Z',NULL,54,1,62.09360840402396,2.48,69.11403499525363,251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1787,'2019-01-03T19:58:34.834Z',NULL,115,2,77.91196471862148,3.12,80.52892596162637,251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1788,'2016-12-29T06:20:53.887Z',2.751142758435422,57,2,81.6149289055996,3.26,90.82332355790014,251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1789,'2019-11-01T20:27:13.015Z',NULL,200,3,73.20395711799151,2.93,82.336474448309,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1790,'2018-09-08T19:12:16.249Z',NULL,15,4,37.648145389078365,1.51,42.44175370253894,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1791,'2018-06-15T21:21:52.493Z',NULL,77,6,101.01691728415972,4.04,109.56340791794831,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1792,'2017-09-20T07:13:34.259Z',NULL,169,4,39.68781795635516,1.59,43.03347017552029,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1793,'2018-07-28T02:48:06.148Z',NULL,116,3,114.42485125407785,4.58,128.31017970811084,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1794,'2018-12-04T00:47:06.731Z',0.41329422842438834,135,1,45.80402317157342,1.83,52.242124497436485,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1795,'2018-02-28T20:26:23.621Z',NULL,146,1,126.04727121216614,5.04,121.4061393026828,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1796,'2017-10-22T02:08:47.578Z',NULL,178,5,78.21975500247076,3.13,87.93254132803837,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1797,'2017-11-03T22:22:21.099Z',NULL,199,2,76.95334253952366,3.08,79.51382847871311,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1798,'2018-02-25T15:05:32.644Z',NULL,128,1,75.08016314504417,3,77.55120559319334,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1799,'2017-11-08T11:20:44.315Z',NULL,153,2,44.532615427854914,1.78,43.563055393608174,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1800,'2018-10-05T12:35:01.545Z',NULL,128,4,75.08016314504417,3,76.84344003226488,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1801,'2017-11-01T04:49:44.891Z',NULL,36,3,87.29125153827623,3.49,86.95548733077631,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1802,'2017-05-20T03:27:08.573Z',NULL,46,4,78.6996782532274,3.15,79.43177965638628,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1803,'2018-12-11T17:33:09.936Z',NULL,29,1,123.57448218067185,4.94,141.37773313419285,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1804,'2019-05-17T19:12:06.389Z',1.8841532277303075,14,2,37.648145389078365,1.51,42.317784370813705,253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1805,'2018-03-19T14:09:11.413Z',NULL,99,1,67.83486485383094,4.75,73.32609762897648,254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1806,'2019-03-26T01:33:36.752Z',6.384153227730307,190,1,128.5841852057933,9,144.45997092892293,254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1807,'2017-11-07T04:19:30.657Z',NULL,30,2,42.7829881204479,2.67,47.66831021589108,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1808,'2019-06-30T00:36:19.921Z',NULL,172,7,122.3651993029456,7.65,125.99602975951014,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1809,'2019-07-12T22:11:11.839Z',NULL,150,4,128.55415037577922,8.03,144.6663906486833,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1810,'2019-03-08T09:09:40.871Z',NULL,185,1,39.57700083851661,2.47,45.13567841003966,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1811,'2019-06-21T04:00:29.236Z',NULL,133,5,68.4819702983371,4.28,71.67035342770943,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1812,'2019-04-29T11:21:06.183Z',1.8841532277303075,116,2,114.42485125407785,7.15,131.83619435369542,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1813,'2018-02-03T11:17:17.447Z',NULL,168,1,118.93172693453273,7.43,121.65864145524202,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1814,'2018-02-16T15:26:47.868Z',NULL,47,1,84.0766209826718,5.25,90.78665998114165,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1815,'2019-06-24T10:14:33.608Z',NULL,31,3,105.65346467128523,6.6,113.14083186387786,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1816,'2019-06-25T00:33:50.610Z',NULL,67,6,41.24480890795779,2.58,40.74992361729302,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1817,'2018-06-16T04:18:22.510Z',4.794160574283919,177,7,128.8192981944599,8.05,142.55486286341505,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1818,'2018-12-13T18:27:25.072Z',NULL,190,2,128.5841852057933,8.04,143.307478721933,256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1819,'2018-05-12T07:59:12.618Z',NULL,58,5,78.14578007078882,3.13,76.97397888667818,258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1820,'2018-10-06T12:08:44.493Z',NULL,199,5,115.4300138092855,4.62,120.24668506416062,259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1821,'2017-12-08T05:43:28.077Z',NULL,94,2,72.81242771103588,2.91,69.39991545856259,259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1822,'2019-04-29T14:12:02.320Z',NULL,39,3,114.58158180283459,4.58,124.90573286687868,259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1823,'2017-10-27T23:52:41.973Z',4.794160574283919,166,8,25.536330427467956,1.02,27.2430531109202,259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1824,'2020-01-08T09:24:35.078Z',NULL,185,3,39.57700083851661,1.58,45.29417697059067,259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1825,'2017-11-29T16:19:05.527Z',NULL,126,3,83.49598746872304,3.34,94.92331905854904,259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1826,'2018-06-28T12:57:00.407Z',NULL,134,6,42.49233549998661,2.76,45.64286606883629,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1827,'2020-01-14T21:46:11.746Z',NULL,136,2,105.20402317157343,6.84,105.95634169116785,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1828,'2019-02-07T03:05:24.198Z',NULL,109,2,119.04991068193098,7.74,121.9493360014461,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1829,'2019-05-17T12:06:00.229Z',NULL,61,3,23.537915510955656,1.53,27.085720269470144,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1830,'2018-01-04T03:09:51.693Z',NULL,120,2,83.5020135028928,5.43,89.13337527848023,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1831,'2018-07-24T08:19:16.258Z',NULL,75,6,125.81276373452337,8.18,146.6713209944893,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1832,'2018-01-25T18:42:24.552Z',NULL,24,2,112.30643674729413,7.3,116.930922548966,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1833,'2018-01-12T04:27:58.799Z',NULL,36,2,130.93687730741433,8.51,149.37046084879168,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1834,'2019-11-11T06:33:33.961Z',NULL,47,3,84.0766209826718,5.46,97.17733309813401,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1835,'2018-01-30T13:11:57.621Z',NULL,115,2,77.91196471862148,5.06,76.17176505737706,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1836,'2019-02-27T22:00:54.957Z',NULL,33,2,47.7448636959614,3.1,54.731667100510556,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1837,'2017-01-25T10:41:12.932Z',NULL,53,2,29.517248267676894,1.92,29.69557453035555,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1838,'2017-01-24T16:52:16.557Z',NULL,146,1,84.03151414144409,5.46,96.83935110460361,260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1839,'2019-04-03T19:06:43.441Z',NULL,190,2,128.5841852057933,7.72,134.47434900765455,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1840,'2020-01-07T15:11:40.779Z',NULL,171,2,105.07665741496471,6.3,114.9605799224911,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1841,'2017-03-21T23:45:31.323Z',NULL,48,1,82.13922832356072,4.93,88.34554705824826,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1842,'2019-06-30T12:47:12.596Z',NULL,46,8,118.0495173798411,7.08,123.16401415174788,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1843,'2019-10-22T10:59:01.488Z',3.91858573099462,122,7,99.84528328808108,5.99,112.05846227090319,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1844,'2017-09-04T21:11:08.860Z',NULL,59,5,59.46809834572766,3.57,60.85364891611477,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1845,'2017-10-23T09:37:05.802Z',NULL,116,4,76.28323416938524,4.58,80.3370525875006,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1846,'2018-02-02T08:49:52.376Z',NULL,192,2,69.18418520579327,4.15,78.8030567995593,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1847,'2017-08-09T21:35:36.296Z',NULL,92,7,83.2616179105333,5,88.18694823661755,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1848,'2019-11-10T14:49:02.855Z',NULL,85,2,54.90104734428525,3.29,54.28734480336259,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1849,'2018-06-17T09:11:02.881Z',NULL,145,5,61.1983004605443,3.67,62.35563512845567,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1850,'2019-04-17T22:53:10.432Z',NULL,17,3,79.93608046792765,4.8,93.19545442781772,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1851,'2016-09-02T11:28:00.665Z',NULL,192,5,46.122790137195516,2.77,47.636682179326144,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1852,'2017-10-01T04:37:41.158Z',NULL,50,4,35.76013077879841,2.15,38.45014565821975,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1853,'2020-03-09T00:02:12.861Z',NULL,142,1,70.34853057210945,4.22,77.34158210603564,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1854,'2017-10-21T09:15:32.842Z',8.41858573099462,65,7,45.4851315098001,2.73,43.972105983306434,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1855,'2020-01-19T11:30:33.280Z',NULL,54,3,62.09360840402396,3.73,71.98363871911158,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1856,'2020-01-09T15:44:54.712Z',NULL,46,2,118.0495173798411,7.08,115.47256080520707,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1857,'2018-04-10T21:26:19.545Z',NULL,147,23,66.64727121216615,4,66.68621694629269,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1858,'2017-11-04T12:21:43.257Z',5.216852234058822,179,3,45.549391048892794,2.73,44.76123925296201,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1859,'2017-03-31T04:02:28.029Z',NULL,20,1,24.884330833643833,1.49,28.07647277353005,261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1860,'2019-11-23T21:24:02.855Z',NULL,165,3,38.30449564120193,0,42.38055274976153,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1861,'2018-10-01T08:05:18.022Z',NULL,189,7,93.27738254731509,0,87.28272820613454,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1862,'2017-11-11T07:15:16.871Z',NULL,85,4,36.6006982295235,0,39.400730328304846,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1863,'2019-03-13T13:04:55.788Z',NULL,106,1,52.723521442619514,0,52.902401027369315,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1864,'2020-03-13T15:12:39.599Z',NULL,8,1,98.83823503993958,0,94.84145536267711,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1865,'2020-01-26T11:51:52.849Z',NULL,31,3,105.65346467128523,0,98.42964653576375,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1866,'2017-05-16T22:50:12.578Z',NULL,136,5,70.13601544771562,0,65.79636438493507,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1867,'2017-01-29T16:28:20.346Z',NULL,197,2,46.76407124473339,0,51.30043948531341,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1868,'2019-09-06T23:15:37.746Z',NULL,62,6,133.5202262591817,0,137.74144106196482,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1869,'2017-09-25T15:08:36.876Z',NULL,55,7,63.84752383956291,0,62.92556815584435,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1870,'2018-07-31T09:04:07.176Z',NULL,45,6,118.0495173798411,0,113.50757983665162,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1871,'2018-09-10T02:05:33.136Z',NULL,156,6,30.615804149046195,0,31.780138215259786,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1872,'2017-10-02T00:48:11.506Z',NULL,74,7,34.08536151591033,0,36.401419725296435,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1873,'2020-01-10T01:04:18.508Z',NULL,165,2,38.30449564120193,0,35.202025245962425,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1874,'2019-08-30T14:46:51.375Z',NULL,8,3,98.83823503993958,0,96.51110679656743,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1875,'2018-10-23T15:32:02.448Z',NULL,122,3,99.84528328808108,0,99.99989097470055,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1876,'2018-04-11T03:03:19.379Z',NULL,160,2,47.59120561297272,0,46.412937603602515,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1877,'2019-03-13T05:45:40.246Z',NULL,146,1,126.04727121216614,0,124.63348866405079,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1878,'2020-01-15T14:33:03.572Z',NULL,124,2,110.93145648834248,0,121.52370490413361,265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1879,'2018-07-20T09:02:42.393Z',NULL,7,2,148.22900526552291,8.52,147.97602811734785,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1880,'2018-05-25T14:23:13.192Z',1.6433323310614218,118,3,57.627613096978735,3.31,55.69558976358662,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1881,'2019-08-21T15:25:38.461Z',NULL,88,7,105.41292031622555,6.06,114.39885752538888,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1882,'2020-04-06T22:34:59.459Z',1.6433323310614218,41,3,63.50890855689462,3.65,71.86558659825351,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1883,'2020-02-24T16:19:55.721Z',6.143332331061422,32,2,107.1448636959614,6.16,103.47380176395791,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1884,'2018-06-19T15:19:58.292Z',NULL,53,5,44.27587240151534,2.55,50.888868247831745,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1885,'2020-03-22T01:18:14.397Z',NULL,188,1,33.87738254731509,1.95,38.013689151780085,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1886,'2018-11-29T22:13:06.591Z',NULL,178,4,117.32963250370614,6.75,113.79734924051515,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1887,'2018-05-05T10:15:02.175Z',NULL,60,5,29.80214751859149,1.71,30.94711391068287,266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1888,'2017-09-09T12:17:03.255Z',NULL,137,5,45.18165304538124,2.82,48.812526109042714,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1889,'2016-11-19T16:54:33.360Z',NULL,9,3,58.31312098526137,3.64,56.49615878817364,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1890,'2017-01-09T14:39:17.371Z',NULL,173,2,81.57679953529707,5.1,82.08917768066334,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1891,'2019-12-22T21:29:49.295Z',NULL,150,2,128.55415037577922,8.03,145.40401750364566,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1892,'2017-12-26T02:27:14.317Z',NULL,153,1,44.532615427854914,2.78,45.295989048697926,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1893,'2018-11-26T18:35:40.071Z',NULL,167,3,97.70449564120193,6.11,96.99344640320004,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1894,'2019-10-22T08:48:36.099Z',2.8636991383219037,132,7,127.88197029833711,7.99,123.96037025432813,268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1895,'2017-09-22T20:05:27.349Z',NULL,82,6,40.59697158687298,2.54,47.07226780470778,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1896,'2018-11-26T17:19:28.899Z',NULL,72,3,142.20381898788685,8.89,162.91303687231218,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1897,'2020-03-12T06:25:25.552Z',NULL,184,1,116.09741230191975,7.26,131.08633892753443,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1898,'2017-11-23T22:42:51.751Z',NULL,150,3,85.70276691718615,5.36,85.03476145583863,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1899,'2020-03-28T16:07:07.941Z',8.18588217300163,196,1,70.14610686710009,4.38,73.47326449702882,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1900,'2019-05-21T18:19:46.650Z',NULL,92,4,124.89242686579996,7.81,123.20971264351441,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1901,'2018-09-09T13:35:05.430Z',NULL,35,5,71.53687730741436,4.47,70.8808826655168,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1902,'2018-07-26T14:56:03.624Z',NULL,59,4,89.20214751859149,5.58,99.3800117389348,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1903,'2019-05-29T19:36:29.451Z',NULL,141,4,126.20312547576883,7.89,136.4758158596753,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1904,'2018-09-25T17:06:34.237Z',NULL,145,5,61.1983004605443,3.82,61.57056467527242,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1905,'2020-03-02T07:39:51.974Z',NULL,115,1,77.91196471862148,4.87,78.48637874318972,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1906,'2019-08-26T12:27:51.086Z',NULL,80,9,54.91325681036414,3.43,56.28192774359362,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1907,'2018-03-19T08:01:59.578Z',NULL,159,1,35.53017445377361,2.22,36.22385066846856,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1908,'2018-10-08T00:42:48.970Z',NULL,67,6,41.24480890795779,2.58,42.33448322824063,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1909,'2017-12-29T00:06:49.404Z',NULL,141,1,84.13541698384589,5.26,93.05173018448203,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1910,'2019-11-02T17:14:45.232Z',NULL,139,2,76.77768319177018,4.8,86.2449565211296,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1911,'2019-11-10T15:04:26.646Z',NULL,108,3,50.094887884945365,3.13,51.824758659082455,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1912,'2019-06-03T15:24:17.024Z',NULL,132,8,127.88197029833711,7.99,137.96578583803202,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1913,'2017-10-10T08:27:21.445Z',NULL,74,5,34.08536151591033,2.13,33.917927194703374,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1914,'2020-01-27T01:15:41.614Z',NULL,107,2,50.094887884945365,3.13,58.66242202030999,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1915,'2018-06-07T22:45:16.021Z',NULL,167,6,97.70449564120193,6.11,111.20166379064135,269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1916,'2019-10-17T13:31:13.892Z',NULL,158,4,139.8942352373801,5.6,161.80990647232838,270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1917,'2017-08-20T14:36:44.508Z',NULL,79,5,27.74461152277315,1.11,27.561217707629183,270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1918,'2017-04-14T09:47:53.073Z',NULL,156,2,20.41053609936413,0.82,21.205068057528603,270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1919,'2017-08-11T05:08:04.143Z',NULL,12,7,77.34285054412217,3.09,80.00251617677081,270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1920,'2019-10-09T14:56:40.756Z',NULL,48,7,123.20884248534108,4.93,132.17973505596066,270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1921,'2017-05-30T14:20:52.487Z',NULL,144,5,40.7988669736962,1.63,43.62125775977298,270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1922,'2019-04-28T03:04:47.207Z',7.796508154757497,171,4,105.07665741496471,4.94,108.82370627143057,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1923,'2018-02-06T09:33:20.740Z',NULL,23,2,116.86672609493307,5.49,132.60531749172497,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1924,'2020-01-25T20:36:42.609Z',NULL,107,2,50.094887884945365,2.35,49.72732800942086,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1925,'2018-11-28T03:50:19.170Z',NULL,4,3,110.98767151282252,5.22,124.54329933314874,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1926,'2018-06-01T19:39:08.915Z',NULL,191,7,128.5841852057933,6.04,128.00974286522356,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1927,'2018-03-15T15:26:06.755Z',NULL,60,1,29.80214751859149,1.4,33.00356209738762,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1928,'2019-09-01T15:08:38.899Z',NULL,139,4,76.77768319177018,3.61,85.00182833630909,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1929,'2019-04-02T02:20:59.410Z',NULL,118,2,57.627613096978735,2.71,60.0055107798664,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1930,'2018-04-06T15:27:19.029Z',6.986060131147074,13,2,112.62925391105566,5.29,113.92042098351521,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1931,'2018-08-18T08:20:29.065Z',6.986060131147074,41,6,63.50890855689462,2.98,68.27054904824001,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1932,'2017-12-08T17:20:03.006Z',NULL,52,2,69.1172482676769,3.25,74.19612370629724,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1933,'2018-02-21T00:34:51.031Z',NULL,167,1,97.70449564120193,4.59,94.57541633908309,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1934,'2019-01-04T18:37:11.129Z',NULL,30,2,64.17448218067184,3.02,63.27042024931278,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1935,'2020-02-02T15:47:14.239Z',NULL,147,1,66.64727121216615,3.13,73.14823260291126,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1936,'2018-11-30T12:14:28.498Z',NULL,66,3,136.16126271106958,6.4,150.12385403394848,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1937,'2018-01-28T06:56:22.547Z',NULL,196,2,70.14610686710009,3.3,69.24263217487717,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1938,'2019-09-29T21:37:00.628Z',NULL,123,4,110.93145648834248,5.21,106.20827288604413,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1939,'2017-06-23T14:37:47.614Z',NULL,13,5,75.0861692740371,3.53,77.84596338465536,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1940,'2019-12-25T09:22:35.269Z',NULL,72,2,142.20381898788685,6.68,164.03775878059807,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1941,'2018-06-26T21:11:39.758Z',NULL,80,6,54.91325681036414,2.58,58.99053366524348,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1942,'2019-09-23T23:13:40.821Z',NULL,93,5,49.81864156655383,2.34,57.23969419443079,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1943,'2018-01-11T04:30:32.121Z',7.870702288416376,158,1,139.8942352373801,6.58,135.9321260522404,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1944,'2017-09-25T11:46:18.087Z',NULL,15,5,25.09876359271891,1.18,28.69540703616968,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1945,'2018-08-06T07:05:22.237Z',NULL,200,7,73.20395711799151,3.44,70.74619863554531,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1946,'2019-03-21T01:50:45.175Z',NULL,27,1,127.52471180754115,5.99,147.20871810798985,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1947,'2017-08-04T03:02:28.332Z',NULL,134,5,28.328223666657742,1.33,32.81693381813655,271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1948,'2019-07-13T16:22:06.843Z',NULL,6,5,97.43621265344382,6.33,94.08889888271725,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1949,'2019-04-06T07:50:03.572Z',NULL,146,3,126.04727121216614,8.19,137.9379089948488,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1950,'2020-02-17T01:09:00.082Z',NULL,58,1,78.14578007078882,5.08,82.05768107609478,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1951,'2020-02-05T19:21:32.580Z',NULL,64,2,143.4221774571866,9.32,168.65404343052248,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1952,'2019-10-29T01:50:15.855Z',NULL,128,6,75.08016314504417,4.88,80.3849450454418,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1953,'2018-10-18T00:35:15.716Z',NULL,29,6,123.57448218067185,8.03,120.1148776606254,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1954,'2018-12-20T16:04:16.476Z',3.3707022884163758,157,2,139.8942352373801,9.09,144.11168302763824,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1955,'2018-02-04T00:02:14.227Z',NULL,180,2,68.32408657333919,4.44,66.46047352034174,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1956,'2018-12-30T05:36:04.204Z',NULL,160,2,47.59120561297272,3.09,53.47249830044366,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1957,'2020-01-13T23:46:08.704Z',2.959301083198747,60,2,29.80214751859149,1.94,35.277073959893634,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1958,'2018-12-03T02:26:22.557Z',NULL,40,2,99.66240044231697,6.48,96.54737905936574,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1959,'2020-01-21T16:59:44.354Z',7.4593010831987465,39,2,114.58158180283459,7.45,117.77279857401363,272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1960,'2016-08-06T15:34:24.541Z',NULL,45,6,78.6996782532274,3.93,80.94264053346556,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1961,'2017-11-17T08:25:41.503Z',NULL,95,2,33.212427711035886,1.66,32.567979708780605,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1962,'2019-03-14T18:46:12.422Z',NULL,82,1,60.89545738030947,3.04,69.78803010499583,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1963,'2020-04-03T01:44:42.401Z',NULL,101,2,139.82488066180403,6.99,158.56138349093757,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1964,'2019-04-14T04:44:04.631Z',NULL,86,3,92.31436670850246,4.62,105.16261268190937,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1965,'2017-02-13T11:19:54.316Z',NULL,176,2,38.616539622351056,1.93,42.0029330657234,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1966,'2017-12-19T07:19:23.431Z',NULL,175,2,78.21653962235106,3.91,75.96276784306913,274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1967,'2019-05-27T11:58:12.314Z',NULL,139,5,76.77768319177018,3.84,86.86698243458525,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1968,'2017-08-12T08:36:29.766Z',NULL,75,8,83.87517582301558,4.19,84.56115970040469,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1969,'2018-01-22T14:38:49.449Z',NULL,49,2,131.42865839323724,6.57,152.67155981359812,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1970,'2019-11-24T20:58:27.460Z',NULL,111,3,55.526746186906664,2.78,61.63259643813121,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1971,'2017-02-16T14:47:57.698Z',NULL,189,2,62.18492169821006,3.11,63.34556696586197,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1972,'2020-04-16T12:47:08.022Z',2.224690080618503,8,3,98.83823503993958,4.94,103.377658745173,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1973,'2018-04-21T09:01:14.446Z',NULL,56,3,36.37128575934436,1.82,38.38433178247596,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1974,'2018-02-15T22:04:38.789Z',NULL,81,1,43.9329842322118,2.2,48.90274230509261,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1975,'2019-07-27T21:19:54.791Z',NULL,62,3,133.5202262591817,6.68,153.60854597383369,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1976,'2020-02-02T18:31:05.138Z',NULL,62,1,133.5202262591817,6.68,127.14604692970028,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1977,'2016-10-24T21:14:37.203Z',NULL,189,3,62.18492169821006,3.11,69.24745474784221,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1978,'2016-09-09T20:30:18.806Z',NULL,138,4,75.96718984479077,3.8,83.84378819892645,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1979,'2018-10-15T21:24:18.743Z',NULL,161,5,47.59120561297272,2.38,47.84627146101244,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1980,'2018-09-09T01:50:40.850Z',NULL,89,4,63.719612755399886,3.19,60.69287587624441,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1981,'2019-06-13T21:28:50.544Z',NULL,121,7,40.44528328808107,2.02,38.700115131842,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1982,'2017-06-02T16:00:08.878Z',NULL,94,7,72.81242771103588,3.64,83.19681197150582,275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1983,'2018-12-17T13:03:44.078Z',NULL,33,2,47.7448636959614,3.1,54.47044046951855,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1984,'2017-02-17T08:42:12.002Z',NULL,193,1,33.587182645381546,2.18,39.584100592536814,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1985,'2018-07-25T22:34:38.886Z',2.2192469637856647,125,3,80.39699207990944,5.23,79.0338066660269,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1986,'2018-01-04T00:58:37.873Z',NULL,175,1,117.3248094335266,7.63,128.30332576067252,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1987,'2018-10-02T17:07:20.810Z',NULL,57,3,122.4223933583994,7.96,126.43734283080948,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1988,'2019-08-29T18:12:24.278Z',NULL,27,4,127.52471180754115,8.29,128.49258711681614,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1989,'2020-03-09T05:44:58.760Z',NULL,67,1,41.24480890795779,2.68,44.55270175309578,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1990,'2019-06-12T04:43:44.013Z',NULL,189,7,93.27738254731509,6.06,96.69468604308089,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1991,'2018-11-13T16:26:42.933Z',NULL,16,3,66.11029954877317,4.3,70.83894479396162,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1992,'2018-05-08T16:27:46.180Z',NULL,175,4,117.3248094335266,7.63,116.08236982358015,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1993,'2017-11-12T13:17:19.786Z',NULL,37,3,53.40516136013846,3.47,63.1598041240714,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1994,'2018-06-10T10:57:53.151Z',NULL,149,4,69.15415037577924,4.5,77.50802619438183,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1995,'2016-12-12T11:47:31.771Z',NULL,194,1,33.587182645381546,2.18,34.587099719555304,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1996,'2018-12-11T15:31:04.351Z',NULL,46,2,118.0495173798411,7.67,134.21606749784468,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1997,'2018-01-19T03:01:31.606Z',NULL,94,3,109.21864156655383,7.1,127.50768740115417,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1998,'2019-02-02T14:56:06.873Z',NULL,35,2,71.53687730741436,4.65,80.8996035246134,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (1999,'2018-12-13T04:23:29.970Z',8.574939414133524,75,2,125.81276373452337,8.18,139.170694401124,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2000,'2016-08-17T15:38:02.429Z',NULL,109,9,79.36660712128732,5.16,85.64800319506537,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2001,'2018-10-30T10:45:30.628Z',NULL,154,6,81.87529553312261,5.32,79.13193192682917,276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2002,'2019-02-17T07:37:28.492Z',NULL,80,2,54.91325681036414,3.29,64.67422185731454,277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2003,'2019-12-05T06:18:19.900Z',NULL,9,3,87.46968147789205,5.25,90.48056212218187,277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2004,'2017-07-03T06:59:56.564Z',NULL,17,5,53.290720311951766,3.2,53.73020671341641,277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2005,'2017-10-31T08:54:53.953Z',NULL,126,6,83.49598746872304,5.01,95.35549896966965,277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2006,'2019-02-08T15:47:10.366Z',NULL,156,2,30.615804149046195,1.84,29.377053724534754,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2007,'2017-11-16T13:15:03.901Z',NULL,176,3,38.616539622351056,2.32,38.60668059215421,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2008,'2017-01-17T20:34:46.656Z',4.0749394141335245,66,3,90.77417514071306,5.45,100.54925234102758,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2009,'2019-03-18T01:20:30.485Z',NULL,40,1,99.66240044231697,5.98,104.74891170610938,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2010,'2018-01-25T04:31:01.698Z',NULL,100,2,67.83486485383094,4.07,69.56134450528398,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2011,'2018-08-14T23:55:54.927Z',NULL,189,5,93.27738254731509,5.6,105.0720514741837,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2012,'2018-05-18T10:20:14.068Z',NULL,25,2,68.62263967182464,4.12,77.01602003169256,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2013,'2019-04-20T17:55:34.919Z',NULL,62,2,133.5202262591817,8.01,152.24169770827652,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2014,'2017-11-13T21:48:27.204Z',NULL,18,2,54.60204747398195,3.28,56.84335459382097,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2015,'2018-12-31T15:56:16.500Z',NULL,173,2,122.3651993029456,7.34,137.51010582702764,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2016,'2019-05-20T17:52:53.125Z',NULL,9,4,87.46968147789205,5.25,89.93532796044506,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2017,'2017-12-06T06:35:29.257Z',NULL,21,1,40.38334406304544,2.42,47.30773087257784,278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2018,'2018-01-15T02:20:22.269Z',NULL,181,1,143.88940370476112,8.63,152.4033513114224,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2019,'2019-06-08T15:19:21.943Z',NULL,75,5,125.81276373452337,7.55,140.04227439407492,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2020,'2019-01-01T13:56:14.350Z',NULL,131,2,113.11722203337729,6.79,127.47178679973486,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2021,'2017-02-06T12:01:09.950Z',NULL,16,2,44.07353303251545,2.64,48.3895719919321,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2022,'2018-09-20T09:36:08.116Z',NULL,132,4,127.88197029833711,7.67,136.31838012956243,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2023,'2017-10-23T21:36:20.154Z',NULL,177,3,85.87953212963993,5.15,98.75996266007685,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2024,'2018-06-03T22:40:09.721Z',NULL,81,5,43.9329842322118,2.64,50.41219355777421,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2025,'2020-02-03T04:14:34.180Z',NULL,145,1,61.1983004605443,3.67,71.89257684539176,279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2026,'2017-04-29T19:12:10.122Z',NULL,125,2,53.59799471993963,1.55,60.7153476690495,280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2027,'2020-03-30T23:24:48.813Z',2.4411178448445012,175,1,117.3248094335266,7.04,113.02771010248672,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2028,'2019-01-01T03:36:16.231Z',NULL,88,2,105.41292031622555,6.32,121.14742519104631,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2029,'2018-04-26T15:33:38.459Z',NULL,36,2,130.93687730741433,7.86,135.9174209342302,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2030,'2019-09-24T15:55:26.386Z',NULL,17,3,79.93608046792765,4.8,94.47606217558955,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2031,'2020-01-14T01:33:25.304Z',NULL,154,2,81.87529553312261,4.91,93.84005682063824,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2032,'2019-04-12T03:40:45.077Z',NULL,96,3,104.82144858590365,6.29,121.04918042656924,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2033,'2019-12-08T17:22:16.754Z',NULL,195,2,109.78077396807234,6.59,111.95938201850592,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2034,'2020-01-27T05:57:03.745Z',NULL,62,2,133.5202262591817,8.01,141.52261592916017,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2035,'2018-12-28T08:51:42.288Z',2.4411178448445012,140,2,66.80312547576881,4.01,78.28772398428687,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2036,'2018-11-22T09:23:43.772Z',NULL,53,2,44.27587240151534,2.66,46.34937590033012,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2037,'2017-08-29T19:31:42.087Z',6.941117844844501,77,4,67.34461152277315,4.04,75.4387008962863,282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2038,'2018-04-20T10:15:55.565Z',4.444060077749059,109,2,119.04991068193098,5.95,124.6797008611184,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2039,'2017-01-10T04:51:14.774Z',NULL,68,2,76.82895921539838,3.84,83.27655524723197,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2040,'2018-10-02T07:35:36.067Z',4.2795733364326525,52,5,103.67587240151535,5.18,100.62823486701275,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2041,'2018-07-20T23:42:10.589Z',NULL,8,4,98.83823503993958,4.94,102.14187113652997,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2042,'2020-01-13T12:51:18.349Z',NULL,149,2,69.15415037577924,3.46,67.38499096114397,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2043,'2019-11-29T08:20:28.650Z',NULL,5,2,124.1176465275534,6.21,119.00599874202405,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2044,'2018-08-12T11:06:38.446Z',NULL,50,6,53.64019616819762,2.68,53.815897213316084,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2045,'2019-11-28T09:35:03.640Z',NULL,184,2,116.09741230191975,5.8,128.5038953349828,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2046,'2019-01-21T07:21:00.914Z',NULL,141,2,126.20312547576883,6.31,138.0337700437195,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2047,'2016-12-21T19:59:14.791Z',NULL,99,2,45.22324323588729,2.26,50.33799280485725,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2048,'2017-07-20T14:26:02.182Z',NULL,162,4,22.378598800110105,1.12,23.150856223366073,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2049,'2018-05-01T18:36:50.375Z',NULL,74,4,51.12804227386549,2.56,52.00135490261609,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2050,'2019-05-04T20:25:58.529Z',NULL,183,4,56.697412301919755,2.83,56.57693784998972,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2051,'2019-03-16T08:35:20.141Z',NULL,194,1,50.38077396807232,2.52,52.191011307996504,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2052,'2019-11-14T18:13:08.077Z',NULL,85,2,54.90104734428525,2.75,58.87322956415138,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2053,'2017-09-28T07:02:19.513Z',NULL,136,5,70.13601544771562,3.51,74.33744013320253,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2054,'2019-07-30T16:20:06.123Z',NULL,50,5,53.64019616819762,2.68,59.067475905153835,285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2055,'2018-12-09T09:07:36.069Z',7.488925240608706,109,2,119.04991068193098,5.95,133.6399901923011,286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2056,'2017-10-10T02:37:40.220Z',NULL,100,5,45.22324323588729,2.26,46.87753698330384,286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2057,'2018-09-26T06:13:45.278Z',NULL,42,3,38.00410713690931,1.9,37.601423724878224,286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2058,'2018-04-28T13:37:50.892Z',NULL,59,3,89.20214751859149,4.46,92.4239002247157,286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2059,'2017-07-20T21:15:35.567Z',2.988925240608706,120,46,55.668009001928525,2.78,56.34415961882793,286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2060,'2019-08-10T21:02:21.193Z',7.488925240608706,171,7,105.07665741496471,6.57,107.1136921313909,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2061,'2018-05-16T01:58:27.676Z',NULL,185,4,39.57700083851661,2.47,41.07496667727836,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2062,'2019-06-22T11:23:54.631Z',NULL,176,4,57.92480943352658,3.62,58.77017316270245,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2063,'2018-10-09T05:21:08.114Z',NULL,149,4,69.15415037577924,4.32,73.46969289127615,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2064,'2019-07-27T16:39:43.452Z',NULL,59,3,89.20214751859149,5.58,99.65226744998091,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2065,'2019-06-29T01:13:06.073Z',NULL,168,6,118.93172693453273,7.43,122.82078963457343,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2066,'2017-01-11T00:23:35.570Z',NULL,148,2,92.65447881697106,5.79,101.7439784379291,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2067,'2017-06-17T09:24:21.841Z',NULL,179,5,45.549391048892794,2.85,54.09709398427129,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2068,'2017-07-10T15:38:30.018Z',NULL,113,5,73.65150250790677,4.6,73.15002651097339,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2069,'2018-02-01T23:48:14.438Z',NULL,57,1,122.4223933583994,7.65,136.98198713492377,287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2070,'2018-03-25T01:21:24.157Z',NULL,6,1,97.43621265344382,6.09,96.50908674421743,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2071,'2020-01-05T18:42:36.511Z',NULL,161,1,47.59120561297272,2.97,49.918171203844516,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2072,'2018-07-05T23:39:08.401Z',NULL,172,2,122.3651993029456,7.65,141.27707198154454,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2073,'2019-04-29T12:33:07.608Z',NULL,57,2,122.4223933583994,7.65,122.19220610709716,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2074,'2019-07-05T05:40:21.354Z',NULL,56,5,36.37128575934436,2.27,35.506585739154886,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2075,'2018-03-23T02:27:49.233Z',NULL,102,1,47.04215255778118,2.94,52.87260421325931,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2076,'2017-03-18T05:25:41.613Z',NULL,38,0,44.04624855892918,2.75,43.795528109109654,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2077,'2019-06-18T11:50:10.458Z',NULL,8,5,98.83823503993958,6.18,115.18256091947987,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2078,'2019-09-06T20:14:20.359Z',NULL,29,5,123.57448218067185,7.72,142.7863370061141,289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2079,'2020-01-13T06:11:38.679Z',NULL,172,2,122.3651993029456,8.57,127.01452394967218,290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2080,'2019-11-03T08:38:43.564Z',1.4063938728209857,47,3,84.0766209826718,5.89,99.80755133198981,290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2081,'2019-08-12T11:47:31.266Z',NULL,24,8,112.30643674729413,7.86,128.57844980569908,290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2082,'2019-11-25T22:35:34.789Z',NULL,63,3,133.5202262591817,9.35,135.75815927746214,290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2083,'2018-08-14T13:11:06.149Z',NULL,113,6,110.47725376186015,6.63,114.54826216747652,293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2084,'2017-05-30T09:40:00.087Z',NULL,178,5,78.21975500247076,4.69,84.3163414956011,293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2085,'2019-08-16T11:22:42.726Z',NULL,191,6,128.5841852057933,7.72,129.357904624437,293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2086,'2017-01-23T04:29:52.238Z',NULL,68,2,76.82895921539838,4.61,84.7256606554231,293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2087,'2019-10-03T15:05:23.814Z',NULL,115,5,77.91196471862148,4.67,74.34704534055273,293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2088,'2019-02-26T08:31:37.399Z',NULL,43,1,76.35255205175756,4.58,85.11937023864287,293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2089,'2017-06-24T01:50:27.529Z',NULL,120,4,55.668009001928525,4.18,57.482120502366065,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2090,'2018-10-27T18:23:03.156Z',NULL,168,5,118.93172693453273,8.92,115.5866502483768,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2091,'2019-04-19T00:39:28.527Z',NULL,6,3,97.43621265344382,7.31,95.54860678552106,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2092,'2018-08-04T22:36:37.792Z',7.103223468777546,160,6,47.59120561297272,3.57,47.19778555398772,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2093,'2018-05-30T04:01:10.314Z',NULL,11,4,132.45679913492563,9.93,131.5985979185571,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2094,'2017-06-07T11:53:10.636Z',7.103223468777546,190,6,85.72279013719552,6.43,98.18501559448347,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2095,'2018-03-20T17:02:38.971Z',NULL,33,1,47.7448636959614,3.58,51.47412026298348,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2096,'2017-08-24T03:52:02.187Z',NULL,7,7,98.81933684368194,7.41,114.56123336118173,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2097,'2018-07-07T18:15:06.359Z',NULL,71,5,82.80381898788684,6.21,97.50318154637436,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2098,'2017-01-31T07:56:15.529Z',8.290110519759654,117,2,36.683234169385244,2.75,41.22747322237725,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2099,'2018-01-20T23:37:28.005Z',NULL,158,2,139.8942352373801,10.49,148.33518617722987,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2100,'2018-06-24T07:00:25.873Z',3.7901105197596543,79,6,41.616917284159726,3.12,46.330227517547804,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2101,'2018-06-20T08:39:37.984Z',NULL,10,6,47.6793282102869,3.58,53.66355835988598,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2102,'2018-11-02T02:26:56.690Z',NULL,100,3,67.83486485383094,5.09,72.42654203950701,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2103,'2017-12-11T19:41:56.173Z',NULL,40,2,66.44160029487797,4.98,64.64732399213881,295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2104,'2019-01-03T23:18:29.681Z',NULL,156,2,30.615804149046195,1.68,34.04972434344064,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2105,'2020-03-04T03:13:20.689Z',NULL,135,1,45.80402317157342,2.52,44.80112938014476,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2106,'2019-01-11T08:30:54.146Z',NULL,137,2,67.77247956807186,3.73,68.26483189674691,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2107,'2019-01-07T22:29:42.212Z',NULL,124,2,110.93145648834248,6.1,127.76473300862143,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2108,'2017-03-08T17:24:46.765Z',NULL,45,1,78.6996782532274,4.33,90.7521787552683,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2109,'2017-05-09T11:53:42.482Z',NULL,32,4,71.42990913064094,3.93,84.1055226537925,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2110,'2018-01-24T13:18:03.806Z',NULL,155,3,43.77574310182776,2.41,50.52624358950455,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2111,'2016-12-30T20:33:35.184Z',NULL,52,2,69.1172482676769,3.8,70.95732256507097,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2112,'2020-02-11T03:16:59.414Z',NULL,119,1,43.43814329652384,2.39,44.381592815151244,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2113,'2017-12-18T04:18:22.879Z',NULL,145,2,40.7988669736962,2.24,42.08174680553706,296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2114,'2018-09-26T18:04:49.920Z',NULL,65,5,68.22769726470014,4.26,79.79428818106813,297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2115,'2019-01-16T13:53:57.914Z',NULL,93,3,49.81864156655383,3.11,58.6058250491721,297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2116,'2019-05-24T16:57:55.299Z',NULL,128,5,75.08016314504417,4.69,75.66462132009575,297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2117,'2019-03-10T09:58:32.435Z',NULL,95,1,49.81864156655383,3.11,57.764340999246116,297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2118,'2018-05-12T09:43:58.079Z',NULL,149,6,69.15415037577924,4.32,74.18328672831971,297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2119,'2017-01-09T17:42:04.421Z',NULL,51,3,50.433725012700116,2.02,52.32490945813386,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2120,'2019-05-30T21:13:54.870Z',NULL,88,6,105.41292031622555,4.22,117.4271479208049,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2121,'2020-03-06T10:07:26.081Z',NULL,115,1,77.91196471862148,3.12,90.09085465590569,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2122,'2017-07-21T23:16:15.752Z',NULL,174,7,74.40953929454055,2.98,77.74574800552483,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2123,'2017-05-12T08:43:53.239Z',NULL,156,4,20.41053609936413,0.82,23.14302593952077,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2124,'2018-06-26T16:07:31.900Z',NULL,57,5,122.4223933583994,4.9,135.4503201912728,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2125,'2017-04-07T04:12:22.538Z',NULL,23,2,77.91115072995538,3.12,89.95715232097933,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2126,'2018-08-22T06:09:56.229Z',NULL,60,7,29.80214751859149,1.19,34.441063762118056,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2127,'2018-01-01T02:37:58.590Z',8.266323236325547,138,2,113.95078476718615,4.56,121.41399891713561,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2128,'2018-07-05T02:41:52.841Z',NULL,100,4,67.83486485383094,2.71,67.09989282578304,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2129,'2017-03-12T07:44:34.057Z',3.766323236325548,171,1,70.05110494330981,2.8,73.5923641362545,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2130,'2017-09-10T04:06:22.829Z',NULL,163,6,22.378598800110105,0.9,25.442691658433215,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2131,'2020-03-08T07:39:23.669Z',NULL,87,1,117.25536340498041,4.69,135.6371859719158,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2132,'2019-10-14T07:07:03.500Z',NULL,94,4,109.21864156655383,4.37,121.86484929308553,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2133,'2018-02-09T08:55:11.990Z',NULL,57,2,122.4223933583994,4.9,118.94531104559884,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2134,'2018-05-27T02:27:26.928Z',NULL,105,4,52.723521442619514,2.11,59.06048508253532,300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2135,'2019-08-22T20:10:08.448Z',NULL,113,7,110.47725376186015,6.63,106.89388178358497,301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2136,'2019-09-18T03:14:42.994Z',NULL,172,5,122.3651993029456,7.34,118.37466839121937,301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2137,'2017-01-22T13:27:44.773Z',8.266323236325547,156,2,20.41053609936413,1.22,19.915749027760672,301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2138,'2016-12-04T05:00:22.203Z',NULL,68,1,76.82895921539838,4.61,84.57613792108273,301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2139,'2017-08-21T18:05:23.315Z',NULL,79,7,27.74461152277315,1.94,27.574239640255783,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2140,'2020-01-20T15:36:35.851Z',NULL,100,2,67.83486485383094,4.75,67.55441326540753,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2141,'2018-09-17T14:48:38.456Z',NULL,195,4,109.78077396807234,7.68,112.56854823768967,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2142,'2020-01-29T20:31:21.249Z',NULL,178,1,117.32963250370614,8.21,139.25088087786614,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2143,'2019-11-21T05:27:00.798Z',NULL,155,2,43.77574310182776,3.06,51.038606950665304,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2144,'2017-02-19T04:05:20.331Z',NULL,110,1,37.01783079127111,2.59,37.34134469080684,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2145,'2019-12-18T04:24:26.969Z',NULL,38,1,66.06937283839378,4.62,69.64092935922247,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2146,'2018-12-19T03:49:34.996Z',NULL,199,1,115.4300138092855,8.08,115.95180355707538,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2147,'2018-08-01T01:31:36.031Z',NULL,50,5,53.64019616819762,3.75,62.91553431199607,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2148,'2019-02-09T20:52:29.862Z',NULL,22,2,32.136779940663494,2.25,38.21142668993534,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2149,'2019-12-23T08:42:51.744Z',NULL,179,2,68.32408657333919,4.78,78.97175080860227,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2150,'2018-08-31T07:53:16.186Z',NULL,126,7,125.24398120308456,8.77,150.20881173436948,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2151,'2018-04-15T21:39:19.447Z',NULL,109,3,119.04991068193098,8.33,117.27338088648918,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2152,'2020-03-25T01:01:37.855Z',NULL,120,1,83.5020135028928,5.85,86.14328446640314,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2153,'2019-08-29T04:30:40.517Z',NULL,66,9,136.16126271106958,9.53,163.30498589379803,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2154,'2019-08-02T05:27:10.063Z',NULL,69,6,73.38772304360626,5.14,72.2744647726832,303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2155,'2017-12-09T15:06:20.390Z',NULL,137,1,45.18165304538124,2.26,50.56133443128352,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2156,'2019-11-07T19:26:09.005Z',NULL,127,19,134.48016314504417,6.72,144.7077929314929,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2157,'2018-11-13T04:53:37.676Z',NULL,36,2,130.93687730741433,6.55,141.8911824128454,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2158,'2020-03-10T08:04:24.808Z',5.1295630603049585,43,1,76.35255205175756,3.82,76.92779285596022,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2159,'2019-02-04T06:36:47.280Z',NULL,127,1,134.48016314504417,6.72,134.1192620291781,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2160,'2020-01-23T03:40:25.639Z',NULL,65,1,68.22769726470014,3.41,67.1859875151947,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2161,'2018-06-29T21:33:15.573Z',NULL,153,2,66.79892314178237,3.34,71.52578196400371,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2162,'2016-12-25T01:58:49.127Z',NULL,27,1,85.01647453836077,4.25,80.18650392472281,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2163,'2019-01-07T19:19:09.747Z',NULL,16,2,66.11029954877317,3.31,69.12838010084388,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2164,'2016-10-08T04:53:33.728Z',5.1295630603049585,43,5,50.90170136783837,2.55,58.126655675076236,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2165,'2019-07-21T19:12:44.666Z',NULL,139,3,76.77768319177018,3.84,88.32257247423298,304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2166,'2019-09-01T19:20:11.195Z',NULL,53,2,44.27587240151534,1.77,44.181336107761744,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2167,'2019-05-25T10:33:31.729Z',NULL,130,3,75.02573869315137,3,75.56278426681507,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2168,'2018-02-10T07:18:08.109Z',NULL,105,2,52.723521442619514,2.11,55.82621040577939,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2169,'2018-07-13T17:24:02.864Z',NULL,17,5,79.93608046792765,3.2,85.33072938315463,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2170,'2018-05-18T19:44:07.388Z',NULL,178,4,117.32963250370614,4.69,115.2064990610825,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2171,'2018-09-03T09:35:42.625Z',NULL,5,3,124.1176465275534,4.96,141.7300078243415,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2172,'2019-12-11T23:31:03.183Z',NULL,134,2,42.49233549998661,1.7,39.74338050973812,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2173,'2019-08-25T05:11:01.953Z',NULL,155,8,43.77574310182776,1.75,45.11769930032296,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2174,'2019-06-06T05:22:02.510Z',NULL,181,5,143.88940370476112,5.76,148.65013286762826,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2175,'2020-02-02T16:21:12.399Z',NULL,110,1,55.526746186906664,2.22,56.494886345604584,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2176,'2020-03-02T10:45:03.106Z',NULL,29,1,123.57448218067185,4.94,140.2852132006272,305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2177,'2019-05-30T15:35:33.034Z',NULL,168,3,118.93172693453273,4.76,127.02300228518008,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2178,'2017-12-17T21:19:12.436Z',NULL,96,1,69.88096572393577,2.8,67.62922734861479,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2179,'2019-01-07T11:16:08.206Z',NULL,149,2,69.15415037577924,2.77,74.05577042723601,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2180,'2018-08-06T22:36:35.245Z',NULL,58,6,78.14578007078882,3.13,75.16006756795593,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2181,'2019-05-21T17:36:23.753Z',NULL,154,3,81.87529553312261,3.28,84.73847310177126,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2182,'2018-02-13T13:54:27.716Z',NULL,46,1,118.0495173798411,4.72,132.60116785142918,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2183,'2019-12-04T20:53:21.135Z',NULL,145,2,61.1983004605443,2.45,63.18205122584132,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2184,'2019-01-29T17:13:39.783Z',NULL,73,2,71.6287722595695,2.87,70.01249367894593,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2185,'2019-12-23T06:57:16.341Z',NULL,171,2,105.07665741496471,4.2,106.22689422176775,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2186,'2018-08-04T14:53:39.492Z',NULL,103,6,47.04215255778118,1.88,45.63772438849648,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2187,'2018-08-13T07:13:35.778Z',NULL,45,7,118.0495173798411,4.72,128.41287602371963,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2188,'2019-10-04T20:03:55.665Z',NULL,26,8,68.12471180754113,2.72,79.33093297339053,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2189,'2018-12-04T17:20:17.057Z',NULL,6,3,97.43621265344382,3.9,114.24298785169914,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2190,'2019-11-21T05:39:11.851Z',NULL,76,3,63.82421061366486,2.55,61.23869493332558,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2191,'2018-10-20T20:25:37.788Z',NULL,76,4,63.82421061366486,2.55,61.0718681588448,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2192,'2020-01-03T04:37:25.857Z',NULL,41,2,63.50890855689462,2.54,62.89621907165194,306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2193,'2018-11-11T10:26:44.476Z',NULL,132,4,127.88197029833711,5.5,130.96772794888165,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2194,'2018-11-09T12:15:33.523Z',8.59607849404989,101,3,139.82488066180403,6.01,136.33390085465365,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2195,'2019-04-27T18:39:43.720Z',NULL,164,3,92.96789820016517,4,108.80824108477435,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2196,'2018-04-03T14:12:23.501Z',NULL,27,4,127.52471180754115,5.48,139.82356929234092,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2197,'2018-04-11T21:24:24.629Z',NULL,100,4,67.83486485383094,2.92,68.45458734155106,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2198,'2017-05-04T22:44:26.137Z',NULL,97,4,74.94550296436165,3.22,87.03870394021106,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2199,'2019-06-08T00:38:38.081Z',6.7690487809478155,106,5,52.723521442619514,2.27,51.61912899953403,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2200,'2017-03-29T22:49:13.727Z',NULL,10,1,31.78621880685793,1.37,34.24911515027712,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2201,'2020-03-27T16:55:12.077Z',NULL,94,1,109.21864156655383,4.7,123.95248117587825,307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2202,'2018-04-22T14:53:03.227Z',NULL,101,4,139.82488066180403,5.59,142.06964847363855,309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2203,'2019-08-05T18:34:32.828Z',NULL,49,6,131.42865839323724,5.26,137.6733076016573,309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2204,'2019-05-24T10:48:58.468Z',NULL,68,3,115.24343882309758,4.61,129.12044024375115,309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2205,'2019-11-18T02:35:51.256Z',NULL,198,2,70.14610686710009,2.81,67.19335542342397,309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2206,'2018-01-04T05:44:35.186Z',NULL,70,2,57.493003808959784,2.73,53.99533410583913,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2207,'2018-02-15T01:47:00.531Z',NULL,119,2,43.43814329652384,2.06,43.41741845465376,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2208,'2019-10-22T21:02:45.140Z',NULL,11,7,132.45679913492563,6.29,135.5501637942927,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2209,'2019-11-27T11:53:43.107Z',7.256356421829444,119,3,43.43814329652384,2.06,43.958868143746095,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2210,'2019-12-04T00:03:09.816Z',NULL,193,1,50.38077396807232,2.39,58.042841176705686,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2211,'2016-11-16T01:50:52.674Z',NULL,199,3,76.95334253952366,3.66,82.46832533438793,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2212,'2018-02-09T03:01:15.284Z',NULL,25,2,68.62263967182464,3.26,65.0232766450763,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2213,'2019-03-02T21:12:29.395Z',2.7563564218294436,53,1,44.27587240151534,2.1,51.818125039057534,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2214,'2019-01-07T20:00:49.949Z',NULL,151,2,91.61302306843446,4.35,92.50734707611275,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2215,'2019-06-17T23:29:40.886Z',NULL,69,4,73.38772304360626,3.49,81.62690886212842,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2216,'2016-05-21T01:25:54.423Z',NULL,125,3,53.59799471993963,2.55,57.757084978849306,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2217,'2017-09-24T06:30:47.444Z',NULL,70,5,38.32866920597319,1.82,41.111635440693505,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2218,'2019-01-25T17:46:22.263Z',3.921462908326541,7,3,148.22900526552291,7.04,146.59992152925838,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2219,'2018-12-15T11:14:34.853Z',NULL,61,3,23.537915510955656,1.12,27.287580974339477,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2220,'2019-06-23T03:45:19.272Z',NULL,15,8,37.648145389078365,1.79,40.04250956289287,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2221,'2017-03-21T08:51:42.419Z',NULL,183,1,37.7982748679465,1.8,37.02160016410724,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2222,'2019-01-04T10:50:03.564Z',NULL,28,2,68.12471180754113,3.24,63.96669848700118,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2223,'2019-09-10T09:18:37.841Z',NULL,185,5,39.57700083851661,1.88,42.00368382793569,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2224,'2017-08-12T00:44:20.800Z',NULL,127,5,89.65344209669612,4.26,104.76676970455576,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2225,'2020-02-09T09:27:51.657Z',3.921462908326541,179,1,68.32408657333919,3.25,78.41496427631421,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2226,'2017-10-12T23:07:09.975Z',8.421462908326541,24,4,74.87095783152942,3.56,83.14349182725282,310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2227,'2018-04-26T08:45:46.313Z',NULL,113,3,110.47725376186015,6.63,122.07378258977188,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2228,'2020-02-22T23:01:51.373Z',NULL,137,2,67.77247956807186,4.07,74.99294078192497,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2229,'2018-03-04T12:08:05.913Z',NULL,183,1,56.697412301919755,3.4,66.59089026097556,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2230,'2018-02-06T08:39:08.844Z',NULL,3,2,53.08311732230858,3.18,58.871899268788404,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2231,'2019-10-07T11:45:50.367Z',NULL,86,6,92.31436670850246,5.54,95.91573461494308,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2232,'2019-04-07T19:25:30.197Z',NULL,63,3,133.5202262591817,8.01,151.98126409034245,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2233,'2019-09-19T20:16:32.473Z',NULL,139,5,76.77768319177018,4.61,83.89391909830891,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2234,'2017-07-15T07:56:14.826Z',NULL,112,5,27.55292434006023,1.65,27.95574923696405,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2235,'2017-12-26T21:16:26.036Z',NULL,184,3,77.3982748679465,4.64,75.81501615992305,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2236,'2018-12-11T11:52:31.659Z',NULL,56,2,36.37128575934436,2.18,37.8668873296634,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2237,'2019-08-23T09:15:59.448Z',NULL,77,7,101.01691728415972,6.06,101.75832475847223,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2238,'2020-04-18T21:57:09.873Z',NULL,107,3,50.094887884945365,3.01,59.73899332428517,311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2239,'2017-07-06T19:36:33.805Z',NULL,17,4,53.290720311951766,2.13,56.09866388019923,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2240,'2018-02-15T05:14:17.590Z',8.244505990787774,105,1,52.723521442619514,2.11,53.012604173661224,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2241,'2019-01-27T17:05:11.869Z',3.744505990787774,192,2,69.18418520579327,2.77,69.6857778546858,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2242,'2018-11-06T06:13:13.887Z',NULL,73,3,71.6287722595695,2.87,76.35258364535544,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2243,'2017-03-30T12:01:10.316Z',NULL,46,1,78.6996782532274,3.15,75.38560406115603,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2244,'2019-04-08T22:54:05.632Z',NULL,21,4,60.57501609456816,2.42,65.7598472420024,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2245,'2020-02-26T15:36:18.611Z',NULL,124,2,110.93145648834248,4.44,117.23639099522887,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2246,'2018-03-10T07:29:41.449Z',3.744505990787774,17,1,79.93608046792765,3.2,81.98761200921913,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2247,'2017-07-05T19:23:30.125Z',NULL,43,4,50.90170136783837,2.04,59.619622506683804,312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2248,'2020-04-11T01:32:30.467Z',NULL,161,3,47.59120561297272,0,52.83743124398743,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2249,'2017-07-13T19:58:02.952Z',NULL,193,5,33.587182645381546,0,33.38206643041745,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2250,'2019-04-22T23:22:07.559Z',NULL,2,2,105.11984419607644,0,114.88885872327872,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2251,'2020-02-27T10:25:02.218Z',NULL,67,2,41.24480890795779,0,36.80431766619386,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2252,'2019-08-18T04:19:24.664Z',NULL,200,9,73.20395711799151,0,72.56941122131937,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2253,'2019-11-22T01:43:49.172Z',NULL,27,3,127.52471180754115,0,126.52744915375075,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2254,'2018-02-06T12:00:14.852Z',NULL,142,1,70.34853057210945,0,64.82993915439401,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2255,'2019-09-02T19:37:21.276Z',NULL,39,4,114.58158180283459,0,109.46233247178004,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2256,'2017-11-24T23:02:50.809Z',NULL,10,2,31.78621880685793,0,31.367285561113658,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2257,'2020-04-07T20:29:25.448Z',NULL,72,2,142.20381898788685,0,127.2653920237964,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2258,'2019-07-26T16:49:55.983Z',NULL,11,5,132.45679913492563,0,133.87582826617586,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2259,'2019-04-30T17:26:38.664Z',NULL,11,3,132.45679913492563,0,126.4019879911707,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2260,'2019-10-18T12:47:59.707Z',NULL,49,4,131.42865839323724,0,134.52051095348992,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2261,'2019-08-11T23:07:21.891Z',NULL,166,7,38.30449564120193,0,35.5894887372479,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2262,'2018-12-25T07:05:34.334Z',NULL,132,2,127.88197029833711,0,118.05968508935251,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2263,'2018-04-03T01:13:13.450Z',NULL,57,2,122.4223933583994,0,128.6861996705015,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2264,'2020-03-12T23:51:04.349Z',NULL,37,1,80.10774204020768,0,87.62555451764618,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2265,'2018-01-10T12:55:40.845Z',NULL,56,2,36.37128575934436,0,38.33681078537338,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2266,'2019-02-11T00:23:02.444Z',NULL,25,2,68.62263967182464,0,75.83080581221195,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2267,'2017-09-11T06:12:21.732Z',NULL,80,3,36.60883787357609,0,38.56069160206603,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2268,'2020-04-05T10:08:53.694Z',NULL,27,2,127.52471180754115,0,142.8866046720485,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2269,'2017-03-18T00:08:26.140Z',NULL,192,1,46.122790137195516,0,42.41630784678281,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2270,'2017-08-30T11:17:51.453Z',NULL,189,5,62.18492169821006,0,67.45156057903249,313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2271,'2017-04-18T17:23:22.730Z',NULL,24,2,74.87095783152942,2.99,80.26413106823559,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2272,'2019-01-22T15:15:14.694Z',NULL,108,1,50.094887884945365,2,54.69326248927111,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2273,'2019-02-08T22:45:27.402Z',NULL,172,1,122.3651993029456,4.89,127.27681122039529,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2274,'2019-05-19T09:01:24.142Z',NULL,144,2,61.1983004605443,2.45,70.51509170028402,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2275,'2019-08-18T13:49:57.925Z',NULL,179,5,68.32408657333919,2.73,71.00297496548842,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2276,'2019-07-22T20:52:21.704Z',NULL,27,3,127.52471180754115,5.1,139.39836568687033,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2277,'2019-02-07T08:23:24.414Z',NULL,144,1,61.1983004605443,2.45,66.29852163783072,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2278,'2019-02-03T21:12:44.541Z',NULL,62,1,133.5202262591817,5.34,147.10439346742436,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2279,'2017-10-19T15:42:04.647Z',NULL,94,4,72.81242771103588,2.91,83.63855298808886,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2280,'2017-03-03T20:22:26.113Z',NULL,42,1,25.336071424606207,1.01,26.475891534042336,314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2281,'2019-01-08T22:31:22.859Z',NULL,48,1,123.20884248534108,7.08,143.52492424403545,317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2282,'2018-12-31T02:07:48.473Z',NULL,67,1,41.24480890795779,2.37,44.79882687050472,317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2283,'2020-02-03T16:33:28.532Z',NULL,190,1,128.5841852057933,7.39,143.40495070556662,317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2284,'2017-12-21T19:50:49.986Z',NULL,98,1,74.94550296436165,2.17,72.5122177640986,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2285,'2020-02-15T01:18:36.751Z',7.009418282589974,21,1,60.57501609456816,1.76,66.3874619586596,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2286,'2017-10-21T07:20:05.744Z',NULL,22,5,21.42451996044233,0.62,24.84021066646016,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2287,'2019-10-21T02:16:14.632Z',NULL,196,5,70.14610686710009,2.03,78.53245646543581,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2288,'2018-08-11T00:30:55.038Z',NULL,26,4,68.12471180754113,1.98,68.83807502658922,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2289,'2020-01-19T06:41:38.867Z',NULL,23,1,116.86672609493307,3.39,108.16878144721603,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2290,'2019-08-15T10:02:21.953Z',NULL,75,6,125.81276373452337,3.65,130.1307585936557,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2291,'2019-06-26T19:19:35.124Z',NULL,35,6,71.53687730741436,2.07,76.6984966019043,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2292,'2019-08-21T08:51:11.535Z',NULL,134,4,42.49233549998661,1.23,49.30877640039866,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2293,'2017-12-30T20:27:38.997Z',NULL,74,1,34.08536151591033,0.99,32.70865551637033,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2294,'2017-09-26T17:19:13.970Z',NULL,84,4,54.58418555091025,1.58,53.42624828321856,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2295,'2019-05-24T17:52:07.349Z',NULL,106,4,52.723521442619514,1.53,50.400024043454614,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2296,'2020-04-13T05:06:51.915Z',NULL,81,3,43.9329842322118,1.27,45.40806858382039,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2297,'2018-06-12T03:10:24.614Z',2.509418282589974,28,6,68.12471180754113,1.98,64.71558984686531,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2298,'2018-10-19T14:29:12.500Z',NULL,38,3,66.06937283839378,1.92,75.12356888348137,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2299,'2019-03-10T09:54:38.374Z',NULL,122,1,99.84528328808108,2.9,111.05324083071491,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2300,'2019-11-01T10:00:15.203Z',NULL,77,3,101.01691728415972,2.93,109.78989436822687,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2301,'2018-05-01T00:12:12.510Z',NULL,173,4,122.3651993029456,3.55,114.39373620982403,318); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2302,'2018-02-05T09:44:41.426Z',NULL,158,1,139.8942352373801,9.62,134.13469781821507,320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2303,'2018-09-07T10:30:46.167Z',NULL,186,5,98.9770008385166,6.8,111.93898301324364,320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2304,'2019-03-26T06:27:58.536Z',NULL,128,1,75.08016314504417,2.18,83.46239378940676,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2305,'2016-12-24T03:18:25.468Z',NULL,50,1,35.76013077879841,1.04,39.764665394556836,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2306,'2017-09-08T02:12:55.092Z',NULL,63,5,89.0134841727878,2.58,97.95261148853426,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2307,'2020-01-13T11:01:33.484Z',NULL,62,2,133.5202262591817,3.87,146.71644748685162,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2308,'2018-03-28T07:53:33.876Z',NULL,164,1,92.96789820016517,2.7,87.81562999713815,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2309,'2019-01-15T23:33:50.354Z',NULL,86,1,92.31436670850246,2.68,100.43064378052368,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2310,'2019-12-07T13:46:56.184Z',NULL,137,1,67.77247956807186,1.97,78.09170151407996,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2311,'2020-01-27T04:58:26.800Z',NULL,7,2,148.22900526552291,4.3,136.4432517061022,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2312,'2016-07-19T09:38:12.915Z',NULL,96,5,69.88096572393577,2.03,81.18238603560891,322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2313,'2019-10-03T07:13:50.169Z',NULL,156,5,30.615804149046195,2.14,29.812895062507003,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2314,'2019-02-02T04:29:25.285Z',NULL,78,2,41.616917284159726,2.91,40.163008485294434,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2315,'2019-11-29T19:25:37.961Z',NULL,5,4,124.1176465275534,8.69,123.36273798728429,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2316,'2019-04-16T05:19:30.630Z',NULL,119,3,43.43814329652384,3.04,49.64550414453162,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2317,'2018-10-13T10:44:47.878Z',NULL,120,6,83.5020135028928,5.85,89.37911532199935,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2318,'2018-05-20T15:03:25.518Z',NULL,87,6,117.25536340498041,8.21,123.67849675567871,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2319,'2019-03-30T21:23:02.260Z',NULL,188,1,33.87738254731509,2.37,36.57737515014674,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2320,'2019-08-11T13:42:48.434Z',NULL,116,5,114.42485125407785,8.01,123.68263753160649,323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2321,'2019-06-22T22:51:10.771Z',8.392159702726374,179,5,68.32408657333919,4.27,73.01536215565173,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2322,'2016-06-11T16:55:44.546Z',NULL,33,5,31.829909130640935,1.99,32.95180398338489,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2323,'2019-11-28T07:36:37.151Z',8.392159702726374,100,2,67.83486485383094,4.24,76.89789427462743,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2324,'2019-03-22T00:43:42.430Z',NULL,200,1,73.20395711799151,4.58,83.2995458138266,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2325,'2018-10-27T00:07:53.880Z',NULL,91,4,65.09432810381134,4.07,68.509774293309,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2326,'2019-09-29T02:46:40.206Z',8.392159702726374,50,5,53.64019616819762,3.35,58.036335416972506,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2327,'2019-12-31T20:49:49.918Z',NULL,140,3,66.80312547576881,4.18,73.60910612376072,325); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2328,'2019-06-25T21:43:15.688Z',NULL,107,8,50.094887884945365,3.01,59.43784274777366,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2329,'2018-01-13T03:42:21.009Z',NULL,175,2,117.3248094335266,7.04,124.23626538575542,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2330,'2019-11-21T07:52:59.929Z',NULL,117,2,55.024851254077866,3.3,51.96277345472672,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2331,'2019-09-20T17:20:45.628Z',3.8921597027263752,67,4,41.24480890795779,2.47,43.10120323640646,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2332,'2018-07-18T07:17:00.830Z',3.8921597027263752,106,4,52.723521442619514,3.16,61.65307367016724,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2333,'2019-06-16T21:43:29.875Z',4.968784062502641,169,5,59.53172693453274,3.57,60.30713769124637,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2334,'2019-01-01T22:37:47.574Z',NULL,70,2,57.493003808959784,3.45,59.515845117410045,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2335,'2017-03-21T01:41:23.397Z',NULL,43,1,50.90170136783837,3.05,50.58470771852245,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2336,'2017-10-08T04:57:15.370Z',NULL,168,5,79.28781795635516,4.76,93.01186767032227,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2337,'2017-05-20T04:16:25.354Z',NULL,93,5,33.212427711035886,1.99,39.44818893812412,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2338,'2017-09-20T12:22:17.836Z',NULL,95,7,33.212427711035886,1.99,39.21426452132636,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2339,'2019-02-07T00:59:28.506Z',NULL,141,2,126.20312547576883,7.57,141.20800511308124,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2340,'2019-11-28T00:38:32.033Z',NULL,193,3,50.38077396807232,3.02,58.7650428472697,326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2341,'2017-01-08T03:33:20.671Z',4.968784062502641,54,2,41.395738936015974,2.59,49.26938169721922,327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2342,'2018-10-06T14:42:36.154Z',NULL,172,5,122.3651993029456,7.65,135.64575993923327,327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2343,'2019-11-14T14:10:51.422Z',NULL,177,3,128.8192981944599,8.05,136.55344389209048,327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2344,'2019-10-27T18:22:25.754Z',NULL,46,7,118.0495173798411,7.38,127.70816215906791,327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2345,'2017-12-26T10:24:28.129Z',NULL,197,3,46.76407124473339,2.92,56.079651492329695,327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2346,'2018-10-07T05:37:41.271Z',NULL,15,7,37.648145389078365,2.35,41.035705325888934,327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2347,'2019-01-08T08:03:45.950Z',NULL,6,2,97.43621265344382,7.31,112.7693264045911,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2348,'2019-11-12T03:05:45.128Z',NULL,136,3,105.20402317157343,7.89,109.30083931433552,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2349,'2019-01-07T06:22:56.402Z',NULL,25,2,68.62263967182464,5.15,71.2225006435384,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2350,'2019-11-22T01:36:46.690Z',NULL,28,4,68.12471180754113,5.11,79.04756858242935,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2351,'2018-09-02T04:07:49.073Z',5.9598137683412915,75,5,125.81276373452337,9.44,123.80384438729057,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2352,'2019-07-12T16:06:12.013Z',NULL,112,4,41.329386510090345,3.1,47.121233812651376,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2353,'2019-01-21T23:35:10.373Z',NULL,191,1,128.5841852057933,9.64,146.52003839574212,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2354,'2020-02-24T19:03:16.473Z',NULL,63,1,133.5202262591817,10.01,149.68428303846693,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2355,'2016-11-07T11:58:02.335Z',NULL,120,2,55.668009001928525,4.18,59.29666642092627,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2356,'2019-04-16T19:18:34.771Z',NULL,88,1,105.41292031622555,7.91,120.1314565872895,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2357,'2020-03-24T14:00:59.783Z',NULL,49,1,131.42865839323724,9.86,148.68569856935488,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2358,'2019-07-08T06:07:51.373Z',NULL,55,4,95.77128575934437,7.18,115.09182307371356,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2359,'2019-01-10T17:38:20.016Z',NULL,166,1,38.30449564120193,2.87,36.625515415656636,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2360,'2018-07-25T23:22:08.013Z',NULL,104,5,106.44215255778118,7.98,107.0579618571504,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2361,'2016-08-09T23:14:45.131Z',NULL,173,5,81.57679953529707,6.12,79.12593814706645,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2362,'2018-05-03T03:05:35.078Z',NULL,135,2,45.80402317157342,3.44,52.10616067093185,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2363,'2018-11-02T23:15:41.279Z',NULL,138,2,113.95078476718615,8.55,119.79230142001032,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2364,'2018-10-11T22:26:41.599Z',NULL,129,6,148.1672972165937,11.11,151.20959096933026,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2365,'2016-09-14T22:01:38.312Z',5.9598137683412915,92,4,83.2616179105333,6.24,95.78947298976503,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2366,'2019-06-18T22:08:37.192Z',NULL,173,5,122.3651993029456,9.18,148.4387579684857,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2367,'2018-08-02T21:22:15.712Z',2.2066234193392447,123,7,110.93145648834248,8.32,116.03692840585462,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2368,'2016-08-26T14:10:27.488Z',NULL,166,6,25.536330427467956,1.92,28.431343630381274,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2369,'2018-08-02T11:46:04.812Z',NULL,38,6,66.06937283839378,4.96,75.55015186696457,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2370,'2017-01-18T14:31:12.628Z',NULL,36,2,87.29125153827623,6.55,92.49936031975385,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2371,'2018-11-26T22:15:28.036Z',NULL,142,3,70.34853057210945,5.28,71.83197730153798,328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2372,'2018-07-14T07:54:08.430Z',NULL,197,3,70.14610686710009,4.91,75.55510649923382,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2373,'2020-04-02T06:47:51.484Z',NULL,81,2,43.9329842322118,3.08,47.91364817395826,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2374,'2019-09-23T23:52:20.533Z',NULL,178,3,117.32963250370614,8.21,141.20589027857358,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2375,'2017-03-20T13:03:56.961Z',NULL,14,1,25.09876359271891,1.76,26.364754826250643,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2376,'2016-09-13T10:58:52.886Z',NULL,137,3,45.18165304538124,3.16,52.34126547800595,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2377,'2017-07-30T01:19:29.571Z',NULL,124,4,73.95430432556165,5.18,84.71601879325918,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2378,'2019-03-05T17:53:14.134Z',NULL,107,1,50.094887884945365,3.51,55.288070987319166,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2379,'2017-04-26T22:25:26.861Z',NULL,152,3,32.59712486600442,2.28,36.16399333234092,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2380,'2017-05-28T03:12:03.429Z',NULL,37,5,53.40516136013846,3.74,54.47047944447179,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2381,'2017-04-24T20:32:36.158Z',NULL,4,3,73.99178100854834,5.18,79.88929507908165,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2382,'2018-04-05T03:47:58.338Z',NULL,21,3,60.57501609456816,4.24,65.34544212032448,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2383,'2017-10-04T10:51:17.218Z',NULL,28,6,45.41647453836076,3.18,53.069173486069886,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2384,'2016-08-06T10:50:48.085Z',NULL,82,8,40.59697158687298,2.84,38.4985701065276,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2385,'2018-09-10T22:44:08.389Z',NULL,195,4,109.78077396807234,7.68,121.64520590435816,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2386,'2019-02-25T15:32:58.413Z',NULL,10,1,47.6793282102869,3.34,56.014595071592325,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2387,'2019-05-30T20:39:56.859Z',8.888482400946671,50,5,53.64019616819762,3.75,54.680631794821565,329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2388,'2019-11-13T09:54:34.748Z',NULL,172,4,122.3651993029456,7.65,139.1960107101461,330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2389,'2017-11-26T22:40:15.393Z',NULL,73,4,47.752514839713,2.98,48.559089875568404,330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2390,'2019-02-16T07:28:42.312Z',NULL,96,2,104.82144858590365,6.55,123.63414255301203,330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2391,'2020-03-21T19:23:39.348Z',NULL,192,1,69.18418520579327,3.46,75.34725989236672,331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2392,'2018-12-09T05:13:43.162Z',NULL,20,2,37.32649625046575,1.87,36.82064672342509,331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2393,'2017-02-05T06:06:46.486Z',2.249848411923024,15,1,25.09876359271891,1.25,24.623510242869468,331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2394,'2019-11-20T19:18:12.291Z',NULL,77,3,101.01691728415972,5.05,113.96142798075341,331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2395,'2019-05-11T10:10:25.752Z',NULL,186,4,98.9770008385166,0,96.94670898597055,332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2396,'2019-04-02T19:33:57.570Z',NULL,83,3,81.87627832636537,0,84.92995413130566,332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2397,'2018-08-29T00:16:12.035Z',NULL,56,8,36.37128575934436,0,38.253102571417195,332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2398,'2020-02-29T05:05:54.647Z',NULL,12,2,116.01427581618326,0,106.02425476619888,332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2399,'2019-12-26T05:52:01.270Z',2.249848411923024,149,2,69.15415037577924,3.8,67.49516061938586,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2400,'2018-08-03T00:15:13.330Z',NULL,124,6,110.93145648834248,6.1,128.4057733108447,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2401,'2019-04-09T19:45:53.266Z',NULL,104,3,106.44215255778118,5.85,123.745374234017,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2402,'2018-10-30T04:15:14.183Z',NULL,113,5,110.47725376186015,6.08,123.18256839495392,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2403,'2018-09-27T04:58:03.039Z',NULL,183,4,56.697412301919755,3.12,62.88002437558273,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2404,'2019-02-06T14:06:11.000Z',NULL,44,2,76.35255205175756,4.2,81.33885785369321,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2405,'2019-12-16T20:30:18.499Z',NULL,162,2,33.56789820016516,1.85,39.65847630689568,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2406,'2018-01-28T18:11:31.935Z',NULL,151,2,91.61302306843446,5.04,108.32616910025344,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2407,'2018-09-01T22:14:41.472Z',NULL,97,3,112.41825444654248,6.18,113.42647844700888,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2408,'2018-08-21T03:10:19.770Z',NULL,72,7,142.20381898788685,7.82,146.99001869441048,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2409,'2017-09-23T13:37:57.312Z',NULL,92,5,83.2616179105333,4.58,96.41627610362544,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2410,'2019-02-16T15:01:40.925Z',NULL,120,1,83.5020135028928,4.59,96.5839561539168,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2411,'2019-02-04T07:25:40.068Z',8.004709206159138,105,1,52.723521442619514,2.9,59.20278724967097,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2412,'2019-01-28T08:07:05.544Z',NULL,176,1,57.92480943352658,3.19,62.265100259991556,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2413,'2020-01-06T17:14:36.382Z',NULL,137,2,67.77247956807186,3.73,64.79073256963206,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2414,'2020-04-01T07:59:09.620Z',NULL,37,3,80.10774204020768,4.41,88.98026564119806,334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2415,'2020-04-09T09:19:20.204Z',8.004709206159138,30,2,64.17448218067184,2.76,60.69597543630375,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2416,'2020-04-02T16:15:49.404Z',NULL,175,2,117.3248094335266,5.04,124.20506526271426,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2417,'2019-04-26T12:57:59.756Z',NULL,4,3,110.98767151282252,4.77,119.55865173691227,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2418,'2020-01-07T05:16:23.411Z',NULL,2,2,105.11984419607644,4.52,98.86315732110565,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2419,'2017-12-06T12:17:27.312Z',NULL,130,1,50.01715912876758,2.15,54.785162936810686,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2420,'2017-04-08T18:36:55.207Z',NULL,76,3,42.54947374244324,1.83,39.872988554379305,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2421,'2018-05-31T18:36:47.528Z',NULL,110,43,55.526746186906664,2.39,61.98014810241589,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2422,'2019-01-27T10:27:16.937Z',NULL,42,1,38.00410713690931,1.63,41.37134850421694,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2423,'2020-03-26T03:42:36.903Z',NULL,136,1,105.20402317157343,4.52,121.48170874386003,336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2424,'2018-10-18T06:27:14.281Z',NULL,57,5,122.4223933583994,4.9,128.0239484370163,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2425,'2018-10-21T11:55:29.876Z',NULL,72,5,142.20381898788685,5.69,162.32426922065213,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2426,'2018-02-13T17:40:56.209Z',NULL,162,1,33.56789820016516,1.34,35.92275271864134,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2427,'2018-07-23T04:14:03.287Z',NULL,51,3,75.65058751905018,3.03,71.48834653270674,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2428,'2018-10-21T07:59:53.142Z',NULL,22,3,32.136779940663494,1.29,34.08676996160703,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2429,'2017-11-02T21:12:40.292Z',NULL,137,2,45.18165304538124,1.81,53.47451699191747,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2430,'2019-12-05T03:23:20.524Z',NULL,153,1,66.79892314178237,2.67,61.76149252034664,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2431,'2019-12-18T04:31:09.133Z',NULL,5,2,124.1176465275534,4.96,136.90561489473882,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2432,'2018-03-08T21:38:51.119Z',NULL,193,1,50.38077396807232,2.02,58.63119787923479,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2433,'2018-07-30T08:33:35.979Z',NULL,8,3,98.83823503993958,3.95,96.46637417382998,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2434,'2018-12-02T16:28:05.271Z',NULL,28,2,68.12471180754113,2.72,69.17702575519976,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2435,'2019-01-22T02:14:39.307Z',NULL,83,2,81.87627832636537,3.28,86.48827804957077,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2436,'2019-05-24T20:12:40.600Z',NULL,50,3,53.64019616819762,2.15,59.07369492915242,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2437,'2019-02-16T03:26:07.578Z',NULL,181,1,143.88940370476112,5.76,150.43626198699442,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2438,'2018-03-04T19:17:10.621Z',NULL,46,1,118.0495173798411,4.72,134.8221117422605,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2439,'2019-01-09T21:50:54.352Z',NULL,157,2,139.8942352373801,5.6,130.92285968460834,337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2440,'2019-01-04T01:58:08.888Z',NULL,83,2,81.87627832636537,6.14,91.27129013769056,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2441,'2020-01-30T02:24:45.677Z',2.8935364924631406,108,2,50.094887884945365,3.76,49.05991231720647,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2442,'2019-07-08T20:32:47.347Z',7.393536492463141,109,5,119.04991068193098,8.93,126.73519926227713,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2443,'2017-11-20T09:04:45.351Z',NULL,174,2,74.40953929454055,5.58,76.14601709595937,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2444,'2018-12-31T16:22:07.786Z',NULL,1,1,44.19489169601981,3.31,49.971364740472815,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2445,'2019-10-31T11:36:56.789Z',NULL,19,5,64.00675097561322,4.8,75.58703933145392,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2446,'2017-07-06T23:47:41.109Z',NULL,41,5,42.33927237126308,3.18,41.3897512082393,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2447,'2019-10-11T22:07:03.453Z',NULL,81,5,43.9329842322118,3.29,43.33937693094055,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2448,'2018-10-12T05:40:45.729Z',NULL,83,5,81.87627832636537,6.14,91.2222517971642,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2449,'2016-10-30T01:49:39.216Z',NULL,105,4,35.149014295079674,2.64,40.864293681380104,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2450,'2017-12-19T05:32:59.813Z',NULL,101,2,93.21658710786936,6.99,106.53951800978258,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2451,'2020-01-16T18:13:28.161Z',NULL,32,2,107.1448636959614,8.04,104.21459990206469,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2452,'2018-08-19T10:38:30.380Z',NULL,105,5,52.723521442619514,3.95,60.48756118455068,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2453,'2018-11-24T23:41:07.303Z',NULL,165,3,38.30449564120193,2.87,38.859014453034156,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2454,'2019-06-05T01:14:34.502Z',NULL,93,8,49.81864156655383,3.74,56.10072209055794,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2455,'2018-07-28T20:59:36.635Z',NULL,156,6,30.615804149046195,2.3,29.18884170851351,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2456,'2019-08-11T06:40:11.229Z',NULL,69,8,73.38772304360626,5.5,85.87298243346352,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2457,'2018-09-07T22:16:42.294Z',NULL,17,6,79.93608046792765,6,75.86058270481549,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2458,'2018-04-01T10:09:07.042Z',NULL,161,3,47.59120561297272,3.57,49.72014434647205,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2459,'2017-08-21T10:58:59.876Z',NULL,3,8,35.388744881539054,2.65,39.89422797081883,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2460,'2020-04-17T00:11:49.891Z',NULL,99,3,67.83486485383094,5.09,75.62791236601751,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2461,'2019-07-12T03:33:04.061Z',NULL,72,6,142.20381898788685,10.67,142.8536954279742,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2462,'2017-01-11T22:41:36.068Z',NULL,192,2,46.122790137195516,3.46,55.659987101485676,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2463,'2019-05-04T05:21:35.292Z',NULL,73,5,71.6287722595695,5.37,76.32100136424526,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2464,'2018-10-18T13:55:20.187Z',NULL,171,6,105.07665741496471,7.88,126.18847701317645,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2465,'2017-07-04T18:35:48.517Z',NULL,52,5,69.1172482676769,5.18,66.33736875253648,338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2466,'2019-03-21T06:36:51.310Z',NULL,134,1,42.49233549998661,2.66,40.7716192025697,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2467,'2020-03-29T20:54:55.654Z',NULL,147,1,66.64727121216615,4.17,69.96022610428174,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2468,'2016-10-25T20:40:28.660Z',NULL,53,6,29.517248267676894,1.84,33.90754768885733,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2469,'2018-02-10T23:44:01.220Z',NULL,149,2,69.15415037577924,4.32,71.16090933750104,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2470,'2019-10-01T00:16:17.830Z',NULL,186,6,98.9770008385166,6.19,115.89626465181536,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2471,'2018-07-04T19:46:23.462Z',NULL,105,5,52.723521442619514,3.3,58.583224664077825,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2472,'2018-03-01T14:16:01.406Z',NULL,162,1,33.56789820016516,2.1,34.25231789890774,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2473,'2017-10-22T03:06:02.531Z',NULL,137,6,45.18165304538124,2.82,44.58698617810891,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2474,'2020-04-07T12:27:53.526Z',NULL,156,3,30.615804149046195,1.91,30.990314341460095,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2475,'2018-09-03T13:56:13.105Z',NULL,150,3,128.55415037577922,8.03,127.5265164617764,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2476,'2017-06-23T16:46:58.460Z',NULL,50,5,35.76013077879841,2.24,33.683630041910924,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2477,'2016-11-23T15:50:07.442Z',NULL,120,3,55.668009001928525,3.48,67.2812144447862,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2478,'2017-02-22T04:29:51.453Z',NULL,89,2,42.47974183693326,2.65,46.4053845340253,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2479,'2019-09-08T05:19:42.342Z',NULL,112,4,41.329386510090345,2.58,43.52073118583204,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2480,'2017-01-07T09:17:34.283Z',NULL,7,1,98.81933684368194,6.18,103.80046555375291,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2481,'2020-02-01T10:53:00.441Z',NULL,30,1,64.17448218067184,4.01,67.7256561653462,342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2482,'2020-01-23T09:25:20.990Z',NULL,67,2,41.24480890795779,1.65,41.966327916916434,344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2483,'2018-08-15T22:18:25.516Z',2.0358348331086553,156,6,30.615804149046195,1.22,35.46116372498709,344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2484,'2019-04-15T22:23:59.538Z',NULL,14,3,37.648145389078365,1.51,37.6709319037125,344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2485,'2019-03-05T01:31:07.099Z',NULL,71,1,82.80381898788684,3.31,96.03288856882497,344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2486,'2019-03-23T16:48:54.881Z',NULL,196,1,70.14610686710009,2.81,73.77097114946737,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2487,'2017-07-04T14:21:12.483Z',NULL,183,5,37.7982748679465,1.51,40.62934147305784,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2488,'2017-04-20T19:36:00.081Z',NULL,120,2,55.668009001928525,2.23,56.49318205417111,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2489,'2019-06-05T16:18:37.277Z',NULL,46,3,118.0495173798411,4.72,118.8688645138808,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2490,'2019-08-22T02:52:55.123Z',NULL,104,6,106.44215255778118,4.26,117.30791759536943,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2491,'2019-04-12T09:58:29.128Z',NULL,9,4,87.46968147789205,3.5,83.93998732197535,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2492,'2018-12-13T12:07:31.021Z',NULL,69,2,73.38772304360626,2.94,79.45828874683924,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2493,'2018-08-05T05:35:30.210Z',NULL,62,7,133.5202262591817,5.34,136.27641440754917,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2494,'2019-02-09T21:01:11.458Z',NULL,1,2,44.19489169601981,1.77,45.407301588209585,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2495,'2019-11-24T06:47:50.413Z',NULL,22,3,32.136779940663494,1.29,38.26359966044934,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2496,'2019-06-18T01:17:52.318Z',NULL,35,5,71.53687730741436,2.86,70.00597061795477,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2497,'2020-01-02T18:19:12.448Z',NULL,104,2,106.44215255778118,4.26,114.52742626240808,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2498,'2018-05-29T21:26:28.677Z',NULL,79,4,41.616917284159726,1.66,44.9902410722975,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2499,'2018-07-18T07:25:07.132Z',NULL,180,5,68.32408657333919,2.73,73.14198278490579,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2500,'2019-10-15T06:21:55.882Z',NULL,128,7,75.08016314504417,3,74.3976504827548,345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2501,'2018-03-01T21:12:24.187Z',NULL,143,1,61.1983004605443,4.28,67.08001735974786,346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2502,'2018-05-02T09:31:27.923Z',NULL,69,3,73.38772304360626,5.14,88.66361941987637,346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2503,'2017-08-21T15:04:41.741Z',NULL,180,5,45.549391048892794,3.19,50.476332863022165,346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2504,'2018-02-19T10:08:01.734Z',3.4380164482867848,47,2,84.0766209826718,5.89,81.51994555693344,346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2505,'2018-07-01T10:14:56.679Z',NULL,175,6,117.3248094335266,7.33,112.93463046478344,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2506,'2020-01-09T08:13:16.082Z',NULL,65,2,68.22769726470014,4.26,80.32072126564853,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2507,'2019-03-26T17:55:11.618Z',NULL,39,1,114.58158180283459,7.16,136.7552735288997,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2508,'2016-12-27T06:01:19.892Z',4.708998045646235,82,2,40.59697158687298,2.54,41.16580549950756,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2509,'2019-01-10T13:02:35.789Z',NULL,97,1,112.41825444654248,7.03,120.60521607026776,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2510,'2017-09-07T11:09:47.043Z',NULL,45,2,78.6996782532274,4.92,76.76521816824537,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2511,'2019-08-25T16:56:33.773Z',NULL,52,4,103.67587240151535,6.48,111.2148510060552,347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2512,'2019-11-15T02:54:06.514Z',NULL,101,2,139.82488066180403,6.29,153.4097803103953,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2513,'2018-04-05T16:07:19.927Z',NULL,103,1,47.04215255778118,2.12,52.845519891037455,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2514,'2019-03-25T18:15:21.910Z',NULL,55,0,95.77128575934437,4.31,96.11914751711954,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2515,'2018-05-27T21:35:03.379Z',NULL,199,1,115.4300138092855,5.19,136.42301711716567,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2516,'2016-10-26T04:17:09.764Z',NULL,194,2,33.587182645381546,1.51,31.69129953954716,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2517,'2018-11-13T16:41:42.985Z',4.708998045646235,175,1,117.3248094335266,5.28,133.73563866104473,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2518,'2017-12-28T19:23:45.750Z',NULL,197,1,46.76407124473339,2.1,54.55530684242447,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2519,'2017-07-23T01:11:40.816Z',NULL,187,4,65.98466722567774,2.97,65.73526765608088,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2520,'2019-03-18T09:35:34.634Z',NULL,137,1,67.77247956807186,3.05,63.28048994279053,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2521,'2019-07-05T22:29:26.358Z',NULL,181,3,143.88940370476112,6.48,163.47434331350692,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2522,'2020-01-16T07:56:47.293Z',NULL,87,1,117.25536340498041,5.28,119.56792729917846,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2523,'2019-08-13T16:31:25.583Z',NULL,124,4,110.93145648834248,4.99,127.69652907118625,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2524,'2017-07-22T03:03:04.839Z',NULL,130,5,50.01715912876758,2.25,49.02075063531811,348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2525,'2019-07-16T03:48:51.890Z',NULL,165,7,38.30449564120193,2.3,41.154964896967805,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2526,'2018-12-24T03:18:51.433Z',NULL,5,3,124.1176465275534,7.45,117.56705977706787,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2527,'2019-08-04T23:41:04.683Z',NULL,71,9,82.80381898788684,4.97,80.68993668393728,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2528,'2019-08-19T22:51:14.174Z',NULL,80,7,54.91325681036414,3.29,60.0562849793879,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2529,'2017-02-27T17:00:24.193Z',NULL,39,2,76.38772120188973,4.58,90.8196593965405,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2530,'2018-11-01T14:09:53.121Z',NULL,124,4,110.93145648834248,6.66,109.25311535252655,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2531,'2018-03-15T09:15:30.934Z',NULL,112,1,41.329386510090345,2.48,48.465005092251154,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2532,'2019-03-30T07:50:00.283Z',NULL,189,1,93.27738254731509,5.6,106.00300217065805,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2533,'2020-04-11T03:14:25.383Z',NULL,101,3,139.82488066180403,8.39,146.8565578093567,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2534,'2020-04-01T15:13:52.092Z',NULL,135,2,45.80402317157342,2.75,43.55205453881282,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2535,'2018-09-03T13:20:46.214Z',NULL,26,5,68.12471180754113,4.09,69.5976863352122,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2536,'2018-04-13T16:44:57.273Z',NULL,15,3,37.648145389078365,2.26,43.286829627167435,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2537,'2018-10-21T16:58:35.075Z',NULL,58,6,78.14578007078882,4.69,78.18106775710748,350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2538,'2019-04-07T18:17:35.750Z',NULL,172,3,122.3651993029456,7.34,116.57278533925147,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2539,'2018-04-19T23:55:56.619Z',6.1339085905012105,81,3,43.9329842322118,2.64,45.438709725057294,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2540,'2018-03-26T23:19:52.335Z',NULL,3,1,53.08311732230858,3.18,50.127010977921564,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2541,'2017-06-24T17:01:13.453Z',NULL,120,5,55.668009001928525,3.34,59.73424554432599,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2542,'2016-12-13T18:49:44.173Z',NULL,178,1,78.21975500247076,4.69,74.88408722963403,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2543,'2017-05-24T10:09:13.137Z',NULL,29,3,82.3829881204479,4.94,77.98548546031408,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2544,'2018-11-28T06:54:21.349Z',NULL,32,2,107.1448636959614,6.43,113.77705175000851,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2545,'2019-10-29T18:34:59.070Z',NULL,26,4,68.12471180754113,4.09,76.84212416656894,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2546,'2020-01-21T14:08:10.825Z',NULL,181,2,143.88940370476112,8.63,164.66187850637306,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2547,'2019-10-29T08:25:04.225Z',NULL,56,6,36.37128575934436,2.18,43.131253289259256,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2548,'2016-10-22T06:59:03.370Z',NULL,170,6,70.05110494330981,4.2,68.47426554108488,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2549,'2018-09-06T11:43:18.393Z',NULL,69,5,73.38772304360626,4.4,81.097438592939,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2550,'2018-08-25T21:41:18.126Z',NULL,44,5,76.35255205175756,4.58,90.36779967208146,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2551,'2016-07-19T10:02:28.613Z',NULL,5,4,82.7450976850356,4.96,81.48732288020615,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2552,'2017-01-22T03:46:12.900Z',NULL,78,2,27.74461152277315,1.66,33.555080288344826,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2553,'2017-05-15T04:43:30.635Z',NULL,14,4,25.09876359271891,1.51,28.214539021696485,351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2554,'2017-09-07T16:46:47.145Z',NULL,16,4,44.07353303251545,2.64,46.94668421865393,352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2555,'2018-03-31T19:10:42.028Z',NULL,59,1,89.20214751859149,5.35,107.76639213281621,352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2556,'2017-03-24T17:34:12.517Z',NULL,194,1,33.587182645381546,2.02,38.59939729284566,352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2557,'2018-11-03T11:20:48.323Z',7.69555499328218,114,2,77.91196471862148,4.67,94.87850088002675,352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2558,'2016-11-05T05:16:12.864Z',3.1955549932821796,80,3,36.60883787357609,2.2,36.70808142890612,352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2559,'2019-03-21T16:40:29.365Z',NULL,197,1,70.14610686710009,4.21,83.62540116909244,352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2560,'2018-07-25T07:31:55.761Z',NULL,100,3,67.83486485383094,4.07,81.0735953894632,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2561,'2018-05-23T12:10:23.070Z',NULL,45,4,118.0495173798411,7.08,109.82922946601586,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2562,'2019-11-01T13:35:24.821Z',NULL,103,4,47.04215255778118,2.82,47.24429674210983,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2563,'2018-09-09T21:34:40.210Z',NULL,62,5,133.5202262591817,8.01,162.10853256130068,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2564,'2018-01-07T21:35:24.672Z',7.69555499328218,117,2,55.024851254077866,3.3,66.19947603347421,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2565,'2019-11-23T06:04:59.828Z',NULL,163,4,33.56789820016516,2.01,32.65987864578902,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2566,'2018-12-14T06:14:31.619Z',7.69555499328218,22,2,32.136779940663494,1.93,35.151710938949925,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2567,'2018-11-10T05:41:13.182Z',NULL,133,3,68.4819702983371,4.11,67.50266208368157,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2568,'2017-12-29T03:12:55.896Z',NULL,85,2,36.6006982295235,2.2,43.69669814105866,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2569,'2018-11-17T18:40:30.293Z',NULL,64,3,143.4221774571866,8.61,153.05591133377033,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2570,'2018-05-16T00:43:35.378Z',NULL,66,5,136.16126271106958,8.17,145.99398656031119,353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2571,'2018-05-03T12:43:43.722Z',NULL,107,4,50.094887884945365,2,50.423721791892035,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2572,'2018-08-01T06:14:35.480Z',NULL,127,7,134.48016314504417,5.38,155.98823535920133,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2573,'2019-07-31T18:20:53.960Z',NULL,88,6,105.41292031622555,4.22,124.62952650405424,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2574,'2018-12-21T20:17:19.585Z',NULL,37,2,80.10774204020768,3.2,89.32801609135629,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2575,'2017-01-31T05:13:58.759Z',NULL,118,2,38.418408731319154,1.54,38.520086259694324,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2576,'2020-04-10T11:18:02.342Z',5.483609057840189,157,2,139.8942352373801,5.6,158.73190064896892,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2577,'2020-03-08T03:44:02.526Z',NULL,133,1,68.4819702983371,2.74,69.44997774630734,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2578,'2020-02-09T18:58:49.644Z',NULL,154,1,81.87529553312261,3.28,91.83904439939701,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2579,'2018-03-24T12:20:20.147Z',NULL,99,1,67.83486485383094,2.71,70.04453376313603,354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2580,'2018-09-29T13:01:48.622Z',NULL,106,5,52.723521442619514,3.69,50.007559469975426,355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2581,'2020-01-01T01:38:03.515Z',NULL,67,2,41.24480890795779,2.89,42.17874690939641,355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2582,'2019-03-26T02:19:43.928Z',NULL,54,1,62.09360840402396,4.35,66.82270032134227,355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2583,'2019-01-22T00:04:55.342Z',NULL,34,1,74.30391386913199,5.2,72.19779829682562,355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2584,'2017-07-17T22:07:03.488Z',NULL,193,2,33.587182645381546,1.68,33.061866678975534,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2585,'2017-09-04T09:51:01.596Z',NULL,183,2,37.7982748679465,1.89,34.85711186452224,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2586,'2018-04-30T18:27:32.496Z',NULL,17,1,79.93608046792765,4,88.68043711945424,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2587,'2020-01-28T04:13:38.222Z',NULL,177,1,128.8192981944599,6.44,135.5688748341347,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2588,'2017-12-14T23:00:59.751Z',NULL,84,1,54.58418555091025,2.73,54.858100955793574,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2589,'2018-05-06T09:27:23.082Z',NULL,153,3,66.79892314178237,3.34,72.3881576552467,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2590,'2019-12-14T14:26:05.081Z',NULL,48,1,123.20884248534108,6.16,123.45274408048249,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2591,'2019-02-06T09:17:26.597Z',NULL,44,1,76.35255205175756,3.82,70.71482643488885,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2592,'2018-06-03T15:12:51.986Z',0.9836090578401886,189,4,93.27738254731509,4.66,112.13706461708082,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2593,'2019-03-01T11:16:27.707Z',NULL,136,1,105.20402317157343,5.26,100.77544986389421,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2594,'2020-01-20T20:41:36.344Z',NULL,195,1,109.78077396807234,5.49,108.48049744633437,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2595,'2017-11-21T23:52:24.272Z',NULL,12,1,77.34285054412217,3.87,72.07385718197331,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2596,'2019-09-27T08:32:44.448Z',NULL,86,2,92.31436670850246,4.62,106.36585085319285,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2597,'2019-07-12T23:11:29.030Z',NULL,177,2,128.8192981944599,6.44,144.38469926101146,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2598,'2019-07-05T01:23:30.375Z',NULL,14,4,37.648145389078365,1.88,43.19748186282696,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2599,'2017-07-12T19:38:15.183Z',NULL,179,5,45.549391048892794,2.28,43.21951859432064,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2600,'2019-08-04T13:52:53.696Z',1.337518732229599,25,5,68.62263967182464,3.43,81.49015019665784,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2601,'2018-11-23T18:23:13.228Z',NULL,135,2,45.80402317157342,2.29,49.242024088852546,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2602,'2017-11-23T10:52:41.889Z',NULL,179,2,45.549391048892794,2.28,51.761310183213595,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2603,'2019-07-09T09:07:48.935Z',NULL,89,4,63.719612755399886,3.19,76.99483316824465,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2604,'2018-10-16T00:43:15.255Z',NULL,173,6,122.3651993029456,6.12,127.73434626817482,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2605,'2018-04-25T05:44:23.407Z',NULL,164,2,92.96789820016517,4.65,100.49935981732762,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2606,'2018-01-22T07:31:56.011Z',NULL,198,1,70.14610686710009,3.51,76.98038705783783,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2607,'2018-03-05T12:13:08.810Z',NULL,145,1,61.1983004605443,3.06,65.55412535863648,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2608,'2019-12-04T00:53:49.924Z',5.837518732229599,5,1,124.1176465275534,6.21,141.1031800632443,356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2609,'2018-10-25T09:22:39.416Z',NULL,131,3,113.11722203337729,4.52,113.81214056608471,358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2610,'2017-05-29T11:01:06.365Z',1.337518732229599,107,3,33.39659192329691,1.34,31.5358201342828,358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2611,'2019-06-02T20:25:54.246Z',6.887840342170341,175,5,117.3248094335266,4.69,137.9187566838257,358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2612,'2019-03-26T11:50:37.769Z',NULL,67,1,41.24480890795779,1.65,41.969189926160595,358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2613,'2018-09-27T22:41:56.626Z',NULL,38,3,66.06937283839378,4.13,62.690583885086255,359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2614,'2019-05-14T15:41:30.528Z',2.3878403421703402,55,3,95.77128575934437,5.99,99.12517398850397,359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2615,'2019-10-23T07:54:31.268Z',NULL,176,5,57.92480943352658,3.62,57.53649989983677,359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2616,'2019-08-15T13:50:54.802Z',NULL,191,6,128.5841852057933,8.04,119.59227420352003,359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2617,'2019-07-26T21:00:52.504Z',NULL,157,4,139.8942352373801,8.74,169.03102070080755,359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2618,'2020-02-22T22:58:19.029Z',NULL,140,1,66.80312547576881,4.18,76.38256021290562,359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2619,'2018-11-02T09:55:48.221Z',NULL,101,3,139.82488066180403,5.91,145.4654352429062,360); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2620,'2017-07-18T21:53:32.388Z',NULL,168,4,79.28781795635516,3.35,94.80011176313158,360); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2621,'2020-04-16T08:43:19.854Z',NULL,165,3,38.30449564120193,1.62,37.4324586923358,360); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2622,'2018-10-22T08:27:01.674Z',NULL,69,5,73.38772304360626,3.1,81.70889336591883,360); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2623,'2020-01-03T03:16:21.739Z',NULL,18,1,81.90307121097293,3.89,91.4854362174812,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2624,'2018-02-04T09:02:11.846Z',NULL,11,1,132.45679913492563,6.29,150.31500210589246,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2625,'2017-07-04T22:35:42.656Z',NULL,178,6,78.21975500247076,3.72,80.51419020973593,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2626,'2017-09-26T03:20:45.548Z',NULL,54,6,41.395738936015974,1.97,46.286403628442265,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2627,'2016-11-07T15:47:01.192Z',NULL,43,3,50.90170136783837,2.42,49.02022932814971,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2628,'2017-09-23T13:19:50.864Z',NULL,197,6,46.76407124473339,2.22,43.14052445889962,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2629,'2019-01-23T04:07:57.926Z',NULL,23,2,116.86672609493307,5.55,136.80267772310236,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2630,'2018-02-20T18:38:49.872Z',NULL,193,1,50.38077396807232,2.39,46.429262612516624,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2631,'2018-06-29T20:28:41.230Z',NULL,199,6,115.4300138092855,5.48,112.28929980952037,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2632,'2018-06-04T17:21:01.114Z',NULL,196,7,70.14610686710009,3.33,66.60942114941086,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2633,'2017-12-19T05:05:15.431Z',NULL,42,2,25.336071424606207,1.2,28.373189752716854,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2634,'2020-04-06T02:52:22.735Z',NULL,174,2,111.61430894181083,5.3,110.4990217974888,361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2635,'2019-01-18T17:01:26.949Z',2.541041154184819,113,1,110.47725376186015,6.35,123.98348478843947,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2636,'2017-04-27T09:37:08.585Z',NULL,54,2,41.395738936015974,2.38,50.37804438405897,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2637,'2018-04-12T01:56:13.555Z',NULL,138,2,113.95078476718615,6.55,138.04005995126695,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2638,'2019-08-27T06:02:01.355Z',NULL,64,6,143.4221774571866,8.25,139.46828647133864,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2639,'2018-10-13T13:50:04.711Z',2.541041154184819,23,5,116.86672609493307,6.72,135.30171805650536,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2640,'2019-04-14T07:27:37.394Z',NULL,183,2,56.697412301919755,3.26,59.93100343997973,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2641,'2018-06-14T00:13:31.541Z',NULL,95,6,49.81864156655383,2.86,52.25582191884405,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2642,'2018-12-30T05:05:25.549Z',NULL,66,2,136.16126271106958,7.83,157.32648092918507,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2643,'2017-05-15T00:11:05.313Z',NULL,166,5,25.536330427467956,1.47,25.6061371277127,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2644,'2019-10-30T17:55:08.939Z',NULL,169,6,59.53172693453274,3.42,55.146009732202366,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2645,'2019-12-13T23:16:04.048Z',NULL,134,2,42.49233549998661,2.44,48.00833143311281,362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2646,'2016-12-14T18:51:18.683Z',NULL,35,2,47.691251538276234,3.58,58.8166777993468,363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2647,'2019-02-16T05:19:25.809Z',NULL,108,2,50.094887884945365,3.76,60.57499282295829,363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2648,'2019-01-24T06:06:44.112Z',NULL,146,1,126.04727121216614,6.93,148.51691078525738,365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2649,'2018-10-25T00:48:41.449Z',NULL,200,4,73.20395711799151,4.03,80.06280529068532,365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2650,'2018-06-07T11:08:47.509Z',NULL,171,6,105.07665741496471,5.78,110.36955679972814,365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2651,'2019-10-18T18:00:06.205Z',NULL,17,5,79.93608046792765,4.4,78.41763647482325,365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2652,'2019-02-16T17:17:22.101Z',NULL,100,2,67.83486485383094,0,70.95150104303822,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2653,'2018-08-07T19:39:32.668Z',NULL,100,7,67.83486485383094,0,71.06551204044615,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2654,'2019-06-17T01:38:26.677Z',NULL,98,6,112.41825444654248,0,125.71573469878915,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2655,'2016-12-20T21:04:59.953Z',NULL,164,1,61.978598800110106,0,62.31743197891866,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2656,'2019-03-14T08:15:20.330Z',NULL,170,1,105.07665741496471,0,103.98961891288228,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2657,'2019-10-21T05:27:44.694Z',NULL,77,4,101.01691728415972,0,103.65339295623387,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2658,'2019-06-13T06:02:58.434Z',NULL,181,3,143.88940370476112,0,154.1194541532,367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2659,'2019-04-08T14:40:02.952Z',NULL,108,2,50.094887884945365,3.26,54.40795974094932,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2660,'2019-02-21T08:44:42.131Z',NULL,2,2,105.11984419607644,6.83,109.52613020146444,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2661,'2018-10-09T10:07:17.367Z',NULL,90,7,123.1196127553999,8,141.85499918837323,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2662,'2019-01-27T01:11:54.004Z',NULL,44,2,76.35255205175756,4.96,86.31301960536325,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2663,'2018-02-11T17:22:56.986Z',NULL,140,2,66.80312547576881,4.34,80.40424658437874,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2664,'2017-05-21T09:44:21.097Z',NULL,45,4,78.6996782532274,5.12,77.21372714738702,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2665,'2018-04-03T09:49:17.359Z',NULL,54,2,62.09360840402396,4.04,69.98120175873726,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2666,'2019-01-28T20:23:31.940Z',NULL,63,1,133.5202262591817,8.68,129.81376237265152,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2667,'2019-12-15T07:50:21.971Z',NULL,144,2,61.1983004605443,3.98,73.29021414078763,369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2668,'2019-12-11T22:32:49.393Z',NULL,67,2,41.24480890795779,1.77,38.73270524027215,371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2669,'2019-11-19T03:00:49.670Z',NULL,133,4,68.4819702983371,2.94,66.43917928770652,371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2670,'2018-05-31T02:39:07.446Z',7.670060719198604,141,5,126.20312547576883,5.43,123.32736381365069,371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2671,'2018-05-13T20:51:34.613Z',7.670060719198604,49,4,131.42865839323724,5.65,126.45697312620119,371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2672,'2019-07-28T15:33:03.448Z',NULL,46,5,118.0495173798411,5.08,139.63114233108203,371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2673,'2019-09-20T16:27:02.302Z',NULL,191,5,128.5841852057933,6.59,142.15507683810281,373); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2674,'2018-04-16T02:18:49.754Z',NULL,6,3,97.43621265344382,4.99,93.68236546161715,373); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2675,'2018-11-14T02:15:32.734Z',NULL,35,4,71.53687730741436,3.67,86.7859485949265,373); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2676,'2018-01-28T13:52:22.535Z',NULL,14,3,37.648145389078365,1.93,37.11976249115539,373); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2677,'2017-11-04T23:52:40.257Z',NULL,56,4,24.24752383956291,0,27.65552648798479,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2678,'2020-04-16T15:40:30.747Z',NULL,175,3,117.3248094335266,0,127.97307936784394,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2679,'2016-09-30T18:52:52.597Z',NULL,109,4,79.36660712128732,0,90.10929697495858,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2680,'2018-07-20T09:00:56.118Z',8.026698400974926,86,5,92.31436670850246,0,87.77014831491715,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2681,'2017-05-01T02:36:53.728Z',NULL,36,5,87.29125153827623,0,100.98943861906812,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2682,'2018-04-11T14:52:17.129Z',NULL,52,4,103.67587240151535,0,107.48355675433932,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2683,'2016-09-12T00:19:46.944Z',NULL,34,5,49.535942579421324,0,47.88880294922589,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2684,'2019-04-17T14:42:17.369Z',NULL,31,2,105.65346467128523,0,106.96979299107457,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2685,'2019-04-16T20:11:25.350Z',NULL,31,3,105.65346467128523,0,109.0720632372571,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2686,'2019-09-30T22:03:34.007Z',NULL,64,5,143.4221774571866,0,161.2225491878722,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2687,'2018-03-30T01:20:07.374Z',NULL,115,1,77.91196471862148,0,79.28748820329966,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2688,'2019-11-27T17:59:08.267Z',NULL,37,3,80.10774204020768,0,79.55907934990496,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2689,'2019-03-09T20:18:44.412Z',NULL,152,1,48.89568729900663,0,44.51416956049029,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2690,'2018-08-27T07:49:04.902Z',NULL,127,5,134.48016314504417,0,136.0939048203005,375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2691,'2018-11-17T09:02:06.172Z',NULL,147,2,66.64727121216615,4.67,73.78108602923699,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2692,'2020-02-19T00:13:15.239Z',NULL,9,1,87.46968147789205,6.12,82.38643385747477,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2693,'2019-02-21T00:08:16.677Z',NULL,123,2,110.93145648834248,7.77,110.91056320418542,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2694,'2018-04-26T15:03:03.241Z',NULL,69,4,73.38772304360626,5.14,82.30879061341975,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2695,'2018-02-11T19:43:33.667Z',NULL,113,2,110.47725376186015,7.73,110.1473689337005,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2696,'2020-03-21T09:19:15.550Z',NULL,5,1,124.1176465275534,8.69,146.22876302955086,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2697,'2018-07-13T07:12:43.141Z',NULL,41,4,63.50890855689462,4.45,72.58277720722793,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2698,'2020-02-14T07:09:05.629Z',NULL,61,1,23.537915510955656,1.65,25.117820730127164,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2699,'2020-03-12T23:36:14.845Z',NULL,164,1,92.96789820016517,6.51,105.97832494800566,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2700,'2018-09-29T09:06:03.322Z',NULL,157,6,139.8942352373801,9.79,154.7461260092034,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2701,'2018-07-07T22:13:06.059Z',NULL,178,5,117.32963250370614,8.21,121.53841140624938,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2702,'2019-02-28T19:07:13.139Z',NULL,57,2,122.4223933583994,8.57,118.68107194157177,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2703,'2017-11-28T15:42:55.181Z',NULL,148,4,92.65447881697106,6.49,87.05834078516091,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2704,'2018-05-10T13:17:04.030Z',NULL,164,6,92.96789820016517,6.51,97.42809380104596,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2705,'2020-03-13T01:59:52.383Z',NULL,67,1,41.24480890795779,2.89,43.1593305249019,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2706,'2018-07-20T22:34:25.111Z',3.7382085056764094,154,4,81.87529553312261,5.73,100.64221486178273,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2707,'2018-03-02T03:40:44.459Z',NULL,135,1,45.80402317157342,3.21,51.061516175773335,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2708,'2018-12-01T17:24:16.211Z',3.7382085056764094,61,2,23.537915510955656,1.65,23.962524136563967,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2709,'2017-11-08T05:11:15.275Z',NULL,49,4,87.61910559549149,6.13,91.01307739349237,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2710,'2017-09-22T04:37:16.735Z',NULL,45,6,78.6996782532274,5.51,91.47420645976183,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2711,'2017-11-25T04:29:08.809Z',NULL,170,3,70.05110494330981,4.9,83.66040561611045,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2712,'2020-03-29T05:38:30.860Z',6.852074607929922,151,1,91.61302306843446,6.41,97.39356264087166,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2713,'2020-01-17T07:36:41.021Z',NULL,120,2,83.5020135028928,5.85,91.28541457505112,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2714,'2018-12-09T14:48:53.538Z',6.852074607929922,113,2,110.47725376186015,7.73,112.42197034985762,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2715,'2019-05-29T00:22:59.605Z',NULL,101,5,139.82488066180403,9.79,137.62789177154806,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2716,'2019-09-09T17:51:44.900Z',NULL,25,4,68.62263967182464,4.8,74.01280490154731,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2717,'2018-09-12T10:20:33.785Z',NULL,37,3,80.10774204020768,5.61,96.07224649021066,376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2718,'2019-11-17T13:08:04.258Z',NULL,167,3,97.70449564120193,0,102.04238800659506,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2719,'2019-09-02T18:19:18.606Z',NULL,60,4,29.80214751859149,0,34.36385476768041,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2720,'2019-01-11T21:20:20.093Z',NULL,185,2,39.57700083851661,0,44.51976359155365,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2721,'2018-09-24T06:31:27.749Z',NULL,21,6,60.57501609456816,0,67.05214729084501,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2722,'2019-02-13T19:15:41.696Z',NULL,109,1,119.04991068193098,0,114.04732134060227,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2723,'2018-10-06T02:35:53.190Z',NULL,148,3,138.9817182254566,0,141.7547426780257,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2724,'2018-03-19T17:46:03.831Z',NULL,159,1,35.53017445377361,0,33.41700815993659,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2725,'2018-11-23T07:10:34.807Z',NULL,165,3,38.30449564120193,0,44.01175346304604,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2726,'2017-07-17T05:02:28.373Z',NULL,187,4,65.98466722567774,0,75.19529953918392,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2727,'2018-12-12T15:35:19.116Z',NULL,100,1,67.83486485383094,0,61.438426110779,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2728,'2018-09-08T16:04:30.401Z',NULL,127,5,134.48016314504417,0,143.20510821283852,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2729,'2019-06-05T16:06:02.171Z',NULL,48,7,123.20884248534108,0,108.72616618161481,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2730,'2019-05-05T10:38:53.947Z',NULL,123,4,110.93145648834248,0,112.89683980828991,377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2731,'2020-01-31T17:37:26.151Z',NULL,137,2,67.77247956807186,4.07,64.4096631190427,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2732,'2019-06-17T19:15:48.087Z',NULL,25,6,68.62263967182464,4.12,76.72112620141485,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2733,'2018-11-30T12:22:17.191Z',NULL,45,2,118.0495173798411,7.08,124.27066350930355,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2734,'2019-05-27T23:58:56.298Z',2.776655567166818,27,3,127.52471180754115,7.65,150.6959829698749,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2735,'2019-01-29T09:09:46.885Z',NULL,143,2,61.1983004605443,3.67,65.88809885477954,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2736,'2018-02-11T06:58:06.100Z',NULL,20,2,37.32649625046575,2.24,42.44748555964177,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2737,'2018-07-02T14:18:19.570Z',NULL,179,32,68.32408657333919,4.1,82.44957973762081,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2738,'2016-12-25T16:32:09.124Z',NULL,175,2,78.21653962235106,4.69,78.26648239451838,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2739,'2018-05-28T21:38:06.216Z',NULL,122,4,99.84528328808108,5.99,97.09284786463776,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2740,'2019-02-25T10:53:30.550Z',NULL,40,2,99.66240044231697,5.98,95.64184414468899,379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2741,'2018-01-10T00:01:59.312Z',NULL,110,2,55.526746186906664,3.89,55.06422641055436,381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2742,'2019-07-19T22:28:11.047Z',NULL,194,5,50.38077396807232,2.52,49.81385832929525,383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2743,'2017-08-06T20:52:37.170Z',NULL,90,8,82.07974183693327,4.1,90.25983295736816,383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2744,'2019-11-21T05:12:38.745Z',NULL,147,4,66.64727121216615,3.33,66.0913219028997,383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2745,'2017-02-02T09:11:45.170Z',7.536784156118766,143,2,40.7988669736962,2.86,41.124319065316406,384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2746,'2018-11-14T18:43:28.539Z',NULL,150,3,128.55415037577922,9,142.33469463335337,384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2747,'2018-09-28T01:48:23.313Z',3.0367841561187654,153,6,66.79892314178237,0,66.81611995078971,386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2748,'2017-11-08T08:00:26.142Z',NULL,102,4,31.361435038520785,0,30.140644068609404,386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2749,'2019-03-18T12:49:03.080Z',NULL,95,1,49.81864156655383,0,48.780326887067815,386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2750,'2017-10-09T00:07:49.203Z',NULL,187,7,65.98466722567774,0,57.6746228206834,386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2751,'2020-02-08T17:24:14.686Z',NULL,193,2,50.38077396807232,0,54.81395758568584,386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2752,'2019-06-24T11:30:59.501Z',NULL,163,4,33.56789820016516,0,30.341408816723074,386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2753,'2017-06-10T17:56:41.901Z',7.536784156118766,90,4,82.07974183693327,4.92,99.07079234883618,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2754,'2019-10-16T05:31:29.627Z',NULL,149,4,69.15415037577924,4.15,74.95255689521608,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2755,'2017-01-28T22:59:36.186Z',NULL,157,1,93.26282349158673,5.6,87.1657015156258,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2756,'2018-11-28T17:17:06.073Z',NULL,32,3,107.1448636959614,6.43,105.4870260426822,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2757,'2020-02-12T23:14:59.838Z',3.0367841561187654,79,2,41.616917284159726,2.5,44.17090934301357,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2758,'2017-02-16T21:08:43.721Z',7.536784156118766,36,2,87.29125153827623,5.24,100.13013233507327,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2759,'2017-09-22T21:19:29.744Z',NULL,19,4,42.67116731707548,2.56,45.50997301840488,388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2760,'2020-02-07T18:57:27.773Z',NULL,19,1,64.00675097561322,3.52,70.18808411628585,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2761,'2017-03-03T06:16:06.371Z',NULL,83,1,54.58418555091025,3,60.33407783912414,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2762,'2018-12-10T15:29:01.328Z',1.8785707711449016,79,1,41.616917284159726,2.29,47.75494056024325,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2763,'2017-10-09T23:16:17.204Z',NULL,145,3,40.7988669736962,2.24,37.619668538310584,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2764,'2017-07-29T00:12:59.731Z',1.8785707711449016,179,3,45.549391048892794,2.51,48.22023858787559,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2765,'2020-02-08T22:29:53.927Z',NULL,141,1,126.20312547576883,6.94,142.3217900015709,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2766,'2017-07-03T07:16:53.129Z',NULL,125,3,53.59799471993963,2.95,57.8833892740917,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2767,'2019-11-16T16:37:01.755Z',NULL,38,2,66.06937283839378,3.63,69.45345340673161,389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2768,'2018-10-02T09:18:07.838Z',NULL,18,3,81.90307121097293,4.91,79.40676647787669,390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2769,'2020-01-26T09:36:55.157Z',NULL,40,2,99.66240044231697,5.98,95.98167506699262,390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2770,'2018-06-13T01:15:50.585Z',NULL,14,5,37.648145389078365,2.26,41.7930159511381,390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2771,'2018-12-06T00:51:50.533Z',NULL,113,1,110.47725376186015,6.63,109.4701345180853,390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2772,'2018-08-28T22:15:24.575Z',NULL,44,6,76.35255205175756,4.58,81.55715271945428,390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2773,'2018-06-12T01:48:47.796Z',NULL,192,7,69.18418520579327,4.15,80.45029408807089,390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2774,'2019-04-16T13:30:28.158Z',NULL,167,3,97.70449564120193,2.83,116.11953187670899,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2775,'2017-11-30T12:26:56.889Z',NULL,195,4,73.18718264538155,2.12,74.57522817311732,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2776,'2020-04-10T13:05:29.116Z',NULL,94,4,109.21864156655383,3.17,123.33829992802758,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2777,'2019-01-16T15:07:39.784Z',NULL,31,3,105.65346467128523,3.06,120.60121038243872,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2778,'2018-04-21T06:15:15.251Z',NULL,49,4,131.42865839323724,3.81,124.62024281001621,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2779,'2018-11-15T12:37:31.128Z',NULL,114,4,77.91196471862148,2.26,74.49511427386076,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2780,'2018-01-23T09:16:11.979Z',NULL,147,2,66.64727121216615,1.93,64.2429166696686,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2781,'2018-12-01T18:44:31.115Z',NULL,190,2,128.5841852057933,3.73,126.16400397823445,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2782,'2017-10-12T23:22:11.474Z',NULL,65,7,45.4851315098001,1.32,52.38900890294173,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2783,'2017-08-04T06:38:19.267Z',NULL,84,10,54.58418555091025,1.58,54.86235430182604,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2784,'2020-03-31T09:13:59.291Z',5.433481001661476,96,1,104.82144858590365,3.04,112.82369283397188,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2785,'2019-12-21T03:53:05.427Z',NULL,34,2,74.30391386913199,2.15,73.36787482674251,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2786,'2017-10-04T19:18:37.755Z',5.433481001661476,103,8,31.361435038520785,0.91,28.553085853836762,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2787,'2020-04-09T22:32:02.832Z',NULL,58,4,78.14578007078882,2.27,76.67353838114758,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2788,'2017-12-19T08:59:43.275Z',5.433481001661476,89,2,42.47974183693326,1.23,40.61121532959514,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2789,'2020-01-08T03:35:14.906Z',NULL,142,3,70.34853057210945,2.04,71.25312812650387,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2790,'2018-08-08T04:41:07.702Z',NULL,136,9,105.20402317157343,3.05,105.47965047394159,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2791,'2018-08-03T20:14:11.482Z',5.433481001661476,169,9,59.53172693453274,1.73,69.21360949124123,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2792,'2019-03-27T08:04:14.312Z',NULL,6,1,97.43621265344382,2.83,113.19324461086526,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2793,'2019-09-11T08:11:42.114Z',2.238410597927743,194,4,50.38077396807232,1.46,57.122999497336096,391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2794,'2018-10-19T10:08:58.822Z',NULL,163,3,33.56789820016516,2.18,36.3747565718959,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2795,'2018-05-15T00:03:20.438Z',NULL,74,2,51.12804227386549,3.32,50.511310373949755,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2796,'2017-05-07T03:59:43.746Z',NULL,76,2,42.54947374244324,2.77,49.98082468459164,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2797,'2016-10-24T14:52:31.149Z',NULL,160,3,31.727470408648482,2.06,38.55268583489211,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2798,'2019-07-23T12:32:24.642Z',NULL,170,4,105.07665741496471,6.83,103.16541397588813,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2799,'2018-11-26T07:20:19.200Z',NULL,150,3,128.55415037577922,8.36,134.3951470943017,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2800,'2018-06-08T17:38:32.795Z',NULL,152,4,48.89568729900663,3.18,51.64408542732877,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2801,'2018-04-07T00:43:14.996Z',NULL,165,3,38.30449564120193,2.49,40.367806679100454,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2802,'2019-04-24T07:05:47.932Z',NULL,128,3,75.08016314504417,4.88,84.88195824834936,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2803,'2017-03-28T16:53:28.690Z',2.238410597927743,109,1,79.36660712128732,5.16,94.42002276561553,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2804,'2017-11-18T03:47:42.390Z',6.738410597927743,95,3,33.212427711035886,2.16,31.16880429687065,394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2805,'2018-09-07T22:07:43.778Z',2.4977802440042276,38,4,66.06937283839378,3.96,78.64071268205451,397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2806,'2019-05-17T07:10:28.274Z',NULL,164,5,92.96789820016517,5.58,93.24014031414076,397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2807,'2017-06-04T08:23:13.561Z',NULL,139,6,51.18512212784679,3.07,61.456814129791674,397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2808,'2018-08-23T22:46:11.190Z',NULL,132,4,127.88197029833711,8.79,142.68858081678866,398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2809,'2020-02-23T06:03:05.345Z',NULL,157,1,139.8942352373801,9.62,148.9896853164096,398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2810,'2019-07-25T23:51:45.285Z',6.997780244004227,199,3,115.4300138092855,0,122.3327220628038,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2811,'2018-11-01T16:46:43.839Z',NULL,19,2,64.00675097561322,0,74.0704762875311,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2812,'2018-09-03T14:43:01.247Z',NULL,54,4,62.09360840402396,0,67.9386535656259,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2813,'2020-02-16T03:57:04.082Z',6.997780244004227,50,1,53.64019616819762,0,57.78640141320066,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2814,'2018-12-30T01:33:55.796Z',NULL,50,1,53.64019616819762,0,52.62621012103395,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2815,'2018-11-29T23:58:30.525Z',NULL,129,3,148.1672972165937,0,139.1716330921018,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2816,'2019-03-14T01:51:22.522Z',NULL,68,1,115.24343882309758,0,99.83265504998995,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2817,'2019-05-11T04:50:43.892Z',NULL,139,5,76.77768319177018,0,77.25903388916633,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2818,'2020-03-14T14:19:23.238Z',2.4977802440042276,191,1,128.5841852057933,0,148.3778571873861,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2819,'2016-12-04T01:56:25.412Z',NULL,109,1,79.36660712128732,0,70.51666853137047,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2820,'2019-02-17T19:51:42.520Z',NULL,40,1,99.66240044231697,0,87.21398254905371,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2821,'2019-06-29T00:20:19.414Z',6.236975965707286,56,7,36.37128575934436,0,35.010132181653425,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2822,'2020-04-03T17:25:09.691Z',NULL,160,3,47.59120561297272,0,52.820601190200044,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2823,'2018-12-25T02:26:21.788Z',NULL,40,2,99.66240044231697,0,88.6354813947717,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2824,'2018-08-26T20:30:05.722Z',NULL,21,7,60.57501609456816,0,55.01131392147854,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2825,'2019-06-30T22:37:46.976Z',6.236975965707286,119,7,43.43814329652384,0,46.28360922933321,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2826,'2020-01-27T06:16:52.371Z',NULL,98,2,112.41825444654248,0,107.55218128279861,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2827,'2019-03-08T07:45:12.358Z',NULL,121,1,40.44528328808107,0,41.66041421156878,399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2828,'2019-12-18T13:48:29.368Z',NULL,139,2,76.77768319177018,4.61,93.82711197112535,400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2829,'2018-02-10T13:41:20.770Z',NULL,102,2,47.04215255778118,2.82,46.548299059432246,400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2830,'2018-01-02T08:41:04.978Z',5.4635232465541,29,2,123.57448218067185,7.41,139.2772609428215,400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2831,'2017-05-11T14:21:20.914Z',NULL,18,4,54.60204747398195,3.28,66.88708701983921,400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2832,'2017-01-25T23:26:01.286Z',NULL,51,2,50.433725012700116,3.03,58.529921633983726,400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2833,'2019-08-20T11:14:41.192Z',NULL,149,7,69.15415037577924,3.28,82.18943280467253,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2834,'2018-03-18T22:21:33.336Z',NULL,187,1,98.9770008385166,4.7,115.69766751827933,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2835,'2019-01-29T21:11:07.883Z',NULL,196,2,70.14610686710009,3.33,84.71263820347696,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2836,'2019-12-25T02:05:32.306Z',NULL,99,2,67.83486485383094,3.22,63.54126549446703,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2837,'2019-12-14T20:21:33.836Z',NULL,144,2,61.1983004605443,2.91,64.23871414669595,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2838,'2018-04-08T11:04:50.482Z',NULL,88,3,105.41292031622555,5.01,117.61969657444475,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2839,'2017-12-21T00:41:43.033Z',NULL,150,1,85.70276691718615,4.07,90.14570546603578,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2840,'2018-03-04T11:02:56.754Z',NULL,57,0,122.4223933583994,5.82,139.10888289405378,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2841,'2018-01-22T19:56:59.805Z',NULL,180,1,68.32408657333919,3.25,65.32218303764763,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2842,'2018-04-23T22:29:38.003Z',NULL,190,2,128.5841852057933,6.11,139.8400029509419,401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2843,'2019-04-15T23:15:45.222Z',NULL,26,2,68.12471180754113,4.26,65.96185787638638,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2844,'2016-12-27T14:01:59.373Z',NULL,117,1,36.683234169385244,2.29,43.20797653706455,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2845,'2016-08-14T09:46:22.735Z',NULL,105,3,35.149014295079674,2.2,37.11029876049708,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2846,'2017-08-20T15:15:43.861Z',NULL,136,45,70.13601544771562,4.38,77.35588227184464,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2847,'2019-09-10T08:56:11.986Z',NULL,28,3,68.12471180754113,4.26,64.42888657756639,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2848,'2018-06-21T01:25:59.872Z',NULL,153,2,66.79892314178237,4.17,73.6907729388638,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2849,'2020-03-14T17:05:23.780Z',NULL,27,1,127.52471180754115,7.97,150.8825298190279,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2850,'2020-03-28T12:03:39.840Z',NULL,29,1,123.57448218067185,7.72,125.38687361681099,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2851,'2018-01-25T04:34:43.085Z',0.6331179869720018,159,1,35.53017445377361,2.22,37.009142873481274,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2852,'2016-11-14T20:20:24.557Z',NULL,133,3,45.654646865558064,2.85,50.44993424943899,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2853,'2019-07-16T21:23:42.637Z',NULL,56,5,36.37128575934436,2.27,38.88906414141143,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2854,'2019-08-05T06:14:04.131Z',NULL,29,5,123.57448218067185,7.72,127.51078164670027,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2855,'2018-04-16T11:57:07.114Z',NULL,83,1,81.87627832636537,5.12,84.36420989826458,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2856,'2019-10-31T08:37:43.883Z',NULL,141,3,126.20312547576883,7.89,119.39052596117705,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2857,'2020-02-15T23:22:07.426Z',NULL,133,1,68.4819702983371,4.28,71.5356470832174,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2858,'2018-11-25T02:56:28.222Z',NULL,59,2,89.20214751859149,5.58,88.84132672277241,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2859,'2018-02-18T15:59:01.516Z',NULL,156,1,30.615804149046195,1.91,34.452337261118146,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2860,'2019-03-27T18:42:44.552Z',NULL,184,1,116.09741230191975,7.26,107.55943281772463,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2861,'2019-12-09T07:56:22.213Z',NULL,101,1,139.82488066180403,8.74,168.66184185246155,403); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2862,'2019-11-16T19:51:55.744Z',NULL,65,1,68.22769726470014,4.09,80.98988449187918,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2863,'2018-03-25T20:18:41.826Z',1.2225615196019968,7,1,148.22900526552291,8.89,154.90509075606028,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2864,'2017-02-15T05:29:03.900Z',NULL,164,1,61.978598800110106,3.72,68.11970030014191,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2865,'2017-11-12T14:20:24.753Z',NULL,26,2,45.41647453836076,2.72,55.399937299661296,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2866,'2020-04-07T02:10:42.999Z',NULL,75,2,125.81276373452337,7.55,130.67871212152744,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2867,'2019-08-14T03:28:38.209Z',NULL,18,3,81.90307121097293,4.91,75.31538866942935,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2868,'2019-06-09T18:58:18.928Z',NULL,60,5,29.80214751859149,1.79,28.76978826304209,404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2869,'2019-01-31T23:38:30.346Z',NULL,8,1,98.83823503993958,3.95,113.77617174573511,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2870,'2019-11-25T13:57:12.374Z',NULL,32,1,107.1448636959614,4.29,118.30942527499668,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2871,'2019-08-23T00:54:41.491Z',1.2225615196019968,86,5,92.31436670850246,3.69,111.54331338864382,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2872,'2018-03-05T00:57:51.183Z',NULL,5,1,124.1176465275534,4.96,136.86239299969688,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2873,'2017-09-07T19:27:45.558Z',NULL,171,5,70.05110494330981,2.8,71.98292827442255,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2874,'2020-03-10T05:24:59.354Z',NULL,34,1,74.30391386913199,2.97,72.11884408671929,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2875,'2020-02-16T02:00:37.015Z',NULL,48,2,123.20884248534108,4.93,139.13751416494148,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2876,'2019-11-24T19:53:13.951Z',NULL,95,2,49.81864156655383,1.99,60.375934284323414,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2877,'2019-05-21T10:32:52.927Z',NULL,137,3,67.77247956807186,2.71,61.32897592263356,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2878,'2018-03-18T09:30:01.593Z',NULL,110,1,55.526746186906664,2.22,56.490793400710075,406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2879,'2019-10-09T09:31:53.811Z',NULL,47,7,84.0766209826718,5.25,93.57042130977204,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2880,'2017-12-28T12:52:46.298Z',7.732801194598769,61,2,15.691943673970439,0.98,18.299887744099674,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2881,'2020-03-12T16:25:18.874Z',NULL,71,1,82.80381898788684,5.18,85.07890985239383,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2882,'2017-05-30T15:05:13.107Z',NULL,98,4,74.94550296436165,4.68,75.9792535290298,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2883,'2017-04-14T14:17:08.672Z',NULL,17,2,53.290720311951766,3.33,50.23615183803681,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2884,'2018-10-29T15:50:55.344Z',NULL,151,4,91.61302306843446,5.73,107.18760909062102,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2885,'2017-07-25T05:39:45.863Z',NULL,21,5,40.38334406304544,2.52,48.61452962611301,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2886,'2017-12-30T18:17:16.636Z',7.732801194598769,65,2,45.4851315098001,2.84,48.34600826788604,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2887,'2018-04-04T00:39:22.060Z',NULL,180,2,68.32408657333919,4.27,69.77776669987563,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2888,'2019-07-31T14:57:23.185Z',NULL,92,3,124.89242686579996,7.81,145.35254129351148,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2889,'2019-04-04T22:43:33.027Z',3.5570801756942694,56,3,36.37128575934436,2.27,43.452485326454976,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2890,'2019-05-25T10:07:50.855Z',NULL,6,5,97.43621265344382,6.09,111.74886380541817,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2891,'2017-04-20T18:44:23.816Z',NULL,199,3,76.95334253952366,4.81,84.78827389251919,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2892,'2019-05-05T15:13:47.868Z',8.057080175694269,143,3,61.1983004605443,3.82,62.3093114364118,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2893,'2020-02-08T17:20:29.358Z',NULL,5,1,124.1176465275534,7.76,137.62911089233558,407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2894,'2019-03-07T21:44:00.778Z',NULL,45,1,118.0495173798411,4.72,111.80063018776868,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2895,'2019-01-05T10:41:02.392Z',NULL,195,2,109.78077396807234,4.39,111.73393387589783,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2896,'2016-06-28T01:32:09.451Z',NULL,92,5,83.2616179105333,3.33,76.36567632211212,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2897,'2018-10-25T10:40:42.681Z',NULL,183,4,56.697412301919755,2.27,66.17328740969373,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2898,'2019-12-09T20:48:36.869Z',NULL,190,1,128.5841852057933,5.14,140.00918905842045,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2899,'2019-12-09T22:12:08.131Z',3.5570801756942694,83,2,81.87627832636537,3.28,94.7067599033416,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2900,'2019-06-21T09:21:12.435Z',NULL,169,63,59.53172693453274,2.38,54.68257841077061,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2901,'2018-10-22T18:56:57.400Z',NULL,128,6,75.08016314504417,3,81.57948746329257,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2902,'2019-01-13T04:36:06.284Z',NULL,98,3,112.41825444654248,4.5,126.43401056141528,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2903,'2018-11-02T08:40:48.306Z',NULL,63,3,133.5202262591817,5.34,145.51681032099953,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2904,'2018-10-18T22:06:38.540Z',NULL,91,6,65.09432810381134,2.6,70.167531882247,409); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2905,'2020-01-19T05:17:45.765Z',NULL,8,2,98.83823503993958,4.69,113.19807269815875,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2906,'2020-02-14T13:45:26.118Z',NULL,162,1,33.56789820016516,1.59,34.12099011753159,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2907,'2018-12-01T03:34:50.422Z',NULL,108,2,50.094887884945365,2.38,47.42028262427181,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2908,'2019-11-05T04:22:08.514Z',8.688129531669428,112,2,41.329386510090345,1.96,40.15770075743934,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2909,'2017-08-15T08:08:41.000Z',NULL,184,8,77.3982748679465,3.68,73.2874737920548,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2910,'2018-05-29T21:48:43.163Z',NULL,13,6,112.62925391105566,5.35,114.7469325008982,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2911,'2019-02-13T12:05:45.214Z',NULL,41,2,63.50890855689462,3.02,66.73763803164728,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2912,'2018-09-27T12:43:52.566Z',NULL,8,5,98.83823503993958,4.69,91.59303563806822,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2913,'2019-04-07T17:24:51.021Z',NULL,8,24,98.83823503993958,4.69,100.97614799863673,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2914,'2020-03-29T23:33:15.342Z',NULL,35,1,71.53687730741436,3.4,80.86224021839654,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2915,'2019-01-08T02:18:58.766Z',NULL,111,2,55.526746186906664,2.64,66.43198121211245,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2916,'2018-11-12T17:15:23.027Z',NULL,80,2,54.91325681036414,2.61,62.20051573345306,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2917,'2019-11-08T11:58:46.680Z',NULL,152,2,48.89568729900663,2.32,56.712694221789086,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2918,'2018-03-26T15:45:34.964Z',NULL,134,1,42.49233549998661,2.02,51.09763021105106,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2919,'2019-10-19T19:13:13.754Z',NULL,104,3,106.44215255778118,5.06,130.0266607529237,411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2920,'2019-06-04T07:54:59.696Z',NULL,163,2,33.56789820016516,2.52,41.58460293102793,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2921,'2018-06-10T15:07:13.747Z',NULL,103,4,47.04215255778118,3.53,52.16900352658669,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2922,'2018-09-25T11:22:19.538Z',NULL,134,4,42.49233549998661,3.19,43.573716192714166,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2923,'2018-04-11T06:21:20.600Z',NULL,56,2,36.37128575934436,2.73,44.944563849207796,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2924,'2016-09-27T11:40:18.469Z',4.8987408408579665,117,3,36.683234169385244,2.75,34.35361041948319,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2925,'2020-02-15T19:42:57.262Z',NULL,191,1,128.5841852057933,9.64,153.95914996380887,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2926,'2017-08-11T07:48:45.789Z',NULL,178,4,78.21975500247076,5.87,79.59989355918736,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2927,'2019-07-17T09:29:43.364Z',NULL,137,17,67.77247956807186,5.08,64.6751236168808,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2928,'2019-02-06T15:25:37.895Z',NULL,31,1,105.65346467128523,7.92,108.4053335535487,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2929,'2019-11-23T19:31:33.787Z',NULL,106,2,52.723521442619514,3.95,62.42313449929174,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2930,'2019-10-27T03:00:50.918Z',NULL,197,4,70.14610686710009,5.26,72.79230982939687,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2931,'2018-09-08T05:43:34.399Z',0.3987408408579669,104,4,106.44215255778118,7.98,119.20687958507128,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2932,'2018-06-17T12:57:18.284Z',NULL,137,4,67.77247956807186,5.08,68.670700496233,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2933,'2018-01-26T16:15:13.494Z',0.3987408408579669,95,12,49.81864156655383,3.74,54.57374389536577,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2934,'2019-05-13T02:36:02.144Z',NULL,75,3,125.81276373452337,9.44,142.05568221884002,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2935,'2017-03-05T11:34:35.521Z',NULL,125,0,53.59799471993963,4.02,66.70864934398337,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2936,'2018-09-14T01:16:28.601Z',NULL,10,2,47.6793282102869,3.58,44.21881213370794,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2937,'2019-08-20T10:50:02.847Z',NULL,137,4,67.77247956807186,5.08,83.46095202550123,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2938,'2020-04-03T15:17:33.255Z',NULL,48,3,123.20884248534108,9.24,122.62378219498302,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2939,'2017-03-19T14:11:13.068Z',6.845173949569397,17,1,53.290720311951766,4,57.5985632912688,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2940,'2019-09-14T12:03:09.402Z',NULL,179,4,68.32408657333919,5.12,75.00573444599334,412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2941,'2018-02-09T12:57:35.440Z',NULL,107,2,50.094887884945365,1.45,44.836264376507785,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2942,'2019-01-15T12:25:59.346Z',NULL,15,2,37.648145389078365,1.09,39.785048012817754,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2943,'2019-04-24T00:38:36.736Z',6.845173949569397,61,2,23.537915510955656,0.68,24.29152290034582,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2944,'2019-09-06T23:37:32.933Z',NULL,157,3,139.8942352373801,4.06,131.22642037626846,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2945,'2020-01-17T22:49:31.821Z',NULL,71,2,82.80381898788684,2.4,92.29567742229835,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2946,'2017-12-03T06:24:58.670Z',NULL,199,2,76.95334253952366,2.23,78.12980534846774,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2947,'2017-03-18T02:06:01.062Z',NULL,105,1,35.149014295079674,1.02,38.86792900400411,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2948,'2018-10-12T05:15:17.159Z',NULL,1,6,44.19489169601981,1.28,39.30832066668318,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2949,'2018-12-25T16:33:34.993Z',NULL,141,2,126.20312547576883,3.66,121.51304469178362,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2950,'2017-02-26T20:33:36.509Z',2.3451739495693973,189,1,62.18492169821006,1.8,62.20147031647567,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2951,'2018-12-20T19:29:55.532Z',NULL,40,2,99.66240044231697,2.89,117.73696476698267,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2952,'2018-09-24T14:06:07.637Z',NULL,155,4,43.77574310182776,1.27,50.42777542534436,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2953,'2018-09-29T18:03:11.401Z',NULL,95,4,49.81864156655383,1.44,56.31574419484899,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2954,'2020-02-06T23:16:09.634Z',NULL,197,2,70.14610686710009,2.03,62.81945367826348,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2955,'2019-01-20T16:28:59.621Z',NULL,190,2,128.5841852057933,3.73,119.41739585878514,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2956,'2018-01-16T23:01:34.405Z',0.6739448237810985,19,2,64.00675097561322,1.86,62.6901201366744,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2957,'2020-04-04T05:12:56.628Z',NULL,139,2,76.77768319177018,2.23,81.59649751604817,413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2958,'2016-06-12T01:59:46.603Z',NULL,45,2,78.6996782532274,3.15,72.31572760083591,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2959,'2017-08-16T03:23:20.539Z',NULL,193,3,33.587182645381546,1.34,36.16270868529502,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2960,'2018-01-17T10:11:49.311Z',NULL,53,1,44.27587240151534,1.77,45.207612787423436,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2961,'2018-02-20T05:30:06.673Z',NULL,94,1,109.21864156655383,4.37,97.65451221375433,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2962,'2018-07-08T09:09:01.149Z',NULL,164,2,92.96789820016517,3.72,105.90379140644305,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2963,'2017-01-15T19:56:17.920Z',NULL,163,1,22.378598800110105,0.9,22.677434635738216,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2964,'2019-03-03T01:47:49.816Z',NULL,146,0,126.04727121216614,5.04,123.01119076601468,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2965,'2019-08-23T18:05:31.084Z',NULL,99,3,67.83486485383094,2.71,81.03637642906398,414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2966,'2020-02-04T04:45:25.737Z',NULL,13,1,112.62925391105566,7.04,137.23406441060152,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2967,'2018-06-13T19:17:00.505Z',NULL,98,6,112.41825444654248,7.03,120.25572886922563,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2968,'2017-11-14T05:39:07.917Z',5.173944823781099,101,2,93.21658710786936,5.83,103.44214489423621,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2969,'2018-07-31T09:04:20.423Z',NULL,103,3,47.04215255778118,2.94,44.05312475241737,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2970,'2018-12-20T12:56:40.426Z',NULL,31,1,105.65346467128523,6.6,129.0303303815945,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2971,'2018-07-31T13:45:20.218Z',NULL,89,3,63.719612755399886,3.98,76.28507365946733,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2972,'2018-12-27T14:07:35.736Z',NULL,195,2,109.78077396807234,6.86,104.43095966805701,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2973,'2020-04-11T18:01:28.708Z',NULL,71,3,82.80381898788684,5.18,86.77097106054798,417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2974,'2019-02-27T02:54:20.932Z',NULL,87,1,117.25536340498041,7.33,124.92973717374949,418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2975,'2018-11-03T16:23:28.507Z',NULL,135,2,45.80402317157342,2.86,41.73451401380074,418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2976,'2018-02-02T06:56:48.759Z',NULL,93,2,49.81864156655383,3.11,49.06923677801198,418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2977,'2019-03-08T14:14:27.056Z',NULL,13,1,112.62925391105566,7.04,139.87943913839524,418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2978,'2019-06-13T11:32:40.075Z',NULL,47,45,84.0766209826718,5.25,85.93345613048649,418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2979,'2018-05-01T21:23:12.132Z',NULL,92,3,124.89242686579996,7.81,148.43316584260955,418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2980,'2019-06-18T05:52:09.877Z',NULL,15,5,37.648145389078365,2.26,40.949269297824706,419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2981,'2018-05-03T08:57:10.379Z',NULL,119,3,43.43814329652384,2.61,53.25027421120228,419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2982,'2017-09-22T23:37:59.777Z',NULL,194,4,33.587182645381546,2.02,39.11274480374702,419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2983,'2018-12-13T08:45:23.626Z',NULL,124,1,110.93145648834248,5.55,130.95321130129295,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2984,'2018-04-03T04:41:15.316Z',NULL,79,3,41.616917284159726,2.08,50.92876776703321,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2985,'2019-08-14T21:11:03.938Z',NULL,198,5,70.14610686710009,3.51,85.15766365458657,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2986,'2018-08-23T22:07:48.622Z',NULL,141,3,126.20312547576883,6.31,146.25259999926968,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2987,'2019-11-05T22:26:41.898Z',NULL,139,1,76.77768319177018,3.84,94.06087237539151,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2988,'2019-07-12T00:09:59.354Z',NULL,90,4,123.1196127553999,6.16,122.22045506748276,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2989,'2019-07-13T00:51:41.995Z',NULL,104,4,106.44215255778118,5.32,103.73485083577337,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2990,'2018-12-16T22:02:15.211Z',NULL,33,2,47.7448636959614,2.39,57.0327649520029,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2991,'2019-06-14T17:05:38.386Z',NULL,181,8,143.88940370476112,7.19,140.73610654402498,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2992,'2017-04-30T01:41:34.669Z',NULL,127,3,89.65344209669612,4.48,110.31324324798959,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2993,'2018-12-23T03:53:39.367Z',NULL,113,2,110.47725376186015,5.52,113.12294163620386,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2994,'2017-12-18T13:32:49.765Z',NULL,130,2,50.01715912876758,2.5,50.10234065099232,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2995,'2018-06-24T15:21:50.227Z',NULL,10,5,47.6793282102869,2.38,52.59135214195156,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2996,'2019-12-21T16:52:45.188Z',NULL,139,1,76.77768319177018,3.84,79.63720452151588,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2997,'2019-09-20T13:20:52.788Z',NULL,141,4,126.20312547576883,6.31,151.48720193159778,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2998,'2018-01-20T04:33:53.657Z',NULL,44,1,76.35255205175756,3.82,88.72722649617559,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (2999,'2020-01-20T07:04:13.562Z',NULL,185,2,39.57700083851661,1.98,36.441178212829726,420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3000,'2019-07-30T00:01:40.596Z',NULL,59,6,89.20214751859149,4.01,81.71456480850681,421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3001,'2020-01-17T16:02:28.441Z',NULL,106,2,52.723521442619514,2.37,53.698536770279404,421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3002,'2018-09-22T09:06:58.541Z',NULL,165,4,38.30449564120193,1.72,34.34320131240663,421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3003,'2018-01-13T17:15:09.003Z',NULL,135,1,45.80402317157342,2.06,43.16682213970988,421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3004,'2019-10-18T13:35:47.258Z',NULL,146,6,126.04727121216614,7.56,147.4935792641315,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3005,'2020-01-05T06:34:33.276Z',NULL,137,2,67.77247956807186,4.07,71.56303613291148,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3006,'2017-12-13T14:56:04.105Z',NULL,134,2,28.328223666657742,1.7,31.213173933641926,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3007,'2019-04-26T22:35:05.967Z',NULL,126,3,125.24398120308456,7.51,146.3037982557172,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3008,'2019-10-02T22:37:23.863Z',NULL,40,6,99.66240044231697,5.98,109.02054395825492,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3009,'2017-11-15T18:17:44.923Z',NULL,127,3,89.65344209669612,5.38,86.3210525075964,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3010,'2020-03-23T02:24:01.478Z',NULL,106,1,52.723521442619514,3.16,57.58240942341564,423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3011,'2019-06-14T10:16:08.244Z',NULL,26,4,68.12471180754113,2.88,61.04584186977077,424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3012,'2019-11-09T22:07:12.925Z',NULL,40,3,99.66240044231697,4.21,94.59100677238143,424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3013,'2017-04-12T01:54:58.950Z',NULL,130,3,50.01715912876758,2.11,51.02961557171247,424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3014,'2017-09-24T02:28:14.860Z',NULL,71,5,55.202545991924566,2.33,57.500339937467345,424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3015,'2018-04-20T02:48:19.274Z',NULL,159,4,35.53017445377361,1.5,35.55848180260705,424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3016,'2020-02-15T05:39:58.187Z',NULL,97,2,112.41825444654248,7.87,118.85150867490647,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3017,'2019-03-08T02:14:33.668Z',NULL,101,1,139.82488066180403,9.79,145.08223347084262,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3018,'2018-12-18T23:59:38.643Z',NULL,146,2,126.04727121216614,8.82,154.7316690043498,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3019,'2016-11-17T19:13:15.568Z',NULL,156,3,20.41053609936413,1.43,21.105625608046225,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3020,'2017-05-15T00:17:31.563Z',NULL,33,4,31.829909130640935,2.23,36.79671829607464,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3021,'2018-03-14T08:59:42.028Z',NULL,84,1,81.87627832636537,5.73,98.93765153328087,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3022,'2019-04-26T09:19:09.758Z',NULL,138,3,113.95078476718615,7.98,139.7147079608052,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3023,'2019-12-03T03:41:08.267Z',NULL,104,2,106.44215255778118,7.45,125.89396686520948,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3024,'2019-12-26T23:22:03.420Z',7.8804595858115345,73,2,71.6287722595695,5.01,66.34520365464883,425); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3025,'2020-03-01T16:44:38.282Z',NULL,83,1,81.87627832636537,3.85,100.48633282761352,432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3026,'2019-07-31T08:20:29.273Z',NULL,166,6,38.30449564120193,1.8,34.5966781544664,432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3027,'2020-03-15T16:26:41.681Z',7.142955902868914,195,1,109.78077396807234,5.16,98.36173355436934,432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3028,'2018-09-29T12:03:28.813Z',NULL,167,6,97.70449564120193,4.59,119.99714713436505,432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3029,'2018-04-18T19:48:55.562Z',NULL,173,3,122.3651993029456,5.75,128.50005574999275,432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3030,'2018-03-15T11:28:16.701Z',NULL,24,1,112.30643674729413,6.74,101.86527911180079,434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3031,'2018-10-15T02:46:05.675Z',NULL,100,3,67.83486485383094,2.87,83.09578044155508,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3032,'2019-01-20T22:46:52.868Z',NULL,41,1,63.50890855689462,2.68,70.10367491908521,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3033,'2018-01-29T23:42:28.787Z',7.142955902868914,169,1,59.53172693453274,2.52,66.71072545051435,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3034,'2018-04-11T16:45:26.891Z',NULL,115,3,77.91196471862148,3.29,74.96891129533148,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3035,'2019-04-19T12:22:01.161Z',NULL,180,3,68.32408657333919,2.89,80.03487752653551,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3036,'2017-05-01T07:00:05.816Z',NULL,43,5,50.90170136783837,2.15,51.20643225465532,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3037,'2019-10-11T10:38:13.279Z',NULL,193,5,50.38077396807232,2.13,46.62556782273582,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3038,'2019-04-20T10:54:31.225Z',NULL,108,3,50.094887884945365,2.12,58.235670332629724,435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3039,'2019-05-20T12:37:35.105Z',NULL,57,5,122.4223933583994,7.35,139.48449079413615,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3040,'2017-07-10T21:28:16.418Z',NULL,6,6,64.95747510229587,3.9,69.20650966814132,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3041,'2020-02-20T19:07:30.788Z',NULL,179,2,68.32408657333919,4.1,73.03295968746608,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3042,'2018-08-31T16:28:41.362Z',NULL,86,6,92.31436670850246,5.54,104.22323488797693,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3043,'2019-09-26T11:21:36.816Z',NULL,22,4,32.136779940663494,1.93,31.639000658093373,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3044,'2016-07-29T18:41:00.106Z',NULL,45,6,78.6996782532274,4.72,73.48928579068934,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3045,'2019-08-19T04:37:21.612Z',NULL,119,8,43.43814329652384,2.61,42.73149945504575,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3046,'2020-01-26T13:56:53.420Z',NULL,46,2,118.0495173798411,7.08,116.47097805935569,436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3047,'2019-12-30T09:53:23.611Z',NULL,188,2,33.87738254731509,0,38.211676103050415,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3048,'2018-12-20T15:27:16.421Z',NULL,33,2,47.7448636959614,0,42.98556002584818,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3049,'2019-05-29T06:46:44.465Z',NULL,153,3,66.79892314178237,0,57.07228631807254,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3050,'2017-06-29T11:33:16.315Z',NULL,61,4,15.691943673970439,0,14.932776846140712,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3051,'2018-09-09T15:17:49.329Z',NULL,98,3,112.41825444654248,0,108.95742746536243,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3052,'2018-07-20T01:27:08.473Z',2.3869573482346707,111,4,55.526746186906664,0,56.7526574680253,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3053,'2018-07-05T09:46:24.678Z',NULL,13,4,112.62925391105566,0,114.43970112660101,437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3054,'2020-03-26T20:54:56.491Z',NULL,140,1,66.80312547576881,3.34,82.4216819546405,439); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3055,'2020-01-12T18:08:34.108Z',NULL,191,2,128.5841852057933,6.43,122.09852988548666,439); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3056,'2019-04-02T05:24:46.510Z',NULL,73,2,71.6287722595695,3.58,82.0831412445144,439); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3057,'2019-02-11T19:01:05.112Z',NULL,150,2,128.55415037577922,6.43,123.30889166495419,439); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3058,'2020-04-05T21:39:51.919Z',NULL,160,4,47.59120561297272,2.38,58.756086182692165,439); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3059,'2019-12-28T07:59:43.646Z',NULL,54,3,62.09360840402396,3.1,68.55505933820163,439); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3060,'2019-02-26T05:58:15.638Z',NULL,3,2,53.08311732230858,3.65,55.23722672791138,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3061,'2017-04-10T04:40:22.584Z',NULL,1,4,29.463261130679875,2.03,27.43540588137192,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3062,'2019-03-25T16:25:47.578Z',NULL,27,1,127.52471180754115,8.77,127.85665647817295,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3063,'2019-08-13T22:06:45.492Z',NULL,102,7,47.04215255778118,3.23,59.21106433149558,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3064,'2018-01-16T22:58:10.238Z',9.819927482131073,117,2,55.024851254077866,3.78,59.513048761877016,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3065,'2019-09-06T15:40:52.248Z',NULL,55,7,95.77128575934437,6.58,109.177569069989,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3066,'2017-01-25T23:37:58.264Z',5.319927482131073,128,2,50.053442096696116,3.44,55.665905684413595,440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3067,'2018-01-25T10:17:56.666Z',NULL,184,2,116.09741230191975,7.98,114.12431833477086,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3068,'2017-05-17T11:45:23.448Z',NULL,84,5,54.58418555091025,3.75,61.52988419684728,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3069,'2019-07-18T11:44:35.596Z',NULL,122,3,99.84528328808108,6.86,116.37205536573367,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3070,'2020-04-07T04:03:34.637Z',NULL,47,3,84.0766209826718,5.78,88.72597507629719,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3071,'2019-01-04T07:25:36.976Z',NULL,29,2,123.57448218067185,8.5,116.39346014607348,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3072,'2018-11-02T17:09:51.866Z',NULL,27,3,127.52471180754115,8.77,133.15237123948273,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3073,'2020-01-12T03:26:57.667Z',2.595172261807873,188,2,33.87738254731509,2.33,36.12509257002218,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3074,'2018-03-21T13:36:02.994Z',NULL,151,1,91.61302306843446,6.3,96.36380648875894,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3075,'2019-12-09T01:21:18.833Z',NULL,75,2,125.81276373452337,8.65,156.62043579000613,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3076,'2019-11-05T12:04:17.779Z',NULL,123,3,110.93145648834248,7.63,102.30013815091446,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3077,'2019-07-20T00:46:01.699Z',NULL,179,4,68.32408657333919,4.7,83.9294783852963,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3078,'2019-07-07T01:22:49.790Z',NULL,160,3,47.59120561297272,3.27,57.1301296250814,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3079,'2018-09-20T05:23:29.827Z',NULL,196,3,70.14610686710009,4.82,63.98655798814028,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3080,'2018-05-10T14:22:28.263Z',NULL,145,3,61.1983004605443,4.21,71.95317310907964,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3081,'2019-12-30T00:54:53.455Z',NULL,13,1,112.62925391105566,7.74,131.97435903899589,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3082,'2018-05-14T14:39:43.877Z',NULL,157,3,139.8942352373801,9.62,151.1766028612967,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3083,'2019-08-13T01:29:04.511Z',NULL,116,4,114.42485125407785,7.87,127.43612454077973,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3084,'2019-11-04T11:04:51.595Z',NULL,131,2,113.11722203337729,7.78,138.15447484540965,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3085,'2018-08-13T02:06:09.269Z',NULL,128,4,75.08016314504417,5.16,93.45364040673518,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3086,'2020-02-28T06:56:57.821Z',NULL,18,1,81.90307121097293,5.63,91.10781872935134,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3087,'2019-05-13T10:47:37.470Z',NULL,39,3,114.58158180283459,7.88,143.12648585845346,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3088,'2020-04-02T05:11:06.455Z',NULL,35,3,71.53687730741436,4.92,84.99163995293415,441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3089,'2017-12-21T14:13:12.450Z',NULL,140,2,44.53541698384588,2.67,52.095850324936535,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3090,'2018-06-15T13:36:26.322Z',NULL,49,4,131.42865839323724,7.89,123.02371251482765,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3091,'2019-05-06T08:45:19.054Z',NULL,123,4,110.93145648834248,6.66,107.59327707017513,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3092,'2019-11-10T15:21:39.887Z',NULL,188,3,33.87738254731509,2.03,37.80419914878546,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3093,'2018-07-23T14:37:41.020Z',NULL,94,4,109.21864156655383,6.55,110.63978614482339,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3094,'2019-02-23T23:04:27.032Z',2.546587833975572,25,1,68.62263967182464,4.12,78.299987890683,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3095,'2017-12-12T01:18:46.769Z',NULL,192,2,46.122790137195516,2.77,52.569683602620316,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3096,'2019-08-24T15:00:50.119Z',NULL,2,8,105.11984419607644,6.31,117.07143514453776,442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3097,'2019-10-30T16:03:05.783Z',NULL,98,6,112.41825444654248,5.62,138.31675292601264,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3098,'2020-01-31T07:24:13.974Z',NULL,166,2,38.30449564120193,1.92,43.86812764492574,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3099,'2017-04-05T19:22:56.026Z',NULL,57,3,81.6149289055996,4.08,94.37829048583377,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3100,'2018-07-31T05:24:45.426Z',NULL,8,4,98.83823503993958,4.94,102.35698577852662,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3101,'2017-11-27T07:37:53.984Z',NULL,154,3,54.58353035541507,2.73,63.64148985978962,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3102,'2016-10-26T20:52:59.319Z',NULL,85,4,36.6006982295235,1.83,33.544686392414235,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3103,'2017-10-13T02:08:33.631Z',NULL,49,3,87.61910559549149,4.38,84.75696531865911,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3104,'2017-04-21T17:59:14.085Z',NULL,5,2,82.7450976850356,4.14,78.75108020828675,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3105,'2018-02-12T23:15:58.617Z',NULL,153,2,66.79892314178237,3.34,65.21116083218675,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3106,'2016-10-05T18:59:46.081Z',NULL,12,4,77.34285054412217,3.87,84.72584760948115,443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3107,'2018-07-30T04:29:46.653Z',NULL,149,2,69.15415037577924,4.5,78.26534456104906,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3108,'2017-01-27T12:55:57.024Z',NULL,117,1,36.683234169385244,2.38,33.79981093757406,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3109,'2017-11-12T02:36:35.776Z',NULL,190,2,85.72279013719552,5.57,92.58697485655432,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3110,'2017-05-13T00:22:35.595Z',NULL,173,3,81.57679953529707,5.3,87.23572681055651,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3111,'2017-08-24T04:45:53.966Z',NULL,193,5,33.587182645381546,2.18,31.227647966087318,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3112,'2018-05-03T21:31:36.944Z',NULL,91,3,65.09432810381134,4.23,67.52576519414245,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3113,'2018-11-09T14:22:40.189Z',NULL,58,2,78.14578007078882,5.08,90.5590946983012,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3114,'2019-06-12T05:06:48.427Z',NULL,96,5,104.82144858590365,6.81,98.09039804136181,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3115,'2017-11-28T22:32:25.447Z',NULL,132,2,85.25464686555807,5.54,95.37969965407433,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3116,'2017-08-02T10:12:02.458Z',NULL,133,3,45.654646865558064,2.97,46.971628803121526,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3117,'2017-02-04T19:51:09.042Z',NULL,61,1,15.691943673970439,1.02,17.764807759156092,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3118,'2020-01-01T22:38:47.174Z',NULL,13,1,112.62925391105566,7.32,138.38980476999257,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3119,'2018-10-18T09:14:24.486Z',NULL,27,5,127.52471180754115,8.29,159.78156971985115,444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3120,'2017-10-20T18:26:06.840Z',NULL,109,7,79.36660712128732,4.56,96.60790851358573,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3121,'2016-10-01T20:30:47.047Z',NULL,27,7,85.01647453836077,4.89,89.15017891171439,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3122,'2020-03-26T07:24:15.722Z',NULL,88,1,105.41292031622555,6.06,96.44776204926771,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3123,'2017-09-18T13:12:27.296Z',NULL,94,5,72.81242771103588,4.19,86.87510702804958,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3124,'2016-06-17T02:53:36.788Z',NULL,9,6,58.31312098526137,3.35,56.21573414841673,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3125,'2019-02-05T18:55:56.346Z',NULL,8,1,98.83823503993958,5.68,90.35332654613312,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3126,'2017-12-05T07:52:23.506Z',NULL,151,2,61.07534871228964,3.51,68.09392114392087,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3127,'2019-03-22T05:42:02.132Z',NULL,96,1,104.82144858590365,6.03,99.7370869491673,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3128,'2017-09-06T00:55:31.657Z',NULL,198,4,46.76407124473339,2.69,55.156893224306764,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3129,'2017-02-15T04:30:41.600Z',NULL,180,1,45.549391048892794,2.62,55.05842601187829,446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3130,'2017-05-04T12:00:29.703Z',NULL,72,4,94.80254599192457,3.79,98.88743199420377,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3131,'2020-01-16T22:13:40.320Z',NULL,169,3,59.53172693453274,2.38,70.51084533763998,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3132,'2018-11-26T05:27:16.338Z',NULL,116,4,114.42485125407785,4.58,135.5973308964589,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3133,'2019-07-22T23:04:06.354Z',NULL,36,5,130.93687730741433,5.24,159.40337952784606,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3134,'2019-02-10T11:00:46.606Z',NULL,32,1,107.1448636959614,4.29,102.52612142243427,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3135,'2016-10-19T21:53:13.571Z',NULL,6,6,64.95747510229587,2.6,76.65042045489541,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3136,'2019-05-01T03:55:53.081Z',6.802695182120816,163,4,33.56789820016516,1.34,38.72740457531085,447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3137,'2019-02-24T17:46:30.167Z',NULL,68,1,115.24343882309758,6.91,114.63353398867164,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3138,'2016-09-20T17:22:47.560Z',NULL,146,4,84.03151414144409,5.04,79.43034701168752,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3139,'2019-02-27T06:39:12.319Z',NULL,131,2,113.11722203337729,6.79,120.14327853900268,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3140,'2019-08-27T06:02:14.777Z',NULL,28,6,68.12471180754113,4.09,68.49279604897595,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3141,'2017-11-02T03:52:36.773Z',NULL,54,2,41.395738936015974,2.48,49.439518996169284,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3142,'2017-08-15T11:55:34.693Z',NULL,101,4,93.21658710786936,5.59,112.0122500329513,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3143,'2019-12-20T20:35:44.068Z',NULL,193,2,50.38077396807232,3.02,58.00106901052179,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3144,'2018-11-01T05:51:14.798Z',NULL,127,3,134.48016314504417,8.07,160.26932259026842,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3145,'2019-03-08T15:27:12.423Z',NULL,45,1,118.0495173798411,7.08,147.0244949036259,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3146,'2017-11-27T22:33:03.053Z',NULL,107,3,33.39659192329691,2,36.230863397227075,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3147,'2018-11-16T21:36:55.156Z',NULL,107,2,50.094887884945365,3.01,59.714359144282035,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3148,'2019-01-06T23:35:30.836Z',NULL,182,1,84.48940370476112,5.07,85.30247847243244,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3149,'2017-08-11T03:34:57.784Z',NULL,193,4,33.587182645381546,2.02,40.150625819627294,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3150,'2018-10-27T23:38:57.465Z',NULL,135,3,45.80402317157342,2.75,49.97028379779068,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3151,'2018-01-22T21:47:30.549Z',6.802695182120816,96,2,104.82144858590365,6.29,94.62751323279062,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3152,'2019-10-11T23:46:33.032Z',NULL,128,5,75.08016314504417,4.5,80.77760196702113,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3153,'2019-10-24T05:09:07.310Z',NULL,78,5,41.616917284159726,2.5,44.64697913400504,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3154,'2019-12-20T13:34:16.377Z',NULL,48,2,123.20884248534108,7.39,137.4676217726115,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3155,'2017-10-22T21:20:53.269Z',NULL,178,6,78.21975500247076,4.69,92.25498288902143,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3156,'2019-10-31T12:51:47.203Z',NULL,111,6,55.526746186906664,3.33,50.12593960156444,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3157,'2018-01-28T14:06:53.469Z',NULL,122,2,99.84528328808108,5.99,105.99991862848073,448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3158,'2019-09-24T14:28:05.227Z',NULL,188,51,33.87738254731509,2.12,38.44612268753674,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3159,'2018-02-14T22:10:55.390Z',NULL,90,13,123.1196127553999,7.69,150.5755151183264,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3160,'2017-09-23T06:13:43.960Z',NULL,68,4,76.82895921539838,4.8,69.55522183207813,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3161,'2020-01-08T16:41:23.068Z',NULL,118,2,57.627613096978735,3.6,71.85071139602721,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3162,'2019-01-01T23:31:34.289Z',NULL,79,2,41.616917284159726,2.6,45.721275909440074,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3163,'2018-12-21T05:42:59.179Z',NULL,18,2,81.90307121097293,5.12,94.43844724315362,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3164,'2017-03-10T00:37:45.194Z',6.0558887073065515,107,1,33.39659192329691,2.09,30.936020665520925,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3165,'2020-03-09T02:08:23.586Z',6.0558887073065515,130,1,75.02573869315137,4.69,79.92860126442883,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3166,'2018-09-10T05:46:57.924Z',NULL,148,4,138.9817182254566,8.69,157.71687770583236,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3167,'2018-03-28T23:02:37.713Z',NULL,5,0,124.1176465275534,7.76,126.37604864999099,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3168,'2019-07-09T12:56:08.751Z',NULL,78,2,41.616917284159726,2.6,38.90995705425324,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3169,'2017-02-02T01:10:18.815Z',NULL,180,1,45.549391048892794,2.85,41.11500950060187,449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3170,'2017-03-19T19:56:03.308Z',NULL,20,1,24.884330833643833,1,26.400156126300594,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3171,'2018-06-11T23:28:20.605Z',NULL,120,7,83.5020135028928,3.34,81.15534201523134,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3172,'2019-01-21T00:51:29.669Z',NULL,155,2,43.77574310182776,1.75,42.63128829424584,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3173,'2019-09-20T20:36:19.393Z',NULL,104,5,106.44215255778118,4.26,126.8931585701092,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3174,'2019-08-02T23:04:18.083Z',NULL,44,5,76.35255205175756,3.05,75.36283520920526,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3175,'2017-08-14T00:53:40.862Z',NULL,82,7,40.59697158687298,1.62,36.013720434166686,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3176,'2017-09-30T03:38:26.565Z',7.500248177622162,39,5,76.38772120188973,3.06,68.83659936324513,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3177,'2017-04-15T09:34:16.339Z',NULL,56,2,24.24752383956291,0.97,24.67335971725519,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3178,'2018-05-31T03:18:30.820Z',NULL,197,3,70.14610686710009,2.81,84.95472280566943,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3179,'2016-10-18T16:01:43.899Z',NULL,193,4,33.587182645381546,1.34,35.19488700650309,451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3180,'2019-11-24T08:53:17.386Z',7.500248177622162,12,2,116.01427581618326,3.36,130.40447327040744,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3181,'2019-09-21T21:50:23.621Z',NULL,119,3,43.43814329652384,1.26,38.613735233367734,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3182,'2017-08-03T13:00:31.601Z',NULL,89,5,42.47974183693326,1.23,51.61386080612008,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3183,'2020-02-14T20:30:11.041Z',7.500248177622162,39,1,114.58158180283459,3.32,137.0579053566391,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3184,'2018-05-09T19:11:55.686Z',NULL,185,4,39.57700083851661,1.15,44.003530795119715,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3185,'2019-03-10T00:52:32.076Z',NULL,5,1,124.1176465275534,3.6,145.1433115098227,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3186,'2020-03-29T18:47:24.367Z',NULL,54,1,62.09360840402396,1.8,56.510740516522375,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3187,'2017-11-14T19:33:19.924Z',NULL,152,3,32.59712486600442,0.95,34.77305044296281,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3188,'2019-06-23T16:42:25.207Z',NULL,69,4,73.38772304360626,2.13,82.14757782815553,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3189,'2018-08-30T03:32:46.566Z',NULL,41,7,63.50890855689462,1.84,70.36134700158308,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3190,'2017-09-08T20:47:18.991Z',NULL,133,6,45.654646865558064,1.32,54.65184487543509,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3191,'2019-05-30T07:26:31.856Z',NULL,97,4,112.41825444654248,3.26,134.7726965353133,452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3192,'2019-05-14T03:17:57.942Z',NULL,147,4,66.64727121216615,0,76.30274342421762,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3193,'2019-04-20T13:11:46.771Z',NULL,197,3,70.14610686710009,0,63.632774209319365,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3194,'2017-01-20T05:00:26.119Z',6.696136038519888,183,2,37.7982748679465,0,42.472559894149285,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3195,'2019-07-10T09:43:48.601Z',NULL,14,4,37.648145389078365,0,36.93745545155786,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3196,'2018-03-29T01:40:59.306Z',NULL,50,1,53.64019616819762,0,60.782827711837065,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3197,'2018-11-25T03:01:19.945Z',NULL,51,3,75.65058751905018,0,78.14432541799604,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3198,'2019-04-25T07:46:58.827Z',NULL,96,3,104.82144858590365,0,102.99774539030383,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3199,'2019-01-21T14:57:45.997Z',NULL,167,2,97.70449564120193,0,104.84584955776103,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3200,'2018-12-31T20:35:59.627Z',NULL,88,1,105.41292031622555,0,90.92383719903515,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3201,'2020-02-27T01:04:12.282Z',NULL,14,1,37.648145389078365,0,32.99426769290091,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3202,'2019-10-31T13:08:16.350Z',NULL,93,3,49.81864156655383,0,48.22772902139531,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3203,'2018-05-19T19:30:56.659Z',NULL,176,4,57.92480943352658,0,64.97717514566475,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3204,'2017-06-29T03:56:47.829Z',NULL,92,7,83.2616179105333,0,73.26805629309206,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3205,'2019-02-05T15:26:15.479Z',NULL,98,1,112.41825444654248,0,109.40377417132751,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3206,'2018-05-21T19:03:08.993Z',NULL,155,2,43.77574310182776,0,39.24043620629415,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3207,'2018-05-05T07:48:33.334Z',3.6102087601973394,181,3,143.88940370476112,0,159.30546355347633,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3208,'2018-10-08T14:22:00.270Z',NULL,164,4,92.96789820016517,0,104.9511276025028,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3209,'2019-05-12T08:36:10.069Z',NULL,27,4,127.52471180754115,0,142.7896684333196,453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3210,'2018-11-06T14:09:14.457Z',NULL,52,2,103.67587240151535,4.15,105.62314859035804,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3211,'2019-12-30T12:03:19.732Z',NULL,102,1,47.04215255778118,1.88,56.9415319288644,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3212,'2018-02-11T08:56:11.236Z',NULL,168,1,118.93172693453273,4.76,107.04035855322908,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3213,'2018-05-15T13:18:26.347Z',NULL,16,3,66.11029954877317,2.64,76.11086923464876,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3214,'2018-01-12T10:47:50.697Z',NULL,4,2,110.98767151282252,4.44,127.69940225887984,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3215,'2017-04-05T09:11:11.404Z',NULL,150,2,85.70276691718615,3.43,76.43157563073397,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3216,'2020-01-28T11:51:00.915Z',NULL,178,2,117.32963250370614,4.69,126.27203824028435,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3217,'2019-10-20T13:09:09.284Z',NULL,185,4,39.57700083851661,1.58,37.94352646014375,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3218,'2017-06-01T11:50:10.630Z',NULL,177,5,85.87953212963993,3.44,81.63330436545387,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3219,'2018-03-15T10:40:36.081Z',NULL,114,1,77.91196471862148,3.12,76.55911004242412,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3220,'2017-11-26T10:10:46.772Z',3.6102087601973394,49,2,87.61910559549149,3.5,81.2086669125275,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3221,'2019-12-22T23:42:07.247Z',NULL,158,2,139.8942352373801,5.6,147.1483160260594,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3222,'2018-06-18T06:47:36.070Z',NULL,176,5,57.92480943352658,2.32,64.32232350741808,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3223,'2017-12-30T09:51:06.632Z',7.838412657071949,179,2,45.549391048892794,1.82,42.79140366037922,454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3224,'2017-05-01T05:43:49.527Z',NULL,133,5,45.654646865558064,0,46.40458850620139,455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3225,'2019-12-09T03:08:32.704Z',NULL,184,2,116.09741230191975,0,102.14526132364323,455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3226,'2017-09-08T06:42:02.589Z',NULL,173,5,81.57679953529707,0,80.52545195938593,455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3227,'2017-08-05T00:54:48.937Z',NULL,56,7,24.24752383956291,1.02,25.206859390299652,456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3228,'2018-05-08T07:14:10.133Z',3.338412657071949,97,3,112.41825444654248,4.75,132.82420727143864,456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3229,'2019-05-05T04:07:58.332Z',NULL,137,3,67.77247956807186,2.86,68.80811253046052,456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3230,'2017-07-10T21:23:54.863Z',NULL,81,4,29.288656154807867,1.76,34.40884998691633,457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3231,'2018-02-19T14:38:21.639Z',NULL,143,1,61.1983004605443,3.67,56.15729652531135,457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3232,'2016-12-02T02:15:11.487Z',NULL,46,2,78.6996782532274,4.72,98.3133558906653,457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3233,'2017-10-31T06:00:57.570Z',NULL,72,7,94.80254599192457,5.69,107.2347959123172,457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3234,'2019-04-02T05:56:36.045Z',NULL,34,3,74.30391386913199,4.46,75.50709805074555,457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3235,'2020-04-17T22:57:42.964Z',NULL,194,2,50.38077396807232,2.02,49.054845613919454,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3236,'2017-09-23T04:44:29.520Z',NULL,74,4,34.08536151591033,1.36,33.49216119781351,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3237,'2019-05-07T18:09:06.586Z',NULL,174,3,111.61430894181083,4.46,123.28994345419957,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3238,'2019-08-25T22:28:55.450Z',9.886903801830616,106,7,52.723521442619514,2.11,53.884155769919836,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3239,'2020-03-15T10:17:41.132Z',NULL,93,1,49.81864156655383,1.99,59.99838550073699,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3240,'2017-08-13T02:03:37.979Z',9.886903801830616,56,9,24.24752383956291,0.97,26.604810574279767,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3241,'2019-08-13T07:37:57.182Z',NULL,102,9,47.04215255778118,1.88,48.46307105869998,458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3242,'2019-11-08T12:46:18.642Z',NULL,17,4,79.93608046792765,4.8,80.30010213659979,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3243,'2018-03-28T10:12:33.457Z',NULL,155,1,43.77574310182776,2.63,42.990276763213004,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3244,'2018-10-30T16:34:08.439Z',NULL,169,8,59.53172693453274,3.57,63.99318669194801,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3245,'2018-05-05T04:44:15.416Z',NULL,44,5,76.35255205175756,4.58,77.11900425456379,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3246,'2016-12-05T11:11:28.831Z',NULL,51,2,50.433725012700116,3.03,55.66731301861408,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3247,'2019-03-21T04:00:02.889Z',NULL,170,1,105.07665741496471,6.3,116.8964656975888,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3248,'2019-02-22T20:34:10.640Z',NULL,109,2,119.04991068193098,7.14,132.2165919533263,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3249,'2020-03-16T20:08:54.803Z',NULL,52,1,103.67587240151535,6.22,113.79617428358284,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3250,'2019-05-04T14:11:52.719Z',NULL,16,6,66.11029954877317,3.97,79.41113387523974,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3251,'2018-04-08T10:02:33.091Z',NULL,114,4,77.91196471862148,4.67,79.43952669002634,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3252,'2018-08-09T22:11:03.751Z',NULL,186,9,98.9770008385166,5.94,93.0912362961767,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3253,'2019-08-23T10:54:11.768Z',NULL,85,10,54.90104734428525,3.29,55.13252866986966,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3254,'2016-11-26T08:36:32.251Z',5.386903801830617,82,4,40.59697158687298,2.44,48.979052219112056,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3255,'2017-05-02T14:07:03.043Z',NULL,44,4,50.90170136783837,3.05,46.34908485944684,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3256,'2017-12-20T23:39:07.234Z',NULL,46,2,78.6996782532274,4.72,85.16495867650548,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3257,'2020-04-07T14:00:04.313Z',NULL,86,2,92.31436670850246,5.54,98.91051248459974,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3258,'2020-04-13T16:58:21.231Z',NULL,136,1,105.20402317157343,6.31,110.82894690009262,459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3259,'2019-03-20T06:53:42.779Z',NULL,154,0,81.87529553312261,2.37,82.4285559672587,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3260,'2019-12-07T07:12:31.176Z',NULL,144,1,61.1983004605443,1.77,72.35367074267204,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3261,'2017-08-21T14:31:15.786Z',NULL,136,6,70.13601544771562,2.03,61.43393941550383,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3262,'2018-03-01T02:33:34.414Z',NULL,44,1,76.35255205175756,2.21,85.53480747680445,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3263,'2018-05-13T19:53:26.825Z',0.5613500008936678,149,3,69.15415037577924,2.01,73.99445533474243,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3264,'2020-03-31T20:48:56.955Z',NULL,128,0,75.08016314504417,2.18,70.74492434211132,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3265,'2019-03-12T08:38:23.211Z',NULL,97,0,112.41825444654248,3.26,133.23105365498287,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3266,'2019-05-08T13:47:18.929Z',0.5613500008936678,107,3,50.094887884945365,1.45,47.969271695782,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3267,'2019-12-14T03:41:17.178Z',NULL,192,1,69.18418520579327,2.01,82.52197557133577,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3268,'2017-11-19T11:07:45.072Z',5.061350000893668,193,2,33.587182645381546,0.97,35.64366861119679,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3269,'2018-07-15T15:29:36.227Z',NULL,119,5,43.43814329652384,1.26,49.02595111710689,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3270,'2019-06-19T21:12:26.128Z',NULL,89,6,63.719612755399886,1.85,70.17051496503585,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3271,'2020-02-06T02:27:41.307Z',NULL,179,2,68.32408657333919,1.98,67.91999712982634,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3272,'2019-09-21T15:24:49.280Z',NULL,138,5,113.95078476718615,3.3,130.35558583692142,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3273,'2019-08-01T10:19:52.140Z',NULL,120,7,83.5020135028928,2.42,86.87019608177638,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3274,'2019-10-23T16:23:16.410Z',NULL,159,6,35.53017445377361,1.03,32.30962897872936,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3275,'2018-10-15T10:08:11.544Z',NULL,168,6,118.93172693453273,3.45,141.9560407579018,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3276,'2019-09-21T15:14:48.479Z',NULL,10,5,47.6793282102869,1.38,47.74572673955533,461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3277,'2019-02-21T07:45:49.056Z',NULL,75,2,125.81276373452337,0,110.27293101201457,465); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3278,'2019-10-10T15:35:45.041Z',NULL,37,6,80.10774204020768,0,89.12437775752889,465); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3279,'2018-07-29T04:57:16.049Z',NULL,147,5,66.64727121216615,0,71.89678578907913,465); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3280,'2019-01-08T05:44:57.489Z',5.7368736091038635,75,2,125.81276373452337,0,126.23823655633213,465); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3281,'2018-04-29T03:11:55.053Z',NULL,1,3,44.19489169601981,0,49.0950259065516,465); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3282,'2018-08-06T22:57:26.979Z',NULL,178,7,117.32963250370614,0,121.09042281689986,465); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3283,'2018-11-03T02:38:54.169Z',NULL,125,3,80.39699207990944,4.82,76.19409163940988,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3284,'2020-01-03T18:24:48.668Z',NULL,134,2,42.49233549998661,2.55,46.359161541213204,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3285,'2019-09-04T04:57:07.579Z',NULL,119,5,43.43814329652384,2.61,45.737716150988994,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3286,'2017-12-03T17:35:14.162Z',6.274049858216723,134,2,28.328223666657742,1.7,30.14872697354995,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3287,'2019-11-21T20:48:22.492Z',NULL,170,3,105.07665741496471,6.3,110.40225730677221,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3288,'2018-04-17T01:27:18.037Z',NULL,190,3,128.5841852057933,7.72,132.56397648939446,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3289,'2019-03-06T01:11:45.498Z',NULL,85,1,54.90104734428525,3.29,49.042945401895935,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3290,'2017-03-12T22:08:31.045Z',NULL,80,1,36.60883787357609,2.2,42.032301012048094,466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3291,'2017-12-08T23:01:00.408Z',NULL,174,2,74.40953929454055,3.14,84.958401602855,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3292,'2018-03-10T20:41:17.805Z',NULL,86,1,92.31436670850246,3.9,98.52756255498707,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3293,'2019-01-21T00:23:08.643Z',NULL,199,2,115.4300138092855,4.88,135.31783252984957,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3294,'2016-08-29T13:17:13.751Z',NULL,175,7,78.21653962235106,3.3,80.64326854965975,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3295,'2019-04-07T17:04:19.986Z',NULL,98,4,112.41825444654248,4.75,99.99025238342894,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3296,'2020-03-31T08:39:46.193Z',NULL,107,1,50.094887884945365,2.12,62.11111304904721,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3297,'2020-03-06T20:11:19.907Z',NULL,102,1,47.04215255778118,1.99,57.4845494838191,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3298,'2018-09-12T21:57:00.396Z',NULL,3,6,53.08311732230858,2.24,55.80624557231968,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3299,'2019-10-11T19:17:29.157Z',NULL,69,7,73.38772304360626,3.1,67.2276612507022,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3300,'2017-06-03T10:44:46.497Z',NULL,122,8,66.56352219205405,2.81,80.64803258270496,468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3301,'2018-10-19T07:56:05.775Z',NULL,128,7,75.08016314504417,4.69,90.63270533530931,469); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3302,'2018-01-03T06:01:31.892Z',NULL,155,2,43.77574310182776,0,40.45775229864188,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3303,'2016-12-02T07:58:38.941Z',8.087467610253624,156,2,20.41053609936413,0,24.04727147396745,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3304,'2018-03-14T14:46:34.991Z',NULL,35,1,71.53687730741436,0,85.2946599534237,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3305,'2019-08-21T18:37:35.393Z',NULL,169,9,59.53172693453274,0,52.61124038484739,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3306,'2018-06-16T21:53:04.132Z',NULL,143,6,61.1983004605443,0,57.5957691742938,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3307,'2017-03-11T10:00:58.662Z',NULL,5,1,82.7450976850356,0,97.57907508383069,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3308,'2018-05-30T13:10:35.768Z',NULL,119,4,43.43814329652384,0,50.70720003494307,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3309,'2018-04-23T22:22:08.606Z',4.117748421480468,84,3,81.87627832636537,0,97.44537472238645,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3310,'2019-05-05T00:10:41.203Z',NULL,14,6,37.648145389078365,0,33.18180539102864,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3311,'2016-10-15T10:27:33.921Z',NULL,80,6,36.60883787357609,0,33.647739687219904,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3312,'2020-03-15T18:37:29.022Z',NULL,83,1,81.87627832636537,0,97.20019320946194,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3313,'2018-12-01T22:45:30.093Z',NULL,185,2,39.57700083851661,0,43.365189713715225,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3314,'2018-01-25T17:00:03.540Z',NULL,60,2,29.80214751859149,0,34.686957605047255,470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3315,'2017-11-18T03:46:00.746Z',NULL,161,2,31.727470408648482,1.51,31.781922384045867,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3316,'2019-05-29T03:21:41.461Z',NULL,98,5,112.41825444654248,5.34,119.17741943499502,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3317,'2018-05-09T09:42:15.112Z',NULL,126,5,125.24398120308456,5.95,136.77386533589168,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3318,'2018-11-12T09:10:51.010Z',NULL,162,2,33.56789820016516,1.59,36.747453964322496,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3319,'2018-12-16T04:45:44.252Z',NULL,174,2,111.61430894181083,5.3,128.4693581742635,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3320,'2019-01-06T21:45:05.039Z',NULL,20,2,37.32649625046575,1.77,45.5014857952494,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3321,'2018-05-08T06:22:14.737Z',8.617748421480467,41,34,63.50890855689462,3.02,63.089586464151985,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3322,'2017-11-23T08:18:20.553Z',NULL,117,2,36.683234169385244,1.74,42.97369939216288,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3323,'2020-01-26T03:36:47.187Z',NULL,117,2,55.024851254077866,2.61,49.63293708422392,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3324,'2019-08-12T13:28:06.445Z',NULL,137,9,67.77247956807186,3.22,81.82791308835206,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3325,'2017-10-09T07:08:25.638Z',NULL,74,8,34.08536151591033,1.62,40.581971378289865,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3326,'2020-01-29T21:07:59.232Z',NULL,149,2,69.15415037577924,3.28,65.75916972702035,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3327,'2020-01-08T13:00:47.992Z',NULL,97,2,112.41825444654248,5.34,112.32837759646566,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3328,'2018-08-20T23:20:12.541Z',4.336951215549088,148,6,138.9817182254566,6.6,149.45866433025878,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3329,'2017-04-18T13:48:56.953Z',NULL,117,2,36.683234169385244,1.74,45.137233830637925,472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3330,'2018-07-11T07:14:00.110Z',NULL,28,4,68.12471180754113,2.72,72.6122476280621,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3331,'2020-02-24T04:31:24.522Z',8.836951215549089,10,2,47.6793282102869,1.91,51.475482459181556,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3332,'2019-07-10T11:00:35.919Z',NULL,78,7,41.616917284159726,1.66,39.75736842468582,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3333,'2018-10-05T17:12:30.214Z',NULL,48,6,123.20884248534108,4.93,146.40644292980843,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3334,'2019-03-12T17:45:23.177Z',8.836951215549089,135,1,45.80402317157342,1.83,50.69610020526421,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3335,'2017-07-25T17:40:37.646Z',NULL,20,5,24.884330833643833,1,29.01245940481452,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3336,'2017-10-30T20:59:10.590Z',NULL,82,6,40.59697158687298,1.62,49.90341134687158,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3337,'2017-04-27T08:33:15.672Z',NULL,24,2,74.87095783152942,2.99,80.56110435079628,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3338,'2017-06-02T18:54:45.419Z',NULL,170,7,70.05110494330981,2.8,71.66049372747001,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3339,'2020-01-22T05:36:19.718Z',NULL,130,2,75.02573869315137,3,71.05741094862805,476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3340,'2018-05-15T19:56:30.348Z',8.836951215549089,27,5,127.52471180754115,8.93,123.91154246702621,480); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3341,'2019-12-01T05:02:32.285Z',NULL,86,2,92.31436670850246,6.46,84.21045342979198,480); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3342,'2020-03-10T14:21:34.369Z',NULL,123,1,110.93145648834248,7.21,128.20894184295886,481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3343,'2019-09-27T22:09:41.405Z',NULL,185,4,39.57700083851661,2.57,40.8226922257726,481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3344,'2018-12-13T14:35:12.555Z',NULL,30,2,64.17448218067184,4.17,65.86156470530896,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3345,'2018-11-24T15:17:35.357Z',NULL,63,4,133.5202262591817,8.68,140.27875756345156,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3346,'2019-01-08T21:27:58.687Z',NULL,198,2,70.14610686710009,4.56,72.39244577874335,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3347,'2019-10-16T21:46:51.134Z',3.196444089909093,16,4,66.11029954877317,4.3,59.67829848575684,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3348,'2018-08-10T00:06:51.670Z',NULL,151,5,91.61302306843446,5.95,112.9752151364119,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3349,'2018-04-02T19:05:51.544Z',NULL,60,2,29.80214751859149,1.94,32.66357265259555,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3350,'2018-02-27T07:24:45.571Z',NULL,73,2,71.6287722595695,4.66,90.81553623263123,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3351,'2019-11-26T19:37:25.646Z',NULL,11,4,132.45679913492563,8.61,134.04585522483302,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3352,'2017-09-12T15:54:51.132Z',NULL,46,6,78.6996782532274,5.12,74.40540889587746,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3353,'2018-07-26T08:40:06.949Z',NULL,121,6,40.44528328808107,2.63,40.231244294765254,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3354,'2019-05-12T21:20:14.063Z',NULL,142,4,70.34853057210945,4.57,74.67593484164829,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3355,'2018-06-02T19:08:00.306Z',NULL,72,6,142.20381898788685,9.24,156.301032955218,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3356,'2018-10-30T13:03:31.048Z',NULL,83,7,81.87627832636537,5.32,96.14320515677149,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3357,'2020-01-31T06:49:38.974Z',NULL,153,2,66.79892314178237,4.34,80.59364970389693,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3358,'2018-01-26T07:11:01.666Z',NULL,183,2,56.697412301919755,3.69,61.03254770691404,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3359,'2019-09-24T02:05:24.268Z',NULL,119,5,43.43814329652384,2.82,50.87586633431163,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3360,'2018-08-11T12:52:24.922Z',NULL,77,7,101.01691728415972,6.57,104.56560352794102,482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3361,'2019-03-25T03:25:10.245Z',NULL,99,1,67.83486485383094,2.71,68.47898313690327,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3362,'2019-04-07T06:03:47.690Z',NULL,78,3,41.616917284159726,1.66,50.91220551073237,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3363,'2020-02-03T13:15:13.471Z',NULL,38,1,66.06937283839378,2.64,76.31628928287319,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3364,'2018-11-12T21:46:17.367Z',NULL,86,2,92.31436670850246,3.69,103.77459734092297,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3365,'2019-05-23T16:52:51.895Z',NULL,200,4,73.20395711799151,2.93,70.77676419340945,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3366,'2017-12-15T20:07:46.980Z',NULL,173,2,81.57679953529707,3.26,74.99377379190595,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3367,'2019-08-22T04:50:30.057Z',2.8814550189174746,90,5,123.1196127553999,4.92,137.15385276870168,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3368,'2018-11-27T16:52:38.600Z',NULL,196,2,70.14610686710009,2.81,67.9091796613428,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3369,'2019-07-09T02:28:53.174Z',NULL,169,5,59.53172693453274,2.38,61.67682399922892,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3370,'2019-12-27T13:05:33.905Z',NULL,17,2,79.93608046792765,3.2,90.46429497423259,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3371,'2018-02-09T11:00:29.581Z',NULL,75,2,125.81276373452337,5.03,146.1163369043448,483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3372,'2017-01-12T16:24:21.968Z',NULL,118,2,38.418408731319154,2.69,38.182975923601845,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3373,'2019-09-28T01:41:05.215Z',NULL,95,5,49.81864156655383,3.49,51.88399848068876,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3374,'2019-10-30T13:59:39.597Z',NULL,51,5,75.65058751905018,5.3,72.66364980293486,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3375,'2018-12-12T23:59:23.117Z',NULL,29,2,123.57448218067185,8.65,158.11773414496608,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3376,'2019-07-04T19:05:46.050Z',NULL,77,5,101.01691728415972,7.07,115.16769043879334,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3377,'2016-12-24T13:44:07.884Z',NULL,105,1,35.149014295079674,2.46,37.50266733824612,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3378,'2018-10-23T04:53:09.982Z',NULL,184,4,116.09741230191975,8.13,109.44801823616474,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3379,'2019-10-15T20:45:02.077Z',7.413084463711204,4,4,110.98767151282252,7.77,121.6541035836768,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3380,'2018-05-03T03:45:49.666Z',NULL,94,4,109.21864156655383,7.65,107.75879361298844,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3381,'2019-08-13T22:49:06.997Z',NULL,186,8,98.9770008385166,6.93,98.09475431682196,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3382,'2019-05-19T10:42:22.806Z',NULL,106,4,52.723521442619514,3.69,66.40629592540782,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3383,'2018-12-13T13:15:20.702Z',NULL,134,1,42.49233549998661,2.97,39.608938853131534,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3384,'2019-02-07T09:48:47.808Z',NULL,95,2,49.81864156655383,3.49,49.64131650837788,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3385,'2019-12-01T01:32:59.783Z',NULL,183,2,56.697412301919755,3.97,62.22720509409117,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3386,'2018-06-02T02:42:08.714Z',NULL,17,8,79.93608046792765,5.6,72.9722531901028,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3387,'2017-10-15T12:17:53.465Z',NULL,192,5,46.122790137195516,3.23,50.440118560018654,484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3388,'2018-03-13T16:46:32.845Z',NULL,171,1,105.07665741496471,4.52,124.78668469729575,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3389,'2019-03-30T09:00:24.969Z',NULL,137,1,67.77247956807186,2.91,62.45242669266387,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3390,'2020-02-05T19:40:28.465Z',NULL,23,2,116.86672609493307,5.03,114.25550830106958,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3391,'2018-10-20T08:48:06.745Z',NULL,72,7,142.20381898788685,6.11,161.94264620164645,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3392,'2019-07-22T11:48:24.837Z',2.913084463711204,135,5,45.80402317157342,1.97,40.74855949773736,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3393,'2019-07-09T16:01:11.551Z',NULL,162,5,33.56789820016516,1.44,37.20313957850754,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3394,'2017-06-29T20:52:57.171Z',NULL,185,6,26.384667225677738,1.13,27.612547500245867,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3395,'2018-05-05T17:06:32.761Z',NULL,13,4,112.62925391105566,4.84,129.67791193227094,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3396,'2019-03-13T04:50:55.068Z',NULL,156,1,30.615804149046195,1.32,35.63701789500922,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3397,'2017-09-27T03:22:26.443Z',NULL,33,5,31.829909130640935,1.37,30.617405967041318,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3398,'2018-07-25T01:39:34.677Z',NULL,161,4,47.59120561297272,2.05,54.50227389039602,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3399,'2018-08-05T17:11:07.298Z',NULL,28,39,68.12471180754113,2.93,80.22871335895998,485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3400,'2018-07-31T08:39:36.722Z',NULL,60,4,29.80214751859149,1.71,32.730095961454104,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3401,'2018-03-30T01:42:50.872Z',NULL,188,1,33.87738254731509,1.95,37.59177378231213,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3402,'2018-08-13T00:39:00.393Z',NULL,57,6,122.4223933583994,7.04,139.728532477124,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3403,'2018-03-18T10:55:52.237Z',NULL,194,1,50.38077396807232,2.9,63.06873930168005,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3404,'2017-11-08T16:02:32.045Z',NULL,66,2,90.77417514071306,5.22,103.55608137307578,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3405,'2018-07-17T05:05:09.392Z',NULL,138,5,113.95078476718615,6.55,119.35335437814025,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3406,'2018-05-04T11:14:44.306Z',NULL,187,4,98.9770008385166,5.69,97.03759999025036,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3407,'2019-07-28T06:01:42.692Z',NULL,34,4,74.30391386913199,4.27,82.8367336934418,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3408,'2018-06-27T19:46:27.953Z',NULL,61,7,23.537915510955656,1.35,25.401727604036214,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3409,'2019-08-10T20:30:14.627Z',NULL,146,8,126.04727121216614,7.25,146.83797297338572,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3410,'2019-04-14T07:18:24.814Z',NULL,169,2,59.53172693453274,3.42,63.73096822417432,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3411,'2019-01-25T19:18:01.415Z',NULL,178,2,117.32963250370614,6.75,107.28912531571618,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3412,'2019-05-14T02:52:13.763Z',2.0805010702738835,168,5,118.93172693453273,6.84,130.60369323607978,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3413,'2020-03-05T21:39:35.999Z',NULL,161,1,47.59120561297272,2.74,42.16767725440498,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3414,'2017-12-28T19:17:12.158Z',6.5805010702738835,199,2,76.95334253952366,4.42,74.72407777938119,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3415,'2018-05-13T21:07:13.633Z',6.5805010702738835,61,5,23.537915510955656,1.35,24.929294202591663,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3416,'2018-10-10T01:04:53.242Z',NULL,124,5,110.93145648834248,6.38,98.93743504673614,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3417,'2018-12-07T05:12:26.067Z',NULL,112,2,41.329386510090345,2.38,40.38663829125622,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3418,'2019-11-08T20:24:10.032Z',NULL,147,3,66.64727121216615,3.83,70.78166328226392,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3419,'2019-06-25T00:01:26.645Z',6.5805010702738835,84,5,81.87627832636537,4.71,85.92390158217867,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3420,'2020-04-15T01:33:58.189Z',6.5805010702738835,116,2,114.42485125407785,6.58,122.07487782385358,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3421,'2018-03-02T07:35:53.159Z',NULL,162,1,33.56789820016516,1.93,30.685882505332547,488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3422,'2018-02-16T02:39:03.572Z',NULL,71,18,82.80381898788684,4.97,95.35742760432623,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3423,'2020-04-09T06:36:43.231Z',2.0805010702738835,22,2,32.136779940663494,1.93,38.17478548366645,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3424,'2019-02-10T23:43:15.205Z',NULL,53,1,44.27587240151534,2.66,54.15310044876627,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3425,'2018-03-06T01:57:43.634Z',NULL,156,1,30.615804149046195,1.84,37.54561993447309,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3426,'2019-01-20T17:29:11.975Z',NULL,101,1,139.82488066180403,8.39,141.76338940400646,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3427,'2019-10-06T13:25:20.286Z',NULL,139,5,76.77768319177018,4.61,68.74965318226266,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3428,'2018-12-10T19:33:48.497Z',NULL,191,2,128.5841852057933,7.72,135.05345168131802,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3429,'2019-08-14T13:35:44.094Z',NULL,119,6,43.43814329652384,2.61,39.51535723256046,489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3430,'2016-08-08T15:22:21.489Z',NULL,191,4,85.72279013719552,5.44,85.52068737708137,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3431,'2016-10-03T07:27:18.731Z',NULL,36,3,87.29125153827623,5.54,78.5459279713253,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3432,'2016-07-10T19:32:01.496Z',NULL,4,3,73.99178100854834,4.7,67.00510670974013,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3433,'2019-07-02T19:44:17.147Z',2.0634470167922245,104,4,106.44215255778118,6.76,127.33708565403983,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3434,'2018-03-23T09:13:04.623Z',NULL,41,1,63.50890855689462,4.03,58.16000171361478,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3435,'2020-04-16T05:06:57.943Z',NULL,149,2,69.15415037577924,4.39,66.24480428542093,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3436,'2017-09-24T15:02:38.000Z',NULL,96,5,69.88096572393577,4.44,67.18214420506722,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3437,'2018-11-27T10:31:02.826Z',NULL,38,3,66.06937283839378,4.2,66.47015327271745,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3438,'2019-04-15T16:05:39.754Z',NULL,120,3,83.5020135028928,5.3,87.45607367353027,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3439,'2018-01-11T09:24:57.364Z',NULL,7,2,148.22900526552291,9.41,149.76462004872712,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3440,'2019-03-11T20:45:17.010Z',NULL,61,1,23.537915510955656,1.49,23.083321076400594,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3441,'2017-06-14T06:02:17.664Z',NULL,33,7,31.829909130640935,2.02,34.11151653514378,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3442,'2020-02-09T14:57:05.077Z',NULL,91,1,65.09432810381134,4.13,66.14270935368937,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3443,'2017-11-30T12:37:46.736Z',NULL,62,2,89.0134841727878,5.65,81.06050546510428,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3444,'2019-02-16T10:15:02.502Z',NULL,180,1,68.32408657333919,4.34,80.63613726501859,490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3445,'2019-07-12T20:00:15.149Z',NULL,87,3,117.25536340498041,7.33,147.6057556172946,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3446,'2018-01-19T02:25:37.446Z',NULL,37,1,80.10774204020768,5.01,83.57240530093746,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3447,'2019-10-08T05:26:57.921Z',NULL,168,5,118.93172693453273,7.43,122.27823528489752,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3448,'2018-05-21T05:26:00.850Z',NULL,78,5,41.616917284159726,2.6,40.43236091859372,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3449,'2018-01-04T10:36:27.421Z',NULL,83,2,81.87627832636537,5.12,77.47498260550573,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3450,'2018-01-28T16:34:22.910Z',NULL,140,1,66.80312547576881,4.18,62.28553311875234,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3451,'2018-08-20T17:53:57.588Z',NULL,138,5,113.95078476718615,7.12,102.33266076403382,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3452,'2019-06-05T10:19:01.207Z',NULL,96,4,104.82144858590365,6.55,107.07296906860046,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3453,'2019-03-18T15:27:55.326Z',NULL,144,1,61.1983004605443,3.82,66.53594567809284,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3454,'2019-03-04T13:46:17.417Z',NULL,195,1,109.78077396807234,6.86,130.89843742393262,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3455,'2017-07-29T03:29:52.636Z',NULL,183,3,37.7982748679465,2.36,45.00167574211659,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3456,'2019-04-06T13:07:24.956Z',NULL,176,2,57.92480943352658,3.62,53.94847438801619,492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3457,'2018-01-23T15:16:43.752Z',NULL,54,1,62.09360840402396,2.48,57.70924145133791,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3458,'2020-01-15T05:25:32.871Z',NULL,86,2,92.31436670850246,3.69,114.71348752291767,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3459,'2017-10-09T15:26:35.651Z',NULL,147,53,44.4315141414441,1.78,53.67878612775153,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3460,'2020-04-01T19:44:22.051Z',NULL,151,3,91.61302306843446,3.66,92.76336705706429,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3461,'2019-07-22T19:30:12.357Z',NULL,117,5,55.024851254077866,2.2,62.37765555964002,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3462,'2019-08-20T12:18:26.039Z',NULL,119,6,43.43814329652384,1.74,53.5577526186921,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3463,'2019-02-24T13:34:43.067Z',NULL,15,2,37.648145389078365,1.51,44.655431035086984,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3464,'2020-03-06T15:31:39.811Z',NULL,141,1,126.20312547576883,5.05,113.55078983239201,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3465,'2019-08-31T06:57:03.668Z',7.486753642059872,146,6,126.04727121216614,5.04,110.4583483412528,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3466,'2016-12-20T15:55:52.874Z',6.607288825422396,79,2,27.74461152277315,1.11,24.816114381975694,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3467,'2020-02-14T05:21:19.475Z',NULL,81,1,43.9329842322118,1.76,43.6997082861045,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3468,'2018-08-18T14:32:27.500Z',NULL,172,6,122.3651993029456,4.89,139.33903223462627,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3469,'2019-09-09T19:22:35.748Z',NULL,177,3,128.8192981944599,5.15,137.5002582186745,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3470,'2018-01-05T15:20:24.358Z',NULL,79,2,41.616917284159726,1.66,49.544060430366684,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3471,'2018-05-10T23:21:23.896Z',NULL,23,4,116.86672609493307,4.67,112.62038331252502,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3472,'2017-07-02T17:02:02.374Z',NULL,120,4,55.668009001928525,2.23,67.92355533441517,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3473,'2018-12-29T06:51:34.364Z',NULL,199,2,115.4300138092855,4.62,115.7575266404502,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3474,'2017-08-25T05:16:44.122Z',NULL,173,6,81.57679953529707,3.26,97.31936967133893,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3475,'2019-02-12T08:45:42.921Z',NULL,26,1,68.12471180754113,2.72,65.76959186581448,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3476,'2018-09-29T03:28:07.068Z',NULL,92,3,124.89242686579996,5,111.18523926884788,493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3477,'2017-09-12T18:48:53.451Z',NULL,73,3,47.752514839713,2.27,57.15871402081759,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3478,'2018-05-08T20:24:08.852Z',2.107288825422396,89,2,63.719612755399886,3.03,64.43082228050473,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3479,'2018-07-17T19:24:37.737Z',NULL,84,3,81.87627832636537,3.89,95.41838260046106,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3480,'2017-10-14T23:18:12.199Z',NULL,101,3,93.21658710786936,4.43,99.92298179595566,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3481,'2020-01-21T21:51:12.912Z',NULL,166,1,38.30449564120193,1.82,45.53633000455862,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3482,'2018-05-29T19:03:22.452Z',2.107288825422396,27,4,127.52471180754115,6.06,125.56914613150758,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3483,'2019-05-09T14:52:38.016Z',NULL,57,5,122.4223933583994,5.82,142.08726901053325,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3484,'2020-03-13T22:57:13.814Z',NULL,141,1,126.20312547576883,5.99,139.40073193981002,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3485,'2019-08-31T17:20:57.092Z',NULL,142,5,70.34853057210945,3.34,77.6605557805752,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3486,'2019-05-03T23:31:34.784Z',3.6989955789578297,103,3,47.04215255778118,2.23,53.698136466093125,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3487,'2017-12-30T01:26:08.901Z',NULL,140,1,44.53541698384588,2.12,43.134118947616095,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3488,'2018-02-28T15:16:21.270Z',NULL,196,1,70.14610686710009,3.33,69.94147476254088,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3489,'2018-10-27T21:25:14.247Z',NULL,87,4,117.25536340498041,5.57,133.4899405465557,497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3490,'2019-10-23T23:45:25.221Z',NULL,10,6,47.6793282102869,0,55.10388198440364,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3491,'2019-06-01T19:12:22.149Z',NULL,100,8,67.83486485383094,0,76.81029966317946,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3492,'2019-10-13T01:25:00.566Z',NULL,99,7,67.83486485383094,0,77.42636117444249,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3493,'2019-05-03T14:14:36.911Z',NULL,16,6,66.11029954877317,0,71.14273815837,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3494,'2019-03-03T08:34:23.899Z',NULL,36,1,130.93687730741433,0,148.7630126410772,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3495,'2017-08-25T06:59:45.475Z',NULL,31,7,70.43564311419016,0,84.37119719222326,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3496,'2019-08-09T07:33:35.980Z',3.6989955789578297,104,5,106.44215255778118,0,94.49296925305147,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3497,'2019-03-06T19:56:25.285Z',NULL,25,1,68.62263967182464,0,77.95994725350805,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3498,'2019-11-28T20:52:13.349Z',NULL,108,3,50.094887884945365,0,54.8076423183073,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3499,'2019-05-23T19:14:27.305Z',NULL,8,3,98.83823503993958,0,93.32496280287498,499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3500,'2018-12-05T09:49:08.872Z',NULL,153,1,66.79892314178237,4.34,71.53156935895872,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3501,'2019-12-04T07:02:53.183Z',NULL,43,1,76.35255205175756,4.96,95.21746126080298,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3502,'2019-05-18T21:57:04.296Z',NULL,118,4,57.627613096978735,3.75,67.01031566648686,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3503,'2019-08-07T04:39:41.960Z',NULL,38,8,66.06937283839378,4.29,60.545115422195195,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3504,'2017-02-13T21:11:10.128Z',NULL,166,2,25.536330427467956,1.66,32.27856689509475,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3505,'2019-04-13T21:31:31.648Z',NULL,63,2,133.5202262591817,8.68,119.11818725097662,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3506,'2019-12-16T23:22:46.860Z',NULL,182,2,84.48940370476112,5.49,93.59201723451007,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3507,'2019-01-04T04:09:15.771Z',NULL,158,2,139.8942352373801,9.09,152.50412587785647,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3508,'2018-12-26T14:48:52.427Z',NULL,119,2,43.43814329652384,2.82,53.43617335642577,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3509,'2019-06-09T12:31:59.866Z',NULL,58,3,78.14578007078882,5.08,99.76552058955049,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3510,'2017-02-16T06:43:39.711Z',NULL,120,1,55.668009001928525,3.62,51.26871792101859,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3511,'2018-07-12T06:58:16.399Z',NULL,113,5,110.47725376186015,7.18,105.45292155304114,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3512,'2018-11-11T09:19:17.597Z',NULL,162,3,33.56789820016516,2.18,36.12930813924197,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3513,'2017-04-17T01:19:38.431Z',NULL,118,2,38.418408731319154,2.5,36.18436696323456,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3514,'2020-01-31T00:17:46.821Z',NULL,123,2,110.93145648834248,7.21,128.40747263534163,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3515,'2018-08-16T21:26:49.641Z',NULL,40,7,99.66240044231697,6.48,102.23393240499412,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3516,'2018-09-24T12:10:44.058Z',NULL,113,5,110.47725376186015,7.18,105.42734892956123,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3517,'2018-11-16T16:21:08.070Z',NULL,55,2,95.77128575934437,6.23,117.76884355069629,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3518,'2019-04-07T06:32:53.688Z',NULL,101,2,139.82488066180403,9.09,176.80000811374774,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3519,'2018-12-25T22:54:27.071Z',NULL,186,2,98.9770008385166,6.43,94.27684599647048,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3520,'2017-03-13T21:19:39.672Z',NULL,139,1,51.18512212784679,3.33,64.40214512218967,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3521,'2018-03-05T17:04:32.815Z',NULL,56,1,36.37128575934436,2.36,38.541665715511336,500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3522,'2018-03-28T21:37:02.763Z',NULL,135,1,45.80402317157342,1.94,51.016761914606754,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3523,'2018-11-30T15:52:35.910Z',NULL,138,1,113.95078476718615,4.81,107.33217095298438,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3524,'2018-06-19T01:56:08.819Z',NULL,188,4,33.87738254731509,1.43,33.70362308239328,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3525,'2019-05-27T06:27:25.233Z',NULL,121,4,40.44528328808107,1.71,37.33362802439105,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3526,'2019-01-19T12:11:06.605Z',NULL,112,2,41.329386510090345,1.75,48.58287541705697,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3527,'2018-03-22T17:02:08.873Z',0.8809696295028182,80,1,54.91325681036414,2.32,53.33693782698359,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3528,'2017-02-27T15:09:37.713Z',NULL,109,1,79.36660712128732,3.35,99.30709341762464,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3529,'2016-07-18T03:32:44.360Z',NULL,51,2,50.433725012700116,2.13,61.635890464035484,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3530,'2019-08-10T09:28:11.975Z',NULL,144,3,61.1983004605443,2.59,66.1074800833754,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3531,'2019-11-24T00:57:07.263Z',NULL,121,1,40.44528328808107,1.71,46.97825507798469,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3532,'2018-04-28T11:58:14.801Z',NULL,33,1,47.7448636959614,2.02,50.745674930495674,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3533,'2017-12-02T23:40:03.640Z',NULL,67,1,27.496539271971862,1.16,32.32695791475684,501); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3534,'2020-02-21T04:37:07.449Z',NULL,195,2,109.78077396807234,7.14,120.84323612596557,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3535,'2018-10-23T23:37:58.415Z',NULL,1,4,44.19489169601981,2.87,53.64132415169977,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3536,'2019-12-30T03:24:00.161Z',NULL,6,1,97.43621265344382,6.33,116.9263794780824,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3537,'2019-02-06T05:34:28.208Z',NULL,28,1,68.12471180754113,4.43,81.03922486868458,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3538,'2018-03-09T17:51:24.829Z',NULL,10,1,47.6793282102869,3.1,52.695145449262384,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3539,'2020-01-23T21:28:28.099Z',NULL,89,2,63.719612755399886,4.14,70.82103459192133,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3540,'2019-09-24T11:49:54.936Z',NULL,67,5,41.24480890795779,2.68,47.630422893859844,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3541,'2017-08-27T23:06:13.727Z',NULL,106,5,35.149014295079674,2.28,38.95081536626794,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3542,'2019-08-16T17:36:59.553Z',NULL,181,6,143.88940370476112,9.35,169.52447938542636,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3543,'2020-01-10T23:37:52.329Z',NULL,181,2,143.88940370476112,9.35,164.99077636143642,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3544,'2018-12-29T13:02:48.163Z',NULL,181,2,143.88940370476112,9.35,178.88132349326247,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3545,'2017-10-24T19:29:03.694Z',NULL,70,3,38.32866920597319,2.49,36.67875467686922,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3546,'2018-03-19T15:13:05.255Z',NULL,90,1,123.1196127553999,8,120.80110302583822,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3547,'2018-11-16T16:22:40.928Z',NULL,172,3,122.3651993029456,7.95,153.6359480784807,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3548,'2019-04-04T16:44:41.683Z',NULL,71,3,82.80381898788684,5.38,86.09315185711797,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3549,'2019-03-05T10:05:47.832Z',NULL,152,1,48.89568729900663,3.18,53.794535057985634,503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3550,'2019-07-21T15:19:01.390Z',NULL,65,4,68.22769726470014,4.09,62.37448180441461,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3551,'2017-07-24T21:14:43.204Z',NULL,155,4,29.183828734551838,1.75,36.15926744096031,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3552,'2019-06-19T21:11:31.270Z',NULL,125,7,80.39699207990944,4.82,75.76371734929504,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3553,'2020-03-08T08:09:00.009Z',2.598482657576469,7,1,148.22900526552291,8.89,131.94280673654956,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3554,'2018-06-17T09:27:06.475Z',NULL,54,4,62.09360840402396,3.73,65.728680927424,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3555,'2020-03-16T15:26:27.780Z',NULL,132,1,127.88197029833711,7.67,132.26857149863793,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3556,'2017-07-15T15:53:25.503Z',NULL,193,4,33.587182645381546,2.02,41.93930958481148,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3557,'2019-09-28T06:29:01.848Z',NULL,34,6,74.30391386913199,4.46,77.8206055516233,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3558,'2019-08-24T11:59:20.961Z',NULL,199,8,115.4300138092855,6.93,138.35779530747882,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3559,'2020-04-16T23:11:32.580Z',NULL,156,2,30.615804149046195,1.84,33.145813555979025,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3560,'2018-01-24T15:48:11.303Z',NULL,192,2,69.18418520579327,4.15,61.824406324985745,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3561,'2017-08-01T07:07:10.969Z',NULL,131,6,75.41148135558485,4.52,71.17250244357683,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3562,'2020-03-26T14:54:27.951Z',NULL,123,1,110.93145648834248,6.66,127.64765665690237,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3563,'2017-06-23T03:39:16.276Z',NULL,164,5,61.978598800110106,3.72,59.14578175338505,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3564,'2018-09-02T18:19:14.070Z',NULL,155,5,43.77574310182776,2.63,44.91826808312569,504); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3565,'2019-08-29T10:20:09.065Z',NULL,178,6,117.32963250370614,7.63,123.68213096589447,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3566,'2018-05-19T05:00:17.192Z',NULL,183,2,56.697412301919755,3.69,51.850658210774135,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3567,'2017-07-25T00:52:04.250Z',NULL,182,4,56.326269136507406,3.66,71.60553847159795,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3568,'2020-02-20T20:34:02.060Z',NULL,186,2,98.9770008385166,6.43,123.84443472946212,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3569,'2019-01-20T23:52:49.245Z',NULL,2,2,105.11984419607644,6.83,114.77819479380423,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3570,'2019-05-15T00:11:45.332Z',NULL,188,2,33.87738254731509,2.2,43.510542363875565,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3571,'2018-01-08T06:11:22.567Z',NULL,163,1,33.56789820016516,2.18,31.672699561312466,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3572,'2019-07-21T17:06:13.664Z',NULL,24,4,112.30643674729413,7.3,117.69036411347575,507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3573,'2020-03-02T09:33:15.928Z',NULL,170,1,105.07665741496471,6.57,94.87162115302571,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3574,'2017-04-20T22:35:19.595Z',NULL,198,2,46.76407124473339,2.92,57.081867003555416,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3575,'2016-12-29T10:41:15.443Z',NULL,62,2,89.0134841727878,5.56,109.01309614431295,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3576,'2017-12-10T22:05:45.943Z',NULL,122,2,66.56352219205405,4.16,66.43071118381681,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3577,'2017-08-19T06:42:37.267Z',NULL,184,5,77.3982748679465,4.84,72.44523488426152,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3578,'2020-01-14T06:55:46.289Z',NULL,121,2,40.44528328808107,2.53,39.096467725430216,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3579,'2017-08-17T22:53:54.015Z',NULL,164,9,61.978598800110106,3.87,78.5607553896697,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3580,'2017-02-06T09:37:05.353Z',NULL,195,2,73.18718264538155,4.57,86.85396304214517,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3581,'2019-09-10T13:30:31.531Z',NULL,143,7,61.1983004605443,3.82,55.845050933023565,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3582,'2018-01-06T05:01:21.352Z',NULL,24,3,112.30643674729413,7.02,120.59922245564778,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3583,'2019-03-22T21:27:20.561Z',NULL,125,1,80.39699207990944,5.02,82.33118001542466,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3584,'2017-09-05T01:18:11.672Z',NULL,112,5,27.55292434006023,1.72,24.953724831722077,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3585,'2017-01-09T06:15:01.319Z',NULL,6,2,64.95747510229587,4.06,77.16141737481387,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3586,'2018-01-19T13:15:46.281Z',NULL,44,3,76.35255205175756,4.77,87.45311489111289,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3587,'2017-09-21T17:33:23.735Z',NULL,59,5,59.46809834572766,3.72,73.0977081576023,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3588,'2019-12-26T11:56:58.096Z',NULL,59,2,89.20214751859149,5.58,97.61925657650856,508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3589,'2018-07-06T03:53:23.242Z',NULL,120,5,83.5020135028928,5.85,87.32415217997799,509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3590,'2019-03-30T22:57:24.532Z',NULL,13,1,112.62925391105566,7.88,106.90003564182281,509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3591,'2020-04-01T10:13:04.331Z',NULL,153,3,66.79892314178237,4.68,80.7484885346905,509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3592,'2019-08-16T13:45:09.025Z',NULL,43,6,76.35255205175756,4.58,70.96081012600665,510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3593,'2019-07-31T05:50:06.486Z',NULL,145,3,61.1983004605443,3.67,70.82184390044618,510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3594,'2018-05-23T23:50:15.390Z',NULL,84,3,81.87627832636537,4.91,99.64536404588834,510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3595,'2019-04-15T22:36:59.104Z',NULL,110,2,55.526746186906664,3.33,53.44575710184113,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3596,'2017-11-25T19:30:28.656Z',NULL,71,2,55.202545991924566,3.31,49.76073417670228,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3597,'2017-06-28T16:16:35.891Z',NULL,45,4,78.6996782532274,4.72,90.56807616959217,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3598,'2019-08-16T10:55:35.980Z',NULL,70,5,57.493003808959784,3.45,53.43670131884568,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3599,'2018-10-16T05:35:24.991Z',NULL,126,4,125.24398120308456,7.51,146.971296929423,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3600,'2019-03-17T17:06:24.564Z',NULL,69,0,73.38772304360626,4.4,66.51167860627318,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3601,'2018-02-11T05:27:06.317Z',NULL,78,1,41.616917284159726,2.5,37.35721306224243,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3602,'2019-09-27T09:03:45.701Z',NULL,182,3,84.48940370476112,5.07,104.1399973759565,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3603,'2019-05-06T07:09:50.225Z',0.8912767870805993,108,4,50.094887884945365,3.01,51.178327185733,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3604,'2018-02-18T00:35:47.030Z',NULL,121,2,40.44528328808107,2.43,50.503715915453526,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3605,'2019-12-03T11:14:57.326Z',NULL,147,2,66.64727121216615,4,59.39252118251624,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3606,'2018-05-21T16:56:28.982Z',0.8912767870805993,124,3,110.93145648834248,6.66,139.06021929143245,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3607,'2019-02-20T17:09:44.044Z',NULL,116,1,114.42485125407785,6.87,120.31628555019292,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3608,'2019-01-25T04:36:28.040Z',5.391276787080599,128,2,75.08016314504417,4.5,89.04635999489288,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3609,'2019-11-08T04:15:38.360Z',NULL,182,2,84.48940370476112,5.07,96.15698777960532,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3610,'2020-03-18T21:50:34.922Z',NULL,119,1,43.43814329652384,2.61,46.18505525875244,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3611,'2017-08-29T14:09:06.695Z',NULL,55,8,63.84752383956291,3.83,76.89469963925761,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3612,'2020-04-04T08:19:32.555Z',7.661779766993108,124,4,110.93145648834248,6.66,100.66940139029832,511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3613,'2019-06-20T18:58:18.703Z',7.661779766993108,6,6,97.43621265344382,6.33,125.6024831895367,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3614,'2018-09-24T01:55:41.947Z',NULL,152,3,48.89568729900663,3.18,51.789817720747244,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3615,'2017-01-25T00:47:48.971Z',NULL,109,2,79.36660712128732,5.16,85.74667747434815,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3616,'2019-02-16T05:23:56.178Z',NULL,101,2,139.82488066180403,9.09,177.92468773133086,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3617,'2017-11-09T23:01:06.242Z',NULL,79,2,27.74461152277315,1.8,35.535877180495646,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3618,'2019-10-15T06:14:27.979Z',NULL,150,4,128.55415037577922,8.36,147.2954614387697,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3619,'2018-11-11T22:39:00.208Z',NULL,165,3,38.30449564120193,2.49,44.9682538239305,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3620,'2018-04-24T21:51:08.016Z',NULL,70,4,57.493003808959784,3.74,65.0224027756564,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3621,'2017-08-23T23:29:41.286Z',NULL,199,7,76.95334253952366,5,83.99951905626958,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3622,'2018-01-19T21:50:36.113Z',NULL,180,1,68.32408657333919,4.44,67.36793721481631,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3623,'2018-02-05T18:29:18.747Z',NULL,110,1,55.526746186906664,3.61,49.00039639328551,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3624,'2018-04-04T14:39:21.544Z',NULL,74,3,51.12804227386549,3.32,52.88001592040297,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3625,'2018-11-01T12:15:29.284Z',NULL,197,3,70.14610686710009,4.56,69.57745017608336,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3626,'2016-07-29T18:09:48.065Z',NULL,125,3,53.59799471993963,3.48,66.90975237682338,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3627,'2019-07-12T10:58:09.107Z',7.661779766993108,73,3,71.6287722595695,4.66,65.57792380831648,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3628,'2018-08-30T19:23:06.595Z',NULL,32,7,107.1448636959614,6.96,105.41932443416981,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3629,'2019-01-09T14:13:44.347Z',NULL,148,2,138.9817182254566,9.03,176.56047677927933,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3630,'2019-10-30T19:33:23.481Z',NULL,88,5,105.41292031622555,6.85,129.03625658233562,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3631,'2017-06-22T03:17:47.923Z',NULL,10,4,31.78621880685793,2.07,37.14153698780014,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3632,'2019-05-23T05:58:41.580Z',NULL,183,4,56.697412301919755,3.69,68.05192797528578,512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3633,'2019-10-03T08:11:17.237Z',NULL,21,7,60.57501609456816,4.24,64.30480976039486,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3634,'2017-10-04T06:25:04.443Z',NULL,18,5,54.60204747398195,3.82,48.62656983804994,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3635,'2020-01-11T17:54:41.033Z',NULL,76,2,63.82421061366486,4.47,62.28691523641801,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3636,'2018-09-30T12:45:32.553Z',NULL,100,4,67.83486485383094,4.75,80.33336203575911,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3637,'2018-05-03T07:12:10.899Z',NULL,192,3,69.18418520579327,4.84,64.58186851954916,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3638,'2020-02-20T11:47:35.530Z',7.1299456077916945,191,1,128.5841852057933,9,125.7278247231496,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3639,'2019-01-09T00:44:11.844Z',NULL,67,2,41.24480890795779,2.89,48.278156576194824,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3640,'2019-06-18T09:26:19.028Z',NULL,80,7,54.91325681036414,3.84,71.00539845546231,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3641,'2018-12-09T22:53:16.681Z',NULL,118,2,57.627613096978735,4.03,57.584046611232075,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3642,'2018-01-16T18:30:47.284Z',NULL,42,1,38.00410713690931,2.66,33.7959888960933,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3643,'2019-11-12T04:31:00.405Z',NULL,111,3,55.526746186906664,3.89,56.868145253535616,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3644,'2019-02-15T15:58:59.022Z',NULL,82,2,60.89545738030947,4.26,72.76544493932566,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3645,'2019-03-07T01:08:08.530Z',NULL,26,1,68.12471180754113,4.77,85.36879607475828,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3646,'2018-11-24T16:31:41.570Z',NULL,20,2,37.32649625046575,2.61,41.56290922070854,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3647,'2018-10-16T03:10:17.966Z',2.6299456077916945,169,5,59.53172693453274,4.17,76.02317040849034,513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3648,'2018-07-27T02:58:01.630Z',NULL,14,4,37.648145389078365,2.26,48.03314303947486,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3649,'2018-03-24T07:35:55.071Z',NULL,159,1,35.53017445377361,2.13,40.53252143288605,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3650,'2016-07-05T02:14:50.074Z',NULL,139,3,51.18512212784679,3.07,65.54378998813421,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3651,'2017-11-11T17:24:03.077Z',2.308830923684174,198,2,46.76407124473339,2.81,48.598074193727825,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3652,'2019-11-16T15:48:56.986Z',NULL,69,2,73.38772304360626,4.4,65.3024375723973,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3653,'2018-07-16T19:24:01.416Z',NULL,164,3,92.96789820016517,5.58,115.65053515284167,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3654,'2017-04-21T12:27:46.611Z',NULL,78,3,27.74461152277315,1.66,29.540016825121135,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3655,'2018-06-23T15:14:31.836Z',NULL,3,7,53.08311732230858,3.18,59.50909562107077,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3656,'2017-10-07T19:23:54.027Z',NULL,62,5,89.0134841727878,5.34,91.17476863428648,518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3657,'2018-06-28T07:57:50.181Z',NULL,151,5,91.61302306843446,5.73,118.12289527625433,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3658,'2017-11-17T10:04:05.537Z',NULL,175,3,78.21653962235106,4.89,85.39632934186626,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3659,'2020-04-12T14:41:01.746Z',NULL,125,3,80.39699207990944,5.02,87.99276363839388,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3660,'2019-03-07T20:03:54.167Z',NULL,21,1,60.57501609456816,3.79,71.4348643403125,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3661,'2019-05-04T10:08:42.999Z',NULL,47,5,84.0766209826718,5.25,86.79346001407698,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3662,'2019-12-10T03:30:14.711Z',NULL,106,2,52.723521442619514,3.3,49.32326700895395,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3663,'2019-05-03T08:03:55.909Z',NULL,13,4,112.62925391105566,7.04,126.6818219043235,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3664,'2017-10-02T08:52:33.116Z',NULL,177,6,85.87953212963993,5.37,75.93629897658722,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3665,'2018-05-17T18:02:26.490Z',2.308830923684174,137,4,67.77247956807186,4.24,79.9221210069833,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3666,'2017-09-09T12:47:24.103Z',NULL,131,3,75.41148135558485,4.71,75.98454537420415,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3667,'2019-05-03T15:08:28.377Z',NULL,127,3,134.48016314504417,8.41,151.35083408112672,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3668,'2019-12-12T07:56:53.567Z',NULL,47,1,84.0766209826718,5.25,76.69188369976942,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3669,'2019-01-02T15:41:24.311Z',NULL,149,1,69.15415037577924,4.32,67.47701066367313,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3670,'2017-08-24T11:05:20.331Z',NULL,23,6,77.91115072995538,4.87,92.83088768142818,519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3671,'2017-07-15T01:08:28.512Z',NULL,74,4,34.08536151591033,1.36,35.70108165533842,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3672,'2019-09-22T02:23:59.160Z',NULL,122,4,99.84528328808108,3.99,108.4282399903861,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3673,'2020-01-18T16:39:45.554Z',2.064699795823421,31,2,105.65346467128523,4.23,106.33914172621085,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3674,'2018-07-04T04:08:25.270Z',NULL,16,3,66.11029954877317,2.64,81.32081531578089,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3675,'2020-01-06T16:34:13.854Z',NULL,144,1,61.1983004605443,2.45,74.1118663031924,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3676,'2018-07-15T05:09:40.497Z',NULL,189,3,93.27738254731509,3.73,94.08373715821415,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3677,'2017-07-10T10:25:39.843Z',NULL,166,4,25.536330427467956,1.02,29.915031445138048,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3678,'2018-12-21T17:09:32.810Z',NULL,91,2,65.09432810381134,2.6,63.90063370352165,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3679,'2019-12-10T12:55:26.627Z',NULL,67,2,41.24480890795779,1.65,36.175352430795606,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3680,'2018-10-17T05:09:36.786Z',NULL,131,5,113.11722203337729,4.52,141.15005375390135,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3681,'2017-04-03T04:29:52.716Z',NULL,64,2,95.61478497145774,3.82,89.60583862927767,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3682,'2019-03-23T18:46:18.891Z',NULL,107,1,50.094887884945365,2,58.78682356557373,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3683,'2019-01-31T01:36:16.127Z',NULL,143,2,61.1983004605443,2.45,69.58375912515136,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3684,'2018-01-21T18:31:44.827Z',NULL,167,2,97.70449564120193,3.91,93.2967763230407,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3685,'2018-07-31T18:42:54.435Z',NULL,197,4,70.14610686710009,2.81,78.97742699737543,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3686,'2019-02-28T20:31:21.455Z',NULL,136,1,105.20402317157343,4.21,100.90198714335676,520); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3687,'2019-04-02T08:26:57.391Z',2.064699795823421,161,2,47.59120561297272,0,49.746422397451035,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3688,'2017-11-19T00:07:28.055Z',8.272523416660238,50,28,35.76013077879841,0,37.43938508781268,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3689,'2020-04-17T08:05:00.209Z',3.772523416660239,56,3,36.37128575934436,0,32.28074881790768,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3690,'2016-12-31T18:31:53.777Z',NULL,80,3,36.60883787357609,0,31.903183891577758,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3691,'2019-06-09T00:54:10.464Z',NULL,22,8,32.136779940663494,0,35.631886391440446,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3692,'2019-05-24T22:45:28.523Z',NULL,81,4,43.9329842322118,0,37.92118074788866,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3693,'2019-01-28T18:24:25.645Z',NULL,153,2,66.79892314178237,0,61.2864886007496,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3694,'2017-03-25T00:21:13.434Z',NULL,77,1,67.34461152277315,0,69.00551695575115,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3695,'2018-06-16T16:19:26.889Z',NULL,68,5,115.24343882309758,0,112.05050156993455,521); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3696,'2019-06-04T05:41:06.982Z',NULL,5,5,124.1176465275534,0,115.14570591624654,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3697,'2017-01-07T14:39:59.467Z',NULL,180,2,45.549391048892794,0,37.59790736588624,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3698,'2018-09-30T03:13:25.329Z',NULL,78,4,41.616917284159726,0,38.37842650843854,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3699,'2019-06-30T17:52:10.491Z',NULL,53,6,44.27587240151534,0,40.76890225790441,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3700,'2018-01-17T14:36:55.215Z',NULL,149,2,69.15415037577924,0,62.851128106967934,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3701,'2017-11-02T05:45:28.864Z',NULL,1,3,29.463261130679875,0,25.6793941632726,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3702,'2018-04-05T15:27:40.950Z',NULL,187,4,98.9770008385166,0,104.21082748109053,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3703,'2020-03-14T09:29:51.913Z',NULL,49,1,131.42865839323724,0,120.8009136841918,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3704,'2017-10-09T14:51:19.363Z',NULL,90,7,82.07974183693327,0,84.3586870375505,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3705,'2020-02-12T02:53:47.232Z',NULL,98,2,112.41825444654248,0,135.65615954713388,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3706,'2020-03-25T11:19:16.915Z',NULL,58,1,78.14578007078882,0,72.02879793814954,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3707,'2017-05-23T12:08:00.756Z',NULL,148,6,92.65447881697106,0,87.16281706006093,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3708,'2018-08-01T14:09:00.425Z',NULL,55,7,95.77128575934437,0,99.68147049626407,522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3709,'2016-11-18T17:11:09.428Z',NULL,116,2,76.28323416938524,0,81.25270511170116,523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3710,'2019-04-12T22:42:59.522Z',NULL,82,2,60.89545738030947,0,71.40107541698262,523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3711,'2019-01-01T05:03:56.293Z',NULL,35,1,71.53687730741436,3.58,90.46436187321873,525); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3712,'2020-01-16T06:39:08.544Z',NULL,91,1,65.09432810381134,3.25,71.4571524552009,525); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3713,'2018-01-26T06:09:14.684Z',NULL,31,1,105.65346467128523,5.28,117.91844908000144,525); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3714,'2016-07-05T22:06:47.921Z',NULL,162,4,22.378598800110105,1.12,22.157263563624152,525); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3715,'2018-12-19T08:59:11.492Z',NULL,186,2,98.9770008385166,4.95,122.80789496092194,525); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3716,'2018-06-24T02:52:05.300Z',NULL,72,5,142.20381898788685,9.24,160.72158584227594,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3717,'2019-03-12T07:37:28.591Z',NULL,191,1,128.5841852057933,8.36,143.64036775524184,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3718,'2018-06-24T15:28:03.618Z',NULL,184,5,116.09741230191975,7.55,133.3641406942815,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3719,'2019-09-06T18:20:44.354Z',NULL,172,3,122.3651993029456,7.95,144.61972813607784,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3720,'2019-01-23T14:10:20.554Z',NULL,65,1,68.22769726470014,4.43,60.69407297525954,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3721,'2017-11-08T15:39:37.441Z',NULL,122,3,66.56352219205405,4.33,70.28426295485377,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3722,'2020-03-02T07:23:56.083Z',NULL,89,1,63.719612755399886,4.14,56.982205955192356,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3723,'2018-10-09T13:50:57.190Z',NULL,195,4,109.78077396807234,7.14,126.39497821096668,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3724,'2018-12-31T01:01:22.607Z',NULL,121,1,40.44528328808107,2.63,48.1682826492582,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3725,'2018-03-22T14:46:11.536Z',NULL,12,1,116.01427581618326,7.54,133.43726793026468,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3726,'2019-02-23T17:16:11.217Z',4.484481008020849,29,1,123.57448218067185,8.03,154.76075080565855,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3727,'2017-12-02T22:25:02.543Z',NULL,10,1,31.78621880685793,2.07,35.06008013243109,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3728,'2019-09-28T19:46:49.198Z',NULL,109,6,119.04991068193098,7.74,139.031608575913,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3729,'2018-08-05T20:41:32.379Z',NULL,70,8,57.493003808959784,3.74,62.30724473755274,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3730,'2019-10-24T03:49:17.321Z',NULL,189,6,93.27738254731509,6.06,106.34312903753126,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3731,'2018-12-09T23:04:46.356Z',NULL,98,3,112.41825444654248,7.31,107.12928617488073,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3732,'2020-01-29T00:48:55.075Z',NULL,153,3,66.79892314178237,4.34,81.76826186978101,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3733,'2018-08-15T03:10:05.984Z',NULL,148,10,138.9817182254566,9.03,123.89532899598682,526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3734,'2018-12-23T11:15:45.421Z',NULL,124,2,110.93145648834248,6.66,112.52925151243768,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3735,'2020-02-07T19:12:23.603Z',NULL,23,1,116.86672609493307,7.01,128.8635701488318,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3736,'2019-09-28T13:33:17.904Z',NULL,12,6,116.01427581618326,6.96,107.72736810810495,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3737,'2017-10-22T02:42:39.924Z',NULL,159,8,23.686782969182406,1.42,22.539410330837363,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3738,'2019-10-14T15:53:31.412Z',NULL,160,8,47.59120561297272,2.86,50.98784944891398,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3739,'2017-07-12T01:17:44.276Z',NULL,175,6,78.21653962235106,4.69,86.20354211948556,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3740,'2018-07-01T19:58:53.761Z',NULL,151,4,91.61302306843446,5.5,118.32129876769322,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3741,'2019-02-01T10:09:52.441Z',NULL,96,2,104.82144858590365,6.29,98.0524107651455,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3742,'2019-10-18T06:11:38.288Z',NULL,2,6,105.11984419607644,6.31,104.89872970825913,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3743,'2017-11-16T18:08:28.988Z',NULL,93,3,33.212427711035886,1.99,31.248310847485417,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3744,'2020-01-29T11:32:19.407Z',NULL,37,3,80.10774204020768,4.81,90.42820601118115,527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3745,'2019-05-06T05:51:42.444Z',NULL,63,5,133.5202262591817,8.68,158.7612795468893,528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3746,'2019-04-17T16:49:42.676Z',NULL,162,3,33.56789820016516,0.97,40.758323029818214,529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3747,'2018-11-26T21:06:17.901Z',NULL,3,2,53.08311732230858,1.54,54.05685128501468,529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3748,'2017-12-09T12:25:34.874Z',NULL,131,1,75.41148135558485,2.19,66.82617165900191,529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3749,'2016-08-09T15:33:55.852Z',NULL,173,4,81.57679953529707,4.08,101.35070154464961,530); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3750,'2018-03-13T09:45:21.922Z',NULL,30,1,64.17448218067184,3.21,78.49882692620756,530); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3751,'2019-02-18T15:52:28.703Z',NULL,118,2,57.627613096978735,2.88,55.193731182306635,530); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3752,'2017-07-06T19:38:24.433Z',NULL,62,5,89.0134841727878,3.56,86.57924673890675,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3753,'2018-07-23T22:11:58.588Z',NULL,56,5,36.37128575934436,1.45,34.13786255224857,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3754,'2019-06-18T16:40:27.223Z',NULL,170,5,105.07665741496471,4.2,89.66360702279472,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3755,'2019-06-24T19:09:43.152Z',NULL,176,5,57.92480943352658,2.32,63.75912544210603,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3756,'2017-01-01T15:50:58.955Z',NULL,70,2,38.32866920597319,1.53,33.17153038587524,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3757,'2018-10-14T14:03:12.473Z',NULL,67,4,41.24480890795779,1.65,43.54678958466919,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3758,'2018-10-03T22:49:57.396Z',6.293339429019716,141,4,126.20312547576883,5.05,157.13320189568478,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3759,'2018-01-17T10:05:15.637Z',NULL,72,2,142.20381898788685,5.69,162.63875467728548,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3760,'2019-06-18T12:15:39.063Z',NULL,61,7,23.537915510955656,0.94,26.643728041308158,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3761,'2017-12-25T03:53:07.796Z',NULL,151,2,61.07534871228964,2.44,54.02499528721583,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3762,'2018-02-04T05:12:04.161Z',NULL,2,18,105.11984419607644,4.2,114.99304015010533,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3763,'2019-10-01T12:24:07.864Z',NULL,58,6,78.14578007078882,3.13,76.19919451634772,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3764,'2018-01-11T04:33:20.976Z',NULL,161,2,47.59120561297272,1.9,57.90701503381033,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3765,'2019-05-24T22:34:55.460Z',1.793339429019716,16,46,66.11029954877317,2.64,78.26144304977726,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3766,'2017-03-18T14:34:12.110Z',NULL,145,1,40.7988669736962,1.63,35.46612965633369,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3767,'2020-03-25T12:22:42.548Z',NULL,1,1,44.19489169601981,1.77,48.57524005300964,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3768,'2018-07-16T00:25:44.442Z',NULL,88,4,105.41292031622555,4.22,133.39083949253333,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3769,'2017-11-07T03:25:01.532Z',NULL,142,3,46.8990203814063,1.88,53.184591007114214,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3770,'2017-10-21T18:13:08.586Z',NULL,115,8,51.94130981241432,2.08,65.55671503449972,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3771,'2019-10-14T05:27:07.020Z',NULL,20,8,37.32649625046575,1.49,35.19012506540748,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3772,'2018-09-28T18:30:32.120Z',NULL,111,6,55.526746186906664,2.22,66.76904208013096,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3773,'2017-07-07T12:24:09.259Z',NULL,150,44,85.70276691718615,3.43,107.23809129339999,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3774,'2017-07-25T22:03:41.140Z',NULL,127,4,89.65344209669612,3.59,103.71048706336128,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3775,'2019-07-11T20:20:50.716Z',NULL,104,4,106.44215255778118,4.26,96.32072172523638,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3776,'2018-01-01T14:45:34.281Z',NULL,25,2,68.62263967182464,2.74,78.70233419167847,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3777,'2019-04-25T13:17:34.303Z',NULL,74,3,51.12804227386549,2.05,63.46713235825764,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3778,'2019-01-02T22:23:18.096Z',NULL,135,2,45.80402317157342,1.83,40.33130629706608,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3779,'2019-10-10T20:42:57.267Z',NULL,93,8,49.81864156655383,1.99,49.79100337778239,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3780,'2019-03-29T00:27:14.373Z',NULL,19,1,64.00675097561322,2.56,59.70867257090193,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3781,'2017-01-24T10:49:58.050Z',NULL,20,2,24.884330833643833,1,27.07296368274356,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3782,'2019-05-21T23:59:17.183Z',NULL,71,5,82.80381898788684,3.31,77.6444913849843,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3783,'2020-02-28T05:38:15.543Z',NULL,71,2,82.80381898788684,3.31,81.22328904248131,531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3784,'2018-10-11T21:18:11.551Z',8.177253011975838,177,6,128.8192981944599,0,132.383763962856,533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3785,'2016-11-09T12:32:10.453Z',NULL,30,3,42.7829881204479,0,40.57641727205197,533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3786,'2018-09-21T19:20:13.937Z',NULL,162,5,33.56789820016516,0.97,38.86224659317244,534); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3787,'2019-11-03T01:35:08.136Z',NULL,73,3,71.6287722595695,2.08,88.33169933280654,534); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3788,'2018-10-23T07:06:09.670Z',NULL,59,7,89.20214751859149,2.59,102.8152012373022,534); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3789,'2018-10-21T00:01:41.495Z',NULL,74,7,51.12804227386549,3.83,57.6473419899642,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3790,'2019-01-19T02:09:36.531Z',NULL,167,3,97.70449564120193,7.33,106.95087431677561,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3791,'2018-12-01T20:20:31.845Z',NULL,194,2,50.38077396807232,3.78,53.441059724754155,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3792,'2018-07-08T20:54:55.257Z',8.177253011975838,85,4,54.90104734428525,4.12,60.23445079503559,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3793,'2020-01-22T20:38:04.662Z',NULL,144,2,61.1983004605443,4.59,53.824048370573955,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3794,'2019-09-13T09:31:48.920Z',NULL,155,6,43.77574310182776,3.28,54.24074268049658,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3795,'2017-11-11T06:36:36.317Z',NULL,191,4,85.72279013719552,6.43,81.95712618887097,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3796,'2019-05-10T06:55:31.165Z',3.6772530119758375,68,4,115.24343882309758,8.64,131.54051443352066,535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3797,'2018-01-09T16:25:09.677Z',NULL,99,1,67.83486485383094,4.07,87.06423855659472,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3798,'2019-06-11T01:16:53.263Z',8.177253011975838,8,5,98.83823503993958,5.93,89.32335292828111,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3799,'2019-08-02T20:02:35.244Z',NULL,127,5,134.48016314504417,8.07,124.1224100903756,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3800,'2018-07-09T05:14:45.572Z',NULL,170,3,105.07665741496471,6.3,101.69243990519938,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3801,'2018-01-23T23:47:28.854Z',NULL,95,1,49.81864156655383,2.99,51.576572989594254,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3802,'2018-01-06T12:36:08.726Z',NULL,58,2,78.14578007078882,4.69,98.01052758911845,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3803,'2020-02-22T18:30:29.716Z',NULL,132,2,127.88197029833711,7.67,138.0627241496476,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3804,'2018-08-14T07:38:39.375Z',NULL,15,6,37.648145389078365,2.26,36.057747561446554,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3805,'2019-01-14T19:29:47.487Z',NULL,172,1,122.3651993029456,7.34,143.05653930646724,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3806,'2018-11-21T10:28:48.974Z',NULL,153,2,66.79892314178237,4.01,60.534300484471544,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3807,'2019-06-23T14:46:45.919Z',NULL,51,5,75.65058751905018,4.54,73.95401012594925,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3808,'2017-10-17T07:42:07.140Z',NULL,4,6,73.99178100854834,4.44,66.93398160694501,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3809,'2017-02-17T21:25:42.770Z',NULL,161,2,31.727470408648482,1.9,38.66884752360592,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3810,'2018-01-06T13:59:32.276Z',NULL,200,2,73.20395711799151,4.39,90.7464501931011,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3811,'2018-09-08T00:00:07.426Z',NULL,127,4,134.48016314504417,8.07,148.54744615859778,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3812,'2018-02-12T12:00:22.904Z',NULL,30,2,64.17448218067184,3.85,82.27958146707348,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3813,'2016-07-22T18:07:16.459Z',NULL,45,6,78.6996782532274,4.72,82.80546818556968,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3814,'2019-10-15T07:47:45.651Z',2.298781891332655,52,5,103.67587240151535,6.22,100.76296645248765,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3815,'2018-06-30T22:31:07.984Z',NULL,147,4,66.64727121216615,4,66.12127213641888,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3816,'2018-03-11T17:08:47.523Z',NULL,72,1,142.20381898788685,8.53,184.35106254918713,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3817,'2019-04-08T11:33:45.189Z',NULL,79,3,41.616917284159726,2.5,52.303562971512775,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3818,'2019-06-16T06:24:14.018Z',NULL,145,5,61.1983004605443,3.67,55.361898517225,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3819,'2017-07-03T17:05:00.258Z',NULL,172,4,81.57679953529707,4.89,78.624166775114,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3820,'2019-09-29T19:37:37.446Z',NULL,104,4,106.44215255778118,6.39,130.3575851628054,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3821,'2019-11-15T14:51:23.504Z',NULL,33,2,47.7448636959614,2.86,43.33658606182259,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3822,'2018-05-14T23:16:12.111Z',NULL,71,3,82.80381898788684,4.97,81.83098246484887,536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3823,'2019-12-04T17:24:37.201Z',NULL,3,2,53.08311732230858,3.45,52.279864918847785,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3824,'2018-06-11T02:09:01.149Z',NULL,127,7,134.48016314504417,8.74,140.27513403458053,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3825,'2020-02-10T05:06:39.563Z',NULL,160,1,47.59120561297272,3.09,58.48959919900353,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3826,'2016-11-16T20:05:34.276Z',NULL,95,2,33.212427711035886,2.16,31.387465809546217,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3827,'2017-04-20T07:29:00.666Z',1.8742071709584511,161,3,31.727470408648482,2.06,31.05920451032199,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3828,'2016-11-11T06:04:21.048Z',NULL,60,3,19.86809834572766,1.29,24.110242328574905,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3829,'2018-05-17T13:50:40.653Z',NULL,22,5,32.136779940663494,2.09,33.86812163178438,537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3830,'2017-11-12T17:45:18.677Z',NULL,69,2,48.925148695737505,2.45,53.646730665908386,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3831,'2018-06-01T14:51:48.950Z',NULL,62,5,133.5202262591817,6.68,150.34029798803843,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3832,'2020-02-24T13:28:59.812Z',NULL,139,2,76.77768319177018,3.84,71.59706464545478,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3833,'2019-12-13T17:54:11.887Z',6.374207170958451,181,2,143.88940370476112,7.19,164.71834444347175,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3834,'2019-06-22T12:39:31.682Z',NULL,182,3,84.48940370476112,4.22,79.07996363659309,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3835,'2019-12-29T00:25:02.526Z',NULL,42,2,38.00410713690931,1.9,38.039298442143355,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3836,'2019-02-14T11:38:25.815Z',NULL,34,2,74.30391386913199,3.72,66.4811401991993,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3837,'2020-04-18T11:38:11.871Z',NULL,198,2,70.14610686710009,3.51,83.43244833449737,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3838,'2019-03-30T11:17:19.224Z',NULL,72,0,142.20381898788685,7.11,178.10544909436487,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3839,'2019-03-04T19:58:08.515Z',NULL,22,0,32.136779940663494,1.61,29.173445447038258,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3840,'2020-04-13T18:46:17.025Z',NULL,17,2,79.93608046792765,4,94.54958583724058,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3841,'2020-01-15T12:55:39.703Z',NULL,124,1,110.93145648834248,5.55,116.35143450479832,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3842,'2018-07-18T17:17:34.625Z',NULL,109,3,119.04991068193098,5.95,129.0843634791725,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3843,'2020-04-18T19:02:16.091Z',NULL,149,2,69.15415037577924,3.46,84.39635213143016,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3844,'2016-11-17T20:12:04.641Z',NULL,199,2,76.95334253952366,3.85,83.117257854479,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3845,'2017-11-01T02:43:49.779Z',NULL,195,2,73.18718264538155,3.66,63.1923574873353,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3846,'2018-11-30T15:18:23.565Z',0.5621685832221619,3,2,53.08311732230858,2.65,50.2988817994514,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3847,'2017-11-25T21:47:37.066Z',5.062168583222162,164,2,61.978598800110106,3.1,76.10946386154801,538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3848,'2019-02-12T18:48:20.759Z',NULL,139,1,76.77768319177018,5.76,92.87111752045878,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3849,'2019-07-16T04:06:18.990Z',NULL,33,5,47.7448636959614,3.58,53.34914596921969,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3850,'2020-04-11T13:07:54.674Z',NULL,19,2,64.00675097561322,4.8,82.71621051059148,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3851,'2018-08-31T09:03:54.600Z',5.062168583222162,31,26,105.65346467128523,7.92,112.34741661209549,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3852,'2018-06-06T15:34:14.833Z',NULL,8,4,98.83823503993958,7.41,100.0983122740113,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3853,'2019-05-06T12:26:52.114Z',NULL,193,3,50.38077396807232,3.78,51.2270741452934,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3854,'2018-06-27T17:27:16.868Z',NULL,29,6,123.57448218067185,9.27,157.7901595249419,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3855,'2019-07-21T20:01:14.660Z',NULL,131,5,113.11722203337729,8.48,106.48586482310326,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3856,'2017-12-15T07:22:06.170Z',NULL,35,1,47.691251538276234,3.58,57.25148883727351,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3857,'2020-02-05T21:25:18.982Z',NULL,120,2,83.5020135028928,6.26,97.46686758593233,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3858,'2019-10-02T05:42:15.505Z',NULL,174,7,111.61430894181083,8.37,110.2878851416063,540); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3859,'2020-01-11T23:25:17.934Z',NULL,172,2,122.3651993029456,5.81,110.40380527366169,542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3860,'2019-06-14T09:52:12.217Z',NULL,72,8,142.20381898788685,6.75,138.42584339139012,542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3861,'2019-10-09T00:27:28.982Z',NULL,49,7,131.42865839323724,6.24,113.58133922901915,542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3862,'2019-07-12T10:45:27.780Z',NULL,98,6,112.41825444654248,5.34,132.39959798485165,542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3863,'2019-08-07T17:43:53.119Z',NULL,113,7,110.47725376186015,5.25,123.63966999603416,542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3864,'2019-12-17T05:03:06.826Z',NULL,136,1,105.20402317157343,5,91.963834131725,542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3865,'2018-01-15T10:59:14.135Z',NULL,176,1,57.92480943352658,2.32,60.5109045738278,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3866,'2017-12-28T18:21:11.356Z',NULL,85,1,36.6006982295235,1.46,45.07331000711167,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3867,'2019-08-15T17:52:55.179Z',NULL,5,5,124.1176465275534,4.96,151.0491646112493,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3868,'2017-05-28T16:37:39.134Z',NULL,122,4,66.56352219205405,2.66,66.36539382513467,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3869,'2019-11-20T17:20:44.632Z',NULL,137,3,67.77247956807186,2.71,58.27938423524951,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3870,'2018-03-08T21:04:08.290Z',NULL,66,1,136.16126271106958,5.45,141.06071735072902,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3871,'2019-03-09T00:26:02.110Z',NULL,157,1,139.8942352373801,5.6,169.6562649174201,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3872,'2017-12-29T19:15:31.158Z',NULL,168,3,79.28781795635516,3.17,95.20887570401796,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3873,'2017-04-12T15:11:29.283Z',NULL,19,3,42.67116731707548,1.71,46.89106192727822,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3874,'2018-02-23T01:16:56.939Z',NULL,155,2,43.77574310182776,1.75,43.52761369119636,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3875,'2019-09-04T07:43:49.610Z',NULL,26,5,68.12471180754113,2.72,72.1379658574786,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3876,'2019-03-29T16:14:54.107Z',NULL,177,1,128.8192981944599,5.15,143.3041379321932,543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3877,'2017-11-09T22:46:51.252Z',NULL,167,3,65.13633042746795,4.07,64.96447088230762,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3878,'2020-01-29T16:08:14.272Z',NULL,170,1,105.07665741496471,6.57,121.21313873849365,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3879,'2017-10-09T07:28:08.778Z',NULL,143,4,40.7988669736962,2.55,45.46559792214349,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3880,'2017-08-08T23:38:44.494Z',NULL,181,7,95.92626913650741,6,103.86673043834803,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3881,'2017-07-05T12:36:51.724Z',NULL,47,6,56.05108065511453,3.5,65.36365347875463,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3882,'2018-08-25T19:48:18.320Z',NULL,75,7,125.81276373452337,7.86,158.2702416720978,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3883,'2020-04-05T03:07:40.028Z',NULL,158,3,139.8942352373801,8.74,150.32246127368725,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3884,'2018-03-30T18:42:40.941Z',NULL,66,1,136.16126271106958,8.51,147.785705612964,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3885,'2018-04-22T11:04:22.536Z',NULL,99,3,67.83486485383094,4.24,72.71184476608265,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3886,'2020-01-22T10:32:02.666Z',NULL,3,2,53.08311732230858,3.32,47.079016161457304,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3887,'2018-03-26T05:49:54.536Z',NULL,117,1,55.024851254077866,3.44,68.68081824350269,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3888,'2018-09-20T21:03:47.810Z',NULL,135,5,45.80402317157342,2.86,49.806400063595305,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3889,'2018-12-24T20:25:48.334Z',NULL,56,1,36.37128575934436,2.27,40.82101227346421,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3890,'2020-02-12T03:33:00.334Z',NULL,195,2,109.78077396807234,6.86,120.86062502705857,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3891,'2019-11-08T15:14:36.139Z',NULL,54,3,62.09360840402396,3.88,57.092808348056586,544); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3892,'2019-04-02T06:58:30.995Z',NULL,35,3,71.53687730741436,2.86,82.78353963209973,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3893,'2018-11-12T05:51:22.411Z',NULL,48,3,123.20884248534108,4.93,138.7882315736451,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3894,'2018-05-21T04:11:32.839Z',NULL,133,5,68.4819702983371,2.74,86.10803762049247,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3895,'2017-12-22T17:19:10.164Z',NULL,21,2,40.38334406304544,1.62,40.15500855140783,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3896,'2018-11-05T05:22:18.320Z',NULL,126,3,125.24398120308456,5.01,109.79809940856263,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3897,'2017-12-26T02:37:21.413Z',NULL,173,2,81.57679953529707,3.26,99.33391222570289,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3898,'2017-10-24T11:46:12.958Z',NULL,171,6,70.05110494330981,2.8,83.32160827939828,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3899,'2018-09-19T12:14:33.802Z',NULL,37,5,80.10774204020768,3.2,69.19458889120635,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3900,'2018-09-09T01:48:32.638Z',NULL,2,5,105.11984419607644,4.2,94.40610657860967,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3901,'2017-11-14T15:40:37.379Z',NULL,49,3,87.61910559549149,3.5,107.35695784082928,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3902,'2018-10-26T08:40:24.348Z',NULL,174,6,111.61430894181083,4.46,138.48945443059935,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3903,'2019-10-11T17:20:43.180Z',NULL,64,6,143.4221774571866,5.74,176.28185362756318,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3904,'2018-11-06T19:53:21.271Z',NULL,67,3,41.24480890795779,1.65,36.955035754209845,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3905,'2017-03-29T20:33:13.505Z',NULL,42,1,25.336071424606207,1.01,25.037179415336784,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3906,'2019-12-18T13:44:32.591Z',NULL,51,2,75.65058751905018,3.03,89.34235641772344,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3907,'2018-06-26T05:30:49.218Z',NULL,106,7,52.723521442619514,2.11,65.80246598292175,545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3908,'2018-09-12T12:13:23.110Z',NULL,59,5,89.20214751859149,5.58,99.71133855287503,547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3909,'2019-05-26T11:24:00.737Z',NULL,67,5,41.24480890795779,2.06,50.88245093683138,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3910,'2019-05-20T21:31:59.362Z',NULL,96,3,104.82144858590365,5.24,105.9635152156374,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3911,'2019-07-27T05:16:20.477Z',NULL,143,3,61.1983004605443,3.06,67.59030389215144,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3912,'2020-04-10T19:07:31.948Z',NULL,20,2,37.32649625046575,1.87,44.57285566384979,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3913,'2018-05-24T23:52:14.029Z',NULL,65,3,68.22769726470014,3.41,66.40835392022109,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3914,'2017-11-21T08:42:45.416Z',NULL,21,2,40.38334406304544,2.02,49.20264959858578,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3915,'2019-06-14T22:42:07.600Z',NULL,179,3,68.32408657333919,3.42,61.26989904270966,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3916,'2019-03-02T23:36:03.869Z',NULL,30,1,64.17448218067184,3.21,68.3021077058435,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3917,'2019-04-05T18:00:31.433Z',NULL,59,3,89.20214751859149,4.46,113.67113566546637,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3918,'2018-11-29T19:21:42.173Z',NULL,198,2,70.14610686710009,3.51,89.24925940634911,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3919,'2018-04-25T02:41:54.465Z',NULL,124,2,110.93145648834248,5.55,141.8630475442202,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3920,'2017-10-09T13:29:15.053Z',NULL,173,5,81.57679953529707,4.08,72.86077125926842,549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3921,'2018-10-17T17:27:52.474Z',NULL,81,3,43.9329842322118,0,43.19945742094076,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3922,'2017-07-10T02:29:38.372Z',7.414431316524632,197,4,46.76407124473339,0,49.33197568057642,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3923,'2019-04-28T00:30:47.137Z',NULL,116,4,114.42485125407785,0,106.4286325664283,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3924,'2020-02-28T20:10:21.183Z',NULL,109,2,119.04991068193098,0,127.67456387841231,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3925,'2019-03-03T02:50:26.217Z',NULL,51,1,75.65058751905018,0,75.00570170594996,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3926,'2018-12-20T00:40:02.357Z',NULL,57,2,122.4223933583994,0,123.6951581227958,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3927,'2019-05-03T04:48:36.413Z',NULL,79,5,41.616917284159726,0,45.14055127704365,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3928,'2019-03-22T06:58:41.751Z',NULL,167,1,97.70449564120193,0,109.94098160510498,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3929,'2018-09-07T10:13:10.947Z',NULL,185,5,39.57700083851661,0,46.98291450062996,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3930,'2019-04-24T18:13:59.127Z',NULL,150,4,128.55415037577922,0,111.66263267329904,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3931,'2018-09-14T21:07:54.294Z',NULL,33,5,47.7448636959614,0,50.59510396041169,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3932,'2019-11-20T09:39:15.119Z',NULL,69,3,73.38772304360626,0,70.30194056739333,550); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3933,'2017-05-02T15:05:45.225Z',NULL,77,4,67.34461152277315,2.69,73.81847317798302,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3934,'2018-04-13T13:08:28.681Z',NULL,129,2,148.1672972165937,5.93,140.66642735948506,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3935,'2019-12-13T15:40:06.801Z',NULL,195,1,109.78077396807234,4.39,134.75467303588397,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3936,'2018-10-13T07:23:43.372Z',NULL,187,5,98.9770008385166,3.96,85.68112940098997,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3937,'2017-02-24T10:22:04.953Z',NULL,172,2,81.57679953529707,3.26,101.8181383271918,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3938,'2019-04-11T05:09:08.098Z',NULL,130,4,75.02573869315137,3,91.01256042387675,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3939,'2016-11-07T23:22:20.523Z',NULL,162,3,22.378598800110105,0.9,26.057146853985525,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3940,'2019-05-15T03:49:56.890Z',NULL,98,3,112.41825444654248,4.5,114.14458568589409,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3941,'2017-06-22T16:06:49.901Z',6.471895976191109,183,5,37.7982748679465,1.51,36.33802800794698,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3942,'2018-06-02T03:05:19.583Z',NULL,44,7,76.35255205175756,3.05,80.63643425421228,551); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3943,'2019-01-25T15:53:28.323Z',NULL,141,2,126.20312547576883,5.33,144.27789642051948,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3944,'2018-04-13T13:02:54.076Z',NULL,129,3,148.1672972165937,6.26,153.57077155743173,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3945,'2019-02-27T19:42:49.074Z',NULL,144,2,61.1983004605443,2.59,69.62156049794194,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3946,'2018-05-20T01:25:37.636Z',NULL,74,3,51.12804227386549,2.16,63.38140435959432,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3947,'2019-08-11T18:00:28.632Z',NULL,195,6,109.78077396807234,4.64,131.69507205635705,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3948,'2017-05-31T22:05:50.884Z',NULL,168,3,79.28781795635516,3.35,94.01916093728646,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3949,'2018-07-05T09:14:02.671Z',NULL,31,3,105.65346467128523,4.46,125.93229252322443,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3950,'2018-12-28T07:12:39.688Z',NULL,67,2,41.24480890795779,1.74,37.438587961413404,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3951,'2019-07-23T00:03:14.081Z',NULL,46,4,118.0495173798411,4.99,140.01242504141914,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3952,'2019-12-10T02:34:12.558Z',NULL,121,2,40.44528328808107,1.71,38.11211020183975,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3953,'2019-04-26T00:32:30.728Z',NULL,156,2,30.615804149046195,1.29,33.919926236150786,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3954,'2017-06-02T23:46:16.333Z',NULL,178,3,78.21975500247076,3.3,84.2265052749821,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3955,'2020-03-28T16:42:16.216Z',NULL,45,1,118.0495173798411,4.99,115.67851206317428,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3956,'2019-12-17T00:48:50.740Z',NULL,57,1,122.4223933583994,5.17,135.12519306564025,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3957,'2017-08-27T06:39:35.243Z',NULL,158,4,93.26282349158673,3.94,88.42529632497333,552); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3958,'2020-03-27T17:48:15.818Z',NULL,88,1,105.41292031622555,5.27,133.34281744281276,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3959,'2019-10-30T01:50:12.068Z',NULL,116,4,114.42485125407785,5.72,102.95383951438627,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3960,'2020-01-18T12:28:25.023Z',NULL,6,1,97.43621265344382,4.87,100.65723376309873,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3961,'2020-03-19T01:28:18.218Z',NULL,17,0,79.93608046792765,4,87.09922060660975,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3962,'2018-07-04T01:11:34.367Z',NULL,111,2,55.526746186906664,2.78,65.38315685876267,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3963,'2018-10-19T10:43:21.267Z',NULL,190,3,128.5841852057933,6.43,117.98714868432482,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3964,'2019-11-10T04:29:54.946Z',NULL,60,1,29.80214751859149,1.49,33.66077329858192,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3965,'2019-03-07T19:23:32.872Z',NULL,189,0,93.27738254731509,4.66,112.27761845799417,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3966,'2018-12-15T09:12:02.111Z',NULL,119,1,43.43814329652384,2.17,52.41616267382878,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3967,'2018-06-24T02:00:02.321Z',NULL,66,3,136.16126271106958,6.81,171.05299070720542,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3968,'2019-04-02T21:59:50.121Z',NULL,140,1,66.80312547576881,3.34,78.49008400245764,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3969,'2018-09-05T14:08:40.497Z',NULL,30,2,64.17448218067184,3.21,79.31682327528353,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3970,'2018-12-10T17:26:44.435Z',NULL,179,1,68.32408657333919,3.42,81.13267197421035,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3971,'2018-01-24T23:00:20.190Z',5.980438467948973,21,1,60.57501609456816,3.03,74.64482713418448,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3972,'2018-04-04T05:49:39.568Z',1.480438467948973,111,2,55.526746186906664,2.78,51.23648586506509,554); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3973,'2018-02-06T05:38:18.753Z',NULL,198,1,70.14610686710009,4.21,80.1889439534065,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3974,'2017-02-24T18:25:49.110Z',NULL,59,1,59.46809834572766,3.57,77.55128978427615,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3975,'2018-03-29T21:47:18.027Z',NULL,29,0,123.57448218067185,7.41,137.87662708032826,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3976,'2020-02-04T14:59:49.992Z',NULL,147,1,66.64727121216615,4,64.64720123752123,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3977,'2017-12-30T20:56:28.639Z',NULL,138,1,75.96718984479077,4.56,91.52637622396834,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3978,'2017-08-05T15:07:40.878Z',NULL,127,6,89.65344209669612,5.38,103.92063332034776,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3979,'2019-07-04T20:49:22.052Z',NULL,39,5,114.58158180283459,6.87,109.41455927854574,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3980,'2019-09-16T15:53:31.394Z',NULL,143,5,61.1983004605443,3.67,61.313407931087454,555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3981,'2017-06-20T20:31:31.304Z',NULL,45,5,78.6996782532274,4.92,76.1846942107969,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3982,'2018-11-08T12:58:34.628Z',NULL,148,2,138.9817182254566,8.69,142.9384708268919,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3983,'2017-11-10T08:58:55.334Z',3.5186841584225563,162,3,22.378598800110105,1.4,26.684700466932636,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3984,'2018-12-13T21:35:18.583Z',NULL,163,2,33.56789820016516,2.1,32.174987944824395,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3985,'2018-07-01T19:07:32.345Z',NULL,67,5,41.24480890795779,2.58,44.85598353210151,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3986,'2017-09-28T03:07:21.037Z',NULL,158,6,93.26282349158673,5.83,116.36546458651338,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3987,'2017-08-18T13:40:23.300Z',NULL,54,9,41.395738936015974,2.59,35.68418353691005,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3988,'2017-02-18T17:35:01.697Z',NULL,53,2,29.517248267676894,1.84,36.72893372040783,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3989,'2018-02-23T04:11:53.003Z',3.5186841584225563,36,1,130.93687730741433,8.18,137.90733082244233,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3990,'2018-10-18T20:11:47.808Z',NULL,94,6,109.21864156655383,6.83,133.0401368428019,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3991,'2017-11-06T06:47:14.511Z',NULL,88,4,70.27528021081703,4.39,73.14869800646751,556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3992,'2019-02-18T13:44:36.242Z',NULL,115,2,77.91196471862148,4.87,67.59885816666434,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3993,'2018-01-10T18:11:08.240Z',NULL,187,2,98.9770008385166,6.19,129.05454353884994,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3994,'2020-04-05T09:17:05.539Z',NULL,71,3,82.80381898788684,5.18,82.19458394074275,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3995,'2019-11-18T20:04:11.691Z',NULL,71,4,82.80381898788684,5.18,97.02747112701913,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3996,'2017-09-13T20:15:53.556Z',NULL,179,5,45.549391048892794,2.85,45.00122266822881,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3997,'2019-07-05T20:17:06.876Z',NULL,151,5,91.61302306843446,5.73,95.64666358437951,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3998,'2018-08-21T20:59:04.122Z',NULL,166,8,38.30449564120193,2.39,42.44496711428243,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (3999,'2019-12-22T12:52:42.120Z',NULL,197,2,70.14610686710009,4.38,90.31627543608971,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4000,'2019-11-09T03:54:25.685Z',NULL,38,4,66.06937283839378,4.13,66.33022612113858,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4001,'2019-04-13T20:26:02.465Z',NULL,135,4,45.80402317157342,2.86,44.063719810530735,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4002,'2019-05-16T12:16:06.295Z',NULL,84,4,81.87627832636537,5.12,98.98230116764343,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4003,'2019-08-23T03:07:14.539Z',NULL,162,6,33.56789820016516,2.1,30.553541284544487,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4004,'2018-02-12T05:56:51.378Z',NULL,115,2,77.91196471862148,4.87,91.59572866990347,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4005,'2019-10-20T21:37:08.498Z',NULL,15,5,37.648145389078365,2.35,41.72905285007386,557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4006,'2020-04-16T03:48:00.788Z',NULL,178,3,117.32963250370614,4.69,113.54334129321332,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4007,'2018-11-17T20:27:15.219Z',NULL,49,3,131.42865839323724,5.26,130.32408017724677,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4008,'2019-05-05T18:20:15.338Z',NULL,31,5,105.65346467128523,4.23,129.4815461104065,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4009,'2019-02-10T04:23:39.875Z',NULL,60,2,29.80214751859149,1.19,31.01509947118551,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4010,'2017-02-17T14:53:28.374Z',7.259629153881913,144,1,40.7988669736962,1.63,45.156019527337605,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4011,'2019-01-17T02:07:13.281Z',2.759629153881913,98,2,112.41825444654248,4.5,122.9420332003547,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4012,'2016-10-22T19:32:30.565Z',NULL,97,5,74.94550296436165,3,84.95798283431759,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4013,'2018-07-16T19:42:17.708Z',NULL,185,5,39.57700083851661,1.58,47.28608547963893,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4014,'2020-02-10T01:40:25.262Z',NULL,48,2,123.20884248534108,4.93,151.6734373462659,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4015,'2018-07-23T08:39:35.345Z',NULL,191,7,128.5841852057933,5.14,164.64487678007384,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4016,'2019-11-13T10:54:20.881Z',NULL,160,4,47.59120561297272,1.9,50.21745486031517,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4017,'2017-07-01T21:40:42.297Z',NULL,105,5,35.149014295079674,1.41,42.34142540665677,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4018,'2020-04-04T09:34:15.034Z',NULL,165,2,38.30449564120193,1.53,38.90206647899073,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4019,'2016-12-23T14:20:30.717Z',NULL,104,2,70.96143503852079,2.84,86.94167151538358,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4020,'2017-08-16T16:06:50.138Z',NULL,192,6,46.122790137195516,1.84,39.39631359182975,558); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4021,'2019-12-23T11:15:00.116Z',8.803530222771835,38,2,66.06937283839378,3.96,82.08234663566958,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4022,'2018-10-09T12:17:18.804Z',NULL,93,8,49.81864156655383,2.99,45.63651984388783,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4023,'2018-01-19T23:21:35.041Z',NULL,156,3,30.615804149046195,1.84,39.483032309152684,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4024,'2019-04-11T08:21:02.123Z',NULL,120,3,83.5020135028928,5.01,79.21023815632935,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4025,'2017-01-27T08:35:02.208Z',NULL,166,2,25.536330427467956,1.53,23.84431600508096,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4026,'2018-12-26T07:07:31.182Z',NULL,74,3,51.12804227386549,3.07,65.75932503355962,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4027,'2018-08-08T04:56:48.373Z',NULL,187,9,98.9770008385166,5.94,92.93375056193874,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4028,'2018-04-12T23:20:24.579Z',NULL,78,3,41.616917284159726,2.5,48.86655415505023,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4029,'2017-09-27T23:22:14.868Z',NULL,108,5,33.39659192329691,2,37.104079319055586,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4030,'2019-09-19T15:48:48.736Z',NULL,86,5,92.31436670850246,5.54,94.00177478507642,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4031,'2019-07-28T23:45:19.882Z',NULL,151,5,91.61302306843446,5.5,99.29461693610818,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4032,'2017-11-05T12:59:22.014Z',NULL,28,3,45.41647453836076,2.72,52.12653535967444,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4033,'2017-08-04T11:23:16.332Z',NULL,134,7,28.328223666657742,1.7,27.402393774124313,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4034,'2019-08-08T02:56:39.736Z',NULL,42,9,38.00410713690931,2.28,38.20713644417447,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4035,'2018-12-28T14:11:50.696Z',NULL,177,2,128.8192981944599,7.73,161.89319791514393,560); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4036,'2019-06-27T06:04:35.381Z',NULL,24,7,112.30643674729413,0,111.47527463132843,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4037,'2018-04-04T19:18:28.412Z',NULL,128,4,75.08016314504417,0,66.20621966486439,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4038,'2019-10-10T15:29:56.570Z',NULL,200,6,73.20395711799151,0,63.18753300840018,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4039,'2017-03-01T06:02:44.283Z',NULL,10,1,31.78621880685793,0,28.685847517363026,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4040,'2020-01-06T07:26:44.174Z',NULL,46,2,118.0495173798411,0,145.18184007289727,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4041,'2018-06-07T02:30:01.400Z',NULL,61,7,23.537915510955656,0,20.71666682897695,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4042,'2020-02-01T14:31:20.339Z',NULL,151,1,91.61302306843446,0,101.92411618207265,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4043,'2018-04-14T02:09:52.695Z',NULL,178,3,117.32963250370614,0,122.14092703942342,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4044,'2018-01-29T21:05:38.258Z',NULL,55,2,95.77128575934437,0,94.11386698912047,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4045,'2018-10-02T12:45:10.750Z',NULL,25,6,68.62263967182464,0,65.45801876679701,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4046,'2020-04-17T05:59:24.320Z',NULL,157,4,139.8942352373801,0,162.3803046723344,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4047,'2020-02-15T03:53:36.798Z',NULL,123,2,110.93145648834248,0,98.16894521739403,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4048,'2019-03-03T18:10:51.507Z',NULL,26,1,68.12471180754113,0,61.66995396860971,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4049,'2017-11-14T01:34:54.632Z',NULL,81,3,29.288656154807867,0,27.256302633290108,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4050,'2018-01-02T15:08:45.480Z',NULL,107,3,50.094887884945365,0,52.10831965028042,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4051,'2018-03-31T04:13:34.938Z',NULL,186,1,98.9770008385166,0,118.80434489153367,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4052,'2020-04-02T06:24:16.020Z',NULL,59,2,89.20214751859149,0,77.95161548191497,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4053,'2018-08-25T17:28:22.971Z',NULL,9,7,87.46968147789205,0,72.98718933349627,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4054,'2019-10-21T13:59:46.891Z',NULL,12,7,116.01427581618326,0,127.92466296742857,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4055,'2019-05-09T04:28:19.005Z',NULL,148,4,138.9817182254566,0,161.66643326961326,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4056,'2019-02-07T10:10:20.575Z',NULL,81,2,43.9329842322118,0,46.35592916134848,561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4057,'2019-12-23T01:00:43.040Z',NULL,64,2,143.4221774571866,9.86,161.21408657276314,562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4058,'2019-10-08T07:13:36.842Z',NULL,132,7,127.88197029833711,8.79,114.9889432797226,562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4059,'2018-12-23T01:34:18.440Z',NULL,30,2,64.17448218067184,4.41,70.50464518329552,562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4060,'2020-04-04T22:46:28.218Z',NULL,25,2,68.62263967182464,3.43,85.97483545386842,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4061,'2020-03-29T12:37:18.388Z',NULL,47,1,84.0766209826718,4.2,108.3499316692491,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4062,'2018-11-29T07:29:19.891Z',NULL,35,4,71.53687730741436,3.58,80.38452497191655,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4063,'2017-06-02T14:53:16.689Z',NULL,52,8,69.1172482676769,3.46,77.91707658340546,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4064,'2019-11-08T15:39:20.573Z',NULL,187,4,98.9770008385166,4.95,85.7635368816804,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4065,'2019-01-21T13:49:45.587Z',NULL,172,2,122.3651993029456,6.12,112.78943308670404,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4066,'2018-10-21T01:13:32.081Z',NULL,83,4,81.87627832636537,4.09,85.28705740139912,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4067,'2019-01-21T00:39:10.383Z',2.885086111854614,42,1,38.00410713690931,1.9,33.95276457138954,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4068,'2018-04-26T02:04:19.191Z',NULL,57,3,122.4223933583994,6.12,134.32466537973198,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4069,'2018-11-15T12:46:49.883Z',NULL,80,3,54.91325681036414,2.75,61.48679692423485,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4070,'2017-11-22T01:48:20.924Z',2.885086111854614,174,3,74.40953929454055,3.72,90.19018376247102,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4071,'2019-10-03T21:52:42.641Z',NULL,145,5,61.1983004605443,3.06,69.26965209315483,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4072,'2020-01-31T17:51:09.331Z',NULL,190,1,128.5841852057933,6.43,153.02795829735442,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4073,'2017-12-11T06:27:48.665Z',NULL,146,1,84.03151414144409,4.2,105.48812024427102,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4074,'2018-03-04T06:56:54.246Z',2.408566533793932,24,1,112.30643674729413,5.62,121.97512366187838,564); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4075,'2019-04-06T16:26:07.471Z',NULL,178,3,117.32963250370614,8.21,116.24117628284434,565); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4076,'2018-08-02T16:22:26.463Z',NULL,197,4,70.14610686710009,4.91,91.47854932121867,565); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4077,'2017-12-17T06:36:42.241Z',NULL,103,1,31.361435038520785,2.2,35.365628472026714,565); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4078,'2019-04-16T17:15:50.116Z',NULL,183,2,56.697412301919755,2.83,48.51908677187528,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4079,'2018-08-24T12:38:33.361Z',NULL,52,6,103.67587240151535,5.18,113.44564468978908,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4080,'2019-08-04T19:25:51.018Z',NULL,104,8,106.44215255778118,5.32,112.69618711142732,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4081,'2019-08-19T12:24:05.977Z',NULL,63,6,133.5202262591817,6.68,154.14115286352666,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4082,'2019-08-13T13:46:38.741Z',NULL,82,4,60.89545738030947,3.04,73.76689349496665,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4083,'2017-11-06T15:52:02.973Z',NULL,177,2,85.87953212963993,4.29,104.56884918000704,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4084,'2018-08-06T06:43:15.620Z',NULL,145,6,61.1983004605443,3.06,77.63646980213213,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4085,'2019-08-18T18:52:42.087Z',NULL,101,8,139.82488066180403,6.99,172.79673980175076,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4086,'2018-11-01T11:06:55.691Z',NULL,71,3,82.80381898788684,4.14,74.81493667591442,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4087,'2018-01-07T19:46:42.862Z',NULL,193,2,50.38077396807232,2.52,61.952046119936114,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4088,'2019-02-14T21:16:07.149Z',NULL,61,2,23.537915510955656,1.18,22.72994871305505,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4089,'2018-01-22T00:15:06.250Z',NULL,197,2,70.14610686710009,3.51,65.15789916640188,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4090,'2019-08-24T15:54:52.732Z',NULL,123,8,110.93145648834248,5.55,114.54489199260405,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4091,'2020-04-09T08:19:27.977Z',NULL,61,3,23.537915510955656,1.18,26.86296818359492,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4092,'2020-03-05T21:11:25.001Z',NULL,106,1,52.723521442619514,2.64,53.17495538603863,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4093,'2016-10-14T09:04:05.935Z',NULL,173,35,81.57679953529707,4.08,87.39500335447954,566); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4094,'2019-12-20T02:02:08.022Z',NULL,147,2,66.64727121216615,3.33,57.98091344842166,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4095,'2019-08-19T22:04:17.439Z',NULL,39,8,114.58158180283459,5.73,99.36025172464483,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4096,'2019-01-13T06:38:59.032Z',NULL,190,2,128.5841852057933,6.43,138.83497360898153,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4097,'2017-05-14T07:38:30.745Z',NULL,53,3,29.517248267676894,1.48,29.355633279108755,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4098,'2020-04-08T21:33:16.871Z',NULL,32,3,107.1448636959614,5.36,103.37562032921446,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4099,'2018-08-16T16:02:42.623Z',2.5797409822260176,58,8,78.14578007078882,3.91,84.37218435799618,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4100,'2018-07-17T17:24:46.955Z',NULL,51,4,75.65058751905018,3.78,77.79536272794246,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4101,'2016-09-17T23:09:57.487Z',NULL,55,4,63.84752383956291,3.19,68.12667191838372,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4102,'2019-10-21T08:35:13.191Z',NULL,65,7,68.22769726470014,3.41,73.45338873614372,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4103,'2018-11-10T12:19:12.440Z',NULL,145,3,61.1983004605443,3.06,62.64342366789144,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4104,'2017-01-18T03:05:58.218Z',NULL,117,2,36.683234169385244,1.83,39.123321834189696,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4105,'2019-06-30T03:51:26.643Z',NULL,105,7,52.723521442619514,2.64,50.72725161361567,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4106,'2019-02-28T16:53:26.492Z',NULL,96,2,104.82144858590365,5.24,101.52165474934473,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4107,'2018-11-14T17:20:19.838Z',NULL,128,3,75.08016314504417,3.75,86.36221145675097,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4108,'2018-11-30T03:48:35.919Z',2.5797409822260176,148,2,138.9817182254566,6.95,142.80223474370516,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4109,'2017-02-15T18:39:10.027Z',NULL,89,1,42.47974183693326,2.12,49.281325289092244,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4110,'2019-06-27T13:43:46.751Z',NULL,78,7,41.616917284159726,2.08,52.86925476571747,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4111,'2019-02-08T22:48:25.020Z',NULL,75,1,125.81276373452337,6.29,118.49575081444625,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4112,'2018-11-06T00:33:26.493Z',NULL,57,3,122.4223933583994,6.12,117.03546704807988,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4113,'2017-08-24T02:59:53.363Z',NULL,171,8,70.05110494330981,3.5,90.6374049045115,567); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4114,'2018-12-28T08:25:53.255Z',NULL,173,2,122.3651993029456,0,126.00343263237343,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4115,'2017-07-08T22:33:36.919Z',NULL,174,4,74.40953929454055,0,67.32798384024215,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4116,'2019-08-28T02:11:29.548Z',NULL,49,6,131.42865839323724,0,119.02087651255994,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4117,'2018-03-11T04:18:32.383Z',NULL,81,1,43.9329842322118,0,53.81103184388022,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4118,'2018-03-24T20:37:18.576Z',2.6793108576609423,195,1,109.78077396807234,0,117.02116656210927,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4119,'2018-05-21T12:24:13.788Z',NULL,188,4,33.87738254731509,0,41.616582187170394,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4120,'2019-10-25T04:16:55.554Z',NULL,25,4,68.62263967182464,0,76.63976646884245,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4121,'2017-03-22T21:41:03.957Z',NULL,17,6,53.290720311951766,0,62.65058738086222,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4122,'2018-12-22T16:40:20.455Z',NULL,140,2,66.80312547576881,0,61.5874011085791,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4123,'2019-09-13T18:32:26.464Z',NULL,72,4,142.20381898788685,0,116.98037033111397,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4124,'2017-08-30T21:21:29.864Z',NULL,142,6,46.8990203814063,0,40.13381006552097,568); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4125,'2019-06-18T13:37:20.320Z',NULL,53,7,44.27587240151534,2.21,55.86841983790759,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4126,'2016-12-15T13:50:36.183Z',NULL,127,3,89.65344209669612,4.48,112.44767774778329,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4127,'2020-01-16T20:16:11.174Z',NULL,134,3,42.49233549998661,2.12,49.602843606814545,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4128,'2018-03-08T17:48:58.915Z',NULL,164,1,92.96789820016517,4.65,79.40350413324734,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4129,'2018-04-05T11:36:07.855Z',NULL,121,3,40.44528328808107,2.02,43.26360874956944,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4130,'2019-04-03T12:35:34.842Z',NULL,41,3,63.50890855689462,3.18,55.665514718859946,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4131,'2018-11-03T13:00:50.270Z',NULL,154,3,81.87529553312261,4.09,72.61856751070826,571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4132,'2019-04-07T02:44:27.843Z',4.785710687679705,50,3,53.64019616819762,3.75,48.86426006513734,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4133,'2016-12-20T20:29:52.616Z',NULL,68,3,76.82895921539838,5.38,98.74203651577352,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4134,'2018-02-09T07:57:03.268Z',NULL,76,2,63.82421061366486,4.47,55.24519977855068,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4135,'2018-04-16T22:05:42.841Z',NULL,147,4,66.64727121216615,4.67,65.90095436624588,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4136,'2018-06-25T23:43:24.390Z',NULL,178,9,117.32963250370614,8.21,129.93808895073192,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4137,'2019-04-30T14:29:04.378Z',NULL,88,4,105.41292031622555,7.38,136.05753425893977,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4138,'2017-08-30T09:02:22.023Z',NULL,10,10,31.78621880685793,2.23,31.653003532805563,573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4139,'2018-01-05T21:01:22.365Z',NULL,189,3,93.27738254731509,4.66,117.47022958211387,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4140,'2017-05-18T20:29:04.536Z',NULL,4,6,73.99178100854834,3.7,89.35016537010004,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4141,'2018-08-17T09:46:33.453Z',NULL,142,8,70.34853057210945,3.52,69.69132407773697,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4142,'2016-08-23T18:33:13.577Z',NULL,57,6,81.6149289055996,4.08,99.90466043795857,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4143,'2020-01-07T15:37:26.783Z',NULL,133,2,68.4819702983371,3.42,82.85768469095854,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4144,'2016-07-05T17:48:56.142Z',2.6513882862501488,26,4,45.41647453836076,2.27,40.81598864069008,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4145,'2016-08-06T14:39:53.295Z',NULL,187,6,65.98466722567774,3.3,82.31895100047608,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4146,'2017-06-18T19:19:57.717Z',NULL,161,7,31.727470408648482,1.59,39.50602935420271,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4147,'2016-10-25T18:46:05.187Z',7.151388286250149,91,5,43.39621873587423,2.17,44.865799571692484,574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4148,'2020-04-19T08:43:42.339Z',NULL,130,2,75.02573869315137,0,90.76912010329441,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4149,'2017-07-30T10:02:40.846Z',NULL,199,3,76.95334253952366,0,64.33835592107121,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4150,'2017-12-18T00:49:38.985Z',NULL,12,2,77.34285054412217,0,78.75148140778683,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4151,'2018-10-23T15:18:40.705Z',NULL,101,7,139.82488066180403,0,171.48497141426523,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4152,'2017-09-14T15:23:16.637Z',NULL,48,4,82.13922832356072,0,92.8175464745993,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4153,'2018-01-09T15:22:08.349Z',NULL,30,2,64.17448218067184,0,72.38371584370283,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4154,'2020-01-16T18:11:17.913Z',NULL,94,2,109.21864156655383,0,97.03580023266967,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4155,'2018-03-11T21:53:20.408Z',2.6513882862501488,133,1,68.4819702983371,0,64.71261819305252,576); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4156,'2020-02-04T01:58:03.714Z',NULL,119,1,43.43814329652384,3.04,39.08911714755649,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4157,'2020-03-11T09:58:26.424Z',NULL,2,1,105.11984419607644,7.36,139.2330391226096,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4158,'2019-01-21T15:06:46.930Z',NULL,40,2,99.66240044231697,6.98,90.7866794418056,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4159,'2019-12-01T16:08:25.844Z',NULL,79,2,41.616917284159726,2.91,42.40225761602883,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4160,'2018-02-22T07:36:29.751Z',NULL,96,1,104.82144858590365,7.34,97.89674961823648,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4161,'2019-02-21T22:52:03.599Z',NULL,191,1,128.5841852057933,9,136.92818918313517,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4162,'2018-04-26T18:52:13.571Z',NULL,72,2,142.20381898788685,9.95,141.79324705923833,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4163,'2017-09-13T19:36:07.222Z',NULL,122,5,66.56352219205405,4.66,83.35197223344299,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4164,'2018-10-02T19:23:42.953Z',NULL,142,6,70.34853057210945,4.92,76.90718941943857,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4165,'2019-12-04T04:10:03.638Z',NULL,19,2,64.00675097561322,4.48,69.48761681716694,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4166,'2019-04-12T20:27:22.826Z',NULL,24,4,112.30643674729413,7.86,127.89005158693897,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4167,'2019-11-05T18:41:03.806Z',NULL,199,3,115.4300138092855,8.08,139.58529316880941,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4168,'2018-04-28T09:05:09.483Z',NULL,147,2,66.64727121216615,4.67,72.29727379741959,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4169,'2018-09-25T04:48:06.337Z',NULL,137,5,67.77247956807186,4.74,66.09357042734663,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4170,'2018-03-30T01:30:38.918Z',NULL,74,1,51.12804227386549,3.58,62.21263866758006,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4171,'2018-05-20T01:43:21.035Z',NULL,103,4,47.04215255778118,3.29,46.016430010709556,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4172,'2019-04-24T14:23:14.064Z',NULL,83,3,81.87627832636537,5.73,91.18501765690311,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4173,'2018-06-22T12:27:02.384Z',3.681076052669977,174,8,111.61430894181083,7.81,133.41328346948157,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4174,'2018-04-26T12:24:56.904Z',3.681076052669977,114,4,77.91196471862148,5.45,78.42678158287599,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4175,'2017-04-28T23:52:26.582Z',NULL,131,4,75.41148135558485,5.28,71.39644323675908,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4176,'2019-04-06T15:56:07.512Z',NULL,2,3,105.11984419607644,7.36,136.0798535303997,577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4177,'2017-02-21T02:01:46.667Z',NULL,155,2,29.183828734551838,1.17,30.37136902689092,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4178,'2018-04-10T02:33:55.020Z',NULL,193,3,50.38077396807232,2.02,45.13751864999193,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4179,'2017-01-01T18:46:32.580Z',NULL,130,1,50.01715912876758,2,43.07286809235702,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4180,'2020-01-04T22:14:19.210Z',NULL,5,2,124.1176465275534,4.96,150.23808591492661,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4181,'2019-11-20T17:35:17.836Z',NULL,200,3,73.20395711799151,2.93,64.20099217927216,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4182,'2016-11-14T05:16:26.148Z',NULL,147,2,44.4315141414441,1.78,46.775588872971994,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4183,'2019-11-12T23:01:43.241Z',NULL,109,2,119.04991068193098,4.76,111.8649588561766,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4184,'2020-03-28T08:36:30.619Z',NULL,13,1,112.62925391105566,4.51,136.85607966810068,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4185,'2017-01-23T12:23:25.797Z',NULL,99,2,45.22324323588729,1.81,40.68567902099183,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4186,'2016-11-29T08:56:29.267Z',NULL,74,2,34.08536151591033,1.36,39.88426386680124,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4187,'2017-04-01T05:23:42.257Z',NULL,40,3,66.44160029487797,2.66,60.79094411410474,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4188,'2018-05-25T15:26:43.541Z',NULL,23,6,116.86672609493307,4.67,131.20237075327915,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4189,'2018-09-22T11:57:03.387Z',NULL,118,5,57.627613096978735,2.31,69.2972164547395,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4190,'2019-03-16T00:47:17.101Z',NULL,10,1,47.6793282102869,1.91,42.12418903826218,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4191,'2019-09-02T05:26:53.797Z',NULL,75,5,125.81276373452337,5.03,135.39549708671976,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4192,'2018-11-28T05:42:17.426Z',4.0922784796888205,188,2,33.87738254731509,1.36,43.511781332103936,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4193,'2016-12-25T09:52:31.297Z',NULL,110,2,37.01783079127111,1.48,44.51124342858554,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4194,'2017-02-03T16:20:33.748Z',NULL,140,2,44.53541698384588,1.78,56.19112561239149,578); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4195,'2017-11-05T09:27:13.146Z',8.59227847968882,52,2,69.1172482676769,4.75,81.15441058626679,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4196,'2019-08-25T20:48:07.398Z',4.0922784796888205,57,7,122.4223933583994,8.42,116.3946709627035,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4197,'2018-10-28T14:21:32.327Z',4.0922784796888205,80,8,54.91325681036414,3.78,66.5678853612355,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4198,'2018-08-05T20:52:24.940Z',NULL,102,9,47.04215255778118,3.23,43.522471360626966,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4199,'2017-12-30T08:03:01.807Z',NULL,187,2,65.98466722567774,4.54,86.22217333242594,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4200,'2019-01-22T11:15:14.844Z',NULL,182,2,84.48940370476112,5.81,96.02183896897498,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4201,'2020-01-02T13:02:21.784Z',NULL,190,2,128.5841852057933,8.84,123.92661261238015,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4202,'2019-08-23T05:12:45.262Z',NULL,3,5,53.08311732230858,3.65,60.539482925136404,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4203,'2018-03-19T21:10:30.035Z',NULL,41,1,63.50890855689462,4.37,58.309675846865105,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4204,'2017-03-30T10:28:58.075Z',NULL,81,1,29.288656154807867,2.01,27.29534995432303,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4205,'2020-02-13T19:28:10.344Z',NULL,73,1,71.6287722595695,4.92,66.25582063059491,581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4206,'2016-06-22T06:44:26.765Z',NULL,77,6,67.34461152277315,4.04,58.26976937597052,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4207,'2018-01-29T02:02:19.843Z',NULL,164,2,92.96789820016517,5.58,108.44457771976882,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4208,'2017-11-28T14:53:57.895Z',NULL,110,3,37.01783079127111,2.22,43.56817818261836,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4209,'2017-08-13T17:02:16.905Z',NULL,155,5,29.183828734551838,1.75,26.846913589945462,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4210,'2019-12-19T09:06:11.819Z',NULL,41,2,63.50890855689462,3.81,59.62491569539031,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4211,'2018-02-11T00:25:19.050Z',NULL,51,2,75.65058751905018,4.54,79.4488682390096,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4212,'2016-07-11T09:53:18.239Z',NULL,91,5,43.39621873587423,2.6,56.82968846471915,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4213,'2019-07-09T04:17:48.729Z',NULL,192,5,69.18418520579327,4.15,78.27298219925417,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4214,'2017-01-25T12:11:33.472Z',NULL,157,2,93.26282349158673,5.6,114.37209734212217,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4215,'2016-11-23T02:05:31.743Z',NULL,182,3,56.326269136507406,3.38,47.672033332198744,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4216,'2020-02-11T12:17:35.248Z',NULL,85,1,54.90104734428525,3.29,63.64006288682875,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4217,'2017-11-16T08:43:05.448Z',NULL,68,2,76.82895921539838,4.61,83.77347533104128,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4218,'2018-02-07T04:11:21.582Z',NULL,171,2,105.07665741496471,6.3,113.03146330814893,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4219,'2019-02-07T17:35:32.882Z',NULL,56,2,36.37128575934436,2.18,40.175437482842604,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4220,'2016-09-04T16:35:47.179Z',NULL,39,3,76.38772120188973,4.58,78.3037215179065,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4221,'2017-12-04T02:37:44.721Z',NULL,146,1,84.03151414144409,5.04,81.84754211586925,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4222,'2017-06-29T13:45:29.588Z',NULL,84,6,54.58418555091025,3.28,59.5468109978261,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4223,'2016-09-10T10:25:34.754Z',NULL,88,6,70.27528021081703,4.22,86.90602122988578,583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4224,'2019-02-24T01:04:18.045Z',7.609688226519295,109,2,119.04991068193098,7.14,105.62550299059527,585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4225,'2019-07-20T21:11:46.439Z',NULL,13,6,112.62925391105566,6.76,102.9175611102724,585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4226,'2017-11-11T21:13:34.978Z',NULL,73,4,47.752514839713,2.87,43.81775356668729,585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4227,'2019-05-26T23:07:40.417Z',NULL,127,5,134.48016314504417,8.07,161.7923466707392,585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4228,'2017-05-11T09:00:26.274Z',NULL,131,5,75.41148135558485,5.18,67.24780073134384,586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4229,'2018-03-19T06:44:12.969Z',NULL,135,1,45.80402317157342,3.15,56.037221536784244,586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4230,'2019-05-18T21:22:33.074Z',NULL,104,3,106.44215255778118,7.32,123.45300798417132,586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4231,'2020-03-30T13:22:16.619Z',NULL,186,1,98.9770008385166,5.69,83.8434074599762,587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4232,'2019-01-16T19:45:00.980Z',NULL,83,2,81.87627832636537,4.71,86.29227818139856,587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4233,'2018-09-21T11:44:18.629Z',NULL,174,6,111.61430894181083,6.42,124.96115746596728,587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4234,'2017-07-09T12:16:18.525Z',NULL,13,5,75.0861692740371,4.32,88.05981051358913,587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4235,'2019-09-19T11:44:59.897Z',NULL,158,3,139.8942352373801,9.79,143.22147793406316,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4236,'2018-02-04T23:18:24.220Z',NULL,153,2,66.79892314178237,4.68,63.65036503229526,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4237,'2018-06-25T16:24:21.981Z',NULL,149,8,69.15415037577924,4.84,80.37838687799221,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4238,'2019-07-30T09:03:05.752Z',4.3932308051553965,2,5,105.11984419607644,7.36,121.93098728158719,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4239,'2018-09-21T22:51:28.433Z',NULL,4,4,110.98767151282252,7.77,105.48918150909932,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4240,'2019-11-22T10:30:24.809Z',8.893230805155397,114,2,77.91196471862148,5.45,103.33783260185797,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4241,'2018-09-09T12:39:15.052Z',NULL,63,5,133.5202262591817,9.35,114.693952407214,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4242,'2018-11-07T04:45:15.395Z',NULL,171,4,105.07665741496471,7.36,102.669111992583,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4243,'2018-04-17T03:57:36.164Z',NULL,81,3,43.9329842322118,3.08,51.56382097766762,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4244,'2019-05-31T09:37:04.192Z',NULL,44,4,76.35255205175756,5.34,72.85235428936919,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4245,'2018-08-23T18:46:26.417Z',NULL,179,6,68.32408657333919,4.78,77.98983350469999,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4246,'2019-11-10T11:15:20.484Z',4.3932308051553965,170,3,105.07665741496471,7.36,129.9848082231688,588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4247,'2020-01-30T23:14:22.925Z',NULL,37,3,80.10774204020768,4.41,92.6772837463309,589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4248,'2017-05-22T16:40:26.989Z',NULL,199,5,76.95334253952366,4.23,99.12829610432412,589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4249,'2019-10-15T04:11:39.693Z',NULL,189,5,93.27738254731509,5.83,110.09157388382866,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4250,'2019-06-03T02:22:52.772Z',NULL,2,5,105.11984419607644,6.57,111.83610629623504,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4251,'2018-03-06T11:27:22.479Z',NULL,169,8,59.53172693453274,3.72,50.43413392324257,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4252,'2019-04-27T01:32:12.272Z',4.3932308051553965,176,3,57.92480943352658,3.62,58.55944005428235,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4253,'2017-10-03T02:58:20.271Z',NULL,126,6,83.49598746872304,5.22,109.87605240507067,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4254,'2017-10-27T05:55:19.721Z',NULL,105,6,35.149014295079674,2.2,34.45125013390147,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4255,'2017-07-21T05:18:02.022Z',NULL,108,5,33.39659192329691,2.09,31.80138531520686,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4256,'2018-10-01T00:34:11.233Z',2.531040071297526,186,5,98.9770008385166,6.19,86.64959535996489,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4257,'2017-03-06T08:53:05.569Z',NULL,71,1,55.202545991924566,3.45,55.12671283363558,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4258,'2017-09-23T03:05:46.903Z',NULL,114,6,51.94130981241432,3.25,49.44435609186187,590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4259,'2020-03-12T15:56:33.384Z',NULL,135,1,45.80402317157342,3.15,58.61468977490012,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4260,'2019-08-04T13:26:00.754Z',NULL,134,6,42.49233549998661,2.92,53.734267539664906,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4261,'2019-08-17T06:44:07.244Z',NULL,6,6,97.43621265344382,6.7,83.21473816634241,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4262,'2018-02-11T23:24:55.092Z',NULL,142,1,70.34853057210945,4.84,84.62640903857705,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4263,'2017-02-08T08:09:24.285Z',NULL,68,1,76.82895921539838,5.28,84.50407765182202,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4264,'2017-07-20T14:35:30.434Z',NULL,147,4,44.4315141414441,3.05,56.49561954370038,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4265,'2019-01-31T01:58:27.404Z',2.531040071297526,46,2,118.0495173798411,8.12,110.1612562493332,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4266,'2019-11-14T13:48:02.570Z',NULL,48,3,123.20884248534108,8.47,122.37152037927008,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4267,'2019-08-25T14:52:18.184Z',NULL,148,4,138.9817182254566,9.55,164.59422845860985,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4268,'2017-05-20T22:56:53.110Z',NULL,193,4,33.587182645381546,2.31,36.14339667864869,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4269,'2019-02-13T06:36:09.302Z',NULL,127,2,134.48016314504417,9.25,169.88908605451903,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4270,'2018-12-24T14:54:28.263Z',NULL,149,2,69.15415037577924,4.75,91.34292740504095,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4271,'2018-01-17T01:43:04.105Z',NULL,10,2,47.6793282102869,3.28,63.63007916528731,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4272,'2019-11-03T20:13:35.115Z',NULL,121,2,40.44528328808107,2.78,39.61584549142384,591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4273,'2018-12-06T17:37:48.067Z',2.531040071297526,135,2,45.80402317157342,3.15,40.91058876738789,592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4274,'2019-05-22T06:45:26.518Z',NULL,68,4,115.24343882309758,7.92,147.89595197377443,592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4275,'2019-05-25T00:00:47.360Z',7.031040071297526,32,4,107.1448636959614,0,105.94035157568182,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4276,'2017-09-10T05:00:29.838Z',NULL,47,5,56.05108065511453,0,66.66080501886483,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4277,'2019-09-03T12:45:31.809Z',NULL,25,4,68.62263967182464,0,71.14547051917353,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4278,'2016-08-05T11:15:16.844Z',NULL,198,4,46.76407124473339,0,51.71137221760057,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4279,'2017-11-23T07:23:44.777Z',NULL,80,2,36.60883787357609,0,36.34451086337161,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4280,'2018-02-10T06:04:47.897Z',6.261414709340395,35,1,71.53687730741436,0,70.77385637648558,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4281,'2019-06-23T07:58:34.365Z',NULL,53,5,44.27587240151534,0,45.07534998638065,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4282,'2016-08-15T09:58:46.888Z',6.261414709340395,66,7,90.77417514071306,0,96.4209008442226,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4283,'2019-07-19T11:36:51.521Z',NULL,60,5,29.80214751859149,0,30.003123911631945,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4284,'2019-04-24T02:28:10.236Z',NULL,30,2,64.17448218067184,0,57.53453626975062,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4285,'2020-04-11T09:59:12.050Z',NULL,134,2,42.49233549998661,0,37.86712273964212,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4286,'2017-04-15T20:27:51.371Z',NULL,198,2,46.76407124473339,0,38.04656816111926,597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4287,'2019-11-02T22:58:27.664Z',6.261414709340395,87,2,117.25536340498041,7.04,148.237447981835,598); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4288,'2019-06-04T02:55:54.173Z',NULL,136,5,105.20402317157343,6.31,88.83051072159694,598); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4289,'2018-03-01T23:44:20.521Z',NULL,125,1,80.39699207990944,0,64.9549181404178,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4290,'2019-12-19T01:33:34.671Z',6.261414709340395,10,2,47.6793282102869,0,50.40703216687329,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4291,'2020-01-06T12:53:51.560Z',NULL,95,2,49.81864156655383,0,46.170993351950564,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4292,'2019-11-12T18:56:39.778Z',NULL,83,2,81.87627832636537,0,101.80728368920406,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4293,'2018-09-25T04:39:21.501Z',NULL,67,5,41.24480890795779,0,41.00813697357968,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4294,'2019-10-30T02:45:32.654Z',NULL,88,5,105.41292031622555,0,117.05564298936571,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4295,'2019-04-17T20:08:34.672Z',9.030468699164025,119,3,43.43814329652384,0,40.00399581030488,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4296,'2019-06-24T09:03:05.202Z',NULL,57,7,122.4223933583994,0,104.3267969860171,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4297,'2018-06-04T05:46:46.836Z',NULL,72,7,142.20381898788685,0,156.756981576931,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4298,'2018-06-01T20:35:37.258Z',NULL,156,7,30.615804149046195,0,34.73448406601445,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4299,'2017-12-22T16:15:13.671Z',NULL,85,3,36.6006982295235,0,40.03843368716499,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4300,'2018-12-19T12:36:45.189Z',NULL,70,3,57.493003808959784,0,57.00489723469494,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4301,'2019-12-02T19:55:53.779Z',4.530468699164025,68,3,115.24343882309758,0,105.99805551663758,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4302,'2017-12-19T02:13:58.330Z',NULL,188,3,22.584921698210056,0,24.082883859518923,602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4303,'2017-09-21T14:33:27.646Z',NULL,116,6,76.28323416938524,0,72.93105983241553,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4304,'2019-10-01T13:48:07.233Z',NULL,168,5,118.93172693453273,0,134.94044057077303,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4305,'2019-04-13T09:08:52.872Z',NULL,72,3,142.20381898788685,0,125.58691375631342,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4306,'2018-01-05T01:57:41.104Z',NULL,134,2,42.49233549998661,0,38.70963157065049,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4307,'2018-08-24T22:37:57.324Z',NULL,154,6,81.87529553312261,0,92.32694765609574,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4308,'2017-12-11T21:30:17.389Z',NULL,90,2,82.07974183693327,0,95.90093164508326,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4309,'2017-05-14T14:12:41.299Z',NULL,147,4,44.4315141414441,0,45.59377781017515,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4310,'2020-04-06T12:22:58.736Z',NULL,42,3,38.00410713690931,0,40.46025067767566,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4311,'2019-05-25T15:44:22.262Z',NULL,110,5,55.526746186906664,0,49.891801578497855,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4312,'2017-10-18T20:38:51.638Z',NULL,109,8,79.36660712128732,0,71.68387454268655,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4313,'2018-10-26T18:05:23.784Z',NULL,7,6,148.22900526552291,0,145.81609142595806,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4314,'2017-03-14T22:57:52.034Z',NULL,111,1,37.01783079127111,0,39.420699907403126,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4315,'2018-01-25T02:58:40.436Z',NULL,82,2,60.89545738030947,0,50.29338939032068,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4316,'2017-11-17T23:55:32.767Z',NULL,143,3,40.7988669736962,0,50.84396894058976,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4317,'2019-12-15T03:27:27.653Z',NULL,73,2,71.6287722595695,0,66.27992131472624,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4318,'2018-06-01T15:40:57.736Z',NULL,91,5,65.09432810381134,0,72.9343982620739,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4319,'2018-03-02T18:11:21.308Z',NULL,84,1,81.87627832636537,0,102.53410886316067,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4320,'2019-06-24T22:14:48.455Z',NULL,108,7,50.094887884945365,0,49.68465961095091,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4321,'2019-06-08T02:53:13.169Z',NULL,120,5,83.5020135028928,0,92.69054596322061,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4322,'2019-09-22T04:48:38.130Z',NULL,85,4,54.90104734428525,0,49.162857030374546,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4323,'2019-05-02T23:07:58.470Z',NULL,178,3,117.32963250370614,0,123.08913844313449,604); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4324,'2019-03-16T20:49:57.453Z',NULL,46,1,118.0495173798411,5.31,144.7189053730176,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4325,'2016-12-14T00:26:38.180Z',NULL,33,3,31.829909130640935,1.43,40.50400377175159,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4326,'2019-11-23T06:03:01.337Z',NULL,10,3,47.6793282102869,2.15,52.93466693184985,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4327,'2019-03-11T05:49:14.547Z',NULL,83,1,81.87627832636537,3.68,81.52975008597427,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4328,'2020-02-04T23:14:17.167Z',NULL,137,2,67.77247956807186,3.05,66.8829688161188,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4329,'2018-02-10T20:19:03.262Z',4.05851434894408,100,2,67.83486485383094,3.05,71.08282964108842,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4330,'2018-07-14T23:38:20.023Z',NULL,92,5,124.89242686579996,5.62,126.64641004721749,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4331,'2020-01-13T14:14:07.251Z',NULL,113,2,110.47725376186015,4.97,121.37508837050417,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4332,'2019-05-06T20:15:33.260Z',NULL,38,3,66.06937283839378,2.97,54.82377199752787,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4333,'2018-12-07T07:02:31.406Z',NULL,168,1,118.93172693453273,5.35,137.46737232078883,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4334,'2018-09-24T06:09:43.104Z',NULL,140,3,66.80312547576881,3.01,70.92515101785405,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4335,'2018-08-15T14:41:02.359Z',NULL,86,4,92.31436670850246,4.15,108.88375149736034,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4336,'2017-06-15T01:32:12.716Z',NULL,81,5,29.288656154807867,1.32,28.202167137411685,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4337,'2018-05-06T03:32:30.200Z',NULL,70,5,57.493003808959784,2.59,71.39024533614239,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4338,'2018-09-25T09:36:58.022Z',NULL,31,4,105.65346467128523,4.75,118.7697037047469,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4339,'2017-07-29T15:21:35.335Z',NULL,21,3,40.38334406304544,1.82,34.339268350989386,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4340,'2018-11-26T04:11:40.792Z',6.321245010901326,174,2,111.61430894181083,5.02,132.79115920968417,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4341,'2019-07-08T16:33:03.662Z',NULL,86,3,92.31436670850246,4.15,111.95150298691894,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4342,'2019-10-24T22:16:33.332Z',NULL,181,3,143.88940370476112,6.48,177.86658344224895,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4343,'2018-12-27T17:58:23.452Z',NULL,93,1,49.81864156655383,2.24,60.43068167715357,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4344,'2019-01-20T00:37:29.699Z',NULL,127,1,134.48016314504417,6.05,137.01988608624828,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4345,'2019-07-04T11:13:52.479Z',6.321245010901326,98,3,112.41825444654248,5.06,132.57286032575058,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4346,'2017-10-10T12:54:07.290Z',NULL,17,4,53.290720311951766,2.4,44.09994006740016,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4347,'2019-03-14T01:08:22.281Z',NULL,10,1,47.6793282102869,2.15,47.8468467565242,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4348,'2018-06-08T07:37:11.477Z',NULL,11,5,132.45679913492563,5.96,154.1164795244039,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4349,'2017-05-25T21:37:20.322Z',NULL,183,2,37.7982748679465,1.7,32.9120645383034,605); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4350,'2019-05-16T02:35:03.830Z',NULL,81,3,43.9329842322118,1.76,42.780687196942694,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4351,'2018-10-28T22:10:39.183Z',NULL,151,5,91.61302306843446,3.66,80.1864142950774,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4352,'2019-12-09T20:08:41.574Z',NULL,32,2,107.1448636959614,4.29,107.61058183913964,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4353,'2019-10-04T01:44:42.768Z',NULL,64,5,143.4221774571866,5.74,151.9066486588567,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4354,'2020-02-19T06:02:52.383Z',NULL,49,1,131.42865839323724,5.26,131.30619793493136,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4355,'2018-09-05T09:12:35.080Z',NULL,117,3,55.024851254077866,2.2,68.67240443220936,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4356,'2018-11-23T01:59:20.372Z',NULL,176,2,57.92480943352658,2.32,48.355003030652554,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4357,'2019-02-05T02:47:05.859Z',NULL,78,2,41.616917284159726,1.66,50.85730569643526,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4358,'2018-07-06T00:24:44.794Z',NULL,29,4,123.57448218067185,4.94,139.74869930576077,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4359,'2019-11-12T21:47:42.589Z',NULL,74,2,51.12804227386549,2.05,48.74883555188845,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4360,'2019-11-07T01:43:30.456Z',NULL,90,2,123.1196127553999,4.92,107.4803650085891,607); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4361,'2018-11-20T04:48:14.848Z',NULL,1,2,44.19489169601981,2.65,53.03622645133343,608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4362,'2018-10-21T01:45:40.219Z',NULL,195,5,109.78077396807234,6.59,133.6173949470429,608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4363,'2019-10-05T02:53:29.813Z',NULL,188,3,33.87738254731509,2.03,41.54679694947684,608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4364,'2018-12-15T10:16:02.038Z',NULL,50,2,53.64019616819762,2.68,56.00124309688386,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4365,'2018-12-01T12:43:46.945Z',NULL,3,2,53.08311732230858,2.65,64.13253383530022,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4366,'2017-05-20T00:24:49.105Z',1.9994528016109283,91,4,43.39621873587423,2.17,57.02585393275174,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4367,'2018-06-06T10:02:21.330Z',NULL,99,5,67.83486485383094,3.39,57.80041200616256,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4368,'2019-01-06T13:53:10.508Z',NULL,176,2,57.92480943352658,2.9,66.81378570799711,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4369,'2017-12-15T07:47:56.736Z',NULL,174,2,74.40953929454055,3.72,80.80219611883892,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4370,'2019-10-17T02:26:34.479Z',NULL,63,7,133.5202262591817,6.68,115.66068424107641,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4371,'2019-09-02T05:57:04.795Z',NULL,180,6,68.32408657333919,3.42,79.08615215733705,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4372,'2018-03-12T14:39:08.616Z',NULL,188,1,33.87738254731509,1.69,39.22539590070164,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4373,'2020-01-27T03:23:22.493Z',NULL,34,2,74.30391386913199,3.72,82.62200056944123,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4374,'2018-02-15T05:36:05.899Z',NULL,195,1,109.78077396807234,5.49,117.75095305577348,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4375,'2017-09-09T04:01:34.993Z',NULL,77,4,67.34461152277315,3.37,59.37501096436964,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4376,'2018-05-14T22:04:53.458Z',NULL,50,5,53.64019616819762,2.68,60.730823021435974,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4377,'2020-01-28T01:52:47.382Z',7.197455678724455,125,2,80.39699207990944,4.02,94.32651673054936,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4378,'2019-08-22T15:17:13.976Z',NULL,140,4,66.80312547576881,3.34,71.34842307476043,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4379,'2019-02-28T15:57:56.595Z',NULL,169,1,59.53172693453274,2.98,69.77345289877906,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4380,'2020-04-09T02:03:11.048Z',NULL,7,3,148.22900526552291,7.41,166.29893931433256,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4381,'2020-03-30T21:51:35.323Z',NULL,60,1,29.80214751859149,1.49,37.65647961214406,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4382,'2018-04-07T10:06:41.390Z',NULL,9,2,87.46968147789205,4.37,75.96680197865598,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4383,'2017-12-13T05:12:58.569Z',NULL,30,1,42.7829881204479,2.14,44.68790006360064,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4384,'2018-11-14T11:11:46.175Z',NULL,172,2,122.3651993029456,6.12,146.2776634618484,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4385,'2017-07-02T16:43:41.684Z',NULL,168,3,79.28781795635516,3.96,94.93515001403564,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4386,'2019-07-24T07:52:09.931Z',NULL,96,3,104.82144858590365,5.24,100.82717799030033,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4387,'2019-03-25T03:36:40.851Z',NULL,31,1,105.65346467128523,5.28,115.7098030167392,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4388,'2018-03-25T09:18:11.936Z',NULL,47,1,84.0766209826718,4.2,75.69048100539838,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4389,'2019-03-18T07:44:24.452Z',NULL,196,1,70.14610686710009,3.51,88.70474598085887,609); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4390,'2017-12-05T04:17:21.846Z',NULL,158,2,93.26282349158673,5.6,120.47542493845131,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4391,'2018-08-21T21:09:14.800Z',6.355505765222905,149,7,69.15415037577924,4.15,78.23564627663328,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4392,'2019-11-14T15:32:24.127Z',NULL,70,2,57.493003808959784,3.45,63.13395227310862,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4393,'2018-10-08T04:22:50.542Z',NULL,3,3,53.08311732230858,3.18,69.98134833301873,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4394,'2020-02-06T06:30:50.755Z',NULL,165,1,38.30449564120193,2.3,33.55965929650347,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4395,'2017-02-21T19:38:33.275Z',NULL,184,1,77.3982748679465,4.64,77.49005166305083,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4396,'2017-08-15T00:33:30.496Z',NULL,102,4,31.361435038520785,1.88,34.79095173516053,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4397,'2019-09-14T06:29:25.908Z',NULL,32,4,107.1448636959614,6.43,97.29529107678309,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4398,'2018-09-08T07:40:00.423Z',NULL,146,5,126.04727121216614,7.56,109.63600611556072,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4399,'2017-08-22T16:48:27.626Z',NULL,26,7,45.41647453836076,2.72,44.158669903013376,611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4400,'2019-04-05T22:01:28.195Z',NULL,114,3,77.91196471862148,5.45,68.71685947347773,612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4401,'2019-07-22T03:19:53.048Z',NULL,16,5,66.11029954877317,4.63,56.7678858266768,612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4402,'2018-03-26T06:24:37.418Z',NULL,48,1,123.20884248534108,8.62,140.9378618682322,612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4403,'2018-08-01T15:01:07.106Z',NULL,138,6,113.95078476718615,4.56,110.06546611225698,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4404,'2020-02-13T14:19:38.397Z',NULL,133,1,68.4819702983371,2.74,78.80699423955743,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4405,'2016-06-24T17:54:59.847Z',NULL,18,5,54.60204747398195,2.18,69.29836527309722,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4406,'2016-10-12T15:26:37.546Z',NULL,175,4,78.21653962235106,3.13,68.10221536252868,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4407,'2020-02-01T07:03:41.559Z',NULL,7,1,148.22900526552291,5.93,192.1062136323374,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4408,'2018-01-02T06:51:52.198Z',NULL,175,1,117.3248094335266,4.69,117.7584658040157,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4409,'2017-09-12T02:57:50.204Z',6.355505765222905,194,4,33.587182645381546,1.34,30.016692074013594,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4410,'2017-03-20T04:37:39.606Z',NULL,174,1,74.40953929454055,2.98,76.43512968727593,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4411,'2019-11-10T14:56:28.324Z',NULL,107,2,50.094887884945365,2,63.398609852389114,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4412,'2019-12-28T08:10:10.144Z',NULL,36,1,130.93687730741433,5.24,135.74847807686672,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4413,'2017-10-13T02:04:05.236Z',NULL,32,4,71.42990913064094,2.86,71.69024452267529,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4414,'2018-05-21T20:09:45.627Z',7.802505607864912,101,3,139.82488066180403,5.59,169.72598338391188,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4415,'2018-04-14T20:37:41.940Z',NULL,34,2,74.30391386913199,2.97,84.50674082078272,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4416,'2016-11-30T01:11:07.337Z',NULL,68,3,76.82895921539838,3.07,98.37672858625614,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4417,'2016-08-03T20:26:52.695Z',NULL,94,9,72.81242771103588,2.91,77.49982198815573,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4418,'2016-06-29T14:26:11.472Z',NULL,200,6,48.802638078661005,1.95,49.634691072863774,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4419,'2019-01-26T23:31:42.550Z',NULL,170,2,105.07665741496471,4.2,118.48071390237436,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4420,'2017-05-22T14:28:57.975Z',7.802505607864912,26,4,45.41647453836076,1.82,49.863549238930716,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4421,'2018-03-28T02:12:24.775Z',NULL,150,1,128.55415037577922,5.14,125.82941151162379,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4422,'2019-04-23T19:15:09.596Z',NULL,39,2,114.58158180283459,4.58,106.95180681212881,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4423,'2018-02-24T06:33:51.738Z',NULL,180,2,68.32408657333919,2.73,76.99799458552413,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4424,'2017-01-15T13:02:33.766Z',NULL,32,2,71.42990913064094,2.86,68.61638871118375,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4425,'2017-07-22T08:48:57.478Z',NULL,112,5,27.55292434006023,1.1,29.65066502539117,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4426,'2019-07-24T01:33:44.970Z',NULL,182,5,84.48940370476112,3.38,103.74084401836463,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4427,'2016-10-21T06:23:02.434Z',NULL,38,4,44.04624855892918,1.76,48.965812038350656,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4428,'2016-10-27T09:01:23.673Z',NULL,112,4,27.55292434006023,1.1,24.88691804626144,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4429,'2019-11-13T23:30:25.356Z',NULL,192,2,69.18418520579327,2.77,71.42278740402507,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4430,'2017-07-20T23:43:05.802Z',NULL,107,5,33.39659192329691,1.34,39.52048601215712,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4431,'2019-06-12T16:09:54.166Z',NULL,139,8,76.77768319177018,3.07,72.34702085460593,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4432,'2016-09-28T00:55:40.020Z',NULL,90,6,82.07974183693327,3.28,101.31696416590484,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4433,'2019-03-21T16:49:30.167Z',NULL,11,1,132.45679913492563,5.3,128.3638160365638,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4434,'2019-11-06T09:03:52.983Z',NULL,45,2,118.0495173798411,4.72,110.85976320162473,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4435,'2016-12-27T03:01:45.542Z',NULL,77,2,67.34461152277315,2.69,85.01446169789519,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4436,'2017-03-20T06:51:48.844Z',NULL,158,1,93.26282349158673,3.73,120.8527528813501,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4437,'2019-12-19T03:52:14.167Z',NULL,143,2,61.1983004605443,2.45,51.36694887941701,613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4438,'2018-11-01T16:41:42.990Z',NULL,19,4,64.00675097561322,4.48,78.76084405846947,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4439,'2018-02-07T11:52:41.775Z',NULL,152,1,48.89568729900663,3.42,64.82788399882986,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4440,'2017-05-29T02:59:50.863Z',NULL,72,4,94.80254599192457,6.64,88.85551946464528,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4441,'2017-12-02T16:46:04.594Z',NULL,2,2,70.07989613071763,4.91,66.23678493702627,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4442,'2019-07-28T12:47:58.669Z',NULL,161,4,47.59120561297272,3.33,56.98287090678376,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4443,'2018-02-07T07:05:43.224Z',2.741561292999213,31,1,105.65346467128523,7.4,101.41460206027735,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4444,'2019-04-05T10:20:25.587Z',NULL,36,27,130.93687730741433,9.17,115.10903711180661,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4445,'2018-09-04T10:22:32.637Z',2.741561292999213,186,4,98.9770008385166,6.93,83.52719185020045,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4446,'2019-04-15T08:45:28.633Z',NULL,186,3,98.9770008385166,6.93,104.94048454653617,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4447,'2019-08-29T03:02:15.627Z',NULL,167,4,97.70449564120193,6.84,120.372112687325,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4448,'2018-07-15T15:30:28.790Z',NULL,98,4,112.41825444654248,7.87,134.97197435760899,616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4449,'2018-03-21T01:32:14.905Z',NULL,177,1,128.8192981944599,3.74,124.01909023137048,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4450,'2019-06-25T17:47:50.534Z',NULL,181,7,143.88940370476112,4.17,172.48834213997847,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4451,'2019-11-01T12:23:02.911Z',NULL,33,3,47.7448636959614,1.38,39.05098266683518,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4452,'2018-11-07T12:30:58.694Z',NULL,132,3,127.88197029833711,3.71,143.03159827540884,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4453,'2017-03-17T09:51:50.334Z',5.89534008333648,112,1,27.55292434006023,0.8,25.30406866848823,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4454,'2019-03-21T16:52:33.547Z',5.89534008333648,5,1,124.1176465275534,3.6,118.35778913061036,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4455,'2018-03-28T22:07:41.487Z',NULL,147,1,66.64727121216615,1.93,68.6882862439773,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4456,'2018-02-06T08:38:28.575Z',NULL,68,1,115.24343882309758,3.34,99.99372032014166,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4457,'2017-09-11T06:26:50.161Z',NULL,24,5,74.87095783152942,2.17,80.62146626686723,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4458,'2020-01-11T07:06:16.289Z',NULL,66,1,136.16126271106958,3.95,164.06209145778365,617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4459,'2019-10-12T17:08:19.347Z',1.3953400833364804,138,4,113.95078476718615,6.84,119.67466250373808,619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4460,'2019-07-28T11:39:58.193Z',NULL,200,5,73.20395711799151,4.39,92.5794985059261,619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4461,'2019-02-07T17:04:53.686Z',NULL,143,2,61.1983004605443,3.67,74.94231586895354,619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4462,'2020-04-11T13:58:48.519Z',NULL,128,2,75.08016314504417,4.5,94.04276992352177,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4463,'2016-10-27T23:39:03.665Z',NULL,110,4,37.01783079127111,2.22,44.85363613509542,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4464,'2019-07-21T13:23:00.137Z',NULL,28,5,68.12471180754113,4.09,71.14967929588173,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4465,'2018-07-05T20:11:28.774Z',NULL,78,5,41.616917284159726,2.5,41.92122726392563,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4466,'2019-02-22T19:04:15.268Z',NULL,165,1,38.30449564120193,2.3,45.06311667636377,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4467,'2019-11-22T17:24:58.549Z',NULL,43,1,76.35255205175756,4.58,95.29417528428873,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4468,'2019-10-27T01:11:24.711Z',NULL,110,4,55.526746186906664,3.33,49.76632041751851,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4469,'2019-02-06T21:11:56.515Z',NULL,160,2,47.59120561297272,2.86,58.73345714839322,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4470,'2018-10-22T20:50:02.327Z',NULL,178,5,117.32963250370614,7.04,122.0835214799004,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4471,'2018-10-18T08:22:19.504Z',NULL,132,4,127.88197029833711,7.67,137.1034110718645,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4472,'2020-03-25T12:58:43.612Z',2.8131843596228836,169,1,59.53172693453274,3.57,54.60571713373716,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4473,'2016-06-07T01:31:33.641Z',NULL,80,7,36.60883787357609,2.2,36.528704074286836,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4474,'2019-10-28T22:17:31.840Z',NULL,11,7,132.45679913492563,7.95,163.10055309454114,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4475,'2020-02-27T17:00:33.243Z',NULL,190,2,128.5841852057933,7.72,136.4692868898943,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4476,'2017-11-12T03:21:11.617Z',NULL,118,2,38.418408731319154,2.31,36.671532781138346,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4477,'2018-02-01T02:14:40.309Z',NULL,13,2,112.62925391105566,6.76,122.88828582201087,620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4478,'2018-06-07T04:34:30.015Z',NULL,132,6,127.88197029833711,6.39,162.6911144572561,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4479,'2018-07-04T09:05:11.820Z',NULL,32,3,107.1448636959614,5.36,109.69224076964515,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4480,'2019-03-25T05:44:57.649Z',NULL,69,1,73.38772304360626,3.67,69.70185990364017,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4481,'2019-09-13T13:02:10.593Z',NULL,34,3,74.30391386913199,3.72,76.29114339114967,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4482,'2018-10-29T02:46:33.589Z',NULL,69,5,73.38772304360626,3.67,85.73452329792248,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4483,'2017-07-15T01:02:32.848Z',2.8131843596228836,44,6,50.90170136783837,2.55,57.29635718196764,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4484,'2017-04-23T02:03:25.945Z',NULL,19,3,42.67116731707548,2.13,35.801821000824404,621); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4485,'2019-02-10T02:43:33.915Z',NULL,43,1,76.35255205175756,0,64.95518173442699,622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4486,'2018-06-11T23:37:27.078Z',NULL,29,6,123.57448218067185,0,104.40774107773849,622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4487,'2020-03-13T15:54:05.520Z',NULL,22,1,32.136779940663494,0,28.034894180706114,622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4488,'2020-01-28T17:22:18.225Z',NULL,120,1,83.5020135028928,0,84.1861913723734,622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4489,'2019-05-31T10:54:03.533Z',2.8131843596228836,26,3,68.12471180754113,3.75,61.28087000623715,623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4490,'2017-01-05T01:38:18.426Z',NULL,4,2,73.99178100854834,4.07,70.43321622531789,623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4491,'2017-03-09T15:00:40.988Z',NULL,95,1,33.212427711035886,1.83,34.5408837040756,623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4492,'2017-12-10T05:48:09.613Z',NULL,189,1,62.18492169821006,4.66,79.00938166221815,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4493,'2019-06-25T13:31:41.677Z',NULL,144,4,61.1983004605443,4.59,66.4742833050877,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4494,'2017-11-17T07:52:49.139Z',NULL,11,2,88.30453275661709,6.62,116.22853831362809,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4495,'2018-11-26T11:28:25.036Z',NULL,59,2,89.20214751859149,6.69,112.22526305990756,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4496,'2019-12-04T01:29:48.333Z',NULL,68,2,115.24343882309758,8.64,132.75213762858417,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4497,'2018-04-19T03:14:56.394Z',NULL,126,3,125.24398120308456,9.39,132.1316902967526,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4498,'2017-11-18T23:08:00.212Z',7.289170449838212,183,2,37.7982748679465,2.83,49.832520016869566,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4499,'2019-08-26T18:46:20.198Z',NULL,156,6,30.615804149046195,2.3,27.73111689638662,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4500,'2019-03-01T03:54:47.437Z',NULL,196,1,70.14610686710009,5.26,81.08125883892272,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4501,'2020-03-17T07:05:29.150Z',NULL,98,1,112.41825444654248,8.43,118.30409036401866,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4502,'2018-12-23T09:45:37.174Z',NULL,155,2,43.77574310182776,3.28,44.015347937072036,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4503,'2016-12-01T03:14:24.346Z',NULL,139,2,51.18512212784679,3.84,48.58698142857009,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4504,'2018-11-19T08:47:41.900Z',NULL,148,2,138.9817182254566,10.42,176.0453644563503,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4505,'2018-02-15T21:35:30.875Z',2.7891704498382124,101,11,139.82488066180403,10.49,161.26926015577988,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4506,'2017-04-29T04:04:06.000Z',NULL,68,2,76.82895921539838,5.76,66.64675436978415,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4507,'2019-12-25T12:46:43.912Z',NULL,70,1,57.493003808959784,4.31,58.4356906984041,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4508,'2017-07-09T10:25:32.160Z',NULL,94,4,72.81242771103588,5.46,87.53292813874597,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4509,'2018-08-27T00:15:39.970Z',NULL,196,8,70.14610686710009,5.26,85.9712161029399,624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4510,'2018-04-28T16:15:50.636Z',NULL,17,3,79.93608046792765,3.2,73.97916177460345,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4511,'2019-12-12T12:01:05.095Z',NULL,200,2,73.20395711799151,2.93,64.9311330170189,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4512,'2018-10-31T21:11:11.951Z',NULL,139,6,76.77768319177018,3.07,85.36100698848152,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4513,'2019-10-15T20:44:17.126Z',4.533887335474586,152,6,48.89568729900663,1.96,63.07136930651317,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4514,'2019-05-13T15:28:08.656Z',4.533887335474586,178,5,117.32963250370614,4.69,117.35897579321023,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4515,'2019-03-28T13:56:11.643Z',NULL,151,1,91.61302306843446,3.66,109.55703595131948,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4516,'2018-07-01T23:22:07.902Z',NULL,176,6,57.92480943352658,2.32,59.89065415691046,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4517,'2018-12-11T01:51:40.795Z',NULL,114,2,77.91196471862148,3.12,101.22311634226769,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4518,'2019-11-28T22:35:52.891Z',NULL,170,3,105.07665741496471,4.2,122.81138923029972,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4519,'2019-09-19T13:16:35.201Z',4.533887335474586,39,4,114.58158180283459,4.58,120.12268506287607,626); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4520,'2019-02-02T15:41:50.477Z',NULL,91,2,65.09432810381134,4.46,68.21602845400476,627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4521,'2019-06-26T15:59:43.850Z',NULL,153,7,66.79892314178237,4.58,81.6909895294475,627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4522,'2017-06-30T10:20:20.611Z',NULL,81,5,29.288656154807867,2.01,28.58057991068652,627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4523,'2020-04-18T13:50:09.557Z',NULL,173,3,122.3651993029456,8.38,129.2486289439305,627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4524,'2019-07-23T16:47:41.799Z',9.033887335474587,167,7,97.70449564120193,6.69,91.67949616152028,627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4525,'2019-10-19T11:15:03.164Z',NULL,43,8,76.35255205175756,4.58,99.28226872723667,629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4526,'2018-12-20T22:06:09.986Z',NULL,126,2,125.24398120308456,7.51,139.92545674646078,629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4527,'2017-01-15T20:26:57.327Z',NULL,189,2,62.18492169821006,3.73,60.42629191436689,629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4528,'2017-10-29T11:16:15.299Z',NULL,100,4,45.22324323588729,2.71,38.312797726926874,629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4529,'2019-10-05T01:49:37.612Z',NULL,163,4,33.56789820016516,2.01,36.42883654525237,629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4530,'2017-11-27T10:19:43.249Z',NULL,9,3,58.31312098526137,3.5,58.59281875191071,629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4531,'2019-07-03T17:14:38.953Z',NULL,157,5,139.8942352373801,4.06,125.65996972376483,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4532,'2019-04-16T15:59:27.091Z',NULL,94,3,109.21864156655383,3.17,116.92161739652842,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4533,'2017-05-11T04:20:55.344Z',5.623945336466206,122,4,66.56352219205405,1.93,69.36252085214402,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4534,'2018-11-23T18:26:51.558Z',NULL,60,3,29.80214751859149,0.86,37.26798931001839,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4535,'2016-10-01T02:50:34.072Z',NULL,105,6,35.149014295079674,1.02,40.811777773218616,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4536,'2018-04-13T11:20:08.728Z',NULL,75,2,125.81276373452337,3.65,107.37900051498673,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4537,'2020-01-19T03:29:54.192Z',5.623945336466206,23,1,116.86672609493307,3.39,108.4617218245102,630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4538,'2019-10-31T09:43:08.087Z',NULL,86,2,92.31436670850246,5.54,90.60350954149014,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4539,'2018-07-11T16:36:11.096Z',NULL,180,2,68.32408657333919,4.1,66.8137565137759,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4540,'2018-09-03T20:45:18.737Z',NULL,32,4,107.1448636959614,6.43,116.95544310651329,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4541,'2018-12-13T18:28:16.816Z',5.623945336466206,142,2,70.34853057210945,4.22,83.4624290390464,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4542,'2017-09-24T23:53:10.261Z',NULL,54,4,41.395738936015974,2.48,52.90731507480864,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4543,'2017-08-21T02:48:03.928Z',NULL,4,5,73.99178100854834,4.44,73.8036562426777,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4544,'2017-08-31T15:33:25.650Z',NULL,146,8,84.03151414144409,5.04,77.9348604936176,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4545,'2018-08-21T20:55:50.479Z',NULL,152,8,48.89568729900663,2.93,57.88045993497324,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4546,'2017-05-15T01:12:07.210Z',NULL,3,5,35.388744881539054,2.12,35.78259140564923,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4547,'2019-01-10T08:39:54.175Z',8.681264373747542,149,3,69.15415037577924,4.15,61.060734040580144,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4548,'2019-08-19T06:05:06.750Z',NULL,125,9,80.39699207990944,4.82,83.99438931416884,631); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4549,'2018-11-07T12:13:04.963Z',NULL,87,4,117.25536340498041,5.28,100.1877521845817,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4550,'2019-09-18T12:38:59.289Z',NULL,97,7,112.41825444654248,5.06,142.9769886134947,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4551,'2018-09-19T01:14:40.034Z',NULL,110,7,55.526746186906664,2.5,52.452813669361326,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4552,'2019-09-18T09:59:20.349Z',NULL,143,5,61.1983004605443,2.75,75.98009882638839,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4553,'2019-06-09T06:35:52.095Z',NULL,178,7,117.32963250370614,5.28,143.96369738403084,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4554,'2018-04-04T20:11:09.424Z',NULL,178,4,117.32963250370614,5.28,131.07642326746185,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4555,'2019-07-21T21:17:16.379Z',NULL,170,7,105.07665741496471,4.73,105.89586842166219,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4556,'2018-06-09T10:51:23.522Z',NULL,43,8,76.35255205175756,3.44,77.65565287354455,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4557,'2019-01-29T06:45:00.510Z',NULL,22,2,32.136779940663494,1.45,39.32829107105555,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4558,'2017-07-01T10:28:52.028Z',NULL,135,4,30.536015447715613,1.37,36.93478473801444,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4559,'2016-09-04T11:59:54.245Z',NULL,92,4,83.2616179105333,3.75,96.74771086533833,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4560,'2019-08-02T20:00:34.651Z',NULL,149,8,69.15415037577924,3.11,89.78663934316481,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4561,'2017-07-13T10:10:34.153Z',4.181264373747543,74,5,34.08536151591033,1.53,28.725901264393272,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4562,'2018-05-18T03:16:58.163Z',2.7627877139294066,114,4,77.91196471862148,3.51,99.88963880444949,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4563,'2019-05-07T06:06:45.488Z',7.262787713929407,102,5,47.04215255778118,2.12,52.374222431540154,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4564,'2017-07-16T23:06:43.233Z',NULL,64,6,95.61478497145774,4.3,111.93089713372756,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4565,'2018-09-30T23:55:27.312Z',7.262787713929407,198,5,70.14610686710009,3.16,65.07490950625116,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4566,'2019-03-07T01:58:14.131Z',NULL,135,1,45.80402317157342,2.06,54.6088685643545,632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4567,'2018-04-09T09:23:59.463Z',NULL,110,2,55.526746186906664,1.61,53.96938924732643,634); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4568,'2018-06-19T21:20:17.543Z',NULL,101,4,139.82488066180403,4.05,160.05225830868923,634); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4569,'2017-03-27T16:03:07.826Z',NULL,135,1,30.536015447715613,0.89,30.569419269843888,634); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4570,'2016-09-17T21:41:05.193Z',NULL,69,6,48.925148695737505,1.42,54.57952448917038,634); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4571,'2019-04-22T03:51:23.434Z',NULL,55,3,95.77128575934437,2.78,90.02987731843479,634); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4572,'2018-03-07T09:23:43.351Z',2.7627877139294066,122,1,99.84528328808108,6.99,117.93391704393564,635); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4573,'2019-10-16T14:55:31.746Z',NULL,94,5,109.21864156655383,7.65,139.22016657952045,635); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4574,'2017-09-24T22:07:45.411Z',NULL,100,5,45.22324323588729,3.17,45.98981377265814,635); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4575,'2017-07-02T16:51:40.711Z',NULL,109,3,79.36660712128732,4.76,103.63487011550752,636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4576,'2020-02-24T06:27:36.836Z',NULL,195,1,109.78077396807234,7.68,136.86120071331388,637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4577,'2017-10-21T22:01:16.551Z',NULL,147,5,44.4315141414441,3.11,54.80901214414966,637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4578,'2017-04-14T23:46:50.993Z',NULL,44,3,50.90170136783837,3.56,61.52905807467887,637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4579,'2019-03-05T08:16:34.681Z',NULL,126,1,125.24398120308456,8.77,132.991072999614,637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4580,'2018-09-02T16:04:58.257Z',NULL,19,5,64.00675097561322,4.48,72.32591428196525,637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4581,'2018-03-13T10:39:52.286Z',NULL,172,1,122.3651993029456,7.65,142.5399071291366,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4582,'2019-11-27T19:29:37.235Z',NULL,145,1,61.1983004605443,3.82,69.26075312582753,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4583,'2018-06-28T23:56:14.855Z',NULL,74,4,51.12804227386549,3.2,63.424040062467384,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4584,'2019-02-20T12:46:00.606Z',NULL,181,2,143.88940370476112,8.99,184.31549852657247,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4585,'2020-03-20T02:27:41.773Z',NULL,151,1,91.61302306843446,5.73,106.85317491418863,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4586,'2018-07-31T00:59:56.281Z',NULL,63,3,133.5202262591817,8.35,141.43276654957708,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4587,'2019-08-20T15:05:29.973Z',NULL,50,7,53.64019616819762,3.35,52.95216937535479,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4588,'2018-07-29T05:08:42.481Z',NULL,20,5,37.32649625046575,2.33,48.29242831551238,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4589,'2017-10-02T23:54:16.532Z',NULL,173,4,81.57679953529707,5.1,89.1547467210692,638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4590,'2018-05-24T08:06:18.384Z',NULL,120,2,83.5020135028928,5.43,101.48315128188402,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4591,'2019-03-10T06:34:44.826Z',NULL,135,1,45.80402317157342,2.98,44.01499884853941,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4592,'2020-04-02T11:55:51.663Z',NULL,43,2,76.35255205175756,4.96,68.69878366178098,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4593,'2019-11-03T11:12:12.971Z',5.332285548053855,80,1,54.91325681036414,3.57,71.87442597791082,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4594,'2018-12-26T03:00:02.888Z',NULL,122,1,99.84528328808108,6.49,120.86283003628083,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4595,'2019-07-26T11:40:53.431Z',NULL,58,3,78.14578007078882,5.08,71.40102489405723,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4596,'2016-07-12T02:34:14.269Z',NULL,194,3,33.587182645381546,2.18,42.403470391393824,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4597,'2018-10-29T15:06:52.710Z',NULL,150,5,128.55415037577922,8.36,170.90460812919744,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4598,'2016-11-09T09:50:32.028Z',NULL,126,2,83.49598746872304,5.43,107.90495248685684,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4599,'2017-09-12T21:32:07.347Z',NULL,135,3,30.536015447715613,1.98,30.227364508524435,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4600,'2018-10-15T07:33:14.968Z',NULL,55,5,95.77128575934437,6.23,106.78890123321396,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4601,'2019-08-03T11:04:24.616Z',NULL,71,7,82.80381898788684,5.38,73.48404739519208,641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4602,'2019-08-19T00:57:54.835Z',NULL,135,7,45.80402317157342,2.63,48.347178222779654,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4603,'2019-01-23T03:51:18.614Z',NULL,82,2,60.89545738030947,3.5,80.6528089745546,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4604,'2018-11-10T07:12:46.856Z',NULL,134,2,42.49233549998661,2.44,53.96051870632969,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4605,'2018-06-02T22:02:07.216Z',NULL,130,5,75.02573869315137,4.31,87.7282259487219,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4606,'2020-03-05T04:52:35.656Z',NULL,120,1,83.5020135028928,4.8,69.03724959961284,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4607,'2020-02-16T19:35:06.781Z',NULL,4,2,110.98767151282252,6.38,135.4356230575042,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4608,'2020-01-22T11:16:19.356Z',NULL,185,2,39.57700083851661,2.28,43.45734055080465,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4609,'2018-10-29T06:02:27.588Z',8.632728496327406,71,6,82.80381898788684,4.76,101.85403494801646,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4610,'2018-04-28T22:43:10.331Z',4.132728496327406,26,4,68.12471180754113,3.92,81.98880752529092,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4611,'2018-03-26T21:05:30.572Z',8.632728496327406,185,1,39.57700083851661,2.28,52.680583007195956,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4612,'2019-11-07T23:41:02.410Z',NULL,153,2,66.79892314178237,3.84,85.37176295880498,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4613,'2018-08-03T11:54:21.104Z',NULL,2,6,105.11984419607644,6.04,104.39950416546249,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4614,'2019-03-17T11:47:32.978Z',4.132728496327406,24,1,112.30643674729413,6.46,97.69626388521074,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4615,'2019-01-24T16:07:42.220Z',NULL,171,2,105.07665741496471,6.04,136.15473903548417,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4616,'2018-11-19T19:17:54.224Z',NULL,170,3,105.07665741496471,6.04,115.71575433537068,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4617,'2019-05-22T16:06:40.541Z',NULL,151,3,91.61302306843446,5.27,106.24113302684333,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4618,'2017-06-08T18:28:07.333Z',NULL,6,4,64.95747510229587,3.74,79.28975435155357,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4619,'2019-05-01T14:35:35.438Z',NULL,180,4,68.32408657333919,3.93,79.0706071752694,642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4620,'2018-04-10T00:42:08.395Z',NULL,26,4,68.12471180754113,4.43,62.26875295411876,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4621,'2020-01-16T12:35:15.036Z',NULL,94,2,109.21864156655383,7.1,137.63918285464973,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4622,'2018-12-05T15:33:59.507Z',NULL,172,2,122.3651993029456,7.95,151.31447237439394,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4623,'2017-08-29T20:53:31.892Z',NULL,74,5,34.08536151591033,2.22,33.03715674353647,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4624,'2018-02-04T04:41:06.118Z',NULL,121,1,40.44528328808107,2.63,37.23996336996714,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4625,'2019-06-18T15:18:39.386Z',NULL,119,6,43.43814329652384,2.82,48.866861386313545,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4626,'2017-03-14T13:03:10.222Z',NULL,138,1,75.96718984479077,4.94,91.69532672420097,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4627,'2017-04-14T06:38:26.942Z',NULL,68,3,76.82895921539838,4.99,79.48995546721876,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4628,'2019-11-02T21:28:01.825Z',NULL,96,3,104.82144858590365,6.81,93.14255424779908,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4629,'2017-09-29T18:18:32.554Z',NULL,74,5,34.08536151591033,2.22,43.66573882855914,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4630,'2018-11-28T12:13:50.796Z',NULL,148,4,138.9817182254566,9.03,141.20710982135716,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4631,'2019-06-09T20:50:17.994Z',NULL,76,8,63.82421061366486,4.15,58.0145361770196,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4632,'2018-05-31T02:23:47.653Z',NULL,37,5,80.10774204020768,5.21,97.91396648754785,643); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4633,'2018-06-23T12:43:37.312Z',NULL,43,8,76.35255205175756,4.77,90.10538122734714,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4634,'2018-08-10T02:48:35.998Z',NULL,33,7,47.7448636959614,2.98,60.37280992822865,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4635,'2017-11-18T17:13:39.653Z',NULL,32,3,71.42990913064094,4.46,65.80878066642134,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4636,'2018-06-22T03:44:11.054Z',NULL,187,6,98.9770008385166,6.19,113.98753751752619,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4637,'2019-02-19T00:38:56.580Z',NULL,155,1,43.77574310182776,2.74,47.14748250670993,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4638,'2017-08-16T18:50:41.643Z',NULL,196,4,46.76407124473339,2.92,43.11493396133306,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4639,'2019-02-11T04:22:49.866Z',NULL,188,1,33.87738254731509,2.12,45.209227141534576,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4640,'2018-11-03T03:29:49.832Z',NULL,52,2,103.67587240151535,6.48,102.74257767800887,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4641,'2019-01-28T19:54:00.956Z',NULL,7,2,148.22900526552291,9.26,136.6742010995349,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4642,'2019-01-05T18:52:14.417Z',1.6608878074448994,78,2,41.616917284159726,2.6,50.86675836187436,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4643,'2020-01-20T10:12:50.571Z',NULL,158,2,139.8942352373801,8.74,178.88068240747788,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4644,'2019-02-05T09:23:59.647Z',NULL,69,1,73.38772304360626,4.59,76.41360416388208,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4645,'2019-06-27T02:46:43.896Z',NULL,171,5,105.07665741496471,6.57,90.38466347431601,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4646,'2019-04-19T11:02:12.164Z',NULL,151,1,91.61302306843446,5.73,115.78825759319027,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4647,'2019-07-03T10:58:50.995Z',NULL,165,2,38.30449564120193,2.39,41.518142256556075,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4648,'2019-10-22T22:40:56.710Z',NULL,146,4,126.04727121216614,7.88,149.16470129422092,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4649,'2019-02-12T19:48:29.103Z',NULL,124,1,110.93145648834248,6.93,127.4082940171128,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4650,'2018-09-09T06:52:55.404Z',1.6608878074448994,160,2,47.59120561297272,2.97,55.25136147237599,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4651,'2019-05-12T09:48:58.522Z',NULL,170,3,105.07665741496471,6.57,128.39637027405954,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4652,'2018-05-30T04:46:14.649Z',NULL,139,5,76.77768319177018,4.8,97.8791576873696,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4653,'2019-12-04T04:41:11.150Z',NULL,109,2,119.04991068193098,7.44,151.43625352624028,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4654,'2018-05-23T16:20:19.369Z',NULL,191,2,128.5841852057933,8.04,144.982353941861,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4655,'2018-12-07T15:01:47.743Z',NULL,169,1,59.53172693453274,3.72,68.79595191272121,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4656,'2019-09-07T15:28:23.320Z',NULL,25,2,68.62263967182464,4.29,90.93612652453763,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4657,'2019-11-08T04:29:20.079Z',NULL,145,3,61.1983004605443,3.82,67.95752476646715,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4658,'2018-09-28T06:41:12.137Z',8.14772515521793,1,5,44.19489169601981,2.76,52.541140054155505,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4659,'2018-10-21T12:57:15.589Z',NULL,174,4,111.61430894181083,6.98,150.72469915189342,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4660,'2019-10-19T23:32:15.111Z',NULL,165,6,38.30449564120193,2.39,51.04154908633276,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4661,'2019-02-26T19:17:07.456Z',8.14772515521793,108,2,50.094887884945365,3.13,66.39363775117783,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4662,'2020-02-23T04:18:19.106Z',NULL,147,2,66.64727121216615,4.17,88.18118695662086,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4663,'2017-10-25T07:22:38.394Z',NULL,101,7,93.21658710786936,5.83,92.89725002835715,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4664,'2017-05-07T02:28:46.102Z',NULL,43,4,50.90170136783837,3.18,54.907155644401946,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4665,'2020-04-10T03:18:14.162Z',8.14772515521793,44,3,76.35255205175756,4.77,67.04093549395,644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4666,'2019-05-12T10:20:05.430Z',3.647725155217931,14,4,37.648145389078365,2.64,32.59788005866023,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4667,'2017-08-01T13:35:57.693Z',NULL,173,7,81.57679953529707,5.71,91.07546463621425,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4668,'2019-09-23T22:25:05.014Z',NULL,74,5,51.12804227386549,3.58,58.892403232356735,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4669,'2016-11-05T06:47:38.142Z',NULL,51,3,50.433725012700116,3.53,54.529031942049016,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4670,'2020-02-08T01:04:57.163Z',NULL,29,2,123.57448218067185,8.65,137.32734708636588,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4671,'2019-04-14T19:55:51.128Z',NULL,103,2,47.04215255778118,3.29,55.5374724083742,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4672,'2018-02-28T12:15:09.862Z',NULL,79,2,41.616917284159726,2.91,43.91046669565278,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4673,'2018-04-21T00:55:35.756Z',8.14772515521793,61,4,23.537915510955656,1.65,29.6539745870972,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4674,'2019-04-24T19:50:29.072Z',NULL,18,4,81.90307121097293,5.73,82.9022491098686,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4675,'2019-04-13T13:41:09.268Z',NULL,137,3,67.77247956807186,4.74,86.97918478345375,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4676,'2018-05-20T19:58:10.388Z',5.826410359093374,165,3,38.30449564120193,2.68,35.47533539939285,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4677,'2018-11-26T05:26:46.753Z',NULL,181,2,143.88940370476112,10.07,138.8387251526581,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4678,'2019-09-10T22:53:24.161Z',NULL,48,5,123.20884248534108,8.62,117.58621349270905,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4679,'2020-01-12T08:27:45.241Z',NULL,78,1,41.616917284159726,2.91,40.45417189218684,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4680,'2017-09-16T16:16:16.949Z',NULL,68,4,76.82895921539838,5.38,70.29726803004696,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4681,'2019-07-30T14:56:15.490Z',NULL,190,4,128.5841852057933,9,138.16332071179195,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4682,'2018-04-07T13:40:32.154Z',NULL,157,2,139.8942352373801,9.79,189.81106373117484,646); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4683,'2018-10-10T05:55:17.039Z',NULL,122,4,99.84528328808108,0,113.83783894890139,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4684,'2018-07-03T05:17:18.487Z',NULL,38,2,66.06937283839378,0,60.277305376821936,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4685,'2018-10-07T01:03:07.154Z',NULL,169,4,59.53172693453274,0,51.873426544856436,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4686,'2017-01-21T13:59:15.878Z',NULL,54,2,41.395738936015974,0,45.324354101437315,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4687,'2018-07-12T00:09:25.537Z',NULL,183,4,56.697412301919755,0,62.64036912525589,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4688,'2018-05-21T05:55:48.786Z',NULL,47,3,84.0766209826718,0,79.65400497563952,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4689,'2019-07-12T15:39:56.186Z',NULL,31,5,105.65346467128523,0,91.90345275494424,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4690,'2019-05-25T19:52:24.488Z',NULL,9,4,87.46968147789205,0,91.61295140762292,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4691,'2017-11-13T23:44:53.069Z',NULL,121,2,26.96352219205405,0,31.30161293810788,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4692,'2017-06-19T16:06:09.280Z',NULL,26,5,45.41647453836076,0,35.619432499801995,647); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4693,'2019-12-24T01:46:55.026Z',NULL,151,2,91.61302306843446,3.66,89.13117011894738,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4694,'2018-09-21T22:05:01.289Z',NULL,76,4,63.82421061366486,2.55,59.19749090623225,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4695,'2019-05-19T05:37:34.553Z',NULL,56,2,36.37128575934436,1.45,30.755867216979485,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4696,'2019-08-27T12:41:47.097Z',NULL,84,3,81.87627832636537,3.28,81.35295441806028,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4697,'2018-05-07T02:20:51.323Z',NULL,197,2,70.14610686710009,2.81,89.91966151047546,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4698,'2017-12-29T19:05:36.357Z',NULL,119,1,28.95876219768256,1.16,29.975589795663502,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4699,'2017-11-21T20:06:26.156Z',NULL,80,2,36.60883787357609,1.46,36.4144108684789,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4700,'2018-03-03T16:09:22.139Z',NULL,19,1,64.00675097561322,2.56,57.913743161107995,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4701,'2020-02-07T03:49:09.988Z',NULL,144,1,61.1983004605443,2.45,50.1217718112948,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4702,'2017-05-23T00:58:35.810Z',NULL,33,5,31.829909130640935,1.27,35.548474235788,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4703,'2020-03-06T11:15:04.432Z',1.7636751939148014,200,1,73.20395711799151,2.93,93.11291909039964,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4704,'2019-09-22T22:24:32.971Z',NULL,163,4,33.56789820016516,1.34,33.319234667714376,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4705,'2020-03-16T05:25:20.655Z',NULL,166,1,38.30449564120193,1.53,45.53019186092887,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4706,'2017-07-27T08:08:42.171Z',6.263675193914802,118,3,38.418408731319154,1.54,43.545019729365244,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4707,'2019-11-24T03:50:35.282Z',6.263675193914802,190,2,128.5841852057933,5.14,124.49555792992676,650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4708,'2019-09-01T03:10:11.059Z',NULL,135,4,45.80402317157342,1.83,43.74578792187719,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4709,'2018-04-22T15:32:56.488Z',NULL,165,3,38.30449564120193,1.53,32.439355205511106,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4710,'2017-03-19T09:11:39.238Z',1.7636751939148014,155,1,29.183828734551838,1.17,36.7465821150489,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4711,'2018-06-09T16:15:59.541Z',NULL,56,5,36.37128575934436,1.45,44.510795329578116,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4712,'2017-03-11T22:46:16.469Z',NULL,159,1,23.686782969182406,0.95,22.14626621749195,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4713,'2017-01-17T14:28:09.226Z',NULL,183,1,37.7982748679465,1.51,31.98389982705997,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4714,'2018-07-18T09:57:33.521Z',NULL,9,3,87.46968147789205,3.5,93.67130335174434,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4715,'2016-12-25T09:29:45.214Z',NULL,43,2,50.90170136783837,2.04,52.544091992313255,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4716,'2018-08-29T18:35:11.423Z',NULL,115,8,77.91196471862148,3.12,66.18029139099201,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4717,'2016-07-01T21:07:43.017Z',NULL,80,6,36.60883787357609,1.46,37.0565080953443,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4718,'2017-12-19T02:24:04.221Z',NULL,58,2,52.097186713859216,2.08,42.994163142643515,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4719,'2019-12-16T16:15:17.994Z',NULL,31,2,105.65346467128523,4.23,96.39794674671484,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4720,'2019-08-01T09:02:04.290Z',4.636262829885819,111,8,55.526746186906664,2.22,52.31260446463175,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4721,'2018-07-13T00:25:04.217Z',NULL,171,7,105.07665741496471,4.2,117.89226648496934,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4722,'2019-01-10T03:00:46.225Z',NULL,198,2,70.14610686710009,2.81,85.96068949249454,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4723,'2017-09-05T19:07:13.020Z',NULL,33,4,31.829909130640935,1.27,37.487253104117485,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4724,'2018-07-12T22:52:48.830Z',NULL,173,6,122.3651993029456,4.89,126.40255775595145,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4725,'2019-05-06T20:15:50.389Z',NULL,123,6,110.93145648834248,4.44,127.77370785488074,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4726,'2018-06-03T21:57:34.380Z',NULL,80,7,54.91325681036414,2.2,69.99739142960792,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4727,'2017-02-20T18:32:44.813Z',NULL,45,2,78.6996782532274,3.15,88.12178826826377,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4728,'2019-12-25T09:46:50.410Z',4.636262829885819,110,2,55.526746186906664,2.22,73.38424919585103,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4729,'2017-02-05T02:16:25.460Z',NULL,194,1,33.587182645381546,1.34,30.061330139520685,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4730,'2019-03-15T06:30:30.035Z',NULL,145,1,61.1983004605443,2.45,60.307215114498405,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4731,'2019-07-06T10:47:33.068Z',NULL,41,6,63.50890855689462,2.54,80.0169883665357,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4732,'2019-10-16T05:09:47.504Z',NULL,23,6,116.86672609493307,4.67,112.8141035223169,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4733,'2018-03-22T16:18:11.305Z',NULL,22,1,32.136779940663494,1.29,30.291067416098223,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4734,'2018-09-29T01:49:54.003Z',4.636262829885819,108,6,50.094887884945365,2,58.74338699109083,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4735,'2019-06-23T14:16:28.740Z',NULL,77,9,101.01691728415972,4.04,127.6959188241675,652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4736,'2018-08-23T04:59:11.980Z',NULL,26,8,68.12471180754113,4.26,91.50122029735383,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4737,'2018-03-11T19:09:44.862Z',NULL,62,1,133.5202262591817,8.35,137.08217549004192,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4738,'2020-02-11T08:50:29.964Z',NULL,50,2,53.64019616819762,3.35,71.53361027902412,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4739,'2017-10-22T04:05:26.861Z',NULL,43,5,50.90170136783837,3.18,54.12580807944025,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4740,'2017-02-27T11:11:04.091Z',NULL,69,2,48.925148695737505,3.06,48.40079848836079,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4741,'2018-07-27T21:02:47.794Z',NULL,104,7,106.44215255778118,6.65,96.41225498046158,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4742,'2017-07-30T04:13:31.745Z',NULL,62,7,89.0134841727878,5.56,115.38342712578847,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4743,'2019-11-18T07:01:33.411Z',NULL,143,4,61.1983004605443,3.82,75.37133638671627,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4744,'2018-03-10T20:24:27.363Z',NULL,128,1,75.08016314504417,4.69,74.44371375250476,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4745,'2018-03-18T05:57:23.267Z',NULL,43,1,76.35255205175756,4.77,83.73151166595446,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4746,'2017-02-06T08:55:45.971Z',NULL,157,2,93.26282349158673,5.83,119.70569046322011,653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4747,'2017-08-21T17:32:00.113Z',NULL,49,6,87.61910559549149,5.7,108.94483249635002,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4748,'2017-01-28T03:13:59.330Z',NULL,118,2,38.418408731319154,2.5,36.81429487110375,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4749,'2019-03-06T05:50:24.035Z',NULL,193,1,50.38077396807232,3.27,58.17801462095219,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4750,'2018-01-05T00:54:17.709Z',NULL,55,2,95.77128575934437,6.23,97.01941275200763,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4751,'2019-04-06T05:16:52.892Z',NULL,87,3,117.25536340498041,7.62,155.44669736518767,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4752,'2018-11-23T06:56:16.668Z',NULL,113,3,110.47725376186015,7.18,140.97154327118017,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4753,'2019-02-27T02:23:08.390Z',NULL,31,2,105.65346467128523,6.87,135.65260406996828,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4754,'2018-02-21T18:00:28.157Z',NULL,180,2,68.32408657333919,4.44,68.98026051798506,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4755,'2019-07-08T05:15:54.128Z',NULL,46,4,118.0495173798411,7.67,119.70136890359021,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4756,'2020-03-28T14:01:54.906Z',NULL,175,1,117.3248094335266,7.63,121.15929780112457,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4757,'2019-05-24T07:23:41.213Z',NULL,95,5,49.81864156655383,3.24,67.35853605931032,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4758,'2020-01-14T03:47:15.313Z',9.403878353913903,77,2,101.01691728415972,6.57,94.93841793112709,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4759,'2019-07-18T03:30:49.621Z',NULL,103,6,47.04215255778118,3.06,49.30738488204443,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4760,'2020-01-05T23:27:49.278Z',NULL,66,2,136.16126271106958,8.85,165.94026215698287,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4761,'2018-09-16T20:43:27.034Z',NULL,118,7,57.627613096978735,3.75,70.59486909161319,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4762,'2018-08-17T08:59:23.525Z',NULL,132,100,127.88197029833711,8.31,144.53174764375493,654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4763,'2019-02-16T12:35:10.707Z',NULL,134,2,42.49233549998661,1.7,46.688045664143765,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4764,'2017-11-03T13:30:02.611Z',NULL,101,3,93.21658710786936,3.73,99.92357135527413,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4765,'2018-08-05T02:40:32.416Z',NULL,66,8,136.16126271106958,5.45,170.80390790417172,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4766,'2017-09-08T16:33:20.344Z',NULL,7,6,98.81933684368194,3.95,79.3571368507164,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4767,'2018-12-29T19:47:26.495Z',NULL,154,2,81.87529553312261,3.28,82.35624314318683,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4768,'2019-09-13T01:41:51.944Z',NULL,179,7,68.32408657333919,2.73,84.20219125058564,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4769,'2019-05-22T16:49:09.979Z',NULL,136,6,105.20402317157343,4.21,130.52034474658873,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4770,'2017-01-15T06:12:37.008Z',NULL,36,3,87.29125153827623,3.49,104.19485507067341,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4771,'2017-01-30T04:50:35.340Z',2.7697080583701017,163,3,22.378598800110105,0.9,27.24544086326051,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4772,'2018-11-08T07:50:56.238Z',NULL,132,3,127.88197029833711,5.12,167.891572178995,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4773,'2019-07-23T23:07:43.110Z',NULL,115,5,77.91196471862148,3.12,78.43548360570986,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4774,'2018-04-15T18:00:49.298Z',NULL,66,3,136.16126271106958,5.45,155.8822311106531,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4775,'2019-02-10T15:48:52.342Z',7.269708058370102,104,1,106.44215255778118,4.26,109.63065794717647,655); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4776,'2020-01-01T12:04:52.543Z',NULL,88,1,105.41292031622555,6.32,129.1664734239276,656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4777,'2017-06-10T22:33:52.430Z',NULL,30,6,42.7829881204479,2.57,42.81090577781025,656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4778,'2017-05-14T15:58:46.077Z',NULL,178,4,78.21975500247076,4.69,68.24747660879494,656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4779,'2018-08-25T13:34:56.594Z',NULL,72,4,142.20381898788685,8.53,137.7022105829566,656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4780,'2019-02-19T19:42:06.350Z',NULL,171,2,105.07665741496471,6.3,100.05407483185452,656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4781,'2017-07-14T02:10:14.982Z',NULL,93,6,33.212427711035886,2.49,37.53619595002277,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4782,'2017-12-08T19:02:20.353Z',NULL,82,2,40.59697158687298,3.04,53.7044467555612,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4783,'2017-04-15T15:48:30.653Z',NULL,120,3,55.668009001928525,4.18,73.90206744495639,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4784,'2019-04-01T07:55:27.687Z',NULL,111,4,55.526746186906664,4.16,74.71719539048136,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4785,'2018-09-04T18:23:10.911Z',NULL,126,6,125.24398120308456,9.39,133.18135788263515,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4786,'2018-05-31T03:11:04.281Z',NULL,124,5,110.93145648834248,8.32,117.1878585400131,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4787,'2018-03-02T11:07:33.841Z',NULL,137,1,67.77247956807186,5.08,70.22924522217299,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4788,'2018-05-15T19:24:42.569Z',NULL,134,5,42.49233549998661,3.19,54.806915251842796,657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4789,'2019-11-05T18:52:16.361Z',NULL,192,3,69.18418520579327,4.84,79.63216087641794,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4790,'2018-11-15T19:38:06.696Z',NULL,6,3,97.43621265344382,6.82,126.78786926807297,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4791,'2016-12-21T12:28:59.441Z',NULL,19,2,42.67116731707548,2.99,35.196821857900964,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4792,'2018-07-14T16:19:56.473Z',NULL,71,2,82.80381898788684,5.8,104.43948644362453,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4793,'2017-08-05T04:57:34.011Z',NULL,113,5,73.65150250790677,5.16,94.1963298651741,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4794,'2018-09-29T05:30:57.188Z',6.14212492126061,165,5,38.30449564120193,2.68,49.71947872445476,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4795,'2019-11-27T10:59:33.569Z',NULL,86,3,92.31436670850246,6.46,121.71983042043642,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4796,'2019-01-19T04:25:57.279Z',NULL,131,2,113.11722203337729,7.92,112.41894936343625,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4797,'2017-05-28T03:09:23.340Z',NULL,18,3,54.60204747398195,3.82,47.23515564140827,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4798,'2018-05-06T09:42:16.115Z',NULL,17,3,79.93608046792765,5.6,102.77565467003285,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4799,'2018-06-27T04:29:57.105Z',NULL,101,5,139.82488066180403,9.79,151.97652217617005,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4800,'2019-07-02T03:30:22.265Z',NULL,77,2,101.01691728415972,7.07,124.36827392462277,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4801,'2017-04-17T17:19:41.404Z',6.14212492126061,192,1,46.122790137195516,3.23,48.26388312406701,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4802,'2017-05-12T05:32:24.520Z',NULL,196,3,46.76407124473339,3.27,54.15968252981857,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4803,'2020-03-14T22:05:57.979Z',NULL,15,1,37.648145389078365,2.64,48.96383456234478,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4804,'2018-10-27T13:03:47.303Z',NULL,102,4,47.04215255778118,3.29,63.64059079594434,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4805,'2017-10-25T11:46:59.754Z',6.14212492126061,110,4,37.01783079127111,2.59,31.97219654983004,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4806,'2018-12-09T20:10:18.660Z',1.64212492126061,167,2,97.70449564120193,6.84,115.53365162608931,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4807,'2019-03-16T14:10:57.060Z',NULL,131,1,113.11722203337729,7.92,120.68129077052494,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4808,'2019-02-07T10:59:05.992Z',NULL,164,1,92.96789820016517,6.51,83.935630611854,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4809,'2018-08-15T02:30:26.353Z',NULL,30,5,64.17448218067184,4.49,64.27033260502063,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4810,'2020-02-18T07:54:47.794Z',NULL,50,2,53.64019616819762,3.75,55.40216012092156,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4811,'2017-11-23T19:57:04.889Z',NULL,18,3,54.60204747398195,3.82,69.84883479274822,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4812,'2016-10-07T04:02:13.994Z',NULL,175,4,78.21653962235106,5.48,86.83572208245006,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4813,'2016-11-23T13:13:24.591Z',NULL,185,3,26.384667225677738,1.85,30.760607840105457,658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4814,'2017-01-22T13:23:11.922Z',NULL,92,3,83.2616179105333,4.58,77.30324291000156,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4815,'2019-08-09T15:11:59.320Z',NULL,49,9,131.42865839323724,7.23,137.06381253057188,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4816,'2019-06-23T02:39:36.236Z',NULL,151,8,91.61302306843446,5.04,118.79973326350832,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4817,'2018-01-06T21:15:50.227Z',NULL,153,2,66.79892314178237,3.67,88.87282593257787,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4818,'2020-03-03T20:22:58.236Z',NULL,18,1,81.90307121097293,4.5,104.82098796612381,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4819,'2020-03-08T00:04:56.747Z',NULL,61,1,23.537915510955656,1.29,25.005162546333793,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4820,'2019-10-14T14:29:32.898Z',NULL,71,6,82.80381898788684,4.55,92.21221964210505,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4821,'2019-08-02T08:04:55.630Z',NULL,9,7,87.46968147789205,4.81,89.75328553756512,659); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4822,'2018-11-18T08:11:25.229Z',NULL,113,4,110.47725376186015,0,139.96296112370356,663); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4823,'2019-09-01T07:11:44.547Z',NULL,61,5,23.537915510955656,0,26.141100269220487,663); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4824,'2018-02-08T01:54:55.712Z',NULL,106,2,52.723521442619514,0,54.16276474582457,663); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4825,'2019-06-20T00:37:21.741Z',NULL,108,8,50.094887884945365,0,57.578564110661375,663); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4826,'2019-05-11T14:18:40.294Z',NULL,81,5,43.9329842322118,0,51.05106294130104,663); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4827,'2020-02-16T20:00:41.879Z',NULL,88,2,105.41292031622555,6.32,99.67317951913773,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4828,'2019-10-27T12:34:56.172Z',1.238822542413757,20,7,37.32649625046575,2.24,45.799180441383186,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4829,'2019-10-18T01:59:45.595Z',NULL,160,5,47.59120561297272,2.86,41.53050669231168,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4830,'2019-03-06T11:07:42.263Z',NULL,14,0,37.648145389078365,2.26,38.23518533529376,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4831,'2018-12-23T12:44:34.510Z',5.738822542413757,95,1,49.81864156655383,2.99,52.824143946742396,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4832,'2018-01-10T11:01:04.546Z',NULL,95,1,49.81864156655383,2.99,62.30430314520079,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4833,'2017-09-20T11:26:43.706Z',NULL,146,4,84.03151414144409,5.04,93.12533249680777,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4834,'2018-10-08T11:50:36.493Z',NULL,40,6,99.66240044231697,5.98,123.35350458655546,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4835,'2019-04-04T05:13:10.733Z',NULL,117,3,55.024851254077866,3.3,53.33647109887609,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4836,'2017-11-30T07:46:46.338Z',NULL,32,2,71.42990913064094,4.29,65.76709440390272,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4837,'2018-01-22T05:25:59.227Z',NULL,12,1,116.01427581618326,6.96,113.4404498955545,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4838,'2017-07-28T16:04:36.273Z',NULL,73,4,47.752514839713,2.87,56.938537114897116,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4839,'2018-02-12T00:42:29.472Z',NULL,53,2,44.27587240151534,2.66,56.02349196196949,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4840,'2018-07-25T20:46:21.200Z',NULL,61,4,23.537915510955656,1.41,27.893379593089545,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4841,'2019-11-26T00:17:02.669Z',NULL,147,2,66.64727121216615,4,66.08898652690075,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4842,'2019-06-30T15:07:01.119Z',NULL,129,6,148.1672972165937,8.89,191.66016082960368,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4843,'2016-11-17T12:43:34.775Z',NULL,163,2,22.378598800110105,1.34,27.504820555139577,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4844,'2017-06-03T04:54:36.505Z',1.238822542413757,163,3,22.378598800110105,1.34,20.42031728972688,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4845,'2019-10-27T01:49:55.610Z',NULL,157,4,139.8942352373801,8.39,145.87905903773384,664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4846,'2019-12-02T08:58:29.817Z',NULL,181,1,143.88940370476112,6.83,174.22835555567235,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4847,'2019-08-22T11:48:35.332Z',NULL,22,5,32.136779940663494,1.53,27.00936191867126,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4848,'2019-12-05T09:04:57.443Z',NULL,102,2,47.04215255778118,2.23,49.80402160437702,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4849,'2019-12-19T03:56:22.030Z',NULL,134,2,42.49233549998661,2.02,38.307975779800955,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4850,'2019-03-23T08:42:01.440Z',NULL,103,1,47.04215255778118,2.23,54.70578449046984,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4851,'2020-01-01T01:10:05.962Z',NULL,63,2,133.5202262591817,6.34,135.4131810758543,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4852,'2020-01-18T10:12:04.180Z',6.625008986309306,59,2,89.20214751859149,4.24,90.06124180576391,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4853,'2020-03-14T01:13:06.653Z',NULL,154,1,81.87529553312261,3.89,79.63898614873109,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4854,'2018-08-17T20:24:16.690Z',NULL,5,8,124.1176465275534,5.9,121.4173724893867,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4855,'2017-05-09T15:55:25.932Z',5.654985505473335,127,4,89.65344209669612,4.26,106.10052670482456,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4856,'2019-04-23T02:45:14.487Z',NULL,137,3,67.77247956807186,3.22,85.06112952291579,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4857,'2018-10-17T01:55:42.168Z',NULL,41,6,63.50890855689462,3.02,82.41991884915123,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4858,'2019-08-19T12:21:59.304Z',NULL,89,7,63.719612755399886,3.03,73.14143547086107,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4859,'2018-12-20T05:28:49.864Z',NULL,104,2,106.44215255778118,5.06,140.35186315851223,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4860,'2020-03-28T10:22:18.596Z',NULL,186,1,98.9770008385166,4.7,93.43254504586851,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4861,'2016-07-09T18:41:53.452Z',NULL,21,5,40.38334406304544,1.92,45.5377751510154,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4862,'2019-07-07T10:38:45.099Z',NULL,36,4,130.93687730741433,6.22,129.69200050018978,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4863,'2020-03-03T13:57:04.398Z',NULL,162,1,33.56789820016516,1.59,27.023327999483776,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4864,'2020-01-24T23:12:04.312Z',NULL,129,2,148.1672972165937,7.04,142.83527317839508,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4865,'2017-08-03T07:03:50.422Z',NULL,174,9,74.40953929454055,3.53,93.05922807015298,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4866,'2020-02-08T02:54:17.711Z',NULL,116,2,114.42485125407785,5.44,132.32585069897934,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4867,'2019-02-01T21:35:49.911Z',NULL,6,2,97.43621265344382,4.63,123.07232329966581,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4868,'2020-03-06T00:32:42.683Z',NULL,167,1,97.70449564120193,4.64,82.6895177447656,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4869,'2018-04-19T20:12:56.412Z',NULL,192,2,69.18418520579327,3.29,75.86098669771063,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4870,'2016-09-07T07:44:25.801Z',NULL,179,5,45.549391048892794,2.16,42.46545249696833,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4871,'2017-06-22T00:27:02.935Z',NULL,178,6,78.21975500247076,3.72,72.59454720876673,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4872,'2019-12-29T14:05:53.778Z',NULL,18,2,81.90307121097293,3.89,103.16246634760034,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4873,'2018-08-28T18:36:21.518Z',NULL,106,7,52.723521442619514,2.5,54.734959293710276,665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4874,'2019-06-10T05:12:14.632Z',NULL,80,4,54.91325681036414,1.59,72.03666232937805,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4875,'2017-11-06T12:20:40.504Z',NULL,164,2,61.978598800110106,1.8,52.350209369498124,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4876,'2019-11-08T23:37:09.703Z',NULL,50,2,53.64019616819762,1.56,69.7503396227131,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4877,'2018-08-19T09:34:04.446Z',NULL,8,6,98.83823503993958,2.87,96.486048379887,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4878,'2019-06-07T15:00:23.735Z',NULL,42,5,38.00410713690931,1.1,47.560862877185734,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4879,'2019-09-10T08:31:06.790Z',NULL,62,3,133.5202262591817,3.87,107.14052018641776,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4880,'2019-02-24T22:21:38.567Z',NULL,107,1,50.094887884945365,1.45,42.735093785272355,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4881,'2019-05-23T18:21:12.274Z',NULL,101,5,139.82488066180403,4.05,120.92036752038612,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4882,'2017-08-26T20:11:33.449Z',NULL,178,6,78.21975500247076,2.27,88.64888898165503,666); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4883,'2019-11-10T09:31:43.311Z',NULL,31,2,105.65346467128523,7.26,109.14795507600691,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4884,'2018-10-20T03:43:52.862Z',NULL,150,5,128.55415037577922,8.84,157.73261445724086,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4885,'2018-06-21T15:16:03.779Z',NULL,168,7,118.93172693453273,8.18,102.3180344978147,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4886,'2019-07-20T03:59:16.112Z',NULL,63,4,133.5202262591817,9.18,182.83728209817653,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4887,'2020-01-27T06:37:54.572Z',6.953868507935998,16,1,66.11029954877317,4.55,81.95793984298705,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4888,'2016-12-01T02:54:23.684Z',NULL,112,1,27.55292434006023,1.89,26.305179988580328,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4889,'2019-05-15T19:28:34.684Z',NULL,135,3,45.80402317157342,3.15,42.36250736593957,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4890,'2019-03-16T06:58:35.690Z',NULL,9,1,87.46968147789205,6.01,71.65214563203837,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4891,'2016-12-14T22:47:59.495Z',NULL,192,2,46.122790137195516,3.17,60.0651850646403,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4892,'2019-10-20T12:19:32.400Z',NULL,167,5,97.70449564120193,6.72,116.77040228321866,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4893,'2019-09-26T23:44:18.532Z',NULL,7,3,148.22900526552291,10.19,159.93535563680803,667); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4894,'2019-05-17T15:12:53.926Z',8.49126084213671,73,3,71.6287722595695,3.94,68.47802393321086,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4895,'2019-09-22T03:10:50.367Z',NULL,71,5,82.80381898788684,4.55,99.55662962976741,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4896,'2017-10-25T16:54:57.507Z',NULL,37,6,53.40516136013846,2.94,48.90977015780721,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4897,'2019-03-07T10:47:20.978Z',NULL,59,1,89.20214751859149,4.91,90.59848060360657,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4898,'2017-08-15T13:28:19.168Z',NULL,185,7,26.384667225677738,1.45,32.01342637275238,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4899,'2018-08-31T23:59:05.669Z',NULL,34,9,74.30391386913199,4.09,64.20049025458616,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4900,'2017-07-16T02:30:37.838Z',NULL,167,5,65.13633042746795,3.58,61.166524836890375,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4901,'2019-12-09T20:05:13.047Z',NULL,41,2,63.50890855689462,3.49,69.8354841565006,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4902,'2019-10-14T06:54:51.562Z',NULL,151,6,91.61302306843446,5.04,80.29474064765068,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4903,'2017-06-22T17:02:25.471Z',NULL,198,8,46.76407124473339,2.57,49.57169031198665,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4904,'2019-09-18T01:20:23.376Z',NULL,86,7,92.31436670850246,5.08,90.79293872950872,668); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4905,'2018-02-02T12:27:47.841Z',NULL,126,2,125.24398120308456,7.51,127.91079430189636,669); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4906,'2020-01-06T07:32:02.612Z',NULL,67,2,41.24480890795779,2.68,50.52136768798647,670); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4907,'2019-04-14T23:36:15.575Z',NULL,69,4,73.38772304360626,4.77,66.59631724586973,670); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4908,'2018-11-29T17:39:24.052Z',NULL,119,4,43.43814329652384,0,42.62055450928684,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4909,'2019-03-12T01:51:20.695Z',NULL,150,1,128.55415037577922,0,139.15001359534543,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4910,'2019-12-08T00:53:12.001Z',NULL,56,2,36.37128575934436,0,28.41332504854628,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4911,'2018-10-11T11:48:07.812Z',NULL,63,5,133.5202262591817,0,150.16849190244278,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4912,'2019-05-17T10:55:45.011Z',NULL,139,4,76.77768319177018,0,77.55064704869778,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4913,'2018-04-30T04:15:39.807Z',NULL,138,2,113.95078476718615,0,127.29080004720726,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4914,'2019-09-18T04:18:16.711Z',NULL,94,4,109.21864156655383,0,112.62802778119713,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4915,'2018-03-05T18:44:31.670Z',NULL,180,1,68.32408657333919,0,78.86551314349475,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4916,'2017-06-09T08:09:03.471Z',NULL,133,4,45.654646865558064,0,44.54805259079423,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4917,'2018-05-05T00:01:02.222Z',NULL,119,3,43.43814329652384,0,37.92201238284894,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4918,'2018-09-11T10:18:25.676Z',NULL,12,3,116.01427581618326,0,92.03187353106354,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4919,'2019-11-10T15:46:10.374Z',NULL,172,2,122.3651993029456,0,123.95628572431394,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4920,'2017-05-15T08:39:01.007Z',NULL,81,3,29.288656154807867,0,33.31574569782387,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4921,'2017-05-04T13:17:46.570Z',NULL,64,4,95.61478497145774,0,91.04084726226415,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4922,'2019-02-21T02:12:02.753Z',NULL,71,1,82.80381898788684,0,67.99556015382787,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4923,'2019-11-14T03:49:42.268Z',1.063184537370606,91,2,65.09432810381134,0,82.379262524462,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4924,'2017-10-22T18:00:07.710Z',NULL,189,2,62.18492169821006,0,68.3295476196726,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4925,'2019-07-08T11:47:02.341Z',NULL,187,3,98.9770008385166,0,125.72893274251665,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4926,'2020-01-16T09:45:03.230Z',NULL,56,1,36.37128575934436,0,41.380738338454734,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4927,'2017-01-29T08:09:10.857Z',NULL,126,1,83.49598746872304,0,96.01312668636645,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4928,'2018-09-28T21:40:47.324Z',NULL,149,4,69.15415037577924,0,78.84682866938186,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4929,'2019-01-09T23:02:26.479Z',NULL,183,2,56.697412301919755,0,55.70796335999978,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4930,'2018-12-04T09:00:03.472Z',NULL,97,2,112.41825444654248,0,130.0430161662213,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4931,'2016-12-22T03:10:30.185Z',NULL,125,2,53.59799471993963,0,42.29954075656784,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4932,'2018-10-04T06:22:40.850Z',NULL,68,4,115.24343882309758,0,110.69102060432434,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4933,'2017-12-08T21:53:24.369Z',NULL,35,2,47.691251538276234,0,46.14398045177095,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4934,'2018-07-02T09:12:51.881Z',NULL,167,5,97.70449564120193,0,97.53225929102369,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4935,'2019-10-03T05:23:07.077Z',NULL,152,6,48.89568729900663,0,42.85498383845605,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4936,'2020-04-04T03:10:49.463Z',NULL,53,4,44.27587240151534,0,38.34183161162522,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4937,'2019-10-25T01:01:00.153Z',NULL,170,6,105.07665741496471,0,90.39905893965565,671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4938,'2019-10-02T21:29:47.155Z',NULL,183,6,56.697412301919755,3.97,63.61210209986176,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4939,'2019-06-26T17:08:25.132Z',7.8673497302732285,26,6,68.12471180754113,4.77,66.75352829607601,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4940,'2019-05-27T03:40:07.501Z',NULL,187,4,98.9770008385166,6.93,102.78462331166926,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4941,'2017-03-20T22:00:13.280Z',NULL,44,1,50.90170136783837,3.56,50.755140694276626,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4942,'2019-01-18T02:19:11.281Z',NULL,146,2,126.04727121216614,8.82,125.02038211272173,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4943,'2019-04-24T16:18:11.632Z',NULL,52,4,103.67587240151535,7.26,110.41914074026809,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4944,'2017-01-27T21:24:41.136Z',NULL,85,2,36.6006982295235,2.56,30.663616674208505,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4945,'2016-07-24T11:12:57.060Z',NULL,92,4,83.2616179105333,5.83,71.9536621407615,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4946,'2019-04-16T05:17:59.360Z',NULL,25,3,68.62263967182464,4.8,58.90040274614913,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4947,'2018-06-21T08:23:41.320Z',NULL,12,8,116.01427581618326,8.12,137.9319039432597,672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4948,'2018-02-05T17:10:36.352Z',7.8673497302732285,152,2,48.89568729900663,2.93,54.34600772266029,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4949,'2018-11-01T11:58:32.424Z',NULL,167,3,97.70449564120193,5.86,93.27622082593072,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4950,'2017-08-09T20:51:20.597Z',NULL,54,7,41.395738936015974,2.48,48.69157919867784,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4951,'2018-04-21T14:22:43.190Z',NULL,44,3,76.35255205175756,4.58,77.58286566506152,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4952,'2017-03-26T17:13:20.287Z',NULL,69,1,48.925148695737505,2.94,40.0245439221281,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4953,'2016-10-12T13:51:49.679Z',NULL,178,4,78.21975500247076,4.69,102.42447434001849,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4954,'2020-04-14T05:35:06.420Z',NULL,70,3,57.493003808959784,3.45,69.97027587765676,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4955,'2017-07-29T21:21:00.668Z',NULL,50,5,35.76013077879841,2.15,32.95380624029978,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4956,'2018-11-28T16:59:46.689Z',NULL,24,3,112.30643674729413,6.74,98.65583922283784,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4957,'2019-11-17T07:44:17.820Z',NULL,113,3,110.47725376186015,6.63,148.99382766956901,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4958,'2019-10-10T11:42:19.102Z',NULL,128,4,75.08016314504417,4.5,98.76196853175254,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4959,'2019-12-29T07:44:23.399Z',NULL,146,1,126.04727121216614,7.56,151.99957978664082,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4960,'2018-06-25T08:37:45.020Z',NULL,59,6,89.20214751859149,5.35,81.278897445077,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4961,'2017-02-01T23:12:04.006Z',NULL,17,2,53.290720311951766,3.2,45.80584374012859,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4962,'2016-09-13T23:34:36.355Z',NULL,109,5,79.36660712128732,4.76,107.7385340628759,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4963,'2020-01-01T05:02:41.899Z',NULL,95,2,49.81864156655383,2.99,43.23141445051355,673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4964,'2017-12-12T03:11:15.341Z',NULL,45,1,78.6996782532274,4.72,81.63872864090504,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4965,'2019-04-22T14:09:37.196Z',NULL,195,2,109.78077396807234,6.59,148.7079673221249,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4966,'2019-12-19T06:40:47.298Z',NULL,25,1,68.62263967182464,4.12,82.66370315985871,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4967,'2019-05-03T01:51:17.026Z',NULL,198,2,70.14610686710009,4.21,61.0865900790036,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4968,'2018-07-22T16:36:15.778Z',NULL,121,4,40.44528328808107,2.43,40.499921682626834,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4969,'2018-12-07T10:51:49.300Z',NULL,134,2,42.49233549998661,2.55,35.500714391086476,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4970,'2019-06-03T00:00:27.897Z',NULL,69,5,73.38772304360626,4.4,62.020471719761574,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4971,'2018-03-14T02:05:35.791Z',NULL,166,1,38.30449564120193,2.3,50.390266842381834,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4972,'2019-10-30T23:39:21.647Z',NULL,106,4,52.723521442619514,3.16,64.04071265696086,674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4973,'2017-12-17T17:51:59.998Z',NULL,158,2,93.26282349158673,5.83,75.6132427756867,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4974,'2017-03-01T08:57:55.559Z',NULL,13,1,75.0861692740371,4.69,63.83746351093065,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4975,'2019-07-20T22:10:08.845Z',NULL,177,6,128.8192981944599,8.05,158.83823862355175,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4976,'2019-02-24T10:42:37.046Z',NULL,116,2,114.42485125407785,7.15,108.05725522375646,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4977,'2018-01-13T12:18:57.636Z',3.4316174291912103,107,1,50.094887884945365,3.13,44.52802858471554,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4978,'2019-11-13T04:27:14.064Z',3.4316174291912103,186,2,98.9770008385166,6.19,123.33558331579052,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4979,'2018-10-31T13:33:20.275Z',NULL,62,4,133.5202262591817,8.35,133.74587456760722,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4980,'2019-01-01T03:01:20.779Z',NULL,181,2,143.88940370476112,8.99,192.79473232308948,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4981,'2018-11-23T01:31:59.371Z',NULL,144,4,61.1983004605443,3.82,60.3790585122003,676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4982,'2019-09-09T16:00:36.382Z',3.4316174291912103,175,6,117.3248094335266,4.69,110.69297811607785,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4983,'2019-05-12T04:51:20.342Z',NULL,132,5,127.88197029833711,5.12,170.0454469379971,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4984,'2018-12-27T00:13:21.422Z',NULL,58,2,78.14578007078882,3.13,75.08305287843267,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4985,'2019-05-11T11:41:36.451Z',NULL,76,4,63.82421061366486,2.55,51.04409304467834,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4986,'2019-09-30T22:01:57.509Z',NULL,132,5,127.88197029833711,5.12,117.82603737316784,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4987,'2018-10-05T13:24:28.366Z',NULL,165,6,38.30449564120193,1.53,47.271980529157645,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4988,'2018-12-06T03:52:48.521Z',NULL,162,2,33.56789820016516,1.34,32.16871614065277,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4989,'2017-12-07T19:28:08.165Z',NULL,127,2,89.65344209669612,3.59,97.49502697936806,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4990,'2017-09-11T17:39:40.786Z',6.785542888448831,64,5,95.61478497145774,3.82,107.20909527599575,677); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4991,'2016-06-20T04:41:17.900Z',NULL,74,53,34.08536151591033,0,25.993077038947224,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4992,'2018-01-17T07:05:29.340Z',NULL,78,2,41.616917284159726,0,35.05190955068556,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4993,'2018-10-21T17:17:06.235Z',NULL,139,5,76.77768319177018,0,82.2182114773178,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4994,'2018-01-28T20:58:32.556Z',NULL,194,2,50.38077396807232,0,63.64665918452683,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4995,'2020-02-02T15:49:16.996Z',NULL,49,1,131.42865839323724,0,124.93874132185435,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4996,'2018-05-25T16:34:10.270Z',NULL,98,2,112.41825444654248,0,138.35641865006303,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4997,'2016-07-23T17:01:23.975Z',NULL,27,3,85.01647453836077,0,88.20821564137627,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4998,'2019-12-29T14:38:55.070Z',NULL,187,1,98.9770008385166,0,87.93198397343093,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (4999,'2016-05-18T16:02:59.284Z',NULL,51,2,50.433725012700116,0,63.546171761560245,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5000,'2019-08-30T17:26:07.144Z',NULL,26,6,68.12471180754113,0,56.50467195926748,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5001,'2018-07-29T12:37:03.129Z',6.785542888448831,10,4,47.6793282102869,0,49.365917850087456,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5002,'2018-04-02T20:46:47.625Z',NULL,56,3,36.37128575934436,0,36.488854135055426,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5003,'2017-01-03T18:33:28.915Z',NULL,54,2,41.395738936015974,0,49.56034262421178,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5004,'2017-03-01T06:58:13.185Z',2.2855428884488314,196,1,46.76407124473339,0,39.93492295251953,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5005,'2018-07-29T08:52:45.057Z',6.785542888448831,99,3,67.83486485383094,0,59.713419949535535,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5006,'2019-05-10T23:13:13.459Z',NULL,181,4,143.88940370476112,0,183.28241491747497,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5007,'2016-05-04T18:29:59.382Z',NULL,129,4,98.7781981443958,0,100.84922936991224,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5008,'2018-09-07T23:28:16.106Z',NULL,134,3,42.49233549998661,0,46.139068492775074,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5009,'2016-05-27T22:59:26.038Z',NULL,180,2,45.549391048892794,0,41.187744990875004,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5010,'2017-09-16T08:31:47.387Z',NULL,123,4,73.95430432556165,0,72.61319670063203,678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5011,'2018-05-18T06:39:13.242Z',NULL,80,5,54.91325681036414,3.29,55.373807888774884,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5012,'2017-09-02T20:19:35.612Z',6.729083315527732,146,4,84.03151414144409,5.04,93.80811324639461,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5013,'2017-04-09T06:32:23.918Z',NULL,96,2,69.88096572393577,4.19,84.61420766747183,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5014,'2018-07-19T00:04:53.038Z',NULL,21,4,60.57501609456816,3.63,57.562664966001265,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5015,'2019-04-05T19:39:02.456Z',6.729083315527732,3,3,53.08311732230858,3.18,48.86655832815576,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5016,'2016-10-01T15:44:30.837Z',NULL,24,6,74.87095783152942,4.49,97.75275992509998,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5017,'2016-08-19T17:57:49.742Z',NULL,137,8,45.18165304538124,2.71,60.284676917914354,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5018,'2019-10-01T00:59:18.464Z',NULL,103,6,47.04215255778118,2.82,61.88540325627697,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5019,'2016-11-02T17:59:19.476Z',NULL,157,3,93.26282349158673,5.6,104.71804077890155,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5020,'2017-04-03T22:15:10.147Z',NULL,34,3,49.535942579421324,2.97,56.491380726081054,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5021,'2017-03-31T16:05:44.691Z',NULL,120,8,55.668009001928525,3.34,68.02617420886348,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5022,'2019-08-09T21:18:14.866Z',NULL,109,6,119.04991068193098,7.14,104.99179675442471,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5023,'2019-06-02T08:51:35.995Z',NULL,85,5,54.90104734428525,3.29,48.22331474083779,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5024,'2017-04-23T23:15:59.331Z',NULL,97,3,74.94550296436165,4.5,92.73056810173541,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5025,'2017-04-15T17:08:39.895Z',NULL,104,3,70.96143503852079,4.26,74.38276278511346,679); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5026,'2018-07-24T07:01:59.644Z',NULL,38,4,66.06937283839378,0,58.58959818515486,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5027,'2018-01-19T18:26:46.378Z',NULL,26,1,68.12471180754113,0,52.12663646302559,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5028,'2017-08-28T10:38:08.751Z',NULL,34,4,49.535942579421324,0,53.29933787128765,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5029,'2020-04-02T13:49:43.755Z',NULL,164,2,92.96789820016517,0,94.8381175664065,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5030,'2019-02-15T06:04:15.765Z',NULL,192,1,69.18418520579327,0,84.3022062385555,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5031,'2019-04-20T22:58:32.540Z',NULL,9,3,87.46968147789205,0,73.62808445541336,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5032,'2020-01-18T03:21:43.790Z',NULL,104,3,106.44215255778118,0,98.42882796591239,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5033,'2019-04-24T16:42:52.371Z',NULL,195,4,109.78077396807234,0,133.82579790013742,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5034,'2019-06-26T18:54:20.156Z',NULL,122,6,99.84528328808108,0,116.48015311269215,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5035,'2019-06-23T06:59:07.202Z',NULL,199,5,115.4300138092855,0,134.62123162435552,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5036,'2019-12-18T14:32:47.523Z',NULL,111,1,55.526746186906664,0,61.724607697175216,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5037,'2019-05-19T04:45:26.576Z',NULL,86,3,92.31436670850246,0,97.27093470002154,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5038,'2019-04-08T16:04:32.540Z',NULL,25,3,68.62263967182464,0,56.6047068926764,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5039,'2019-12-01T01:46:12.235Z',NULL,68,2,115.24343882309758,0,117.59652704029764,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5040,'2019-03-27T13:52:49.556Z',NULL,111,1,55.526746186906664,0,50.854591605914145,681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5041,'2019-09-05T10:46:27.208Z',NULL,111,5,55.526746186906664,3.47,45.40522329417367,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5042,'2019-08-05T12:58:21.935Z',NULL,173,7,122.3651993029456,7.65,110.46814006763549,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5043,'2018-05-09T17:23:17.992Z',NULL,30,4,64.17448218067184,4.01,60.77626186938007,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5044,'2017-10-15T13:29:09.256Z',NULL,198,7,46.76407124473339,2.92,43.89646285296766,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5045,'2019-12-18T05:29:11.767Z',NULL,31,2,105.65346467128523,6.6,89.47983297841594,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5046,'2020-04-07T04:34:50.947Z',NULL,87,3,117.25536340498041,7.33,134.89778891905172,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5047,'2019-08-10T18:10:37.896Z',NULL,34,9,74.30391386913199,4.64,60.210153183843815,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5048,'2018-01-14T04:25:01.269Z',NULL,83,2,81.87627832636537,5.12,78.04191463660011,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5049,'2019-11-04T23:05:52.967Z',NULL,13,2,112.62925391105566,7.04,116.2422867890599,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5050,'2019-08-08T10:04:34.236Z',NULL,146,5,126.04727121216614,7.88,135.82037258686202,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5051,'2019-06-09T08:17:24.456Z',NULL,28,6,68.12471180754113,4.26,77.04702463856151,682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5052,'2019-12-04T04:59:55.718Z',NULL,162,2,33.56789820016516,2.35,27.354376574127617,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5053,'2018-01-31T11:49:37.404Z',NULL,53,2,44.27587240151534,3.1,53.07670488858277,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5054,'2020-04-13T01:58:35.927Z',NULL,136,32,105.20402317157343,7.36,135.31825800225997,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5055,'2019-12-24T07:08:32.336Z',NULL,180,2,68.32408657333919,4.78,73.26872961357789,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5056,'2017-08-13T05:40:49.865Z',NULL,168,4,79.28781795635516,5.55,79.99393331924333,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5057,'2019-06-24T12:13:45.652Z',NULL,22,3,32.136779940663494,2.25,28.25082351393526,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5058,'2018-09-12T16:09:41.261Z',NULL,38,4,66.06937283839378,4.62,79.27414443812133,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5059,'2018-01-28T16:34:23.960Z',6.4894810414119934,167,2,97.70449564120193,6.84,87.29370450889843,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5060,'2020-02-22T15:46:28.383Z',NULL,53,2,44.27587240151534,3.1,48.12829865746459,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5061,'2019-05-01T06:17:17.578Z',NULL,3,5,53.08311732230858,3.72,64.19879698078307,683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5062,'2018-12-23T11:25:21.846Z',1.9894810414119932,147,2,66.64727121216615,4.58,83.11393122797908,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5063,'2019-11-14T05:37:02.639Z',NULL,49,2,131.42865839323724,9.04,156.88894054791575,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5064,'2018-12-10T18:27:02.039Z',NULL,50,2,53.64019616819762,3.69,50.193501635303086,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5065,'2019-03-22T06:23:04.578Z',NULL,190,1,128.5841852057933,8.84,158.56983695267377,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5066,'2020-02-25T21:30:56.089Z',NULL,132,1,127.88197029833711,8.79,149.96813546944352,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5067,'2017-10-28T23:03:16.804Z',NULL,192,5,46.122790137195516,3.17,41.47197370439079,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5068,'2018-12-22T03:12:39.684Z',NULL,113,2,110.47725376186015,7.6,132.7527596618997,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5069,'2017-11-22T11:42:23.331Z',NULL,80,2,36.60883787357609,2.52,44.59292391484204,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5070,'2020-01-15T04:03:50.038Z',NULL,38,1,66.06937283839378,4.54,78.80221379520846,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5071,'2019-10-22T03:09:00.126Z',NULL,5,4,124.1176465275534,8.53,127.47313789341283,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5072,'2019-06-14T09:29:42.047Z',NULL,84,6,81.87627832636537,5.63,102.93161159567593,684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5073,'2017-11-16T23:45:59.230Z',NULL,35,4,47.691251538276234,0,56.19778799287634,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5074,'2018-02-20T10:29:16.608Z',NULL,182,2,84.48940370476112,0,102.00166987159479,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5075,'2018-10-24T17:39:25.710Z',NULL,108,5,50.094887884945365,0,47.75161404250148,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5076,'2019-03-29T19:45:53.014Z',NULL,10,1,47.6793282102869,0,56.688834120828915,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5077,'2017-05-14T22:47:39.843Z',NULL,184,4,77.3982748679465,0,79.41881246905652,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5078,'2019-02-10T20:21:22.984Z',NULL,29,2,123.57448218067185,0,93.85039836521058,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5079,'2018-06-06T05:50:56.943Z',NULL,86,6,92.31436670850246,0,82.23742327731009,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5080,'2018-06-27T12:27:09.489Z',NULL,57,4,122.4223933583994,0,122.243340434353,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5081,'2017-02-20T20:48:13.238Z',NULL,156,2,20.41053609936413,0,20.433306215488987,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5082,'2020-01-25T14:41:33.813Z',NULL,149,2,69.15415037577924,0,89.60736201378585,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5083,'2018-08-07T15:42:37.580Z',7.515495135994206,100,7,67.83486485383094,0,55.42738390049805,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5084,'2018-02-19T19:19:48.345Z',NULL,16,1,66.11029954877317,0,76.15247638797109,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5085,'2018-04-16T01:50:29.234Z',NULL,149,2,69.15415037577924,0,82.74959479471424,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5086,'2019-05-22T19:50:56.134Z',NULL,174,3,111.61430894181083,0,115.30214935719808,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5087,'2019-05-15T23:07:25.534Z',NULL,175,4,117.3248094335266,0,97.41755386151135,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5088,'2019-08-27T13:14:29.534Z',NULL,123,7,110.93145648834248,0,101.1663671541686,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5089,'2018-05-30T01:16:29.158Z',NULL,56,4,36.37128575934436,0,45.773961983054924,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5090,'2017-10-19T15:13:42.780Z',NULL,45,7,78.6996782532274,0,87.54551322831168,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5091,'2019-06-24T14:21:15.615Z',NULL,11,63,132.45679913492563,0,147.96956312460833,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5092,'2018-03-28T14:37:17.103Z',NULL,23,1,116.86672609493307,0,137.84001929962935,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5093,'2018-08-17T19:37:28.360Z',NULL,101,7,139.82488066180403,0,156.3258906925067,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5094,'2017-11-26T14:13:05.266Z',NULL,123,2,73.95430432556165,0,83.65455135439375,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5095,'2018-07-28T13:36:13.540Z',NULL,13,5,112.62925391105566,0,135.43062045571637,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5096,'2019-12-17T00:23:03.162Z',NULL,40,3,99.66240044231697,0,85.65125175889916,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5097,'2020-04-03T18:01:29.050Z',8.044360364574281,178,4,117.32963250370614,0,94.35965217921483,686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5098,'2020-02-23T05:24:03.342Z',NULL,9,2,87.46968147789205,0,77.97574663383931,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5099,'2018-09-27T02:37:08.677Z',NULL,59,4,89.20214751859149,0,76.47985090557827,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5100,'2017-04-22T04:10:11.697Z',NULL,74,3,34.08536151591033,0,26.747243533321267,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5101,'2020-02-16T17:47:59.759Z',NULL,37,2,80.10774204020768,0,62.01011274005568,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5102,'2019-10-10T08:16:39.230Z',NULL,113,6,110.47725376186015,0,106.33598784430549,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5103,'2019-12-21T15:03:47.822Z',NULL,93,1,49.81864156655383,0,55.260750126418536,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5104,'2019-05-14T12:57:26.591Z',NULL,170,4,105.07665741496471,0,129.43767711824168,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5105,'2018-06-08T10:59:46.691Z',NULL,81,6,43.9329842322118,0,50.63640525594933,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5106,'2019-08-28T23:52:33.386Z',NULL,13,5,112.62925391105566,0,104.7825790864693,687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5107,'2018-05-19T00:47:23.349Z',NULL,2,4,105.11984419607644,4.44,141.26521646072123,688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5108,'2019-01-29T06:55:37.597Z',NULL,17,2,79.93608046792765,3.38,74.5981367049856,688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5109,'2018-05-21T18:08:36.920Z',NULL,195,4,109.78077396807234,6.86,94.70750797621885,690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5110,'2018-02-16T23:16:14.541Z',NULL,51,2,75.65058751905018,4.73,65.80908546599287,690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5111,'2018-05-04T09:40:06.058Z',NULL,46,4,118.0495173798411,7.38,151.19815247019739,690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5112,'2019-07-30T10:35:13.783Z',NULL,26,5,68.12471180754113,4.26,75.00812408228101,690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5113,'2018-05-10T21:43:00.910Z',NULL,68,5,115.24343882309758,7.2,124.12244800289221,690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5114,'2020-02-29T07:03:46.019Z',NULL,131,2,113.11722203337729,7.07,145.9468322668971,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5115,'2017-07-08T12:46:17.188Z',NULL,42,5,25.336071424606207,1.58,32.55075360765669,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5116,'2019-07-03T06:35:08.487Z',NULL,115,5,77.91196471862148,4.87,104.9256374554367,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5117,'2018-11-25T03:48:34.193Z',7.56222172253563,169,4,59.53172693453274,3.72,65.92024051852296,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5118,'2020-01-14T09:15:20.143Z',NULL,171,2,105.07665741496471,6.57,110.42197451879981,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5119,'2019-10-05T10:33:31.543Z',NULL,79,5,41.616917284159726,2.6,41.376803042438766,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5120,'2017-05-09T23:01:43.969Z',NULL,161,3,31.727470408648482,1.98,28.148000797899723,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5121,'2019-01-20T14:16:41.148Z',NULL,170,1,105.07665741496471,6.57,145.08717507211526,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5122,'2016-10-20T22:15:18.003Z',3.062221722535629,118,4,38.418408731319154,2.4,48.69209557749143,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5123,'2018-08-10T20:07:40.817Z',NULL,183,7,56.697412301919755,3.54,63.688651078520124,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5124,'2019-05-29T23:34:11.413Z',NULL,190,5,128.5841852057933,8.04,133.73262605722348,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5125,'2020-03-29T19:23:36.491Z',NULL,87,1,117.25536340498041,7.33,113.66212655344077,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5126,'2019-11-08T22:41:24.212Z',NULL,98,3,112.41825444654248,7.03,113.10987426825321,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5127,'2019-08-08T14:08:49.427Z',7.700072604805796,59,7,89.20214751859149,5.58,106.63415844611376,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5128,'2019-07-30T02:38:19.805Z',NULL,145,3,61.1983004605443,3.82,57.094465425352986,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5129,'2018-07-07T23:08:49.245Z',NULL,100,5,67.83486485383094,4.24,66.1080542821915,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5130,'2018-12-28T19:20:45.944Z',NULL,169,2,59.53172693453274,3.72,66.0255227498892,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5131,'2019-04-28T17:25:47.264Z',NULL,120,4,83.5020135028928,5.22,70.2411184880048,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5132,'2018-04-25T04:05:55.447Z',NULL,171,4,105.07665741496471,6.57,135.88980007578473,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5133,'2019-01-01T03:45:49.944Z',NULL,15,2,37.648145389078365,2.35,33.295682484111204,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5134,'2019-01-05T18:18:32.713Z',NULL,169,1,59.53172693453274,3.72,72.74908246045874,691); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5135,'2018-02-14T06:46:56.028Z',NULL,155,1,43.77574310182776,2.19,59.39026548723276,692); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5136,'2017-04-02T05:55:22.270Z',NULL,196,3,46.76407124473339,2.69,63.68544278836662,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5137,'2018-10-04T00:08:37.313Z',NULL,34,7,74.30391386913199,4.27,62.07387235479035,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5138,'2018-01-21T14:17:25.621Z',NULL,89,2,63.719612755399886,3.66,66.5062702584499,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5139,'2019-11-09T04:40:17.131Z',NULL,109,3,119.04991068193098,6.85,139.78029326758102,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5140,'2018-04-23T07:01:42.947Z',NULL,71,4,82.80381898788684,4.76,82.31729990002762,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5141,'2017-11-26T15:26:19.646Z',NULL,68,4,76.82895921539838,4.42,94.38773619998231,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5142,'2017-03-20T08:40:31.182Z',NULL,112,1,27.55292434006023,1.58,23.452480093686905,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5143,'2018-04-14T10:22:31.588Z',NULL,165,2,38.30449564120193,2.2,32.25686265472253,693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5144,'2018-11-01T05:10:16.935Z',NULL,160,2,47.59120561297272,2.86,48.61877633534372,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5145,'2019-11-24T15:05:44.310Z',NULL,115,3,77.91196471862148,4.67,82.27752659741216,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5146,'2019-07-09T11:21:09.195Z',NULL,139,6,76.77768319177018,4.61,64.11882183359492,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5147,'2017-11-22T06:03:21.005Z',NULL,81,4,29.288656154807867,1.76,26.022865332029816,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5148,'2019-03-19T11:18:09.607Z',NULL,70,1,57.493003808959784,3.45,75.79730532418452,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5149,'2017-12-24T08:56:23.171Z',NULL,151,2,61.07534871228964,3.66,80.98332355100098,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5150,'2019-09-09T06:34:55.303Z',NULL,160,5,47.59120561297272,2.86,46.38779984950378,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5151,'2020-03-25T02:20:35.462Z',3.8925567039135482,132,1,127.88197029833711,7.67,149.11257787182703,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5152,'2019-11-29T03:44:13.200Z',NULL,97,4,112.41825444654248,6.75,90.05447263007765,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5153,'2019-07-14T16:49:25.760Z',NULL,169,7,59.53172693453274,3.57,71.4689516139305,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5154,'2018-03-09T22:58:48.993Z',NULL,158,1,139.8942352373801,8.39,178.81140130943155,694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5155,'2019-11-29T06:03:16.834Z',NULL,129,4,148.1672972165937,8.89,146.9131348157992,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5156,'2020-04-15T09:45:31.179Z',NULL,45,3,118.0495173798411,7.08,136.14941072609906,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5157,'2020-03-03T23:02:44.582Z',NULL,116,1,114.42485125407785,6.87,133.83983543338087,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5158,'2018-03-23T02:47:01.579Z',NULL,84,1,81.87627832636537,4.91,67.77432015957952,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5159,'2017-09-01T22:05:36.560Z',NULL,180,7,45.549391048892794,2.73,49.72921346554479,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5160,'2018-05-14T13:21:24.251Z',NULL,86,4,92.31436670850246,5.54,123.24285610260245,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5161,'2019-03-22T10:52:39.044Z',NULL,118,1,57.627613096978735,3.46,65.14937990595212,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5162,'2017-12-03T21:11:34.685Z',NULL,167,3,65.13633042746795,3.91,72.5459751357715,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5163,'2018-12-22T19:20:59.587Z',NULL,107,2,50.094887884945365,3.01,57.28583398177886,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5164,'2019-10-24T05:26:22.618Z',NULL,39,6,114.58158180283459,6.87,130.5793316705705,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5165,'2019-03-15T10:14:21.859Z',NULL,3,1,53.08311732230858,3.18,69.1015797674976,697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5166,'2018-03-10T19:02:21.643Z',NULL,173,1,122.3651993029456,7.65,99.35983255877389,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5167,'2017-07-28T09:07:22.973Z',NULL,129,4,98.7781981443958,6.17,125.66444117085656,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5168,'2017-12-31T08:05:15.809Z',1.2114256839187563,79,1,27.74461152277315,1.73,30.395215041087397,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5169,'2020-04-08T02:25:15.648Z',NULL,172,2,122.3651993029456,7.65,130.25159261103872,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5170,'2020-01-22T17:26:13.740Z',NULL,129,1,148.1672972165937,9.26,188.6582251841957,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5171,'2016-10-01T16:41:22.107Z',NULL,66,4,90.77417514071306,5.67,114.92012690345398,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5172,'2017-06-11T19:42:09.104Z',NULL,120,5,55.668009001928525,3.48,53.18230181204639,699); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5173,'2017-04-08T07:20:57.068Z',NULL,42,2,25.336071424606207,1.27,20.10630643829274,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5174,'2019-02-15T17:03:15.910Z',NULL,140,1,66.80312547576881,3.34,67.2278156588463,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5175,'2020-01-31T06:59:51.965Z',NULL,167,1,97.70449564120193,4.89,99.69291227503871,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5176,'2019-11-09T10:43:38.175Z',NULL,29,2,123.57448218067185,6.18,159.4208112223312,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5177,'2018-01-03T20:25:18.349Z',5.7114256839187565,61,2,23.537915510955656,1.18,24.851033489360674,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5178,'2018-04-01T22:41:25.827Z',NULL,16,2,66.11029954877317,3.31,87.69410261151559,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5179,'2019-11-16T16:19:02.933Z',NULL,24,1,112.30643674729413,5.62,149.60466747210828,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5180,'2019-03-24T12:45:34.306Z',NULL,33,1,47.7448636959614,2.39,44.695541518927016,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5181,'2019-09-10T03:52:13.923Z',NULL,31,4,105.65346467128523,5.28,133.25942530404998,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5182,'2019-12-29T13:48:59.861Z',NULL,115,1,77.91196471862148,3.9,92.27860871903779,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5183,'2019-07-20T04:22:35.075Z',NULL,6,4,97.43621265344382,4.87,120.07515424189208,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5184,'2019-06-12T13:02:28.055Z',NULL,144,3,61.1983004605443,3.06,51.01331880515208,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5185,'2020-02-09T10:28:23.906Z',2.209185778949558,197,1,70.14610686710009,3.51,61.72995163695402,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5186,'2018-07-01T02:41:25.953Z',NULL,161,3,47.59120561297272,2.38,55.51219533572752,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5187,'2017-03-25T09:57:58.891Z',NULL,192,1,46.122790137195516,2.31,57.55239976764327,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5188,'2020-01-01T08:06:34.956Z',NULL,114,2,77.91196471862148,3.9,99.06801967069669,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5189,'2018-06-20T13:05:03.035Z',NULL,107,4,50.094887884945365,2.5,42.95475333233323,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5190,'2019-05-12T11:23:46.189Z',NULL,188,4,33.87738254731509,1.69,38.77346970628449,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5191,'2017-10-13T05:36:07.228Z',NULL,44,5,50.90170136783837,2.55,56.21155076448159,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5192,'2018-06-21T21:54:51.910Z',NULL,7,5,148.22900526552291,7.41,171.6353436989285,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5193,'2018-08-25T23:19:29.217Z',NULL,157,6,139.8942352373801,6.99,158.89747392467228,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5194,'2018-01-14T22:55:36.481Z',NULL,171,1,105.07665741496471,5.25,95.62503433169621,700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5195,'2017-04-11T18:06:57.097Z',NULL,166,2,25.536330427467956,0,32.161269293715236,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5196,'2019-03-13T12:24:13.143Z',NULL,32,1,107.1448636959614,0,122.83530042965799,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5197,'2019-05-22T17:15:47.399Z',NULL,149,4,69.15415037577924,0,67.94595526400344,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5198,'2018-10-27T15:15:37.532Z',NULL,115,6,77.91196471862148,0,99.31831151690956,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5199,'2017-09-10T16:52:42.844Z',NULL,55,4,63.84752383956291,0,52.68902478917452,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5200,'2018-03-29T08:24:53.164Z',2.209185778949558,59,1,89.20214751859149,0,100.91052723185186,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5201,'2019-07-25T00:48:11.542Z',NULL,130,3,75.02573869315137,0,87.07178385256529,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5202,'2018-12-19T11:24:59.940Z',NULL,131,2,113.11722203337729,0,101.29853368538006,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5203,'2017-10-01T10:03:08.181Z',NULL,117,6,36.683234169385244,0,39.208531876356204,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5204,'2019-07-12T07:24:39.048Z',NULL,113,4,110.47725376186015,0,129.51470542436738,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5205,'2018-01-29T09:23:36.421Z',NULL,25,2,68.62263967182464,0,68.82330410746599,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5206,'2017-10-13T12:43:44.264Z',NULL,110,6,37.01783079127111,0,42.37098336796505,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5207,'2019-05-31T02:51:46.237Z',NULL,57,5,122.4223933583994,0,100.68666532511277,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5208,'2019-05-20T03:03:44.204Z',NULL,6,4,97.43621265344382,0,125.54647218043189,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5209,'2018-11-14T05:26:07.993Z',NULL,145,3,61.1983004605443,0,63.86679386299883,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5210,'2017-03-20T15:32:52.104Z',NULL,105,1,35.149014295079674,0,40.90135720842887,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5211,'2019-08-18T17:49:36.009Z',NULL,38,4,66.06937283839378,0,64.0870422738031,702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5212,'2018-11-15T23:33:33.856Z',NULL,107,3,50.094887884945365,3.13,59.6017850488368,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5213,'2019-02-28T08:53:05.047Z',NULL,128,2,75.08016314504417,4.69,68.15512267970286,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5214,'2018-06-12T07:30:42.605Z',NULL,46,5,118.0495173798411,7.38,131.6678845389056,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5215,'2019-03-30T09:02:33.447Z',NULL,58,1,78.14578007078882,4.88,87.0765947762389,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5216,'2016-10-10T22:09:04.853Z',NULL,43,6,50.90170136783837,3.18,57.915105925151785,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5217,'2019-03-28T07:07:02.116Z',NULL,8,1,98.83823503993958,6.18,89.31962135293537,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5218,'2020-02-29T09:47:38.797Z',NULL,14,1,37.648145389078365,2.35,47.876062819723586,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5219,'2019-04-17T00:33:58.493Z',NULL,11,2,132.45679913492563,8.28,181.4463010559905,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5220,'2017-11-13T17:09:57.473Z',NULL,84,2,54.58418555091025,3.41,72.02806664997438,704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5221,'2017-07-15T15:55:11.486Z',NULL,75,3,83.87517582301558,5.03,107.65840681299714,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5222,'2019-09-11T22:29:59.919Z',NULL,140,2,66.80312547576881,4.01,74.23288082459133,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5223,'2019-07-11T23:11:24.435Z',NULL,180,3,68.32408657333919,4.1,55.092860276989406,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5224,'2018-08-04T04:18:12.844Z',NULL,185,4,39.57700083851661,2.37,52.87708217116267,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5225,'2017-07-19T12:51:51.217Z',0.17088996672584322,23,3,77.91115072995538,4.67,82.67244813504601,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5226,'2017-07-04T02:50:11.359Z',NULL,30,4,42.7829881204479,2.57,40.16611556035571,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5227,'2019-01-23T23:21:43.072Z',NULL,32,1,107.1448636959614,6.43,123.80132342912533,705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5228,'2018-12-26T07:05:46.243Z',NULL,77,1,101.01691728415972,0,92.04354547618397,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5229,'2019-01-16T17:15:05.237Z',NULL,66,1,136.16126271106958,0,166.62362809681622,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5230,'2018-01-21T20:35:35.690Z',NULL,197,1,70.14610686710009,0,61.715189685173684,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5231,'2019-12-07T09:02:16.614Z',NULL,131,1,113.11722203337729,0,123.83164210681349,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5232,'2019-09-17T11:47:38.583Z',NULL,21,2,60.57501609456816,0,62.410283825765404,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5233,'2019-03-19T16:08:38.608Z',NULL,183,1,56.697412301919755,0,71.55044290249818,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5234,'2019-12-01T12:02:54.060Z',NULL,40,1,99.66240044231697,0,85.5088926047302,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5235,'2016-10-28T19:18:17.747Z',4.670889966725843,13,3,75.0861692740371,0,96.68962807426794,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5236,'2017-09-04T18:28:25.272Z',NULL,188,3,22.584921698210056,0,20.8962175583732,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5237,'2020-04-17T09:53:34.670Z',NULL,91,2,65.09432810381134,0,53.318847646949436,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5238,'2019-01-31T18:59:19.900Z',NULL,53,2,44.27587240151534,0,44.301786156099126,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5239,'2019-07-05T03:53:22.810Z',4.670889966725843,81,4,43.9329842322118,0,49.952065800231814,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5240,'2018-02-02T21:58:07.844Z',NULL,4,1,110.98767151282252,0,111.26980295334947,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5241,'2017-12-12T04:43:27.093Z',NULL,191,1,85.72279013719552,0,91.87734230749335,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5242,'2018-07-17T17:26:57.020Z',NULL,89,4,63.719612755399886,0,80.78222104311925,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5243,'2020-03-05T03:55:29.591Z',NULL,179,1,68.32408657333919,0,61.481303489592655,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5244,'2019-06-01T07:45:19.352Z',NULL,89,8,63.719612755399886,0,68.77823105851967,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5245,'2017-11-22T21:08:19.394Z',NULL,136,4,70.13601544771562,0,76.02768804237444,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5246,'2020-03-20T01:44:40.112Z',NULL,148,1,138.9817182254566,0,113.3535227148347,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5247,'2019-01-28T08:08:03.909Z',NULL,178,2,117.32963250370614,0,90.36241183954469,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5248,'2016-10-09T20:07:25.688Z',NULL,13,6,75.0861692740371,0,90.96431450734532,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5249,'2019-01-29T17:29:08.027Z',NULL,39,2,114.58158180283459,0,103.02035489005972,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5250,'2019-05-16T18:31:15.079Z',NULL,115,4,77.91196471862148,0,59.54080675730574,706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5251,'2017-01-11T00:07:34.009Z',NULL,173,2,81.57679953529707,4.57,83.13130468119812,708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5252,'2017-10-06T22:16:37.580Z',NULL,196,6,46.76407124473339,2.62,46.0339134285392,708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5253,'2017-05-14T04:05:55.661Z',NULL,63,3,89.0134841727878,4.98,79.71676089007903,708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5254,'2018-12-12T00:55:46.211Z',NULL,128,1,75.08016314504417,0,73.15372348357634,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5255,'2020-01-16T11:47:15.854Z',NULL,32,2,107.1448636959614,0,104.21556578677867,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5256,'2020-01-13T00:41:18.005Z',NULL,49,2,131.42865839323724,0,111.45761765349667,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5257,'2019-10-08T19:17:58.386Z',NULL,98,4,112.41825444654248,0,130.5124414482242,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5258,'2019-08-18T01:15:38.607Z',NULL,181,5,143.88940370476112,0,134.96451265456744,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5259,'2018-09-30T23:17:32.112Z',NULL,50,5,53.64019616819762,0,68.23837968415496,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5260,'2018-01-17T13:33:12.664Z',NULL,131,2,113.11722203337729,0,144.670170426285,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5261,'2018-06-19T00:15:13.087Z',NULL,200,8,73.20395711799151,0,84.03068832975065,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5262,'2018-06-17T07:10:35.216Z',3.4451574741186644,153,8,66.79892314178237,0,74.66416725515329,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5263,'2017-07-18T16:21:57.785Z',NULL,73,5,47.752514839713,0,59.57793003220315,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5264,'2019-01-08T16:43:52.426Z',NULL,37,1,80.10774204020768,0,102.74847898865242,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5265,'2018-11-26T19:13:48.444Z',NULL,51,2,75.65058751905018,0,71.19266756657115,709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5266,'2019-12-20T05:56:11.670Z',NULL,151,1,91.61302306843446,6.41,95.42807957217946,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5267,'2020-02-27T19:56:18.791Z',NULL,139,1,76.77768319177018,5.37,67.86573076395919,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5268,'2019-08-26T23:58:07.093Z',NULL,4,7,110.98767151282252,7.77,136.44149396714053,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5269,'2018-02-24T19:48:42.246Z',NULL,153,2,66.79892314178237,4.68,64.20034655408938,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5270,'2018-08-21T20:47:01.892Z',NULL,145,5,61.1983004605443,4.28,51.639605481269776,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5271,'2019-01-12T00:59:13.705Z',NULL,20,2,37.32649625046575,2.61,51.85354831680767,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5272,'2017-10-29T08:58:08.725Z',NULL,130,6,50.01715912876758,3.5,58.49101962399766,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5273,'2020-04-10T23:45:23.612Z',NULL,59,2,89.20214751859149,6.24,110.89361017934051,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5274,'2018-05-29T16:00:54.672Z',NULL,160,3,47.59120561297272,3.33,46.89968933182879,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5275,'2018-11-16T11:30:37.908Z',NULL,30,2,64.17448218067184,4.49,60.348180414230924,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5276,'2020-01-20T13:31:03.703Z',NULL,92,2,124.89242686579996,8.74,128.91053058832046,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5277,'2017-07-22T08:23:52.680Z',NULL,163,5,22.378598800110105,1.57,18.72903908153247,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5278,'2019-10-15T11:55:51.013Z',NULL,51,4,75.65058751905018,5.3,61.85314078646238,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5279,'2017-06-12T19:34:18.144Z',NULL,34,5,49.535942579421324,3.47,41.93617821530177,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5280,'2020-03-11T03:24:42.868Z',NULL,154,1,81.87529553312261,5.73,95.86449654330866,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5281,'2019-07-24T11:53:39.828Z',4.309739623861452,11,5,132.45679913492563,9.27,184.43265728442015,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5282,'2018-07-09T01:14:27.966Z',NULL,159,5,35.53017445377361,2.49,31.88716701200462,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5283,'2020-03-15T19:28:12.978Z',NULL,188,1,33.87738254731509,2.37,37.54152338911699,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5284,'2019-05-07T09:58:46.426Z',8.809739623861452,51,6,75.65058751905018,5.3,65.48428553526851,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5285,'2018-03-02T22:26:12.094Z',NULL,185,1,39.57700083851661,2.77,49.6519390653458,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5286,'2017-07-28T13:58:43.582Z',NULL,1,5,29.463261130679875,2.06,33.03548118911464,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5287,'2020-01-23T06:00:15.513Z',NULL,86,2,92.31436670850246,6.46,123.94127539121715,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5288,'2018-04-12T06:39:17.398Z',NULL,106,3,52.723521442619514,3.69,61.58662323430259,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5289,'2019-03-20T16:32:56.694Z',NULL,26,1,68.12471180754113,4.77,94.98678116667749,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5290,'2019-04-06T03:42:57.438Z',NULL,63,3,133.5202262591817,9.35,155.02513990810016,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5291,'2019-11-05T04:40:23.984Z',NULL,200,4,73.20395711799151,5.12,75.69102352289303,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5292,'2017-09-29T13:26:07.515Z',NULL,10,7,31.78621880685793,2.23,27.188577519030815,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5293,'2018-07-27T11:17:21.860Z',NULL,99,5,67.83486485383094,4.75,94.75147859448565,710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5294,'2018-05-27T18:13:00.976Z',NULL,186,4,98.9770008385166,5.69,92.83863843887606,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5295,'2019-10-29T20:15:42.042Z',NULL,104,6,106.44215255778118,6.12,91.43649475248522,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5296,'2019-05-19T08:58:22.818Z',NULL,63,6,133.5202262591817,7.68,146.85413158563716,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5297,'2018-08-10T13:31:18.530Z',NULL,61,9,23.537915510955656,1.35,21.184878810473183,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5298,'2017-11-19T07:20:18.312Z',NULL,99,3,45.22324323588729,2.6,37.09465931659851,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5299,'2020-02-09T03:12:13.530Z',NULL,141,1,126.20312547576883,7.26,103.5079675436481,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5300,'2018-02-14T19:25:03.791Z',NULL,21,1,60.57501609456816,3.48,76.51415273658857,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5301,'2019-08-21T06:35:54.638Z',NULL,91,5,65.09432810381134,3.74,64.57200388200428,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5302,'2017-12-28T01:17:08.715Z',NULL,199,1,76.95334253952366,4.42,105.17674969206207,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5303,'2019-06-29T11:34:32.928Z',NULL,75,6,125.81276373452337,7.23,172.28794587732185,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5304,'2019-07-05T04:21:23.877Z',NULL,110,6,55.526746186906664,3.19,55.00095804956024,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5305,'2020-03-29T00:03:35.003Z',NULL,129,1,148.1672972165937,8.52,192.9465264272234,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5306,'2019-11-27T18:03:49.297Z',NULL,156,2,30.615804149046195,1.76,36.84365603659746,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5307,'2019-04-26T14:32:04.612Z',NULL,119,3,43.43814329652384,2.5,48.84274990678773,712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5308,'2018-06-18T09:39:00.565Z',NULL,142,6,70.34853057210945,4.57,82.46193979025138,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5309,'2017-04-10T16:11:29.131Z',NULL,127,2,89.65344209669612,5.83,75.51029206686623,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5310,'2017-02-25T12:59:22.528Z',NULL,165,1,25.536330427467956,1.66,29.287369555513415,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5311,'2017-08-16T13:39:57.551Z',NULL,47,5,56.05108065511453,3.64,74.4977604725042,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5312,'2019-05-31T19:25:10.737Z',NULL,131,3,113.11722203337729,7.35,145.2116578208539,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5313,'2019-09-14T06:08:26.551Z',NULL,36,4,130.93687730741433,8.51,146.15695919533925,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5314,'2018-10-10T19:00:05.879Z',NULL,151,4,91.61302306843446,5.95,87.61862775804977,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5315,'2017-02-21T08:52:21.185Z',NULL,77,1,67.34461152277315,4.38,73.73041154356474,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5316,'2016-09-29T08:42:07.256Z',NULL,117,5,36.683234169385244,2.38,39.27582414102293,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5317,'2018-07-23T15:12:18.036Z',NULL,15,6,37.648145389078365,2.45,40.04123120138992,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5318,'2019-11-22T21:01:41.041Z',NULL,30,4,64.17448218067184,4.17,85.6050133590683,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5319,'2017-10-12T06:36:44.437Z',NULL,27,5,85.01647453836077,5.53,80.13039463630535,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5320,'2017-10-25T21:53:20.491Z',NULL,77,4,67.34461152277315,4.38,68.5247323377126,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5321,'2018-09-22T02:21:49.025Z',NULL,164,3,92.96789820016517,6.04,91.53171633011983,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5322,'2019-09-02T06:27:28.127Z',NULL,110,3,55.526746186906664,3.61,52.16192071613164,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5323,'2018-10-01T23:41:22.667Z',NULL,54,5,62.09360840402396,4.04,68.1449983928698,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5324,'2018-01-19T03:37:58.722Z',NULL,50,2,53.64019616819762,3.49,54.540215913966264,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5325,'2020-03-31T06:35:46.124Z',NULL,85,1,54.90104734428525,3.57,53.025222854582026,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5326,'2018-08-25T12:04:22.180Z',NULL,152,7,48.89568729900663,3.18,61.10322399034679,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5327,'2019-05-02T03:59:39.211Z',NULL,63,5,133.5202262591817,8.68,172.7448143354896,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5328,'2017-07-22T22:59:22.578Z',NULL,156,5,20.41053609936413,1.33,27.528401505032747,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5329,'2018-05-17T09:56:58.519Z',NULL,169,4,59.53172693453274,3.87,52.45885694810606,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5330,'2019-07-18T04:45:55.851Z',NULL,175,6,117.3248094335266,7.63,159.9455026538016,713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5331,'2019-07-14T12:41:02.688Z',3.0805669215650933,95,6,49.81864156655383,2.99,48.17610607741597,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5332,'2016-08-23T03:52:53.282Z',NULL,199,7,76.95334253952366,4.62,82.04851267271583,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5333,'2020-02-15T16:11:13.819Z',NULL,12,1,116.01427581618326,6.96,108.8691914756045,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5334,'2019-02-11T15:20:25.814Z',NULL,86,2,92.31436670850246,5.54,98.67985191489824,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5335,'2019-04-17T10:18:05.453Z',NULL,71,4,82.80381898788684,4.97,96.93789730480098,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5336,'2019-05-28T00:51:57.847Z',NULL,126,5,125.24398120308456,7.51,128.65033615006527,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5337,'2018-10-14T21:39:48.725Z',NULL,58,4,78.14578007078882,4.69,75.41429372577966,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5338,'2020-04-09T18:36:14.586Z',1.806149007498231,197,2,70.14610686710009,4.21,84.26836886383155,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5339,'2019-01-15T20:24:15.707Z',NULL,103,2,47.04215255778118,2.82,38.30180335556664,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5340,'2016-09-01T23:04:55.805Z',NULL,194,4,33.587182645381546,2.02,40.526776937780504,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5341,'2019-11-03T09:47:50.255Z',NULL,64,2,143.4221774571866,8.61,196.12896688865453,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5342,'2020-01-21T16:59:11.142Z',NULL,80,16,54.91325681036414,3.29,56.67229876676119,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5343,'2019-04-17T22:32:40.150Z',NULL,151,3,91.61302306843446,5.5,75.79665965872732,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5344,'2020-03-17T09:45:59.095Z',NULL,5,11,124.1176465275534,7.45,114.2486202676603,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5345,'2018-04-21T21:45:06.832Z',NULL,10,3,47.6793282102869,2.86,55.04191817852544,714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5346,'2016-10-20T19:12:42.861Z',NULL,82,4,40.59697158687298,1.18,31.24745529152762,715); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5347,'2020-03-07T23:06:49.295Z',NULL,56,1,36.37128575934436,2,31.93269400183709,716); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5348,'2018-08-23T00:44:27.160Z',NULL,124,6,110.93145648834248,6.1,88.80435626451715,716); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5349,'2020-04-14T13:09:24.700Z',NULL,77,2,101.01691728415972,5.05,127.48184635471773,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5350,'2019-03-21T09:54:44.894Z',1.806149007498231,41,1,63.50890855689462,3.18,59.253236101520294,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5351,'2016-07-29T20:31:56.243Z',6.306149007498231,33,3,31.829909130640935,1.59,37.755356546274626,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5352,'2019-12-09T17:12:14.836Z',NULL,177,1,128.8192981944599,6.44,176.63248420845807,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5353,'2018-06-03T19:03:31.145Z',NULL,32,6,107.1448636959614,5.36,104.03678232088073,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5354,'2018-06-14T19:24:21.380Z',NULL,87,8,117.25536340498041,5.86,127.9787794602557,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5355,'2018-05-28T17:04:08.420Z',NULL,57,4,122.4223933583994,6.12,159.32813324928836,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5356,'2020-03-31T06:05:00.288Z',NULL,6,1,97.43621265344382,4.87,96.44711068498758,718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5357,'2017-02-24T17:45:31.601Z',NULL,176,2,38.616539622351056,1.54,35.48144991664755,721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5358,'2016-12-16T15:31:58.524Z',3.464001277595119,163,1,22.378598800110105,0.9,22.247847809581735,721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5359,'2016-09-09T15:13:07.595Z',NULL,100,5,45.22324323588729,3.1,63.167093859827844,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5360,'2016-11-08T01:13:38.958Z',NULL,119,3,28.95876219768256,1.98,24.261560674608955,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5361,'2017-07-02T10:14:43.497Z',NULL,35,4,47.691251538276234,3.27,50.06313078909286,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5362,'2016-12-25T18:24:29.598Z',7.964001277595119,190,2,85.72279013719552,5.87,68.07761448805402,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5363,'2019-01-27T00:27:31.276Z',NULL,121,2,40.44528328808107,2.77,37.12840929909103,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5364,'2017-11-16T08:06:52.150Z',NULL,5,2,82.7450976850356,5.67,114.05499097993433,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5365,'2019-03-16T12:16:50.664Z',NULL,173,1,122.3651993029456,8.38,160.1041819099698,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5366,'2019-04-26T15:34:18.244Z',3.464001277595119,26,4,68.12471180754113,4.67,59.18896397062763,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5367,'2019-12-14T21:02:10.211Z',NULL,98,3,112.41825444654248,7.7,92.47381965107252,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5368,'2019-06-04T17:50:23.053Z',NULL,176,6,57.92480943352658,3.97,81.24269697624278,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5369,'2020-04-06T14:24:35.586Z',NULL,163,30,33.56789820016516,2.3,45.32763486640158,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5370,'2018-02-11T13:58:43.754Z',NULL,165,2,38.30449564120193,2.62,47.68255280537331,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5371,'2017-06-24T17:54:54.596Z',NULL,3,6,35.388744881539054,2.42,31.276705569032853,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5372,'2018-08-07T00:20:57.542Z',NULL,166,9,38.30449564120193,2.62,44.2128500435847,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5373,'2018-05-24T11:32:26.206Z',NULL,148,5,138.9817182254566,9.52,140.9696013775921,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5374,'2019-02-06T15:11:06.494Z',NULL,166,2,38.30449564120193,2.62,36.24140337337157,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5375,'2019-11-02T15:12:15.852Z',NULL,163,3,33.56789820016516,2.3,42.411988056648724,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5376,'2017-06-07T05:45:57.812Z',NULL,20,6,24.884330833643833,1.7,30.234737555482972,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5377,'2019-01-15T08:30:55.196Z',NULL,195,2,109.78077396807234,7.52,117.6420668690248,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5378,'2019-11-14T10:56:30.245Z',NULL,40,4,99.66240044231697,6.83,94.87857793545535,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5379,'2017-12-31T10:58:57.464Z',NULL,176,2,38.616539622351056,2.65,34.84409479169962,723); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5380,'2019-01-31T21:48:44.965Z',NULL,125,2,80.39699207990944,4.82,76.8393657673519,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5381,'2017-09-09T23:19:48.857Z',7.791553443418944,161,6,31.727470408648482,1.9,37.70503750645562,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5382,'2017-05-19T15:40:17.553Z',NULL,46,4,78.6996782532274,4.72,90.18995640036658,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5383,'2017-07-03T01:19:32.675Z',7.791553443418944,88,5,70.27528021081703,4.22,64.25922044939539,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5384,'2017-09-02T02:01:02.654Z',NULL,147,5,44.4315141414441,2.67,36.06159937950655,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5385,'2018-03-24T11:27:56.759Z',NULL,60,1,29.80214751859149,1.79,27.29239843497817,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5386,'2020-04-18T09:09:26.734Z',NULL,24,2,112.30643674729413,6.74,151.20925858113182,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5387,'2020-03-14T07:15:49.552Z',NULL,69,1,73.38772304360626,4.4,77.34092258157483,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5388,'2018-06-25T15:27:40.603Z',NULL,12,4,116.01427581618326,6.96,126.22453512668167,724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5389,'2020-03-29T13:34:43.019Z',NULL,59,1,89.20214751859149,0,78.84168918661062,725); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5390,'2019-01-14T00:47:24.633Z',NULL,163,2,33.56789820016516,2.18,41.09744404554949,727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5391,'2019-01-03T01:03:31.890Z',NULL,172,2,122.3651993029456,7.95,120.16411695427242,727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5392,'2018-01-22T11:21:42.460Z',NULL,126,2,125.24398120308456,8.14,126.01423850360725,727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5393,'2019-08-15T13:42:21.785Z',NULL,108,8,50.094887884945365,3.26,67.3312600893478,727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5394,'2018-11-13T10:34:50.129Z',NULL,193,3,50.38077396807232,3.27,40.83800489216249,727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5395,'2019-12-19T18:49:17.831Z',NULL,116,2,114.42485125407785,5.44,102.95155814595594,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5396,'2018-07-26T23:13:23.768Z',NULL,8,6,98.83823503993958,4.69,99.55534137750175,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5397,'2018-01-11T05:24:25.348Z',NULL,55,2,95.77128575934437,4.55,112.49246597644523,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5398,'2018-05-29T05:45:20.692Z',NULL,72,4,142.20381898788685,6.75,132.5263739998159,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5399,'2019-11-23T08:24:23.314Z',NULL,89,2,63.719612755399886,3.03,79.99004652953396,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5400,'2018-02-01T23:42:54.541Z',NULL,29,1,123.57448218067185,5.87,139.21977163234078,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5401,'2019-07-25T13:38:00.353Z',NULL,26,3,68.12471180754113,3.24,68.66850176540385,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5402,'2020-03-16T11:43:04.915Z',NULL,177,1,128.8192981944599,6.12,137.63986367891584,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5403,'2020-03-01T11:24:11.395Z',NULL,170,1,105.07665741496471,4.99,109.79893052181322,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5404,'2019-07-27T06:31:26.439Z',NULL,91,4,65.09432810381134,3.09,52.05055030367626,728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5405,'2018-04-05T01:16:47.543Z',NULL,197,3,70.14610686710009,4.82,60.24504900102394,729); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5406,'2019-07-16T11:22:53.121Z',NULL,86,6,92.31436670850246,6.35,80.65384863613427,729); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5407,'2019-03-30T16:58:15.920Z',NULL,14,1,37.648145389078365,2.59,33.73056314827004,729); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5408,'2018-10-01T14:07:15.730Z',NULL,134,5,42.49233549998661,2.92,46.397590038311,729); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5409,'2018-04-12T11:09:45.310Z',2.2759445151209583,24,3,112.30643674729413,3.26,101.66420416509958,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5410,'2018-01-03T02:08:11.514Z',NULL,50,2,53.64019616819762,1.56,41.17926582456881,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5411,'2018-01-22T11:07:35.123Z',NULL,183,1,56.697412301919755,1.64,64.3439940863323,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5412,'2017-04-30T11:44:42.872Z',NULL,163,3,22.378598800110105,0.65,18.86464939757209,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5413,'2019-12-31T13:27:27.013Z',NULL,101,2,139.82488066180403,4.05,107.0688831110626,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5414,'2019-04-23T08:32:45.969Z',NULL,154,2,81.87529553312261,2.37,99.01008807143388,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5415,'2020-03-11T11:43:27.654Z',2.4954552467559403,49,1,131.42865839323724,3.81,111.70231173487907,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5416,'2017-07-20T19:39:46.294Z',NULL,171,3,70.05110494330981,2.03,57.40846878254035,731); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5417,'2017-03-24T05:29:17.385Z',NULL,196,1,46.76407124473339,1.98,43.14080458953659,733); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5418,'2016-10-27T03:02:17.197Z',NULL,110,3,37.01783079127111,1.59,42.064930457211915,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5419,'2017-08-27T00:00:08.004Z',6.995455246755941,63,6,89.0134841727878,3.83,72.12598702162568,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5420,'2019-04-16T15:02:58.036Z',NULL,165,3,38.30449564120193,1.65,37.99714129422861,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5421,'2017-06-24T23:16:31.685Z',2.4954552467559403,24,6,74.87095783152942,3.22,72.44617085481875,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5422,'2018-05-30T04:51:12.660Z',NULL,53,3,44.27587240151534,1.9,34.49572836753203,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5423,'2017-02-28T11:24:14.662Z',NULL,76,1,42.54947374244324,1.83,54.71688421342939,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5424,'2020-01-04T06:20:37.430Z',NULL,160,2,47.59120561297272,2.05,38.70860712605097,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5425,'2018-05-22T20:11:52.447Z',NULL,146,3,126.04727121216614,5.42,148.4092037412021,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5426,'2018-11-06T00:59:37.395Z',NULL,46,3,118.0495173798411,5.08,143.3731186754361,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5427,'2017-09-19T00:42:46.138Z',NULL,138,6,75.96718984479077,3.27,78.00096303481405,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5428,'2017-02-12T01:12:58.426Z',NULL,82,2,40.59697158687298,1.75,42.52064524680318,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5429,'2018-04-23T02:50:30.016Z',2.534778121932884,114,3,77.91196471862148,3.35,103.35354845045653,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5430,'2018-06-25T12:19:58.385Z',NULL,126,4,125.24398120308456,5.39,151.48149918565858,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5431,'2017-09-09T03:17:44.143Z',NULL,143,3,40.7988669736962,1.75,45.94853293227542,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5432,'2016-10-14T22:38:49.243Z',NULL,1,5,29.463261130679875,1.27,38.245961903169416,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5433,'2017-04-11T00:06:58.420Z',NULL,102,3,31.361435038520785,1.35,37.53496943200565,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5434,'2020-01-09T10:34:11.344Z',NULL,36,2,130.93687730741433,5.63,123.4905302695063,736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5435,'2018-08-11T21:22:49.212Z',NULL,180,8,68.32408657333919,3.76,64.29028855535039,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5436,'2018-01-19T16:24:44.725Z',NULL,107,2,50.094887884945365,2.76,63.46928879143907,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5437,'2018-08-01T15:56:03.756Z',NULL,8,4,98.83823503993958,5.44,91.7497972788959,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5438,'2018-03-08T23:09:41.501Z',NULL,98,1,112.41825444654248,6.18,132.2079133518559,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5439,'2019-05-15T13:13:45.821Z',NULL,56,3,36.37128575934436,2,31.528495361433762,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5440,'2018-03-27T07:22:56.737Z',NULL,8,1,98.83823503993958,5.44,131.18186323533502,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5441,'2019-10-26T19:25:56.195Z',NULL,154,3,81.87529553312261,4.5,94.74673569155743,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5442,'2017-10-17T03:28:25.215Z',NULL,121,3,26.96352219205405,1.48,28.711148563765352,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5443,'2018-04-17T03:24:53.552Z',NULL,23,2,116.86672609493307,6.43,138.10775492431355,737); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5444,'2019-07-23T15:17:39.970Z',NULL,113,3,110.47725376186015,0,137.4234456212588,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5445,'2019-10-02T13:49:06.752Z',NULL,101,3,139.82488066180403,0,111.1834733418986,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5446,'2019-08-11T11:06:23.989Z',NULL,50,6,53.64019616819762,0,50.93756307500791,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5447,'2018-05-02T12:59:56.538Z',NULL,57,4,122.4223933583994,0,149.9317151912692,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5448,'2017-12-31T21:07:04.343Z',NULL,68,1,76.82895921539838,0,95.21102151676205,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5449,'2019-11-21T23:01:23.501Z',NULL,1,30,44.19489169601981,0,41.865513447792445,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5450,'2019-09-07T17:31:05.106Z',NULL,182,6,84.48940370476112,0,66.83840248671312,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5451,'2020-04-09T07:14:12.789Z',9.115069344331033,65,3,68.22769726470014,0,61.35994669962255,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5452,'2020-04-09T16:22:14.153Z',NULL,24,4,112.30643674729413,0,86.8748096215089,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5453,'2018-04-02T14:59:39.844Z',NULL,143,3,61.1983004605443,0,57.6420010860967,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5454,'2018-02-08T20:56:04.407Z',NULL,153,1,66.79892314178237,0,73.5637950870403,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5455,'2019-07-13T12:07:14.044Z',NULL,17,4,79.93608046792765,0,95.9868128494913,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5456,'2017-12-22T15:16:02.612Z',NULL,77,2,67.34461152277315,0,57.222123050305605,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5457,'2018-11-30T18:35:28.126Z',NULL,136,3,105.20402317157343,0,118.45908102473693,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5458,'2020-04-02T17:37:22.690Z',NULL,123,3,110.93145648834248,0,141.4099619607133,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5459,'2019-07-30T03:32:15.163Z',NULL,58,6,78.14578007078882,0,81.87391619991618,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5460,'2017-09-26T01:00:13.270Z',NULL,19,7,42.67116731707548,0,44.76648306021865,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5461,'2019-01-06T12:49:24.307Z',4.615069344331033,35,2,71.53687730741436,0,84.41026396209037,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5462,'2019-06-25T09:56:59.806Z',NULL,86,7,92.31436670850246,0,119.36170269096046,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5463,'2019-09-18T02:19:32.860Z',NULL,25,6,68.62263967182464,0,56.9506001424454,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5464,'2020-03-04T18:48:30.735Z',NULL,62,1,133.5202262591817,0,111.7356295187356,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5465,'2017-10-09T09:45:05.237Z',NULL,184,5,77.3982748679465,0,100.35035529485671,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5466,'2018-11-15T11:10:42.239Z',NULL,147,3,66.64727121216615,0,50.9944572241497,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5467,'2016-07-26T04:59:25.982Z',NULL,105,6,35.149014295079674,0,38.32642341627796,741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5468,'2017-02-08T07:04:22.771Z',NULL,21,2,40.38334406304544,1.62,36.80101476883528,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5469,'2019-11-14T02:30:37.255Z',NULL,184,4,116.09741230191975,4.64,111.93042640309899,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5470,'2017-06-30T15:35:41.660Z',NULL,25,8,45.7484264478831,1.83,50.95208045795283,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5471,'2018-05-05T18:18:04.903Z',NULL,198,5,70.14610686710009,2.81,62.92608472418022,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5472,'2019-02-04T03:39:37.716Z',NULL,69,2,73.38772304360626,2.94,59.55377160666843,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5473,'2017-08-02T19:37:26.534Z',NULL,38,9,44.04624855892918,1.76,48.821738446549524,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5474,'2020-03-12T18:12:53.927Z',NULL,31,1,105.65346467128523,4.23,109.3037941785075,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5475,'2018-08-26T17:20:27.952Z',NULL,41,7,63.50890855689462,2.54,67.38129383278424,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5476,'2017-07-08T12:58:58.825Z',NULL,84,5,54.58418555091025,2.18,49.758007050602835,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5477,'2020-03-16T17:14:45.629Z',NULL,160,1,47.59120561297272,1.9,60.42219961795501,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5478,'2017-07-16T16:57:57.694Z',NULL,184,3,77.3982748679465,3.1,105.13398891287979,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5479,'2017-09-12T12:18:37.518Z',3.2957041147010733,52,3,69.1172482676769,2.76,81.29208178413984,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5480,'2019-02-26T08:59:24.166Z',3.2957041147010733,139,2,76.77768319177018,3.07,87.55044628949871,744); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5481,'2019-05-07T07:21:27.611Z',NULL,166,4,38.30449564120193,1.92,30.632560365144517,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5482,'2019-08-31T23:19:10.856Z',7.795704114701073,52,7,103.67587240151535,5.18,92.43375752846529,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5483,'2017-09-21T21:25:05.664Z',NULL,26,5,45.41647453836076,2.27,44.69460501206362,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5484,'2018-05-04T20:23:20.515Z',NULL,196,4,70.14610686710009,3.51,94.5657164882852,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5485,'2017-08-19T12:13:34.569Z',NULL,88,7,70.27528021081703,3.51,74.4375660032351,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5486,'2018-10-04T13:53:34.465Z',NULL,20,4,37.32649625046575,1.87,45.276912241306896,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5487,'2019-08-18T00:53:29.748Z',NULL,110,7,55.526746186906664,2.78,61.79003968612773,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5488,'2018-10-25T05:12:28.586Z',NULL,103,5,47.04215255778118,2.35,46.46100173303576,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5489,'2019-01-15T21:38:22.997Z',NULL,146,1,126.04727121216614,6.3,149.66670389094395,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5490,'2019-05-23T17:42:08.212Z',NULL,40,3,99.66240044231697,4.98,80.44281209545599,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5491,'2018-05-02T02:26:28.862Z',7.423399144784249,183,3,56.697412301919755,2.83,73.6745165367954,746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5492,'2019-05-14T21:40:04.376Z',NULL,69,4,73.38772304360626,3.16,95.57404633049175,748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5493,'2018-02-05T00:00:27.930Z',7.423399144784249,166,2,38.30449564120193,1.53,46.47869822258387,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5494,'2020-04-13T22:39:39.190Z',NULL,108,3,50.094887884945365,2,45.1752586044851,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5495,'2018-05-13T11:06:24.952Z',NULL,29,3,123.57448218067185,4.94,123.62370106265527,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5496,'2018-08-15T11:26:58.897Z',NULL,142,6,70.34853057210945,2.81,92.49874389520386,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5497,'2019-08-14T21:28:39.737Z',NULL,112,6,41.329386510090345,1.65,40.59890327601161,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5498,'2018-08-17T09:43:36.037Z',NULL,99,6,67.83486485383094,2.71,63.947104166929975,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5499,'2019-11-14T02:23:09.867Z',NULL,106,3,52.723521442619514,2.11,50.53561160297534,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5500,'2018-12-03T07:22:19.230Z',NULL,71,2,82.80381898788684,3.31,72.68014732420795,750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5501,'2019-05-13T01:51:27.201Z',NULL,58,5,78.14578007078882,2.27,106.2062259734892,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5502,'2020-01-08T17:05:10.994Z',NULL,54,2,62.09360840402396,1.8,73.55345399112268,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5503,'2019-10-09T20:40:29.939Z',7.423399144784249,108,7,50.094887884945365,1.45,60.909311658948894,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5504,'2019-08-07T15:57:01.088Z',NULL,30,6,64.17448218067184,1.86,55.34916207708543,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5505,'2018-05-03T16:52:45.284Z',NULL,45,3,118.0495173798411,3.42,123.21522832851421,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5506,'2018-09-03T04:58:08.919Z',NULL,109,5,119.04991068193098,3.45,160.08114318504425,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5507,'2018-01-08T04:06:21.963Z',NULL,140,3,66.80312547576881,1.94,75.9207220442257,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5508,'2018-10-21T20:24:57.186Z',NULL,12,8,116.01427581618326,3.36,149.55364522026733,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5509,'2019-05-28T17:35:44.059Z',NULL,67,6,41.24480890795779,1.2,40.0122720381745,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5510,'2019-06-20T05:26:54.737Z',NULL,111,8,55.526746186906664,1.61,58.14198194607021,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5511,'2017-07-09T18:42:25.766Z',NULL,77,5,67.34461152277315,1.95,66.0180619322237,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5512,'2016-10-15T16:01:46.565Z',NULL,173,5,81.57679953529707,2.37,105.1883486782558,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5513,'2020-02-24T11:44:35.044Z',NULL,98,2,112.41825444654248,3.26,121.03777565374293,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5514,'2017-06-09T11:20:17.866Z',NULL,24,6,74.87095783152942,2.17,66.2007474056072,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5515,'2018-06-02T02:30:15.373Z',NULL,145,6,61.1983004605443,1.77,66.37787687317342,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5516,'2019-08-11T08:31:52.475Z',5.406387909881779,2,9,105.11984419607644,3.05,114.56965960342966,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5517,'2018-07-11T19:31:12.237Z',5.406387909881779,51,6,75.65058751905018,2.19,92.13041977212708,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5518,'2019-12-21T00:29:44.382Z',NULL,24,2,112.30643674729413,3.26,101.79682158273704,754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5519,'2018-12-17T21:38:19.819Z',NULL,67,2,41.24480890795779,0,32.12031302984068,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5520,'2018-10-18T15:52:11.827Z',NULL,152,8,48.89568729900663,0,37.57008959759956,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5521,'2019-07-16T02:22:13.483Z',NULL,53,7,44.27587240151534,0,46.4498906625067,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5522,'2020-01-05T05:09:07.798Z',9.90638790988178,9,2,87.46968147789205,0,114.37970749700904,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5523,'2019-11-11T19:31:12.508Z',NULL,3,4,53.08311732230858,0,61.63539612512942,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5524,'2019-09-23T06:35:50.456Z',NULL,19,6,64.00675097561322,0,52.9844248127518,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5525,'2018-10-31T22:13:34.509Z',NULL,133,5,68.4819702983371,0,73.00254858439216,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5526,'2019-01-02T15:35:23.368Z',NULL,94,2,109.21864156655383,0,93.42437021350443,755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5527,'2018-11-11T04:50:01.060Z',NULL,195,3,109.78077396807234,7.55,133.53384579407998,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5528,'2020-02-29T05:11:33.735Z',NULL,146,1,126.04727121216614,8.67,132.1624493281571,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5529,'2019-09-27T16:36:25.572Z',NULL,128,3,75.08016314504417,5.16,82.42926969802991,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5530,'2018-04-23T19:22:58.705Z',NULL,82,2,60.89545738030947,4.19,65.40043023149951,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5531,'2017-12-30T06:59:48.016Z',NULL,7,1,98.81933684368194,6.79,108.6054461956469,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5532,'2018-06-07T11:54:32.998Z',NULL,75,5,125.81276373452337,8.65,176.78723586635118,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5533,'2018-10-03T14:35:14.504Z',NULL,138,6,113.95078476718615,7.83,145.79252745210604,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5534,'2019-10-27T21:14:09.506Z',NULL,3,5,53.08311732230858,3.65,74.51984339578863,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5535,'2019-10-15T21:19:43.331Z',NULL,65,3,68.22769726470014,4.69,72.82883249659554,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5536,'2019-11-13T06:50:35.413Z',NULL,98,2,112.41825444654248,7.73,137.86687735236163,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5537,'2019-06-23T15:00:16.037Z',NULL,2,7,105.11984419607644,7.23,115.69047284749699,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5538,'2020-03-05T17:45:18.699Z',NULL,161,1,47.59120561297272,3.27,43.48739415231164,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5539,'2019-11-16T19:16:20.920Z',1.960620064887556,61,2,23.537915510955656,1.62,24.08424781897262,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5540,'2018-12-21T12:07:15.910Z',NULL,200,2,73.20395711799151,5.03,101.71821475161481,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5541,'2019-05-02T04:22:59.999Z',NULL,184,5,116.09741230191975,7.98,160.4140340309654,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5542,'2017-11-23T19:52:42.196Z',NULL,16,3,44.07353303251545,3.03,56.02749114640798,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5543,'2019-06-19T20:09:54.142Z',NULL,155,7,43.77574310182776,3.01,46.83820842105586,756); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5544,'2019-06-17T13:21:18.130Z',NULL,72,7,142.20381898788685,4.12,137.63399772402116,757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5545,'2019-03-02T17:33:04.550Z',NULL,170,1,105.07665741496471,3.05,90.6255967999749,757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5546,'2017-03-08T05:59:50.854Z',NULL,64,1,95.61478497145774,2.77,93.86599823076932,757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5547,'2018-12-24T07:00:20.539Z',NULL,157,3,139.8942352373801,4.06,166.3630904759213,757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5548,'2020-02-07T14:04:16.318Z',NULL,37,2,80.10774204020768,2.32,103.0994653263712,757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5549,'2020-02-18T23:55:09.045Z',NULL,170,2,105.07665741496471,3.05,93.0236147755846,757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5550,'2018-12-05T11:54:17.702Z',NULL,76,3,63.82421061366486,4.15,57.71625212858867,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5551,'2018-07-28T09:25:56.425Z',NULL,19,7,64.00675097561322,4.16,67.05568526018104,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5552,'2019-12-07T06:29:39.959Z',9.990878627769138,93,3,49.81864156655383,3.24,45.37844761348426,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5553,'2020-01-11T14:13:17.953Z',9.990878627769138,32,3,107.1448636959614,6.96,124.22897335256623,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5554,'2019-05-28T19:14:02.140Z',NULL,54,6,62.09360840402396,4.04,83.84190658075556,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5555,'2018-02-09T00:12:51.110Z',NULL,96,2,104.82144858590365,6.81,86.49820235500619,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5556,'2019-10-11T13:56:47.314Z',NULL,145,7,61.1983004605443,3.98,57.454490673103514,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5557,'2018-02-04T02:30:30.222Z',NULL,34,2,74.30391386913199,4.83,63.119065281602914,758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5558,'2016-11-13T02:38:00.398Z',NULL,184,4,77.3982748679465,3.1,94.09313529902731,760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5559,'2017-11-03T02:22:40.132Z',NULL,159,4,23.686782969182406,0,26.341728371414103,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5560,'2018-03-09T09:43:52.075Z',NULL,72,1,142.20381898788685,0,107.91390084824883,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5561,'2020-02-27T22:26:07.694Z',NULL,169,2,59.53172693453274,0,75.52211632193826,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5562,'2018-12-14T10:25:57.977Z',9.990878627769138,104,2,106.44215255778118,0,108.37701613698182,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5563,'2018-11-23T02:00:33.151Z',NULL,190,4,128.5841852057933,0,107.47362502522186,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5564,'2016-07-27T00:02:57.820Z',NULL,139,6,51.18512212784679,0,63.03525564964362,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5565,'2019-03-28T04:19:43.642Z',NULL,157,1,139.8942352373801,0,115.17145221938644,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5566,'2018-01-05T13:28:00.246Z',6.243324359831918,116,2,114.42485125407785,0,137.08147050809134,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5567,'2018-03-15T21:21:57.356Z',NULL,28,1,68.12471180754113,0,87.87531727808691,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5568,'2017-02-23T17:27:19.236Z',NULL,53,1,29.517248267676894,0,23.617654574214274,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5569,'2017-10-20T00:05:30.089Z',NULL,179,6,45.549391048892794,0,36.84684543375867,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5570,'2018-01-19T11:05:51.555Z',NULL,52,2,103.67587240151535,0,107.28475326681091,762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5571,'2019-06-21T00:45:25.441Z',NULL,35,5,71.53687730741436,3.93,78.8858711993767,763); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5572,'2018-05-15T23:27:20.252Z',NULL,7,2,148.22900526552291,8.15,118.99477005403891,763); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5573,'2017-07-05T13:29:56.181Z',NULL,191,4,85.72279013719552,4.71,73.1330515589916,763); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5574,'2018-06-30T14:56:44.913Z',NULL,42,5,38.00410713690931,2.09,44.62539965897258,763); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5575,'2017-12-16T07:37:14.254Z',NULL,181,2,95.92626913650741,5.28,75.91180440225008,763); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5576,'2017-06-13T22:19:49.032Z',NULL,101,5,93.21658710786936,6.06,75.81649923288698,766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5577,'2019-11-20T15:15:11.394Z',NULL,40,2,99.66240044231697,6.48,84.98655060988003,766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5578,'2019-07-22T00:13:30.448Z',NULL,59,4,89.20214751859149,5.8,98.69864523678945,766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5579,'2017-06-01T09:42:46.623Z',NULL,165,5,25.536330427467956,0,19.33605696669027,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5580,'2019-06-14T19:22:58.282Z',NULL,44,7,76.35255205175756,0,89.44287240587208,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5581,'2017-06-28T11:29:53.899Z',NULL,111,7,37.01783079127111,0,45.91722005842325,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5582,'2018-06-18T08:29:12.852Z',NULL,16,5,66.11029954877317,0,48.96659520646654,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5583,'2019-03-17T02:35:53.473Z',1.7433243598319184,178,1,117.32963250370614,0,127.23991639708649,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5584,'2019-03-06T18:35:21.590Z',NULL,3,1,53.08311732230858,0,64.01380501569477,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5585,'2016-08-20T05:19:28.893Z',NULL,32,7,71.42990913064094,0,71.5811961028852,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5586,'2019-09-02T20:09:00.737Z',NULL,95,6,49.81864156655383,0,57.43070755932126,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5587,'2016-10-15T23:10:32.952Z',NULL,76,5,42.54947374244324,0,38.44967552692466,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5588,'2016-12-08T06:24:18.219Z',NULL,194,2,33.587182645381546,0,29.024408993264608,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5589,'2019-06-01T21:01:54.308Z',NULL,4,8,110.98767151282252,0,123.33366074076625,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5590,'2018-02-17T12:45:17.948Z',NULL,60,2,29.80214751859149,0,36.975513865668425,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5591,'2018-11-10T14:36:04.916Z',NULL,170,2,105.07665741496471,0,132.27080188583298,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5592,'2018-08-05T04:17:17.690Z',3.0580778390529697,121,5,40.44528328808107,0,38.537398738389165,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5593,'2019-07-09T17:12:05.268Z',NULL,13,5,112.62925391105566,0,135.53847365949878,767); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5594,'2020-01-05T06:29:30.077Z',NULL,162,2,33.56789820016516,2.01,38.52676634620257,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5595,'2017-06-02T09:23:16.417Z',NULL,138,8,75.96718984479077,4.56,68.5179477064366,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5596,'2020-02-29T21:22:43.811Z',NULL,67,2,41.24480890795779,2.47,42.17497476580025,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5597,'2019-10-29T21:53:38.903Z',NULL,190,5,128.5841852057933,7.72,165.63983707285004,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5598,'2018-01-30T12:07:04.172Z',3.0580778390529697,49,2,131.42865839323724,7.89,148.98793538650105,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5599,'2019-10-12T00:38:36.348Z',NULL,152,5,48.89568729900663,2.93,63.52521372598173,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5600,'2019-12-18T07:29:15.500Z',NULL,152,1,48.89568729900663,2.93,59.49833724208821,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5601,'2019-06-06T12:30:05.116Z',NULL,90,4,123.1196127553999,7.39,97.131132779549,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5602,'2017-10-19T12:27:32.595Z',NULL,49,5,87.61910559549149,5.26,115.83537036293247,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5603,'2019-11-05T17:04:58.005Z',NULL,191,4,128.5841852057933,7.72,127.74249158928427,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5604,'2017-12-19T05:05:47.408Z',NULL,89,23,42.47974183693326,2.55,40.44110063523437,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5605,'2019-04-06T08:34:09.361Z',NULL,92,3,124.89242686579996,7.49,99.08289271862279,768); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5606,'2019-12-10T08:30:47.828Z',NULL,165,2,38.30449564120193,1.53,51.5763706122804,769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5607,'2020-01-13T18:10:41.983Z',NULL,75,2,125.81276373452337,5.03,158.01949134181874,769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5608,'2018-02-23T14:49:58.556Z',NULL,95,1,49.81864156655383,1.99,62.11827244946779,769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5609,'2018-06-23T13:02:45.560Z',NULL,77,5,101.01691728415972,4.04,86.21240986741299,769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5610,'2020-01-24T07:34:23.959Z',NULL,9,2,87.46968147789205,3.5,68.11566789203358,769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5611,'2020-03-19T04:52:09.612Z',NULL,81,1,43.9329842322118,0,34.74662351882686,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5612,'2018-06-12T21:38:46.623Z',NULL,200,3,73.20395711799151,0,77.27342766811353,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5613,'2019-12-30T19:20:41.140Z',NULL,143,2,61.1983004605443,0,52.375386533201,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5614,'2018-12-21T06:29:50.173Z',NULL,123,2,110.93145648834248,0,105.19002265412426,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5615,'2019-06-07T18:34:55.319Z',NULL,190,5,128.5841852057933,0,138.62080111149623,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5616,'2019-07-18T17:33:52.666Z',NULL,71,3,82.80381898788684,0,106.25834076670222,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5617,'2019-01-11T17:45:54.736Z',NULL,130,2,75.02573869315137,0,93.59186547351025,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5618,'2018-05-13T06:18:01.166Z',NULL,123,5,110.93145648834248,0,106.689822340822,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5619,'2018-11-10T17:54:52.063Z',NULL,98,3,112.41825444654248,0,104.63654288406632,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5620,'2019-05-31T14:39:55.004Z',NULL,9,4,87.46968147789205,0,96.06115336776969,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5621,'2020-03-11T08:32:09.463Z',NULL,103,1,47.04215255778118,0,42.789119026860135,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5622,'2019-11-19T02:59:38.892Z',6.577482409714159,162,2,33.56789820016516,0,26.197252914033317,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5623,'2019-07-03T02:38:46.401Z',NULL,68,4,115.24343882309758,0,100.76581923020652,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5624,'2019-02-22T09:42:57.295Z',NULL,174,2,111.61430894181083,0,135.87503530629252,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5625,'2019-09-20T06:08:15.623Z',NULL,104,4,106.44215255778118,0,83.6925628914455,770); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5626,'2019-01-03T03:26:23.939Z',NULL,137,1,67.77247956807186,5.08,69.74369655319573,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5627,'2017-05-09T21:47:19.785Z',NULL,104,2,70.96143503852079,5.32,75.75170301182575,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5628,'2019-07-26T09:11:55.281Z',NULL,130,2,75.02573869315137,5.63,84.82985767105622,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5629,'2019-10-16T20:40:10.376Z',NULL,108,2,50.094887884945365,3.76,48.1035436385779,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5630,'2018-11-18T10:54:32.053Z',NULL,151,1,91.61302306843446,6.87,112.45934896261535,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5631,'2017-01-27T06:00:20.217Z',NULL,102,1,31.361435038520785,2.35,41.739608108477476,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5632,'2017-06-05T10:36:46.638Z',NULL,69,2,48.925148695737505,3.67,59.529015493437065,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5633,'2017-03-02T20:58:38.538Z',NULL,80,0,36.60883787357609,2.75,31.270978077559857,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5634,'2017-07-30T03:39:36.991Z',NULL,141,3,84.13541698384589,6.31,92.10496211606544,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5635,'2018-09-29T16:24:54.655Z',NULL,69,3,73.38772304360626,5.5,95.9964420093892,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5636,'2016-10-31T03:06:01.071Z',NULL,105,2,35.149014295079674,2.64,44.20482952823215,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5637,'2018-08-12T06:55:52.829Z',NULL,163,4,33.56789820016516,2.52,26.50691866681017,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5638,'2019-08-08T05:23:07.646Z',NULL,118,7,57.627613096978735,4.32,45.30645015006779,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5639,'2018-04-28T10:16:40.371Z',NULL,47,3,84.0766209826718,6.31,82.13147713070151,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5640,'2020-01-16T18:50:17.152Z',NULL,61,2,23.537915510955656,1.77,30.177749977322065,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5641,'2017-08-21T14:08:14.575Z',NULL,161,6,31.727470408648482,2.38,43.56846169845004,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5642,'2019-02-13T12:01:27.905Z',NULL,168,2,118.93172693453273,8.92,96.73438421001362,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5643,'2017-09-14T03:35:20.184Z',NULL,114,6,51.94130981241432,3.9,45.42291749322208,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5644,'2018-03-16T20:06:32.282Z',NULL,15,1,37.648145389078365,2.82,34.61416236043699,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5645,'2018-01-25T02:55:13.262Z',6.76200703670934,162,2,33.56789820016516,2.52,47.53661892267582,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5646,'2019-07-19T15:49:27.612Z',NULL,73,4,71.6287722595695,5.37,59.52272816384846,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5647,'2017-03-08T03:59:38.133Z',NULL,161,1,31.727470408648482,2.38,39.46580374969294,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5648,'2020-03-06T23:34:35.252Z',NULL,86,1,92.31436670850246,6.92,73.10444184769926,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5649,'2018-09-13T07:43:14.328Z',NULL,4,6,110.98767151282252,8.32,158.7068277050167,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5650,'2017-10-29T12:13:10.649Z',NULL,4,5,73.99178100854834,5.55,97.7411737265852,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5651,'2019-03-31T10:17:14.916Z',NULL,123,1,110.93145648834248,8.32,92.52441293075226,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5652,'2019-12-05T11:07:38.398Z',NULL,18,1,81.90307121097293,6.14,114.72910501914635,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5653,'2018-03-31T23:20:05.560Z',NULL,188,1,33.87738254731509,2.54,45.83618922914172,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5654,'2017-04-18T02:37:24.568Z',NULL,193,3,33.587182645381546,2.52,47.247378653432406,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5655,'2017-07-27T23:31:50.829Z',NULL,48,6,82.13922832356072,6.16,69.54690878312078,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5656,'2017-10-05T08:39:26.733Z',9.239832727545423,137,5,45.18165304538124,3.39,46.980179909623764,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5657,'2017-12-27T22:01:51.349Z',NULL,46,2,78.6996782532274,5.9,99.1725428935833,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5658,'2019-07-04T17:35:11.916Z',NULL,32,6,107.1448636959614,8.04,92.5104740970356,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5659,'2017-09-12T17:48:03.473Z',NULL,36,7,87.29125153827623,6.55,77.69306644325002,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5660,'2018-03-19T17:10:26.060Z',NULL,164,1,92.96789820016517,6.97,104.12809867218527,773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5661,'2018-03-28T17:27:18.889Z',NULL,155,1,43.77574310182776,2.19,51.6303820752675,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5662,'2018-12-22T12:54:28.495Z',NULL,53,2,44.27587240151534,2.21,47.937642463463156,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5663,'2019-01-22T03:02:33.979Z',NULL,119,3,43.43814329652384,2.17,41.57066277786385,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5664,'2017-12-30T19:36:36.842Z',NULL,64,2,95.61478497145774,4.78,105.55226806169568,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5665,'2018-11-15T17:58:35.842Z',NULL,190,3,128.5841852057933,6.43,172.80945491132005,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5666,'2019-12-12T19:44:01.293Z',NULL,23,2,116.86672609493307,5.84,139.49640564546357,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5667,'2019-03-10T03:09:29.949Z',NULL,104,1,106.44215255778118,5.32,87.24798895379202,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5668,'2018-11-05T18:37:19.156Z',NULL,60,3,29.80214751859149,1.49,24.19167696295351,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5669,'2020-01-08T18:15:51.579Z',NULL,115,2,77.91196471862148,3.9,85.37124795677617,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5670,'2019-02-10T14:44:46.686Z',NULL,151,1,91.61302306843446,4.58,85.60283941844202,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5671,'2019-03-31T00:36:23.533Z',NULL,154,1,81.87529553312261,4.09,84.81520702061881,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5672,'2018-07-13T04:27:02.801Z',NULL,5,6,124.1176465275534,6.21,142.26285115700432,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5673,'2018-07-29T23:43:39.733Z',NULL,154,4,81.87529553312261,4.09,75.64540509193411,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5674,'2017-01-12T11:13:18.698Z',NULL,168,1,79.28781795635516,3.96,104.38015868677743,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5675,'2020-03-23T09:23:41.092Z',NULL,66,1,136.16126271106958,6.81,158.36912217413416,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5676,'2018-01-05T23:18:05.355Z',NULL,77,2,101.01691728415972,5.05,101.91283326977951,774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5677,'2019-05-13T00:47:50.841Z',NULL,108,4,50.094887884945365,3.01,69.5185368610923,776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5678,'2019-07-20T20:50:00.835Z',NULL,58,6,78.14578007078882,4.69,78.49789608890566,776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5679,'2019-10-03T01:58:10.518Z',NULL,57,5,122.4223933583994,7.35,110.38222225887709,776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5680,'2017-01-26T22:22:06.340Z',NULL,80,1,36.60883787357609,1.46,34.73874284215247,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5681,'2017-07-26T21:33:44.608Z',7.040195322480472,44,44,50.90170136783837,2.04,67.060362507195,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5682,'2017-01-16T03:34:19.658Z',NULL,179,2,45.549391048892794,1.82,57.8832261257423,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5683,'2019-01-27T10:56:52.846Z',NULL,35,2,71.53687730741436,2.86,94.89143978859555,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5684,'2019-02-12T18:56:53.577Z',2.5401953224804723,72,15,142.20381898788685,5.69,154.14691970053872,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5685,'2019-03-22T23:43:27.654Z',NULL,70,1,57.493003808959784,2.3,71.96394734055781,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5686,'2018-04-13T11:54:30.382Z',NULL,79,3,41.616917284159726,1.66,53.10950363055576,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5687,'2019-11-21T00:52:07.304Z',NULL,18,3,81.90307121097293,3.28,64.50106805933352,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5688,'2019-04-22T04:55:20.172Z',2.5401953224804723,108,3,50.094887884945365,2,63.496140951069364,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5689,'2019-04-07T08:53:19.037Z',2.5401953224804723,69,3,73.38772304360626,2.94,62.899697930324216,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5690,'2018-07-14T10:04:53.424Z',NULL,38,6,66.06937283839378,2.64,64.04202159516394,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5691,'2019-12-10T22:34:55.355Z',NULL,116,2,114.42485125407785,4.58,139.670524513102,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5692,'2019-03-24T05:40:19.007Z',NULL,186,1,98.9770008385166,3.96,90.77947154672286,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5693,'2018-02-07T20:52:54.842Z',NULL,18,2,81.90307121097293,3.28,100.08187979196107,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5694,'2018-12-18T02:30:00.701Z',NULL,82,2,60.89545738030947,2.44,73.50429899715992,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5695,'2019-06-20T05:47:15.212Z',NULL,39,5,114.58158180283459,4.58,143.25012352678786,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5696,'2019-09-06T11:20:50.432Z',NULL,125,5,80.39699207990944,3.22,96.49730521324423,777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5697,'2020-01-06T04:36:23.820Z',NULL,37,21,80.10774204020768,5.61,70.26221060414598,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5698,'2018-12-15T09:13:50.589Z',NULL,156,2,30.615804149046195,2.14,23.877063146816006,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5699,'2017-03-18T16:55:57.751Z',NULL,81,1,29.288656154807867,2.05,27.449864825288177,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5700,'2020-03-09T04:32:34.494Z',1.6504061567987085,2,1,105.11984419607644,7.36,112.65114685331152,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5701,'2019-01-24T09:31:36.427Z',NULL,41,2,63.50890855689462,4.45,59.387257890615146,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5702,'2019-07-01T13:11:58.761Z',NULL,50,5,53.64019616819762,3.75,49.33400173656226,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5703,'2018-02-11T02:55:20.239Z',NULL,166,1,38.30449564120193,2.68,34.700720699085736,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5704,'2019-03-06T00:59:42.891Z',NULL,87,1,117.25536340498041,8.21,121.33779478747219,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5705,'2016-09-18T08:48:39.423Z',NULL,13,5,75.0861692740371,5.26,102.1304195983626,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5706,'2019-06-21T13:44:13.285Z',NULL,62,5,133.5202262591817,9.35,162.68111921804498,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5707,'2017-11-13T00:20:21.435Z',NULL,105,2,35.149014295079674,2.46,28.24402301242038,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5708,'2019-03-14T06:32:22.000Z',NULL,147,1,66.64727121216615,4.67,90.71758317260779,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5709,'2019-05-30T06:17:54.117Z',NULL,56,2,36.37128575934436,2.55,34.081332029694764,778); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5710,'2020-03-24T19:46:07.624Z',NULL,9,1,87.46968147789205,3.7,83.82547568212767,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5711,'2018-07-21T23:19:33.932Z',3.415817689873398,110,4,55.526746186906664,2.35,77.04424783676366,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5712,'2019-05-06T07:30:17.862Z',NULL,160,3,47.59120561297272,2.01,53.955742076289596,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5713,'2019-10-06T16:24:53.656Z',NULL,149,4,69.15415037577924,2.92,58.68222584419032,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5714,'2019-11-02T03:02:24.471Z',NULL,91,3,65.09432810381134,2.75,60.19215499117628,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5715,'2019-07-03T13:23:49.194Z',NULL,17,6,79.93608046792765,3.38,89.41701848644684,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5716,'2017-11-06T06:38:11.296Z',NULL,127,4,89.65344209669612,3.79,88.56620411034655,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5717,'2020-04-06T20:42:25.732Z',NULL,132,3,127.88197029833711,5.4,120.78989001800903,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5718,'2019-10-10T23:58:32.332Z',NULL,166,6,38.30449564120193,1.62,49.37216006157819,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5719,'2018-06-01T03:42:10.992Z',NULL,178,6,117.32963250370614,4.96,146.60717435666925,780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5720,'2019-07-02T05:04:50.306Z',NULL,20,5,37.32649625046575,1.58,45.09682055437366,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5721,'2017-02-23T07:30:59.007Z',NULL,77,2,67.34461152277315,2.85,55.19755664255783,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5722,'2020-01-09T15:28:07.709Z',3.415817689873398,126,2,125.24398120308456,5.29,141.80502197756266,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5723,'2019-06-04T14:29:54.135Z',NULL,31,4,105.65346467128523,4.46,113.93198768696148,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5724,'2019-10-14T22:13:43.929Z',NULL,105,4,52.723521442619514,2.23,70.34757950740037,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5725,'2019-03-12T13:35:57.248Z',NULL,137,1,67.77247956807186,2.86,62.99865070359874,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5726,'2018-06-07T16:05:18.046Z',NULL,70,8,57.493003808959784,2.43,78.83003746086152,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5727,'2018-08-15T10:51:17.834Z',NULL,121,9,40.44528328808107,1.71,32.96414385631234,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5728,'2018-11-25T20:44:33.993Z',NULL,4,4,110.98767151282252,4.69,108.41678740256759,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5729,'2016-10-14T21:20:20.669Z',NULL,45,7,78.6996782532274,3.33,87.74193795328597,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5730,'2019-04-25T19:40:28.224Z',NULL,137,3,67.77247956807186,2.86,78.1170553805651,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5731,'2018-06-29T00:34:51.734Z',9.809054743637844,137,8,67.77247956807186,2.86,62.01334103610106,782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5732,'2019-02-06T10:54:43.896Z',NULL,150,2,128.55415037577922,0,143.2056839890792,783); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5733,'2016-05-06T00:28:39.179Z',NULL,36,5,87.29125153827623,0,85.95437695496423,783); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5734,'2017-04-04T01:18:55.346Z',NULL,36,3,87.29125153827623,0,91.43711318575808,783); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5735,'2019-06-25T05:13:37.210Z',NULL,156,6,30.615804149046195,1.22,37.50437496705726,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5736,'2018-04-17T18:49:55.517Z',NULL,106,4,52.723521442619514,2.11,47.33315623657814,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5737,'2017-09-06T08:24:38.991Z',NULL,152,6,32.59712486600442,1.3,31.660675070424283,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5738,'2018-11-17T17:45:29.458Z',5.3090547436378435,119,3,43.43814329652384,1.74,45.18263398145499,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5739,'2016-12-10T23:00:36.914Z',NULL,22,2,21.42451996044233,0.86,28.43091152316956,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5740,'2017-11-14T01:12:51.764Z',NULL,198,4,46.76407124473339,1.87,48.813238152950625,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5741,'2017-09-20T04:06:48.905Z',NULL,122,7,66.56352219205405,2.66,76.9563949532542,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5742,'2019-12-14T00:54:50.028Z',NULL,18,2,81.90307121097293,3.28,92.92355672222273,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5743,'2019-02-27T09:03:49.719Z',NULL,52,2,103.67587240151535,4.15,131.5675068510138,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5744,'2017-09-08T04:09:50.903Z',NULL,190,60,85.72279013719552,3.43,75.90872464426522,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5745,'2018-03-28T13:47:09.600Z',NULL,97,1,112.41825444654248,4.5,149.39351973354474,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5746,'2019-12-25T19:39:53.213Z',NULL,182,2,84.48940370476112,3.38,103.2292690786088,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5747,'2019-07-12T01:55:53.234Z',9.809054743637844,81,7,43.9329842322118,1.76,41.527060912233964,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5748,'2020-04-15T11:05:49.995Z',NULL,94,4,109.21864156655383,4.37,122.19317081961121,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5749,'2019-02-03T06:50:44.312Z',NULL,98,1,112.41825444654248,4.5,88.15329416980494,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5750,'2020-01-13T15:21:32.426Z',NULL,79,2,41.616917284159726,1.66,38.774736721871896,784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5751,'2018-03-12T03:03:02.057Z',7.444132829803624,174,1,111.61430894181083,5.58,97.7340621366197,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5752,'2018-07-22T03:15:23.679Z',NULL,166,6,38.30449564120193,1.92,35.47249745218511,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5753,'2018-11-04T15:37:16.883Z',NULL,133,4,68.4819702983371,3.42,78.69450040329166,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5754,'2019-03-23T00:06:44.795Z',NULL,48,1,123.20884248534108,6.16,139.0555577706241,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5755,'2020-03-10T02:37:48.740Z',NULL,3,1,53.08311732230858,2.65,74.25008838539958,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5756,'2017-07-06T04:36:58.513Z',NULL,149,3,46.10276691718616,2.31,56.61027080267957,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5757,'2019-02-25T00:07:52.091Z',NULL,71,1,82.80381898788684,4.14,91.25789067147663,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5758,'2020-02-01T21:05:21.612Z',NULL,110,2,55.526746186906664,2.78,66.73507403695511,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5759,'2018-01-23T20:37:28.281Z',NULL,136,2,105.20402317157343,5.26,111.02121275018825,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5760,'2018-03-14T09:24:47.464Z',7.444132829803624,27,1,127.52471180754115,6.38,138.8456957844823,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5761,'2019-08-10T04:51:59.413Z',NULL,46,8,118.0495173798411,5.9,165.43805346583258,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5762,'2019-02-09T06:39:31.410Z',NULL,142,2,70.34853057210945,3.52,95.78604806166862,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5763,'2018-03-03T14:22:22.936Z',NULL,66,1,136.16126271106958,6.81,119.2379242129378,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5764,'2018-11-14T03:40:07.998Z',2.944132829803624,53,3,44.27587240151534,2.21,45.33683752695774,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5765,'2018-05-14T05:52:33.159Z',NULL,92,5,124.89242686579996,6.24,137.31215981990644,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5766,'2019-11-10T13:03:46.389Z',NULL,155,4,43.77574310182776,2.19,46.308054998733425,785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5767,'2017-09-09T07:24:36.907Z',NULL,168,6,79.28781795635516,3.17,88.70775119654165,787); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5768,'2020-01-18T12:08:35.916Z',NULL,11,2,132.45679913492563,3.84,165.00373633082134,788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5769,'2019-05-07T23:14:29.784Z',NULL,166,5,38.30449564120193,1.11,28.73558075174606,788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5770,'2019-04-14T20:50:41.503Z',NULL,144,3,61.1983004605443,1.77,51.74065973591775,788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5771,'2018-11-03T20:24:24.178Z',NULL,59,3,89.20214751859149,2.59,70.311163343029,788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5772,'2019-01-05T16:27:32.847Z',NULL,52,1,103.67587240151535,4.15,118.5080265671889,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5773,'2019-07-02T09:56:14.857Z',NULL,99,3,67.83486485383094,2.71,64.79221765291706,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5774,'2018-12-07T01:39:51.488Z',NULL,184,2,116.09741230191975,4.64,118.47376998322073,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5775,'2017-07-05T07:36:05.719Z',NULL,55,4,63.84752383956291,2.55,67.88644535413209,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5776,'2019-05-07T01:12:30.997Z',NULL,19,3,64.00675097561322,2.56,58.18681057839386,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5777,'2018-02-24T16:43:45.504Z',NULL,112,1,41.329386510090345,1.65,32.55864376000608,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5778,'2019-08-11T04:40:15.615Z',NULL,8,6,98.83823503993958,3.95,85.76796516167853,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5779,'2018-11-20T13:42:27.876Z',NULL,138,3,113.95078476718615,4.56,96.52169250616383,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5780,'2018-12-07T00:02:16.959Z',NULL,116,2,114.42485125407785,4.58,143.76605567132455,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5781,'2020-03-14T17:15:16.236Z',NULL,98,1,112.41825444654248,4.5,141.11637814393237,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5782,'2020-03-21T19:01:48.121Z',NULL,149,1,69.15415037577924,2.77,55.23734145599108,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5783,'2020-01-31T21:14:05.924Z',NULL,6,2,97.43621265344382,3.9,120.95550861493402,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5784,'2019-07-04T00:42:06.169Z',NULL,108,4,50.094887884945365,2,67.15542839872786,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5785,'2019-10-26T05:07:29.458Z',NULL,98,3,112.41825444654248,4.5,106.9864949108827,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5786,'2019-01-09T18:09:53.894Z',NULL,58,12,78.14578007078882,3.13,78.72184446490623,789); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5787,'2020-01-03T14:47:41.000Z',NULL,133,2,68.4819702983371,2.74,63.84777404031888,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5788,'2016-11-05T23:38:19.192Z',NULL,43,3,50.90170136783837,2.04,41.83085227902899,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5789,'2018-02-01T00:27:32.027Z',2.8692873138265544,177,1,128.8192981944599,5.15,106.20843440239142,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5790,'2018-07-11T18:07:15.259Z',NULL,65,5,68.22769726470014,2.73,58.95177273530777,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5791,'2017-08-11T04:09:02.696Z',NULL,70,8,38.32866920597319,1.53,52.632588292810254,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5792,'2019-01-14T19:02:50.765Z',7.369287313826554,65,2,68.22769726470014,2.73,71.84160738136657,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5793,'2017-10-16T18:19:06.414Z',NULL,45,7,78.6996782532274,3.15,96.63459449573034,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5794,'2018-09-17T04:16:07.773Z',NULL,136,5,105.20402317157343,4.21,108.8308654245229,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5795,'2017-01-20T00:16:50.070Z',NULL,15,2,25.09876359271891,1,30.25614768954379,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5796,'2019-12-13T16:53:04.942Z',NULL,128,2,75.08016314504417,3,66.53347086085708,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5797,'2017-03-31T12:01:12.679Z',NULL,83,1,54.58418555091025,2.18,43.60323458099945,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5798,'2017-12-20T20:57:04.045Z',NULL,134,2,28.328223666657742,1.13,31.18583700898653,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5799,'2019-12-17T09:04:11.886Z',NULL,72,2,142.20381898788685,5.69,115.8141252129481,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5800,'2017-08-15T15:17:08.100Z',NULL,2,6,70.07989613071763,2.8,68.12855134335365,790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5801,'2018-01-20T19:30:16.109Z',NULL,23,1,116.86672609493307,5.55,136.63973379037677,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5802,'2018-08-14T04:25:49.219Z',NULL,76,5,63.82421061366486,3.03,57.08905103411693,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5803,'2018-12-23T15:58:50.001Z',NULL,155,2,43.77574310182776,2.08,41.18376042832998,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5804,'2019-10-12T01:20:19.111Z',NULL,138,7,113.95078476718615,5.41,156.52352516298825,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5805,'2018-02-23T11:03:22.585Z',NULL,46,2,118.0495173798411,5.61,152.15801775402733,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5806,'2017-12-11T21:15:31.633Z',NULL,19,2,42.67116731707548,2.03,53.4069078617939,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5807,'2019-01-16T14:22:32.326Z',NULL,35,2,71.53687730741436,3.4,79.20815545020584,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5808,'2018-04-30T14:09:08.938Z',NULL,123,3,110.93145648834248,5.27,88.59694747997978,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5809,'2017-12-17T03:45:09.149Z',NULL,142,1,46.8990203814063,2.23,56.8105042340755,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5810,'2020-03-11T03:36:03.851Z',NULL,166,1,38.30449564120193,1.82,52.50721115935455,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5811,'2019-05-07T16:11:53.765Z',NULL,15,5,37.648145389078365,1.79,42.881762680995955,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5812,'2019-03-08T18:30:59.417Z',NULL,81,1,43.9329842322118,2.09,60.74452864710975,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5813,'2017-06-13T14:17:12.887Z',NULL,93,9,33.212427711035886,1.58,32.61456081524747,791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5814,'2018-08-19T16:11:01.242Z',NULL,92,10,124.89242686579996,7.49,142.02561899183598,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5815,'2019-10-31T22:51:57.054Z',NULL,3,8,53.08311732230858,3.18,50.17282346303783,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5816,'2018-08-21T06:31:13.761Z',NULL,5,100,124.1176465275534,7.45,137.24829286886856,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5817,'2017-05-28T08:37:22.843Z',NULL,68,5,76.82895921539838,4.61,108.08942132351908,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5818,'2019-01-23T08:40:37.155Z',4.86399589522987,14,2,37.648145389078365,2.26,33.403944772878766,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5819,'2019-10-18T01:49:37.403Z',NULL,65,7,68.22769726470014,4.09,84.04698871781272,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5820,'2019-12-04T08:35:58.890Z',NULL,16,2,66.11029954877317,3.97,91.92936532281831,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5821,'2020-01-26T23:46:46.941Z',4.86399589522987,43,3,76.35255205175756,4.58,58.83680105032029,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5822,'2019-10-02T13:59:11.716Z',NULL,145,8,61.1983004605443,3.67,85.69707089783273,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5823,'2019-08-11T22:28:31.778Z',NULL,186,8,98.9770008385166,5.94,93.63168476169007,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5824,'2019-09-15T23:20:59.881Z',NULL,109,4,119.04991068193098,7.14,118.25560022946152,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5825,'2019-09-01T22:45:11.080Z',NULL,140,4,66.80312547576881,4.01,57.06464425553845,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5826,'2017-06-17T07:36:27.154Z',NULL,197,7,46.76407124473339,2.81,63.26743295926361,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5827,'2019-07-17T18:39:45.592Z',NULL,71,6,82.80381898788684,4.97,108.4879532622381,792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5828,'2020-03-18T14:47:42.702Z',NULL,99,1,67.83486485383094,3.48,52.457897038876894,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5829,'2019-06-16T19:21:34.024Z',NULL,111,6,55.526746186906664,2.85,70.50357490892014,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5830,'2017-12-10T05:33:08.242Z',NULL,10,2,31.78621880685793,1.63,33.62938032592858,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5831,'2019-11-08T04:58:47.932Z',NULL,155,2,43.77574310182776,2.24,43.81022635238998,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5832,'2018-03-14T06:06:05.234Z',NULL,109,0,119.04991068193098,6.1,156.63210347520587,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5833,'2019-12-09T00:51:32.997Z',NULL,141,1,126.20312547576883,6.47,172.94393716786377,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5834,'2018-02-11T10:49:16.120Z',NULL,78,1,41.616917284159726,2.13,35.262201942564246,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5835,'2019-10-28T16:48:05.137Z',NULL,110,4,55.526746186906664,2.85,76.68724677641458,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5836,'2018-11-30T01:31:26.983Z',NULL,37,2,80.10774204020768,4.11,90.5123737199386,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5837,'2019-05-01T22:28:28.225Z',NULL,7,3,148.22900526552291,7.6,129.27568770189197,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5838,'2019-03-10T11:26:05.550Z',5.650550592702163,97,1,112.41825444654248,5.76,148.16312219170473,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5839,'2018-10-03T15:08:50.866Z',NULL,16,6,66.11029954877317,3.39,93.17427140257254,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5840,'2019-03-05T12:28:07.899Z',NULL,144,1,61.1983004605443,3.14,47.10375204585615,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5841,'2017-06-18T23:21:32.675Z',NULL,17,4,53.290720311951766,2.73,70.45344548637155,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5842,'2019-12-24T19:12:25.607Z',NULL,111,2,55.526746186906664,2.85,43.022503196908914,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5843,'2017-10-29T08:34:55.969Z',NULL,96,4,69.88096572393577,3.58,70.48348208405132,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5844,'2019-08-14T04:52:04.706Z',NULL,27,3,127.52471180754115,6.54,130.35444055200833,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5845,'2018-05-18T20:06:05.655Z',NULL,81,2,43.9329842322118,2.25,59.689969658629884,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5846,'2018-12-25T13:09:30.646Z',NULL,149,1,69.15415037577924,3.54,78.15589708691476,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5847,'2017-07-26T09:32:27.090Z',NULL,163,4,22.378598800110105,1.15,25.42643043848987,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5848,'2017-06-11T16:35:53.663Z',NULL,17,5,53.290720311951766,2.73,59.03303807469206,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5849,'2018-12-31T13:12:21.285Z',6.431036363464435,46,2,118.0495173798411,6.05,108.09115804345865,793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5850,'2019-10-15T23:24:17.885Z',NULL,134,5,42.49233549998661,2.55,56.555829502950736,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5851,'2016-06-26T01:18:50.596Z',NULL,105,5,35.149014295079674,2.11,44.67580171636105,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5852,'2019-06-17T22:22:07.941Z',6.431036363464435,175,7,117.3248094335266,7.04,105.98971892970242,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5853,'2018-05-14T01:38:19.943Z',NULL,54,3,62.09360840402396,3.73,84.14453961696789,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5854,'2018-01-22T13:46:36.456Z',NULL,29,1,123.57448218067185,7.41,127.57409956412084,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5855,'2018-06-04T22:18:40.436Z',NULL,57,3,122.4223933583994,7.35,136.97273408909086,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5856,'2018-01-25T03:19:04.383Z',NULL,10,1,47.6793282102869,2.86,66.97193686953811,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5857,'2018-10-10T16:18:14.016Z',NULL,186,3,98.9770008385166,5.94,100.45246053840874,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5858,'2020-02-26T01:22:08.397Z',NULL,188,1,33.87738254731509,2.03,40.469967860743054,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5859,'2020-04-12T12:48:22.655Z',NULL,144,2,61.1983004605443,3.67,80.69483406692068,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5860,'2018-11-22T07:44:38.209Z',NULL,36,2,130.93687730741433,7.86,145.25958626666034,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5861,'2019-02-10T15:50:29.248Z',1.931036363464435,199,1,115.4300138092855,6.93,158.80263591000926,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5862,'2019-10-15T14:09:29.089Z',NULL,94,5,109.21864156655383,6.55,98.50007400586985,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5863,'2019-08-07T08:31:25.906Z',NULL,154,8,81.87529553312261,4.91,68.17253397548797,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5864,'2020-02-07T12:19:28.921Z',NULL,74,2,51.12804227386549,3.07,53.89077158987277,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5865,'2020-03-12T06:42:56.268Z',NULL,22,1,32.136779940663494,1.93,34.93296649783776,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5866,'2020-01-24T14:42:46.131Z',NULL,92,2,124.89242686579996,7.49,138.0861047088773,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5867,'2019-10-05T23:16:39.343Z',NULL,67,6,41.24480890795779,2.47,36.62580028784522,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5868,'2019-07-27T04:43:47.253Z',NULL,153,4,66.79892314178237,4.01,84.07099772200442,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5869,'2018-01-21T22:29:59.859Z',NULL,85,2,54.90104734428525,3.29,54.34943120430286,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5870,'2020-03-06T18:00:42.721Z',NULL,22,1,32.136779940663494,1.93,43.27824432962827,794); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5871,'2019-03-15T04:45:12.753Z',NULL,148,1,138.9817182254566,7.64,146.32871251523068,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5872,'2018-08-13T12:45:58.348Z',NULL,91,8,65.09432810381134,3.58,67.97007706591438,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5873,'2019-09-14T23:29:24.650Z',NULL,25,5,68.62263967182464,3.77,72.17921757335802,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5874,'2016-08-22T15:53:38.977Z',NULL,92,5,83.2616179105333,4.58,93.62098748093636,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5875,'2017-05-12T04:29:59.712Z',NULL,176,4,38.616539622351056,2.12,46.34086901927787,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5876,'2019-04-26T18:55:23.900Z',NULL,28,3,68.12471180754113,3.75,51.817946642500665,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5877,'2019-10-09T01:22:37.455Z',NULL,137,5,67.77247956807186,3.73,74.3188922305141,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5878,'2019-03-27T04:23:59.453Z',7.374032160405169,170,1,105.07665741496471,5.78,123.51117894103076,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5879,'2019-06-25T17:54:50.643Z',7.374032160405169,106,6,52.723521442619514,2.9,67.77858198412358,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5880,'2019-02-09T03:31:48.175Z',NULL,27,2,127.52471180754115,7.01,151.081363221531,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5881,'2018-06-29T14:52:11.374Z',NULL,134,6,42.49233549998661,2.34,50.843641262936146,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5882,'2019-05-16T03:19:29.683Z',NULL,65,4,68.22769726470014,3.75,61.2747531660735,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5883,'2018-01-26T05:52:34.267Z',NULL,142,2,70.34853057210945,3.87,65.66807141705895,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5884,'2019-01-23T16:41:19.609Z',NULL,7,2,148.22900526552291,8.15,185.4721086567364,795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5885,'2018-02-13T05:20:34.864Z',NULL,61,2,23.537915510955656,1.41,28.811601578141588,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5886,'2018-07-02T03:40:17.935Z',NULL,93,6,49.81864156655383,2.99,54.78958830244777,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5887,'2018-07-04T10:56:41.098Z',2.874032160405169,64,6,143.4221774571866,8.61,168.00709787471826,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5888,'2017-05-18T07:52:23.301Z',NULL,99,3,45.22324323588729,2.71,63.76162623702024,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5889,'2020-02-20T18:24:02.797Z',NULL,146,1,126.04727121216614,7.56,149.29261665651987,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5890,'2019-01-23T13:43:58.033Z',NULL,22,1,32.136779940663494,1.93,31.22590170308261,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5891,'2016-12-03T11:24:42.676Z',NULL,96,1,69.88096572393577,4.19,79.25965537608204,797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5892,'2016-08-12T18:07:58.155Z',NULL,188,7,22.584921698210056,1.3,24.107063533333793,798); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5893,'2018-12-06T08:17:59.037Z',NULL,167,2,97.70449564120193,5.62,135.62584741876262,798); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5894,'2019-01-31T11:32:41.252Z',NULL,186,1,98.9770008385166,5.69,109.73163498140352,798); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5895,'2019-08-13T08:20:32.258Z',NULL,70,3,57.493003808959784,3.31,79.12771024670135,798); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5896,'2017-07-02T02:05:32.000Z',NULL,56,2,24.24752383956291,1.39,19.02738237040518,798); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5897,'2020-04-14T16:02:37.247Z',NULL,177,1,128.8192981944599,6.44,173.08914216059685,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5898,'2017-05-14T02:03:19.963Z',NULL,24,3,74.87095783152942,3.74,65.75130900218635,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5899,'2019-03-18T13:31:38.401Z',NULL,190,1,128.5841852057933,6.43,105.83478626820384,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5900,'2017-10-27T15:47:09.540Z',NULL,74,4,34.08536151591033,1.7,46.66301129612853,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5901,'2018-10-02T01:46:29.914Z',NULL,2,5,105.11984419607644,5.26,142.41890431946342,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5902,'2019-02-11T09:16:45.812Z',NULL,90,2,123.1196127553999,6.16,170.01403120856344,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5903,'2017-03-29T10:50:19.661Z',NULL,109,1,79.36660712128732,3.97,79.70506161106836,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5904,'2019-12-18T15:06:53.335Z',NULL,141,1,126.20312547576883,6.31,165.79903676754302,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5905,'2018-06-16T11:08:04.818Z',NULL,189,3,93.27738254731509,4.66,97.80227717789448,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5906,'2019-01-28T16:31:01.496Z',NULL,160,1,47.59120561297272,2.38,53.52849101725887,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5907,'2020-01-26T18:56:31.302Z',NULL,91,1,65.09432810381134,3.25,62.69397016477501,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5908,'2018-02-07T03:04:44.982Z',NULL,80,2,54.91325681036414,2.75,69.70444088996585,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5909,'2018-07-09T14:20:35.354Z',5.5945323859073,150,5,128.55415037577922,6.43,158.12550074589242,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5910,'2018-10-12T11:26:32.046Z',NULL,186,6,98.9770008385166,4.95,112.13384226933631,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5911,'2018-03-22T11:51:30.098Z',NULL,75,1,125.81276373452337,6.29,152.53408862031768,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5912,'2019-01-11T22:24:30.716Z',NULL,8,1,98.83823503993958,4.94,108.7225765537312,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5913,'2019-05-26T16:50:51.019Z',NULL,4,4,110.98767151282252,5.55,155.72923100771135,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5914,'2017-06-17T13:55:13.037Z',NULL,175,6,78.21653962235106,3.91,70.58804303381429,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5915,'2019-02-24T06:23:11.436Z',NULL,164,1,92.96789820016517,4.65,116.1098487308002,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5916,'2020-03-31T07:45:57.359Z',NULL,22,1,32.136779940663494,1.61,32.32962511080716,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5917,'2019-02-03T01:14:01.227Z',NULL,25,2,68.62263967182464,3.43,69.26150351254586,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5918,'2019-09-22T02:46:50.831Z',NULL,135,5,45.80402317157342,2.29,35.696186546477975,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5919,'2018-05-20T16:38:24.830Z',NULL,98,4,112.41825444654248,5.62,123.5322658993817,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5920,'2019-11-16T13:47:15.240Z',NULL,26,3,68.12471180754113,3.41,59.27858985720847,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5921,'2019-04-08T04:04:41.720Z',NULL,1,3,44.19489169601981,2.21,43.7425531329013,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5922,'2018-06-01T10:21:20.030Z',NULL,89,6,63.719612755399886,3.19,73.29217550706251,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5923,'2018-06-21T00:46:12.829Z',NULL,72,6,142.20381898788685,7.11,184.0580420931261,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5924,'2018-04-08T02:39:45.742Z',NULL,73,2,71.6287722595695,3.58,69.05121842753954,799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5925,'2018-01-30T23:13:05.447Z',NULL,161,1,47.59120561297272,1.9,45.911978902489935,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5926,'2019-07-19T19:55:39.499Z',NULL,121,4,40.44528328808107,1.62,43.92170453854196,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5927,'2018-02-02T05:58:47.305Z',1.0945323859072995,94,2,109.21864156655383,4.37,145.55626053149686,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5928,'2019-01-11T22:28:52.714Z',NULL,97,2,112.41825444654248,4.5,107.96095158727026,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5929,'2020-01-06T18:11:34.637Z',NULL,78,2,41.616917284159726,1.66,35.59969112552435,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5930,'2017-10-04T04:36:55.453Z',NULL,47,5,56.05108065511453,2.24,66.41520176540455,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5931,'2019-11-21T20:39:34.060Z',NULL,39,3,114.58158180283459,4.58,111.6886449940996,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5932,'2018-08-25T23:58:50.145Z',NULL,44,6,76.35255205175756,3.05,103.1311337519177,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5933,'2020-03-11T02:32:11.089Z',7.155051292374901,81,1,43.9329842322118,1.76,32.97046723401977,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5934,'2018-10-02T01:37:24.213Z',NULL,200,7,73.20395711799151,2.93,70.15697609934415,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5935,'2019-01-29T23:30:09.837Z',NULL,95,2,49.81864156655383,1.99,61.83517314755794,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5936,'2017-06-18T00:57:42.161Z',NULL,112,6,27.55292434006023,1.1,29.66529200225518,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5937,'2020-03-09T05:09:48.190Z',NULL,160,1,47.59120561297272,1.9,48.85645932523845,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5938,'2019-02-18T15:27:14.100Z',NULL,75,1,125.81276373452337,5.03,174.8429748516965,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5939,'2019-09-06T02:15:01.888Z',NULL,160,3,47.59120561297272,1.9,52.38237912972948,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5940,'2020-02-06T15:54:10.453Z',NULL,66,1,136.16126271106958,5.45,158.79652191691196,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5941,'2017-07-28T17:12:25.540Z',NULL,5,6,82.7450976850356,3.31,100.25649827553072,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5942,'2017-12-10T16:36:55.505Z',NULL,120,2,55.668009001928525,2.23,51.61429248368635,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5943,'2017-12-09T22:25:10.589Z',NULL,168,1,79.28781795635516,3.17,74.90856424782324,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5944,'2016-10-10T19:27:43.091Z',NULL,120,5,55.668009001928525,2.23,74.28924969587982,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5945,'2018-05-31T21:07:57.024Z',2.6550512923749,38,5,66.06937283839378,2.64,77.74922034903281,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5946,'2018-12-02T00:55:09.498Z',NULL,38,2,66.06937283839378,2.64,76.68509296384647,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5947,'2018-08-30T07:48:06.917Z',NULL,111,4,55.526746186906664,2.22,47.53209523695625,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5948,'2018-05-27T14:38:31.031Z',NULL,100,2,67.83486485383094,2.71,61.96490505603296,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5949,'2020-04-12T21:35:43.656Z',NULL,132,2,127.88197029833711,5.12,99.71166126555526,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5950,'2018-12-28T18:44:41.279Z',4.959973064876625,190,2,128.5841852057933,5.14,169.7761356445837,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5951,'2020-01-22T08:49:39.277Z',NULL,123,2,110.93145648834248,4.44,90.88264216206788,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5952,'2018-08-15T18:29:22.921Z',NULL,41,6,63.50890855689462,2.54,54.60412089138913,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5953,'2017-06-07T14:22:23.580Z',NULL,109,6,79.36660712128732,3.17,105.40046091062058,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5954,'2019-06-16T07:27:20.017Z',NULL,189,6,93.27738254731509,3.73,97.75601496451416,800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5955,'2018-01-09T23:57:16.001Z',NULL,19,2,64.00675097561322,3.84,55.770001374647705,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5956,'2020-02-07T08:36:15.699Z',NULL,53,1,44.27587240151534,2.66,38.8764961442934,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5957,'2018-12-31T19:01:29.955Z',NULL,37,1,80.10774204020768,4.81,100.50731433672522,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5958,'2016-10-09T21:21:22.424Z',NULL,117,5,36.683234169385244,2.2,42.406595656917354,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5959,'2017-12-28T05:44:07.191Z',NULL,118,2,38.418408731319154,2.31,35.365750979964396,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5960,'2019-10-24T09:39:41.507Z',NULL,16,5,66.11029954877317,3.97,90.10155877828963,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5961,'2019-10-01T10:03:20.786Z',4.959973064876625,107,5,50.094887884945365,3.01,51.41907710269298,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5962,'2017-04-23T13:06:46.855Z',NULL,168,3,79.28781795635516,4.76,105.69767531702861,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5963,'2019-03-19T22:11:16.195Z',NULL,190,1,128.5841852057933,7.72,175.44810938841175,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5964,'2019-05-21T19:49:21.138Z',NULL,117,3,55.024851254077866,3.3,53.90136424300463,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5965,'2018-04-22T00:37:44.141Z',NULL,149,3,69.15415037577924,4.15,75.68904105129745,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5966,'2018-11-23T08:08:12.962Z',NULL,117,4,55.024851254077866,3.3,74.57660781551056,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5967,'2018-06-12T11:45:21.683Z',NULL,173,8,122.3651993029456,7.34,159.9901228560925,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5968,'2020-01-27T06:44:58.376Z',NULL,97,2,112.41825444654248,6.75,90.90308692999423,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5969,'2017-03-09T17:27:48.545Z',NULL,166,1,25.536330427467956,1.53,23.086949094292287,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5970,'2018-07-17T10:21:35.955Z',NULL,58,5,78.14578007078882,4.69,105.90944914844572,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5971,'2018-08-03T12:59:34.261Z',NULL,97,9,112.41825444654248,6.75,141.1821475739884,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5972,'2018-06-12T05:40:00.035Z',NULL,153,7,66.79892314178237,4.01,68.20132361862441,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5973,'2019-08-04T18:49:46.591Z',NULL,78,5,41.616917284159726,2.5,44.25427597630724,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5974,'2018-10-14T18:16:06.732Z',NULL,76,6,63.82421061366486,3.83,78.79155117872969,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5975,'2020-04-04T02:33:23.592Z',NULL,84,3,81.87627832636537,4.91,107.34071395908981,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5976,'2018-08-12T10:33:47.263Z',NULL,63,5,133.5202262591817,8.01,175.4872847593815,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5977,'2020-01-27T14:35:41.904Z',NULL,90,2,123.1196127553999,7.39,145.3133524643118,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5978,'2018-09-01T04:13:29.092Z',NULL,98,5,112.41825444654248,6.75,139.9621012004267,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5979,'2017-10-01T14:52:25.625Z',8.351780505676057,189,4,62.18492169821006,3.73,80.35364988408422,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5980,'2018-06-11T07:17:11.540Z',NULL,191,5,128.5841852057933,7.72,131.01068357363388,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5981,'2019-03-21T06:14:26.630Z',NULL,200,1,73.20395711799151,4.39,64.95167823211047,801); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5982,'2020-02-01T10:19:24.386Z',NULL,137,2,67.77247956807186,4.24,78.01114514753198,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5983,'2019-06-15T02:54:34.433Z',61.69684269960571,51,4,75.65058751905018,4.73,59.47258532053183,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5984,'2018-03-14T13:19:08.569Z',NULL,53,1,44.27587240151534,2.77,40.0116644456912,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5985,'2020-02-11T21:47:59.573Z',NULL,126,2,125.24398120308456,7.83,118.39536163641252,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5986,'2016-12-15T06:09:42.741Z',NULL,118,2,38.418408731319154,2.4,41.46075564444182,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5987,'2018-01-09T15:13:00.530Z',NULL,67,2,41.24480890795779,2.58,55.90502274508073,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5988,'2018-04-11T06:14:00.159Z',NULL,117,2,55.024851254077866,3.44,74.71845815923498,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5989,'2018-07-04T23:39:08.711Z',NULL,78,4,41.616917284159726,2.6,41.01194820779842,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5990,'2017-10-10T21:58:17.271Z',NULL,140,4,44.53541698384588,2.78,51.72805081497997,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5991,'2019-01-06T01:54:26.127Z',NULL,74,1,51.12804227386549,3.2,52.68733404046742,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5992,'2016-07-01T04:36:23.008Z',NULL,45,4,78.6996782532274,4.92,95.97163028076059,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5993,'2019-07-12T18:19:05.527Z',NULL,192,5,69.18418520579327,4.32,82.47089122806021,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5994,'2019-04-29T22:57:51.058Z',NULL,37,2,80.10774204020768,5.01,112.40294889547805,803); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5995,'2019-08-13T20:55:35.063Z',NULL,133,4,68.4819702983371,2.74,55.51364235096133,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5996,'2017-03-27T23:14:52.140Z',NULL,164,1,61.978598800110106,2.48,57.77449632130188,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5997,'2017-10-24T02:26:41.442Z',NULL,199,4,76.95334253952366,3.08,77.86962464229578,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5998,'2018-10-15T05:36:58.976Z',NULL,91,4,65.09432810381134,2.6,85.31856998136593,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (5999,'2018-04-23T01:57:12.826Z',NULL,22,2,32.136779940663494,1.29,27.406333838848962,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6000,'2019-08-24T02:15:13.241Z',NULL,3,4,53.08311732230858,2.12,62.46661713998281,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6001,'2016-09-25T04:39:34.227Z',NULL,51,4,50.433725012700116,2.02,66.7006126508717,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6002,'2018-04-11T07:00:52.520Z',3.1132595550391513,100,3,67.83486485383094,2.71,50.668083626174806,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6003,'2018-02-15T12:03:41.979Z',NULL,164,2,92.96789820016517,3.72,106.23928478040752,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6004,'2018-11-12T02:15:31.509Z',NULL,172,3,122.3651993029456,4.89,91.4088143575382,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6005,'2019-05-06T14:43:25.524Z',NULL,137,3,67.77247956807186,2.71,60.94302644240636,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6006,'2019-07-11T17:03:17.189Z',NULL,108,5,50.094887884945365,2,43.80814060228239,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6007,'2019-01-26T20:23:12.433Z',NULL,54,2,62.09360840402396,2.48,76.10681509592476,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6008,'2016-11-26T23:49:01.244Z',NULL,185,3,26.384667225677738,1.06,24.35018332462676,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6009,'2018-02-01T13:49:22.943Z',NULL,33,2,47.7448636959614,1.91,46.40363759533506,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6010,'2019-11-11T17:31:37.925Z',NULL,62,3,133.5202262591817,5.34,136.03134217786297,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6011,'2019-10-08T08:37:34.657Z',NULL,78,5,41.616917284159726,1.66,40.95682376234315,804); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6012,'2018-11-16T20:05:06.922Z',NULL,91,4,65.09432810381134,0,67.46573086872192,807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6013,'2018-10-23T09:07:19.622Z',NULL,21,7,60.57501609456816,0,53.68645931567135,807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6014,'2018-11-09T19:28:14.776Z',NULL,38,3,66.06937283839378,0,58.43904571536155,807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6015,'2018-07-15T03:16:03.061Z',NULL,57,4,122.4223933583994,0,161.08418957350958,807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6016,'2017-12-13T08:26:36.882Z',NULL,134,1,28.328223666657742,0,25.50402504623652,807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6017,'2020-02-18T21:07:00.013Z',NULL,60,1,29.80214751859149,0,28.741132573567178,807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6018,'2018-01-20T23:05:20.424Z',NULL,63,2,133.5202262591817,5.34,139.43857148652899,808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6019,'2019-10-08T08:47:38.813Z',NULL,118,7,57.627613096978735,2.31,48.78657515661421,808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6020,'2016-09-28T07:41:51.816Z',7.179303335159719,168,6,79.28781795635516,3.17,81.29430640653379,808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6021,'2018-12-30T04:54:46.151Z',NULL,87,2,117.25536340498041,4.69,122.13259825659577,808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6022,'2019-01-18T19:33:43.788Z',NULL,157,2,139.8942352373801,8.39,127.87326090353541,809); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6023,'2016-10-13T08:22:48.031Z',NULL,43,4,50.90170136783837,3.05,47.32293152626165,809); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6024,'2020-03-27T22:40:26.263Z',NULL,173,1,122.3651993029456,7.34,143.19468445460913,809); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6025,'2019-02-13T00:10:30.449Z',NULL,75,1,125.81276373452337,7.55,100.19616347952721,809); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6026,'2019-09-26T01:53:21.274Z',NULL,142,6,70.34853057210945,4.4,85.24605193411954,811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6027,'2019-08-10T16:26:18.540Z',NULL,110,6,55.526746186906664,3.47,78.45443625178102,811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6028,'2019-12-12T04:35:12.336Z',NULL,16,1,66.11029954877317,4.3,67.91416764519909,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6029,'2020-03-28T22:35:28.852Z',NULL,74,1,51.12804227386549,3.32,59.41264015742117,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6030,'2017-05-06T02:43:19.744Z',NULL,118,4,38.418408731319154,2.5,49.094564664771994,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6031,'2019-11-01T06:47:56.798Z',NULL,70,3,57.493003808959784,3.74,47.227072168448046,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6032,'2017-10-26T15:29:12.705Z',NULL,189,5,62.18492169821006,4.04,89.16918237921055,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6033,'2019-10-04T22:15:31.286Z',NULL,194,5,50.38077396807232,3.27,69.15424996380361,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6034,'2018-09-08T18:28:27.318Z',NULL,173,3,122.3651993029456,7.95,132.3582434501038,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6035,'2018-11-22T08:13:01.345Z',NULL,8,3,98.83823503993958,6.42,106.6819098629272,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6036,'2017-10-30T17:00:04.791Z',NULL,4,7,73.99178100854834,4.81,63.972574596499165,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6037,'2017-12-02T11:04:34.154Z',NULL,147,2,44.4315141414441,2.89,45.644817955370634,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6038,'2017-09-08T21:36:40.250Z',NULL,56,6,24.24752383956291,1.58,34.912204583820674,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6039,'2018-09-04T14:32:50.017Z',NULL,167,6,97.70449564120193,6.35,86.36483196462044,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6040,'2018-05-17T20:18:47.927Z',NULL,35,5,71.53687730741436,4.65,97.64639144191791,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6041,'2019-04-13T04:59:35.601Z',NULL,17,4,79.93608046792765,5.2,63.4871831549952,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6042,'2018-07-13T16:12:10.907Z',NULL,81,5,43.9329842322118,2.86,50.55360831051375,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6043,'2017-12-20T03:42:17.922Z',NULL,140,2,44.53541698384588,2.89,49.965687513516045,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6044,'2017-10-29T04:01:56.027Z',NULL,143,7,40.7988669736962,2.65,34.599975840784346,813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6045,'2020-03-25T02:09:50.091Z',NULL,91,1,65.09432810381134,4.07,72.77102434161249,814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6046,'2019-11-11T21:00:54.525Z',7.7975962650405055,112,3,41.329386510090345,2.58,50.742276778717695,814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6047,'2018-09-14T22:05:38.788Z',NULL,41,3,63.50890855689462,3.97,86.62173489351001,814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6048,'2017-09-24T23:46:33.693Z',NULL,128,5,50.053442096696116,3.13,55.91326761434379,814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6049,'2019-03-18T13:12:01.050Z',NULL,115,1,77.91196471862148,0,67.6402048497571,815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6050,'2019-12-14T23:36:16.957Z',NULL,193,1,50.38077396807232,3.02,49.78464143756532,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6051,'2018-06-12T05:56:04.830Z',NULL,26,5,68.12471180754113,4.09,80.26109575015904,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6052,'2019-05-10T09:44:25.463Z',NULL,151,3,91.61302306843446,5.5,105.53650744080153,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6053,'2020-04-13T05:50:07.434Z',NULL,166,2,38.30449564120193,2.3,40.002714602312246,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6054,'2019-04-24T17:39:45.082Z',NULL,110,3,55.526746186906664,3.33,69.44973329871469,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6055,'2018-04-08T08:10:24.097Z',NULL,190,4,128.5841852057933,7.72,154.26607882801667,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6056,'2017-02-02T13:47:47.919Z',NULL,65,2,45.4851315098001,2.73,51.7296008773697,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6057,'2016-06-06T19:59:47.675Z',NULL,66,8,90.77417514071306,5.45,90.16058036106392,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6058,'2017-02-14T12:08:50.015Z',NULL,197,2,46.76407124473339,2.81,56.13927483232519,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6059,'2017-03-11T17:52:04.574Z',NULL,139,1,51.18512212784679,3.07,62.27461319442781,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6060,'2020-02-17T20:03:00.541Z',NULL,175,2,117.3248094335266,7.04,162.75740568053558,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6061,'2019-06-20T19:28:45.574Z',NULL,109,6,119.04991068193098,7.14,145.55627428841004,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6062,'2018-08-03T22:32:31.768Z',NULL,199,5,115.4300138092855,6.93,138.57062890483738,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6063,'2019-08-21T05:12:02.571Z',NULL,73,5,71.6287722595695,4.3,60.279892908785385,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6064,'2019-04-26T00:22:11.840Z',NULL,147,3,66.64727121216615,4,94.10338393254774,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6065,'2016-12-16T07:42:44.635Z',NULL,42,3,25.336071424606207,1.52,31.21251200511831,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6066,'2016-08-25T10:31:01.193Z',NULL,63,7,89.0134841727878,5.34,116.36449287946726,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6067,'2018-03-13T16:39:42.636Z',NULL,166,1,38.30449564120193,2.3,53.039988261388885,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6068,'2017-08-10T06:17:20.247Z',8.260767416018307,55,5,63.84752383956291,3.83,89.5842167743253,816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6069,'2019-08-27T19:28:45.621Z',NULL,57,7,122.4223933583994,7.35,117.21675971138515,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6070,'2019-11-22T15:57:24.299Z',NULL,29,3,123.57448218067185,7.41,94.28095024762695,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6071,'2020-03-27T18:47:38.200Z',NULL,130,1,75.02573869315137,4.5,90.36797406721703,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6072,'2017-10-19T03:50:14.021Z',NULL,56,4,24.24752383956291,1.45,19.111440479530625,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6073,'2019-01-29T20:01:26.471Z',NULL,29,1,123.57448218067185,7.41,118.10065282777123,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6074,'2019-04-16T20:54:06.759Z',NULL,156,2,30.615804149046195,1.84,34.66608891109541,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6075,'2018-01-03T16:00:58.848Z',NULL,176,2,57.92480943352658,3.48,63.40514491036027,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6076,'2016-09-27T12:08:18.751Z',NULL,32,3,71.42990913064094,4.29,98.4399456260945,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6077,'2019-02-19T16:18:34.904Z',NULL,53,1,44.27587240151534,2.66,34.50493497629433,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6078,'2019-06-29T20:44:31.982Z',NULL,82,5,60.89545738030947,3.65,69.81208543688945,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6079,'2018-02-15T08:11:33.723Z',NULL,165,2,38.30449564120193,2.3,31.1195904733373,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6080,'2018-09-03T22:25:48.649Z',NULL,38,5,66.06937283839378,3.96,84.24035013520358,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6081,'2019-04-29T23:16:46.059Z',NULL,86,2,92.31436670850246,5.54,105.27070558093276,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6082,'2020-03-16T15:59:05.167Z',NULL,150,1,128.55415037577922,7.71,125.04219844875632,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6083,'2017-11-01T09:46:33.245Z',NULL,119,2,28.95876219768256,1.74,22.361464384504714,817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6084,'2017-11-27T17:03:30.378Z',NULL,67,2,27.496539271971862,1.1,35.311421034156794,818); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6085,'2018-09-23T18:08:27.134Z',NULL,151,4,91.61302306843446,3.66,112.81292774920666,818); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6086,'2017-10-06T05:05:05.296Z',NULL,29,6,82.3829881204479,3.3,100.31433555643997,818); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6087,'2020-02-09T08:40:44.078Z',NULL,142,1,70.34853057210945,2.81,59.03488720490635,818); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6088,'2018-12-16T11:26:57.673Z',6.478200861879646,21,1,60.57501609456816,2.42,65.47943169500714,818); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6089,'2018-09-13T05:12:20.166Z',NULL,20,3,37.32649625046575,1.61,36.72731696986486,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6090,'2017-04-03T08:46:04.071Z',NULL,125,2,53.59799471993963,2.3,46.41240965326823,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6091,'2020-02-26T22:18:07.419Z',NULL,10,1,47.6793282102869,2.05,49.43337223173885,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6092,'2017-06-21T16:27:28.817Z',NULL,49,3,87.61910559549149,3.77,82.0178057018651,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6093,'2017-11-30T00:01:44.079Z',NULL,90,2,82.07974183693327,3.53,76.18677645826682,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6094,'2019-06-26T06:35:39.421Z',NULL,108,5,50.094887884945365,2.15,57.109551222896215,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6095,'2019-04-18T07:48:10.132Z',NULL,69,2,73.38772304360626,3.16,98.35843203954677,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6096,'2019-07-26T01:36:09.506Z',NULL,2,4,105.11984419607644,4.52,101.9899655349899,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6097,'2019-01-27T21:25:22.142Z',NULL,65,2,68.22769726470014,2.93,64.4143708911696,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6098,'2019-06-12T22:25:21.184Z',NULL,19,5,64.00675097561322,2.75,55.896906147681506,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6099,'2018-11-25T08:37:42.635Z',NULL,78,2,41.616917284159726,1.79,48.911060657012555,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6100,'2018-10-29T19:11:43.054Z',NULL,173,6,122.3651993029456,5.26,171.03511606525842,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6101,'2018-03-19T00:30:25.357Z',NULL,26,1,68.12471180754113,2.93,78.80136085799838,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6102,'2019-03-24T04:05:22.558Z',NULL,115,1,77.91196471862148,3.35,105.19870268484814,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6103,'2019-10-16T16:48:49.548Z',NULL,180,6,68.32408657333919,2.94,88.12630713711856,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6104,'2020-03-14T08:05:00.800Z',NULL,9,1,87.46968147789205,3.76,76.14227231417703,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6105,'2018-10-23T00:10:53.392Z',NULL,41,4,63.50890855689462,2.73,77.39613044889514,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6106,'2019-08-01T17:36:31.244Z',NULL,14,5,37.648145389078365,1.62,28.72487675766701,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6107,'2018-07-03T20:15:20.666Z',NULL,99,5,67.83486485383094,2.92,93.81682543333329,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6108,'2018-12-31T06:36:08.403Z',NULL,57,2,122.4223933583994,5.26,105.91178339845743,820); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6109,'2019-07-09T21:28:30.702Z',NULL,2,4,105.11984419607644,6.04,79.37283144562983,821); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6110,'2018-06-27T03:54:19.468Z',NULL,36,7,130.93687730741433,7.53,118.63680447786626,821); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6111,'2017-05-28T02:57:05.296Z',NULL,94,3,72.81242771103588,4.19,95.70724536697134,821); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6112,'2018-07-05T12:46:57.693Z',NULL,41,3,63.50890855689462,1.84,64.2424567046057,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6113,'2018-02-13T10:40:17.305Z',NULL,126,1,125.24398120308456,3.63,146.69575682875302,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6114,'2018-08-23T16:56:39.492Z',NULL,32,7,107.1448636959614,3.11,91.90702030162954,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6115,'2016-12-22T23:34:58.815Z',NULL,24,1,74.87095783152942,2.17,67.79412677931917,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6116,'2019-09-26T14:11:36.610Z',NULL,64,2,143.4221774571866,4.16,141.73888521077473,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6117,'2018-05-11T00:03:27.336Z',5.906024289077356,6,2,97.43621265344382,2.83,93.58584394367966,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6118,'2018-06-15T13:08:00.195Z',NULL,66,5,136.16126271106958,3.95,135.7532407822006,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6119,'2017-11-11T00:49:23.731Z',NULL,138,2,75.96718984479077,2.2,57.50372786606362,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6120,'2018-07-05T10:59:57.248Z',NULL,96,4,104.82144858590365,3.04,143.78408149590305,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6121,'2019-03-10T16:42:05.067Z',NULL,142,1,70.34853057210945,2.04,51.66088561063579,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6122,'2018-04-15T16:34:41.268Z',NULL,80,2,54.91325681036414,1.59,44.101657652972804,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6123,'2019-12-04T18:22:33.235Z',NULL,147,2,66.64727121216615,1.93,69.33276050616058,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6124,'2018-06-03T04:41:55.368Z',NULL,42,5,38.00410713690931,1.1,46.13815080624916,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6125,'2018-08-21T00:48:34.804Z',5.906024289077356,120,5,83.5020135028928,2.42,79.70996530640694,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6126,'2017-04-05T05:57:56.154Z',NULL,197,3,46.76407124473339,1.36,44.886900356597565,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6127,'2019-10-20T02:01:22.151Z',NULL,124,6,110.93145648834248,3.22,89.59224629296179,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6128,'2020-03-15T08:48:53.434Z',NULL,113,1,110.47725376186015,3.2,135.86532222214856,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6129,'2019-09-23T01:25:38.222Z',5.906024289077356,172,4,122.3651993029456,3.55,114.65263883515863,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6130,'2018-03-14T10:21:50.527Z',NULL,164,1,92.96789820016517,2.7,128.50177913586344,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6131,'2018-04-07T23:48:57.140Z',NULL,169,2,59.53172693453274,1.73,64.08899647797347,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6132,'2018-09-01T04:33:04.356Z',NULL,12,2,116.01427581618326,3.36,126.84211937900945,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6133,'2018-11-18T11:21:28.141Z',7.0601881899770635,24,2,112.30643674729413,3.26,141.14027466409775,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6134,'2017-01-23T13:55:00.863Z',7.0601881899770635,148,2,92.65447881697106,2.69,85.59329437158294,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6135,'2019-12-26T23:36:09.167Z',NULL,62,2,133.5202262591817,3.87,153.72199835653493,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6136,'2018-05-16T13:12:59.070Z',NULL,115,5,77.91196471862148,2.26,73.2918291741643,822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6137,'2017-06-25T18:35:32.799Z',NULL,97,6,74.94550296436165,4.12,57.25242795039303,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6138,'2019-01-31T12:10:08.022Z',NULL,140,2,66.80312547576881,3.67,53.399879385794684,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6139,'2018-01-06T11:58:39.153Z',NULL,132,2,127.88197029833711,7.03,113.64820298809452,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6140,'2017-06-21T16:54:46.611Z',NULL,20,4,24.884330833643833,1.37,32.7890729098223,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6141,'2019-08-25T05:58:22.404Z',7.0601881899770635,170,4,105.07665741496471,5.78,102.83834889034806,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6142,'2018-06-19T09:55:07.029Z',NULL,72,6,142.20381898788685,7.82,143.3343267249333,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6143,'2017-11-20T08:09:55.603Z',NULL,91,3,43.39621873587423,2.39,51.673650623038405,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6144,'2018-07-20T04:08:00.374Z',NULL,30,3,64.17448218067184,3.53,76.05429029165653,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6145,'2019-02-24T07:02:35.666Z',NULL,106,1,52.723521442619514,2.9,57.03504728702875,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6146,'2017-07-02T10:39:19.745Z',NULL,104,4,70.96143503852079,3.9,53.3652020613418,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6147,'2019-09-28T00:07:34.184Z',NULL,164,6,92.96789820016517,5.11,104.80691235666275,823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6148,'2019-10-07T14:58:31.953Z',NULL,85,7,54.90104734428525,3.29,71.8121355982055,824); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6149,'2018-02-13T19:55:46.751Z',2.5601881899770635,156,1,30.615804149046195,1.84,30.6190289456255,824); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6150,'2017-02-17T11:52:49.376Z',NULL,53,1,29.517248267676894,1.77,42.439904002332824,824); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6151,'2020-01-04T13:51:22.854Z',NULL,51,2,75.65058751905018,4.54,88.55601545377421,824); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6152,'2019-03-04T04:03:19.909Z',NULL,89,1,63.719612755399886,3.82,74.99811585881683,824); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6153,'2018-05-21T14:03:16.735Z',NULL,67,2,41.24480890795779,2.47,43.1534662161888,828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6154,'2016-11-06T00:37:05.950Z',NULL,118,1,38.418408731319154,2.31,29.514532348921477,828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6155,'2019-05-14T19:03:33.463Z',NULL,116,2,114.42485125407785,6.87,108.77855709378096,828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6156,'2017-11-20T12:12:22.450Z',NULL,156,2,20.41053609936413,1.22,18.846314551806977,828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6157,'2018-02-04T22:30:46.220Z',NULL,58,1,78.14578007078882,5.37,107.93452190914446,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6158,'2017-05-31T04:44:15.692Z',NULL,43,3,50.90170136783837,3.5,51.70027258458728,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6159,'2019-09-01T05:49:57.017Z',NULL,67,4,41.24480890795779,2.84,32.414288154470746,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6160,'2018-07-14T14:27:03.302Z',NULL,108,4,50.094887884945365,3.44,69.39871899826537,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6161,'2017-11-08T00:58:40.686Z',NULL,164,2,61.978598800110106,4.26,51.99361718838653,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6162,'2018-09-12T20:31:49.859Z',NULL,18,4,81.90307121097293,5.63,83.25484961570245,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6163,'2019-02-21T05:08:08.778Z',NULL,32,2,107.1448636959614,7.37,155.14880377601872,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6164,'2016-10-06T00:52:33.457Z',NULL,15,6,25.09876359271891,1.73,23.141021143092953,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6165,'2017-12-14T15:44:35.871Z',NULL,143,2,40.7988669736962,2.8,52.9817222779471,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6166,'2018-05-22T23:21:24.186Z',NULL,1,3,44.19489169601981,3.04,44.4228795787009,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6167,'2020-03-17T11:25:01.385Z',NULL,70,1,57.493003808959784,3.95,76.05030131267512,829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6168,'2019-12-05T10:23:43.685Z',NULL,169,2,59.53172693453274,2.98,77.31465827046985,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6169,'2019-08-24T07:14:51.719Z',NULL,135,7,45.80402317157342,2.29,45.88333775628232,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6170,'2018-07-07T14:41:46.160Z',NULL,150,4,128.55415037577922,6.43,133.51202664843856,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6171,'2019-11-11T17:31:53.616Z',NULL,153,2,66.79892314178237,3.34,79.70115213467899,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6172,'2019-03-01T09:17:35.040Z',NULL,72,1,142.20381898788685,7.11,136.53483727670945,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6173,'2017-04-30T10:19:04.960Z',NULL,118,3,38.418408731319154,1.92,39.64398271427546,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6174,'2019-05-30T09:18:43.657Z',NULL,195,3,109.78077396807234,5.49,102.00160622498034,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6175,'2019-01-08T22:23:33.846Z',NULL,116,1,114.42485125407785,5.72,150.66918044886626,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6176,'2018-05-31T23:31:08.025Z',NULL,26,4,68.12471180754113,3.41,78.10241741262226,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6177,'2018-06-28T01:48:41.663Z',NULL,181,4,143.88940370476112,7.19,205.23607940465072,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6178,'2019-10-15T14:20:17.053Z',NULL,69,3,73.38772304360626,3.67,102.38478675323671,830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6179,'2019-12-22T10:15:31.699Z',NULL,94,1,109.21864156655383,7.1,154.64233377063928,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6180,'2019-08-11T15:28:31.758Z',NULL,26,2,68.12471180754113,4.43,70.71138670389253,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6181,'2019-09-03T07:38:55.167Z',NULL,142,2,70.34853057210945,4.57,95.34894596758926,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6182,'2019-05-26T18:14:44.079Z',NULL,88,3,105.41292031622555,6.85,103.11353003161568,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6183,'2019-10-20T18:31:15.814Z',NULL,128,3,75.08016314504417,4.88,88.89694687274772,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6184,'2019-10-21T13:26:42.376Z',4.610450341014083,49,3,131.42865839323724,8.54,127.48053869726513,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6185,'2019-01-19T09:15:32.065Z',NULL,130,2,75.02573869315137,4.88,75.52093637157806,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6186,'2017-10-04T06:53:42.944Z',NULL,129,3,98.7781981443958,6.42,124.78304640500689,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6187,'2019-09-18T17:22:48.692Z',NULL,144,3,61.1983004605443,3.98,59.25605872636267,831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6188,'2018-05-17T16:02:05.117Z',NULL,117,4,55.024851254077866,2.32,74.13038172270433,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6189,'2019-03-06T01:43:23.672Z',NULL,3,1,53.08311732230858,2.24,74.48338553522858,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6190,'2017-07-17T03:48:21.117Z',NULL,195,4,73.18718264538155,3.09,55.68223340002961,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6191,'2018-05-19T12:37:38.011Z',NULL,85,4,54.90104734428525,2.32,75.11111676238099,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6192,'2017-08-09T04:54:25.611Z',NULL,132,4,85.25464686555807,3.6,68.35617540458634,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6193,'2018-06-09T19:01:23.462Z',NULL,177,6,128.8192981944599,5.44,128.07958991676435,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6194,'2017-09-09T06:52:39.103Z',NULL,20,4,24.884330833643833,1.05,27.545066285767277,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6195,'2017-09-24T01:34:57.978Z',NULL,8,4,65.89215669329305,2.78,77.77384595322424,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6196,'2019-04-06T06:43:02.056Z',NULL,102,3,47.04215255778118,1.99,55.50513106169613,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6197,'2020-02-08T00:06:09.072Z',NULL,24,1,112.30643674729413,4.74,87.26228327456482,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6198,'2019-12-13T17:39:57.117Z',2.510288479146043,5,2,124.1176465275534,5.24,140.83049450151034,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6199,'2019-07-19T19:15:25.955Z',2.510288479146043,37,6,80.10774204020768,3.38,80.4024037332576,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6200,'2019-10-10T14:09:16.461Z',NULL,31,6,105.65346467128523,4.46,112.76698428004997,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6201,'2020-02-06T18:44:00.995Z',NULL,180,1,68.32408657333919,2.89,87.48024056621601,832); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6202,'2017-11-10T22:59:09.911Z',NULL,58,2,52.097186713859216,0,40.285213918486576,834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6203,'2018-05-03T00:28:01.269Z',2.510288479146043,63,3,133.5202262591817,0,128.98838643170708,834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6204,'2019-09-02T21:03:16.500Z',NULL,30,3,64.17448218067184,0,48.22320622530759,834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6205,'2019-05-08T06:06:43.061Z',NULL,114,3,77.91196471862148,0,65.73403948220037,834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6206,'2019-11-18T22:32:54.767Z',NULL,41,2,63.50890855689462,3.18,47.455943302338056,835); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6207,'2018-08-20T22:01:42.071Z',NULL,130,4,75.02573869315137,3.75,59.713742310089295,835); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6208,'2018-04-08T02:27:58.648Z',NULL,107,3,50.094887884945365,2.5,41.41105137827017,835); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6209,'2020-02-13T04:29:18.056Z',NULL,125,2,80.39699207990944,0,93.95690380696679,836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6210,'2018-09-02T21:33:20.027Z',NULL,29,44,123.57448218067185,0,122.04547655542736,836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6211,'2016-09-18T02:06:43.781Z',NULL,58,3,52.097186713859216,1.51,39.6669741096151,837); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6212,'2020-02-15T14:59:31.894Z',NULL,127,1,134.48016314504417,3.9,124.04909331100113,837); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6213,'2018-06-25T20:12:17.290Z',6.27296453987298,107,5,50.094887884945365,1.45,37.45144349932983,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6214,'2019-01-25T23:57:43.572Z',NULL,145,2,61.1983004605443,1.77,77.024186416092,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6215,'2018-06-28T08:11:26.166Z',NULL,105,7,52.723521442619514,1.53,41.83804032917715,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6216,'2019-04-01T03:31:00.840Z',NULL,59,3,89.20214751859149,2.59,75.15409600708585,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6217,'2018-07-30T14:54:18.171Z',NULL,175,4,117.3248094335266,3.4,151.11458281620196,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6218,'2017-03-21T20:37:55.830Z',NULL,139,1,51.18512212784679,1.48,68.24103636828345,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6219,'2020-02-06T20:16:13.271Z',NULL,98,2,112.41825444654248,3.26,124.68587626041145,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6220,'2018-08-22T07:27:29.541Z',NULL,39,7,114.58158180283459,3.32,91.14415665005035,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6221,'2019-05-07T01:56:49.560Z',NULL,94,3,109.21864156655383,3.17,136.8348671336553,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6222,'2019-02-18T06:01:25.963Z',NULL,134,1,42.49233549998661,1.23,33.23498380549379,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6223,'2017-09-24T10:06:03.838Z',NULL,117,4,36.683234169385244,1.06,48.17157885556685,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6224,'2018-12-27T22:44:11.884Z',NULL,175,2,117.3248094335266,3.4,161.8453812388608,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6225,'2018-04-20T21:47:43.679Z',NULL,99,3,67.83486485383094,1.97,81.33237285802436,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6226,'2017-05-11T09:26:02.485Z',NULL,54,3,41.395738936015974,1.2,51.928344907793274,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6227,'2020-02-07T08:46:52.669Z',NULL,18,1,81.90307121097293,2.38,65.21697566416582,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6228,'2017-04-17T14:56:27.385Z',NULL,24,3,74.87095783152942,2.17,74.48656443010228,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6229,'2019-01-16T23:48:21.325Z',NULL,179,2,68.32408657333919,1.98,90.81337036882664,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6230,'2019-08-25T08:47:38.990Z',NULL,4,5,110.98767151282252,3.22,140.56841169647564,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6231,'2017-01-01T14:36:33.431Z',NULL,161,2,31.727470408648482,0.92,36.92758925600468,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6232,'2019-07-24T02:29:04.444Z',NULL,27,4,127.52471180754115,3.7,169.686696564411,839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6233,'2017-04-18T21:22:04.339Z',NULL,86,3,61.54291113900164,4,88.95751193553271,840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6234,'2018-10-11T12:21:15.755Z',NULL,133,7,68.4819702983371,4.45,59.81881094349256,840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6235,'2018-01-03T14:02:07.684Z',NULL,188,3,33.87738254731509,2.2,29.457643931776943,840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6236,'2017-06-19T20:40:16.653Z',NULL,93,7,33.212427711035886,0,23.861859556260818,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6237,'2019-07-16T20:50:29.016Z',NULL,37,5,80.10774204020768,0,83.70549354561354,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6238,'2018-11-30T17:55:12.052Z',NULL,156,4,30.615804149046195,0,24.679405097178353,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6239,'2018-07-13T01:48:05.777Z',NULL,73,5,71.6287722595695,0,71.45574966433972,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6240,'2018-01-30T17:57:18.846Z',8.403740417484135,90,21,123.1196127553999,0,138.28571994673467,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6241,'2020-02-29T10:50:01.659Z',NULL,187,2,98.9770008385166,0,106.22062239173032,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6242,'2019-07-14T12:57:58.122Z',NULL,131,7,113.11722203337729,0,117.48408005264406,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6243,'2019-07-09T00:27:37.336Z',NULL,181,5,143.88940370476112,0,101.77935891234762,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6244,'2020-01-07T19:23:19.347Z',NULL,98,2,112.41825444654248,0,111.13725820265603,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6245,'2018-04-29T10:49:58.985Z',NULL,76,31,63.82421061366486,0,67.90768138196142,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6246,'2018-09-24T23:48:01.824Z',NULL,13,5,112.62925391105566,0,114.00830494933065,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6247,'2020-01-13T00:43:32.112Z',3.903740417484135,38,2,66.06937283839378,0,61.925046102012914,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6248,'2019-03-06T02:26:49.565Z',NULL,4,1,110.98767151282252,0,81.47315227553646,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6249,'2019-07-24T13:52:07.251Z',NULL,1,4,44.19489169601981,0,60.15570727433013,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6250,'2019-08-12T10:12:09.968Z',NULL,37,7,80.10774204020768,0,57.11397714537573,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6251,'2020-03-28T12:57:39.590Z',NULL,59,1,89.20214751859149,0,109.33635046409914,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6252,'2019-03-31T18:25:44.774Z',NULL,69,1,73.38772304360626,0,76.20046454748258,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6253,'2019-11-23T19:54:10.927Z',NULL,40,2,99.66240044231697,0,77.0933106445611,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6254,'2018-07-13T08:32:41.088Z',NULL,179,4,68.32408657333919,0,64.01701336882363,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6255,'2018-11-25T03:49:49.736Z',NULL,116,3,114.42485125407785,0,150.24655532087826,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6256,'2018-03-23T10:23:54.572Z',NULL,167,1,97.70449564120193,0,95.04863522285727,841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6257,'2018-05-22T04:18:26.839Z',NULL,31,5,105.65346467128523,0,117.46278011892963,843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6258,'2018-01-16T15:08:08.519Z',4.404952034148775,56,22,36.37128575934436,0,26.43180430221639,843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6259,'2020-02-19T19:03:03.646Z',NULL,26,2,68.12471180754113,0,51.5234799080931,843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6260,'2019-10-04T16:53:37.121Z',NULL,152,6,48.89568729900663,1.96,49.85563234112839,844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6261,'2017-11-05T03:44:41.441Z',NULL,147,3,44.4315141414441,1.78,55.22636186613315,844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6262,'2019-11-29T20:28:21.539Z',NULL,176,3,57.92480943352658,2.32,60.51945525997624,844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6263,'2019-04-15T03:58:47.357Z',4.404952034148775,75,2,125.81276373452337,8.81,112.2828634200692,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6264,'2018-01-02T09:56:30.952Z',NULL,43,2,76.35255205175756,5.34,103.12752822463479,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6265,'2019-05-03T14:59:25.842Z',NULL,191,4,128.5841852057933,9,130.76337534415478,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6266,'2019-04-15T10:02:30.644Z',NULL,105,3,52.723521442619514,3.69,71.98674496203658,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6267,'2020-01-14T07:43:52.343Z',NULL,142,2,70.34853057210945,4.92,79.0683544953917,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6268,'2018-02-16T15:16:09.074Z',8.904952034148776,61,1,23.537915510955656,1.65,25.28402929670473,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6269,'2017-09-11T07:40:53.283Z',NULL,134,4,28.328223666657742,1.98,32.50272625708973,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6270,'2020-04-09T03:02:28.690Z',NULL,85,3,54.90104734428525,3.84,63.36653498986177,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6271,'2016-11-01T04:52:53.248Z',NULL,175,4,78.21653962235106,5.48,88.53238101867602,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6272,'2019-10-24T01:25:34.128Z',NULL,143,8,61.1983004605443,4.28,51.33226870089537,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6273,'2019-08-07T21:27:13.519Z',NULL,198,6,70.14610686710009,4.91,52.54194111251916,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6274,'2019-06-10T07:37:09.552Z',NULL,56,5,36.37128575934436,2.55,39.70992973909,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6275,'2017-03-15T06:54:12.038Z',NULL,138,1,75.96718984479077,5.32,94.94262873561269,848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6276,'2018-04-13T05:49:29.926Z',1.42789878366818,76,1,63.82421061366486,2.55,50.286644040937546,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6277,'2019-05-21T09:56:59.537Z',1.42789878366818,192,3,69.18418520579327,2.77,57.31546677935813,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6278,'2018-09-18T08:29:30.656Z',NULL,191,5,128.5841852057933,5.14,144.98250468153051,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6279,'2017-11-27T05:32:55.773Z',NULL,156,2,20.41053609936413,0.82,17.49530604609157,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6280,'2019-08-23T19:59:11.508Z',NULL,104,3,106.44215255778118,4.26,90.47192019460124,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6281,'2019-08-24T20:02:07.270Z',NULL,170,3,105.07665741496471,4.2,101.11243911764356,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6282,'2018-04-25T14:55:26.027Z',NULL,78,2,41.616917284159726,1.66,47.84763520138427,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6283,'2018-01-05T07:05:25.246Z',NULL,194,1,50.38077396807232,2.02,60.63610903413252,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6284,'2020-01-19T05:44:20.374Z',5.92789878366818,11,1,132.45679913492563,5.3,170.8630465222006,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6285,'2017-08-21T01:11:03.182Z',NULL,93,5,33.212427711035886,1.33,25.592229418714354,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6286,'2018-10-03T22:51:58.538Z',NULL,6,3,97.43621265344382,3.9,121.4798453573265,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6287,'2019-10-20T00:56:53.264Z',NULL,184,4,116.09741230191975,4.64,114.92299125824218,850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6288,'2017-07-26T09:49:35.409Z',NULL,174,4,74.40953929454055,4.65,102.61107887717635,851); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6289,'2018-08-26T14:15:14.864Z',1.42789878366818,10,3,47.6793282102869,2.98,63.030443135686106,851); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6290,'2019-02-20T21:58:36.803Z',NULL,11,1,132.45679913492563,8.28,163.30648703401604,851); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6291,'2018-01-20T09:46:07.765Z',NULL,120,1,83.5020135028928,3.34,104.97513277758654,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6292,'2019-09-28T07:03:05.678Z',NULL,133,2,68.4819702983371,2.74,71.6662385194462,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6293,'2018-08-23T00:16:03.961Z',NULL,112,4,41.329386510090345,1.65,33.17183024150911,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6294,'2019-10-16T03:38:14.655Z',NULL,100,4,67.83486485383094,2.71,57.745814485510216,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6295,'2017-11-19T08:33:44.404Z',NULL,36,3,87.29125153827623,3.49,89.63944166946044,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6296,'2019-07-26T06:52:21.220Z',7.678122405882418,98,6,112.41825444654248,4.5,99.89113255092028,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6297,'2016-12-28T18:55:20.597Z',NULL,179,2,45.549391048892794,1.82,44.498289475026,854); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6298,'2019-01-21T23:15:21.154Z',NULL,41,2,63.50890855689462,3.18,83.2003159273065,857); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6299,'2020-02-07T20:52:33.743Z',NULL,14,2,37.648145389078365,1.88,33.244628395611244,857); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6300,'2019-06-07T20:05:22.954Z',NULL,17,6,79.93608046792765,4,62.248396193287554,857); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6301,'2020-04-17T22:34:52.592Z',NULL,107,3,50.094887884945365,2.5,64.21725683346992,857); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6302,'2019-09-24T01:12:13.519Z',NULL,15,5,37.648145389078365,1.88,40.7694134455274,857); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6303,'2020-01-20T12:20:01.074Z',3.178122405882418,51,2,75.65058751905018,3.78,107.38691211014896,857); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6304,'2018-01-13T05:40:33.040Z',NULL,94,1,109.21864156655383,0,121.70955803641729,858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6305,'2019-05-06T06:31:32.505Z',NULL,60,4,29.80214751859149,0,26.973058278143544,858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6306,'2020-03-11T06:39:39.647Z',NULL,91,1,65.09432810381134,4.56,84.9401481266532,859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6307,'2017-08-13T05:25:50.196Z',NULL,93,5,33.212427711035886,2.32,30.916987077031933,859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6308,'2017-06-24T23:59:32.756Z',NULL,16,4,44.07353303251545,3.09,46.75918260304427,859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6309,'2019-11-30T11:08:58.379Z',NULL,113,3,110.47725376186015,7.73,126.33352694343544,859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6310,'2018-09-26T10:04:55.314Z',NULL,108,5,50.094887884945365,3.51,40.43019818330269,859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6311,'2020-02-05T08:21:22.437Z',NULL,104,1,106.44215255778118,7.45,113.37840627195594,859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6312,'2017-04-15T08:29:08.476Z',NULL,110,2,37.01783079127111,2.78,30.702840142413365,860); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6313,'2019-12-01T15:42:45.221Z',NULL,57,1,122.4223933583994,9.18,97.4924586429916,860); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6314,'2019-12-23T23:08:18.448Z',NULL,73,2,71.6287722595695,5.01,85.2224379186767,861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6315,'2019-08-25T09:33:05.895Z',NULL,152,7,48.89568729900663,3.42,53.44614875141078,861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6316,'2019-06-29T21:58:57.639Z',NULL,136,6,105.20402317157343,7.36,81.10354944521245,861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6317,'2019-11-30T23:39:37.667Z',NULL,188,3,33.87738254731509,2.37,48.33358432401612,861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6318,'2018-12-28T09:17:07.383Z',NULL,66,2,136.16126271106958,9.53,145.93366144740432,861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6319,'2020-01-05T19:27:19.307Z',NULL,65,2,68.22769726470014,4.78,68.5738097326697,861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6320,'2019-12-23T14:53:00.127Z',NULL,132,2,127.88197029833711,5.12,173.16914369110862,863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6321,'2020-03-21T09:01:41.342Z',NULL,132,1,127.88197029833711,5.12,143.51862397619573,863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6322,'2019-04-20T17:44:40.902Z',3.782511730534635,199,3,115.4300138092855,4.62,124.12263598865098,863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6323,'2018-09-27T19:52:47.718Z',NULL,167,5,97.70449564120193,5.86,99.41285758400466,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6324,'2018-10-12T06:15:59.583Z',3.782511730534635,138,6,113.95078476718615,6.84,153.3376192644504,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6325,'2018-09-12T13:45:42.412Z',8.282511730534635,89,5,63.719612755399886,3.82,68.2890751496859,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6326,'2019-05-28T11:52:46.865Z',NULL,41,4,63.50890855689462,3.81,70.7551716650779,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6327,'2017-06-04T13:49:56.997Z',NULL,152,6,32.59712486600442,1.96,26.189599640107012,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6328,'2018-09-24T10:31:42.915Z',NULL,16,5,66.11029954877317,3.97,52.27059059864983,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6329,'2017-06-12T03:51:48.504Z',NULL,152,8,32.59712486600442,1.96,43.75430178972798,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6330,'2017-12-29T03:32:32.482Z',NULL,45,2,78.6996782532274,4.72,98.43941707840122,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6331,'2018-03-23T21:15:58.551Z',NULL,137,1,67.77247956807186,4.07,92.62347292538463,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6332,'2016-10-03T00:15:28.237Z',NULL,168,4,79.28781795635516,4.76,76.21463722495342,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6333,'2017-11-07T05:19:39.698Z',NULL,101,3,93.21658710786936,5.59,128.6986794404878,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6334,'2019-09-29T08:47:45.257Z',NULL,180,6,68.32408657333919,4.1,96.33816031482046,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6335,'2018-10-12T11:43:41.183Z',NULL,149,7,69.15415037577924,4.15,54.968096115703425,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6336,'2018-04-11T19:44:08.559Z',NULL,169,3,59.53172693453274,3.57,75.50261182966766,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6337,'2017-12-18T02:03:22.698Z',NULL,76,1,42.54947374244324,2.55,37.09030771137949,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6338,'2018-04-23T18:33:34.100Z',NULL,138,2,113.95078476718615,6.84,90.44870911652785,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6339,'2019-05-25T03:49:02.579Z',NULL,188,4,33.87738254731509,2.03,43.58127862486043,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6340,'2018-12-08T14:53:54.786Z',NULL,144,2,61.1983004605443,3.67,65.8848763557329,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6341,'2020-01-17T04:44:02.144Z',NULL,42,1,38.00410713690931,2.28,43.259750992158764,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6342,'2017-05-02T02:35:16.133Z',3.132374193820856,74,4,34.08536151591033,2.05,40.95463084020314,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6343,'2019-08-10T05:22:23.086Z',NULL,196,9,70.14610686710009,4.21,89.87537126282793,864); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6344,'2017-06-01T10:32:59.257Z',NULL,52,6,69.1172482676769,3.8,94.81194991748865,865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6345,'2018-02-01T01:13:03.989Z',NULL,56,2,36.37128575934436,2,45.605603206662835,865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6346,'2017-12-29T01:06:28.081Z',3.132374193820856,47,2,56.05108065511453,3.08,46.57152358312658,865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6347,'2017-11-07T06:28:22.136Z',NULL,64,3,95.61478497145774,5.26,119.04953263701375,865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6348,'2020-04-01T03:26:49.006Z',NULL,93,3,49.81864156655383,2.74,71.08601759505343,865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6349,'2017-06-21T14:23:45.152Z',NULL,45,6,78.6996782532274,5.39,84.74946493569496,866); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6350,'2020-02-11T22:03:42.822Z',NULL,20,2,37.32649625046575,2.56,39.04614233894565,866); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6351,'2019-11-18T05:11:30.906Z',NULL,115,3,77.91196471862148,5.34,93.14644866374121,866); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6352,'2019-09-29T08:29:02.552Z',3.132374193820856,108,34,50.094887884945365,3.01,60.58787312281733,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6353,'2019-12-24T12:05:54.232Z',NULL,4,1,110.98767151282252,6.66,119.05359079563557,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6354,'2018-05-22T09:21:36.717Z',NULL,196,4,70.14610686710009,4.21,97.39100294198529,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6355,'2019-05-18T23:27:17.531Z',5.215109479714312,152,46,48.89568729900663,2.93,41.064977242115766,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6356,'2019-05-09T19:36:09.509Z',9.715109479714311,188,4,33.87738254731509,2.03,37.782992142437436,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6357,'2020-03-13T09:31:03.394Z',NULL,32,1,107.1448636959614,6.43,118.8320929731128,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6358,'2019-09-05T16:30:54.784Z',NULL,189,6,93.27738254731509,5.6,70.71366699478665,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6359,'2019-12-14T12:56:40.716Z',NULL,138,3,113.95078476718615,6.84,100.11599379689916,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6360,'2020-02-08T18:08:58.269Z',NULL,27,2,127.52471180754115,7.65,166.71015941646255,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6361,'2016-12-24T10:10:18.792Z',NULL,166,2,25.536330427467956,1.53,19.077071690374158,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6362,'2017-05-18T20:56:18.724Z',NULL,85,5,36.6006982295235,2.2,28.346217418961235,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6363,'2018-03-17T22:10:16.814Z',NULL,118,1,57.627613096978735,3.46,82.24086690018285,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6364,'2018-02-14T04:50:01.512Z',NULL,96,2,104.82144858590365,6.29,151.46082159549093,868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6365,'2017-02-12T07:03:59.642Z',NULL,44,2,50.90170136783837,3.18,45.48783816573685,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6366,'2018-07-13T03:02:38.483Z',NULL,85,6,54.90104734428525,3.43,49.34049419876226,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6367,'2018-06-26T01:54:51.787Z',NULL,154,8,81.87529553312261,5.12,108.97857924376888,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6368,'2018-11-28T22:35:11.857Z',NULL,151,4,91.61302306843446,5.73,106.22808403536752,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6369,'2018-03-25T21:43:26.209Z',9.715109479714311,60,1,29.80214751859149,1.86,34.963179172755304,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6370,'2018-12-18T17:52:32.347Z',NULL,2,2,105.11984419607644,6.57,130.36531327843215,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6371,'2018-09-23T19:18:21.519Z',NULL,9,7,87.46968147789205,5.47,80.87056777450137,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6372,'2020-01-27T10:05:18.624Z',NULL,42,2,38.00410713690931,2.38,31.91273640444713,869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6373,'2019-05-04T03:23:14.665Z',NULL,29,4,123.57448218067185,7.72,127.57129154565195,870); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6374,'2017-03-17T03:49:26.465Z',NULL,41,1,42.33927237126308,2.65,54.18631128383925,870); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6375,'2016-11-20T18:44:11.685Z',NULL,82,4,40.59697158687298,2.54,46.543452383369676,870); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6376,'2018-01-14T23:26:45.100Z',NULL,8,2,98.83823503993958,6.18,107.34417121519259,870); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6377,'2019-08-27T23:06:26.987Z',NULL,30,5,64.17448218067184,4.01,54.185418225555765,870); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6378,'2019-03-22T07:42:26.820Z',NULL,148,1,138.9817182254566,8.69,135.83206492665167,870); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6379,'2018-08-11T03:23:19.311Z',1.5967078467159102,163,3,33.56789820016516,0,29.480806230395537,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6380,'2019-09-12T00:10:54.971Z',NULL,127,4,134.48016314504417,0,172.73412202866433,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6381,'2020-01-24T07:19:36.031Z',NULL,9,2,87.46968147789205,0,69.37538836425851,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6382,'2019-07-01T20:45:16.379Z',NULL,135,4,45.80402317157342,0,33.876821996926935,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6383,'2018-06-05T04:06:45.926Z',NULL,38,5,66.06937283839378,0,75.10387229476878,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6384,'2018-12-11T20:43:41.253Z',NULL,199,2,115.4300138092855,0,92.23243269403336,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6385,'2019-02-27T08:43:28.392Z',NULL,193,1,50.38077396807232,0,47.99267661483058,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6386,'2019-05-21T11:04:47.354Z',NULL,128,2,75.08016314504417,0,77.88855992326437,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6387,'2019-04-13T04:17:36.721Z',NULL,196,2,70.14610686710009,0,58.87881519884674,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6388,'2018-09-29T03:27:25.714Z',NULL,64,4,143.4221774571866,0,128.31620256769617,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6389,'2018-01-23T09:59:54.818Z',NULL,4,2,110.98767151282252,0,129.59088893404743,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6390,'2019-04-06T14:28:31.142Z',NULL,117,2,55.024851254077866,0,56.25860117907042,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6391,'2019-05-26T20:29:04.208Z',NULL,55,3,95.77128575934437,0,77.13336795419698,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6392,'2018-02-26T08:36:46.621Z',NULL,27,2,127.52471180754115,0,157.27770231914667,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6393,'2018-09-24T04:28:50.641Z',NULL,51,4,75.65058751905018,0,70.93678753607757,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6394,'2019-12-23T07:47:46.306Z',NULL,80,1,54.91325681036414,0,45.90657010754206,871); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6395,'2018-06-24T13:45:12.380Z',NULL,130,5,75.02573869315137,4.69,101.99279896385718,874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6396,'2020-02-15T21:17:12.486Z',NULL,147,2,66.64727121216615,4.17,50.86821521046652,874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6397,'2019-01-26T12:03:45.980Z',NULL,100,2,67.83486485383094,4.24,58.26081077435223,874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6398,'2019-07-11T05:38:24.469Z',NULL,165,5,38.30449564120193,2.39,51.939133832059994,874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6399,'2019-04-12T03:00:38.703Z',NULL,104,3,106.44215255778118,6.65,79.5387456558161,874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6400,'2017-12-26T13:22:18.313Z',3.2012385421399454,26,2,45.41647453836076,2.72,60.47676407614422,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6401,'2019-06-26T09:07:49.892Z',NULL,4,4,110.98767151282252,6.66,151.71527998012164,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6402,'2017-11-12T04:19:36.932Z',NULL,159,3,23.686782969182406,1.42,20.768478405818865,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6403,'2019-07-30T22:14:06.417Z',NULL,148,5,138.9817182254566,8.34,195.6719261909173,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6404,'2020-01-19T12:31:56.840Z',NULL,136,2,105.20402317157343,6.31,133.0118239591175,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6405,'2018-07-10T16:30:18.417Z',NULL,7,5,148.22900526552291,8.89,152.32252436173357,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6406,'2018-06-22T11:03:41.864Z',NULL,18,6,81.90307121097293,4.91,67.4912488766114,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6407,'2019-10-02T01:44:19.352Z',NULL,108,5,50.094887884945365,3.01,49.69459800291616,875); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6408,'2019-04-26T08:32:51.812Z',NULL,86,2,92.31436670850246,5.54,95.4821635517803,877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6409,'2018-06-07T16:38:52.889Z',NULL,77,6,101.01691728415972,6.06,114.39436124665475,877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6410,'2019-08-30T08:31:41.900Z',NULL,169,9,59.53172693453274,3.57,71.01280748646309,877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6411,'2019-04-02T18:43:03.451Z',7.701238542139945,22,3,32.136779940663494,1.93,39.14304597866429,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6412,'2018-08-04T23:28:45.374Z',NULL,55,5,95.77128575934437,5.75,97.92003371340867,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6413,'2019-03-22T15:11:48.522Z',NULL,161,1,47.59120561297272,2.86,36.31272678459213,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6414,'2018-03-20T09:21:29.281Z',NULL,178,1,117.32963250370614,7.04,108.54528292975422,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6415,'2019-12-11T22:31:37.521Z',NULL,200,2,73.20395711799151,4.39,104.0044989353406,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6416,'2018-05-01T16:15:06.150Z',NULL,60,4,29.80214751859149,1.79,29.378619775660603,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6417,'2017-07-01T23:08:45.026Z',NULL,118,5,38.418408731319154,2.31,46.49360103967238,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6418,'2019-12-21T05:06:33.216Z',5.276980131254252,134,2,42.49233549998661,2.55,55.81372755208031,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6419,'2018-04-13T22:42:48.265Z',NULL,79,2,41.616917284159726,2.5,35.6969920815837,878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6420,'2019-10-25T07:17:26.057Z',NULL,178,2,117.32963250370614,4.69,113.12036024278454,881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6421,'2019-11-26T04:41:57.597Z',NULL,37,1,80.10774204020768,3.2,108.87948824817897,881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6422,'2019-01-07T18:43:07.081Z',NULL,141,1,126.20312547576883,5.05,132.6589186965031,881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6423,'2020-02-24T09:32:08.477Z',NULL,169,1,59.53172693453274,2.38,50.69746086243885,881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6424,'2019-04-22T01:19:13.285Z',NULL,197,2,70.14610686710009,4.03,62.95670561936377,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6425,'2020-02-04T07:11:24.591Z',NULL,50,1,53.64019616819762,3.08,75.86673985324735,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6426,'2019-07-20T07:05:06.564Z',NULL,62,2,133.5202262591817,7.68,172.26260641864022,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6427,'2019-08-30T19:11:35.380Z',0.7769801312542515,63,5,133.5202262591817,7.68,132.01701615081814,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6428,'2019-01-18T08:45:36.349Z',NULL,186,2,98.9770008385166,5.69,119.62736998478927,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6429,'2019-11-01T23:36:03.208Z',NULL,1,3,44.19489169601981,2.54,36.71907261198063,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6430,'2018-03-31T11:23:37.959Z',NULL,185,1,39.57700083851661,2.28,46.6383553888366,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6431,'2019-09-27T15:17:57.729Z',NULL,182,2,84.48940370476112,4.86,108.39430768222279,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6432,'2020-04-08T22:36:38.143Z',NULL,155,2,43.77574310182776,2.52,34.560760393720294,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6433,'2019-07-03T23:31:03.178Z',NULL,29,5,123.57448218067185,7.11,90.51964321367903,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6434,'2018-09-10T03:34:16.374Z',NULL,24,5,112.30643674729413,6.46,104.67944369295832,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6435,'2018-09-04T23:05:06.736Z',NULL,111,5,55.526746186906664,3.19,65.73113497635279,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6436,'2018-01-01T19:37:40.039Z',0.7769801312542515,22,1,32.136779940663494,1.85,35.74564955547032,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6437,'2018-06-01T07:18:34.454Z',NULL,174,2,111.61430894181083,6.42,145.54545379927916,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6438,'2019-10-09T07:10:33.196Z',NULL,139,2,76.77768319177018,4.41,78.08774535629021,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6439,'2019-11-20T23:13:03.774Z',NULL,198,3,70.14610686710009,4.03,60.64100936791509,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6440,'2020-03-10T13:18:59.545Z',3.731433497688401,8,1,98.83823503993958,5.68,124.97921251763528,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6441,'2018-01-23T17:06:58.716Z',NULL,1,2,44.19489169601981,2.54,63.4798706391816,882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6442,'2018-05-26T19:05:42.155Z',NULL,63,4,133.5202262591817,8.01,114.40373067301037,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6443,'2019-12-03T02:19:17.112Z',NULL,130,3,75.02573869315137,4.5,88.16614697057173,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6444,'2017-08-25T23:03:39.793Z',NULL,126,9,83.49598746872304,5.01,113.18021433483658,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6445,'2019-09-23T21:38:44.266Z',NULL,107,5,50.094887884945365,3.01,59.50504882623367,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6446,'2019-07-15T10:18:34.683Z',NULL,69,4,73.38772304360626,4.4,82.60113479158018,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6447,'2017-02-13T11:06:09.107Z',NULL,134,2,28.328223666657742,1.7,33.843655787478546,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6448,'2017-05-31T20:02:50.785Z',NULL,128,6,50.053442096696116,3,60.72770836658037,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6449,'2017-02-24T09:14:53.497Z',NULL,60,2,19.86809834572766,1.19,23.187098330505048,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6450,'2017-05-30T04:55:29.209Z',NULL,179,4,45.549391048892794,2.73,40.336843443662744,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6451,'2018-02-04T15:26:46.904Z',8.231433497688402,96,2,104.82144858590365,6.29,119.57817438379695,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6452,'2017-05-22T21:55:50.859Z',NULL,122,3,66.56352219205405,3.99,49.31169774542457,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6453,'2018-09-18T21:58:32.203Z',NULL,46,4,118.0495173798411,7.08,128.13968255512998,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6454,'2019-01-30T23:34:25.179Z',NULL,46,1,118.0495173798411,7.08,97.5397765796512,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6455,'2018-08-26T09:22:28.562Z',NULL,94,7,109.21864156655383,6.55,149.13777922912485,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6456,'2017-08-29T08:53:46.400Z',NULL,7,7,98.81933684368194,5.93,77.87530607065624,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6457,'2017-02-24T05:55:48.210Z',NULL,117,2,36.683234169385244,2.2,51.918306564503865,883); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6458,'2018-01-04T07:07:25.121Z',NULL,24,3,112.30643674729413,5.28,88.21831633073917,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6459,'2018-02-02T16:41:05.074Z',NULL,172,2,122.3651993029456,5.75,111.9096307269865,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6460,'2017-08-10T13:40:18.316Z',9.344765178694237,178,5,78.21975500247076,3.68,91.08719370277724,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6461,'2016-10-10T04:53:37.953Z',NULL,17,6,53.290720311951766,2.5,57.66977269389335,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6462,'2017-09-29T20:56:31.192Z',NULL,22,7,21.42451996044233,1.01,29.487393659351657,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6463,'2018-04-21T01:30:02.732Z',NULL,74,3,51.12804227386549,2.4,42.467756388746,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6464,'2018-11-13T13:33:29.262Z',NULL,81,3,43.9329842322118,2.06,48.017611824976115,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6465,'2018-11-21T09:06:01.388Z',NULL,88,3,105.41292031622555,4.95,95.97509840935884,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6466,'2020-02-25T23:32:25.451Z',NULL,128,2,75.08016314504417,3.53,102.53120909064793,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6467,'2019-12-06T11:27:36.815Z',NULL,16,2,66.11029954877317,3.11,74.12878829138475,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6468,'2019-08-24T13:59:01.163Z',NULL,39,6,114.58158180283459,5.39,138.7909647223121,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6469,'2018-12-01T08:27:41.634Z',NULL,183,2,56.697412301919755,2.66,75.81668055620605,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6470,'2019-03-24T17:05:59.996Z',4.844765178694238,74,1,51.12804227386549,2.4,73.66564482210451,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6471,'2018-09-28T19:55:55.660Z',NULL,15,4,37.648145389078365,1.77,38.92161801247694,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6472,'2016-09-06T16:24:16.840Z',NULL,166,6,25.536330427467956,1.2,21.566377047847507,885); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6473,'2019-02-22T00:01:55.886Z',NULL,82,2,60.89545738030947,4.57,86.19949348289049,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6474,'2019-07-01T17:47:44.101Z',NULL,132,6,127.88197029833711,9.59,138.90385414714913,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6475,'2020-01-29T06:32:27.588Z',NULL,11,3,132.45679913492563,9.93,172.89501151059713,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6476,'2019-12-12T01:36:44.410Z',NULL,29,2,123.57448218067185,9.27,148.00527287603148,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6477,'2017-10-06T17:58:20.983Z',NULL,103,5,31.361435038520785,2.35,23.314195651619166,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6478,'2018-06-10T22:06:34.385Z',NULL,118,6,57.627613096978735,4.32,66.71072695675926,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6479,'2019-12-26T01:15:27.989Z',NULL,126,2,125.24398120308456,9.39,116.96264480353295,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6480,'2018-02-21T09:15:48.970Z',NULL,95,2,49.81864156655383,3.74,63.421929908341895,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6481,'2018-09-15T10:25:23.133Z',NULL,158,6,139.8942352373801,10.49,120.3071514220984,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6482,'2016-05-30T11:04:07.390Z',NULL,131,5,75.41148135558485,5.66,73.89230685588112,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6483,'2018-07-05T19:48:33.611Z',NULL,126,5,125.24398120308456,9.39,163.45214412828585,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6484,'2017-05-07T10:37:55.910Z',NULL,152,5,32.59712486600442,2.44,43.77691399521769,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6485,'2019-11-24T06:13:40.377Z',NULL,20,3,37.32649625046575,2.8,42.050396860983874,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6486,'2019-09-22T20:53:30.218Z',NULL,159,4,35.53017445377361,2.66,32.36998967754963,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6487,'2018-05-22T19:24:20.955Z',NULL,24,3,112.30643674729413,8.42,93.25072536274402,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6488,'2018-03-22T16:21:17.907Z',NULL,24,1,112.30643674729413,8.42,118.1856236059208,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6489,'2018-07-28T14:12:06.937Z',NULL,18,4,81.90307121097293,6.14,84.24666315785394,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6490,'2017-07-26T21:53:42.512Z',NULL,84,5,54.58418555091025,4.09,43.84522950829434,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6491,'2020-02-07T08:28:31.158Z',NULL,188,2,33.87738254731509,2.54,34.43406167624953,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6492,'2017-02-24T20:59:17.497Z',NULL,63,1,89.0134841727878,6.68,119.60019248163013,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6493,'2019-12-01T11:53:57.816Z',NULL,122,1,99.84528328808108,7.49,143.4330496726918,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6494,'2018-08-14T10:44:02.211Z',NULL,147,5,66.64727121216615,5,66.02148096004018,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6495,'2017-01-21T00:25:43.487Z',1.7758951800570093,13,2,75.0861692740371,5.63,67.04671954817165,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6496,'2018-03-14T22:53:27.312Z',NULL,179,1,68.32408657333919,5.12,86.33269215688111,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6497,'2020-03-04T12:18:35.130Z',NULL,148,1,138.9817182254566,10.42,106.60643351675711,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6498,'2016-10-04T11:09:53.867Z',NULL,115,4,51.94130981241432,3.9,62.71642119687853,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6499,'2017-07-10T21:06:16.979Z',NULL,194,3,33.587182645381546,2.52,31.886789476771256,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6500,'2018-06-29T02:50:11.257Z',NULL,101,3,139.82488066180403,10.49,141.6075557922518,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6501,'2016-11-15T19:03:31.072Z',NULL,116,2,76.28323416938524,5.72,73.6358278210416,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6502,'2016-06-24T01:56:47.811Z',8.717880579766048,107,7,33.39659192329691,2.5,32.77441356336899,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6503,'2018-09-17T14:20:55.318Z',NULL,97,6,112.41825444654248,8.43,151.28866439158892,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6504,'2016-12-21T19:47:22.576Z',NULL,90,3,82.07974183693327,6.16,94.09787933789833,886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6505,'2020-03-17T06:48:57.357Z',NULL,119,1,43.43814329652384,2.5,38.457927416708934,888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6506,'2020-03-06T10:16:53.479Z',NULL,129,1,148.1672972165937,8.52,147.526718833901,888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6507,'2017-06-22T12:07:03.998Z',NULL,199,9,76.95334253952366,4.42,101.26143576108714,888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6508,'2020-01-09T12:27:28.624Z',NULL,114,2,77.91196471862148,4.48,104.25936590440087,888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6509,'2018-03-14T03:11:49.829Z',NULL,57,1,122.4223933583994,7.04,118.27359476278015,888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6510,'2018-07-30T10:49:40.336Z',NULL,84,6,81.87627832636537,3.28,108.65402401821436,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6511,'2017-08-09T03:06:49.225Z',NULL,142,9,46.8990203814063,1.88,63.01024166492015,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6512,'2017-12-04T06:54:13.665Z',NULL,6,3,64.95747510229587,2.6,61.65276360412084,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6513,'2017-12-14T09:20:41.471Z',NULL,2,2,70.07989613071763,2.8,97.11376022279387,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6514,'2017-07-13T03:56:30.243Z',NULL,23,6,77.91115072995538,3.12,77.16068631494228,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6515,'2017-06-04T16:34:42.563Z',NULL,49,9,87.61910559549149,3.5,67.50984791453575,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6516,'2017-12-28T12:37:11.961Z',8.717880579766048,29,2,82.3829881204479,3.3,99.5866152623248,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6517,'2017-04-17T20:24:08.871Z',NULL,185,4,26.384667225677738,1.06,23.874318980162087,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6518,'2020-03-01T15:12:02.199Z',NULL,35,1,71.53687730741436,2.86,72.156251561541,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6519,'2017-10-01T12:59:22.968Z',NULL,115,7,51.94130981241432,2.08,47.60763519459313,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6520,'2018-07-27T06:05:40.493Z',NULL,93,6,49.81864156655383,1.99,71.50081598159001,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6521,'2017-03-21T12:35:41.919Z',NULL,53,1,29.517248267676894,1.18,26.2756118107895,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6522,'2018-03-07T16:44:19.137Z',NULL,15,1,37.648145389078365,1.51,35.9621082967783,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6523,'2019-09-04T00:15:44.762Z',NULL,159,7,35.53017445377361,1.42,40.03631522487851,890); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6524,'2018-05-23T07:22:50.567Z',NULL,85,5,54.90104734428525,2.2,44.88663306057239,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6525,'2018-01-26T01:25:24.620Z',NULL,128,2,75.08016314504417,3,107.41000272242768,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6526,'2019-03-09T02:04:42.868Z',NULL,112,1,41.329386510090345,1.65,46.78074485203388,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6527,'2017-11-12T15:15:56.647Z',NULL,93,4,33.212427711035886,1.33,25.629898841987735,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6528,'2018-09-28T12:39:43.787Z',NULL,173,5,122.3651993029456,4.89,153.55936740583212,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6529,'2017-05-11T10:01:41.764Z',NULL,89,5,42.47974183693326,1.7,58.32628615390109,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6530,'2018-10-01T16:55:04.043Z',NULL,171,6,105.07665741496471,4.2,100.34139553027016,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6531,'2019-02-15T15:06:58.005Z',NULL,181,2,143.88940370476112,5.76,201.8758044225855,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6532,'2018-10-19T20:34:51.522Z',NULL,131,8,113.11722203337729,4.52,95.66844159327499,892); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6533,'2018-05-09T10:37:42.844Z',NULL,36,5,130.93687730741433,8.18,181.68177233301046,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6534,'2016-11-18T05:46:17.963Z',NULL,45,3,78.6996782532274,4.92,66.08998614113007,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6535,'2019-02-23T21:45:45.114Z',NULL,151,2,91.61302306843446,5.73,109.96342608906485,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6536,'2018-09-07T04:21:35.181Z',NULL,104,7,106.44215255778118,6.65,114.38817675924176,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6537,'2017-07-31T12:41:45.963Z',NULL,7,7,98.81933684368194,6.18,90.47343447361526,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6538,'2018-01-12T04:01:15.382Z',4.409149078379494,6,2,97.43621265344382,6.09,88.33432074668035,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6539,'2018-07-27T16:29:30.971Z',NULL,132,4,127.88197029833711,7.99,160.51272354758405,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6540,'2019-11-03T07:13:45.484Z',NULL,129,2,148.1672972165937,9.26,151.96922834322535,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6541,'2019-02-16T03:13:28.997Z',NULL,168,1,118.93172693453273,7.43,128.56557819724875,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6542,'2018-01-06T21:00:53.754Z',NULL,111,2,55.526746186906664,3.47,71.04119884199147,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6543,'2018-06-15T08:51:56.325Z',NULL,55,6,95.77128575934437,5.99,93.58450075569036,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6544,'2017-05-13T22:39:51.950Z',NULL,197,4,46.76407124473339,2.92,58.73391403862278,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6545,'2019-07-04T17:29:27.400Z',NULL,168,4,118.93172693453273,7.43,114.74132510910951,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6546,'2019-02-16T02:12:44.710Z',5.622388862233442,181,1,143.88940370476112,8.99,110.53048391230521,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6547,'2019-12-30T02:38:30.393Z',NULL,182,1,84.48940370476112,5.28,68.24848588615293,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6548,'2019-07-24T18:53:14.540Z',NULL,43,2,76.35255205175756,4.77,85.431478654014,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6549,'2017-09-07T20:38:21.181Z',1.1223888622334417,91,4,43.39621873587423,2.71,61.12595453764831,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6550,'2019-08-05T00:29:51.329Z',NULL,64,7,143.4221774571866,8.96,181.05494143938088,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6551,'2019-12-23T07:01:09.842Z',NULL,183,2,56.697412301919755,3.54,62.221369673837145,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6552,'2020-01-07T10:08:58.266Z',NULL,47,2,84.0766209826718,5.25,61.59393737883663,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6553,'2019-11-14T17:12:40.487Z',NULL,158,2,139.8942352373801,8.74,166.95910423531564,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6554,'2017-05-30T05:27:06.870Z',NULL,121,2,26.96352219205405,1.69,26.75411926304666,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6555,'2019-02-27T22:28:26.514Z',NULL,80,1,54.91325681036414,3.43,52.23457355514622,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6556,'2018-10-13T09:37:37.243Z',NULL,102,6,47.04215255778118,2.94,53.608516186093496,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6557,'2019-08-28T08:40:30.339Z',NULL,164,5,92.96789820016517,5.81,127.6717663115997,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6558,'2019-01-29T17:08:24.838Z',NULL,191,1,128.5841852057933,8.04,136.69184693843985,893); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6559,'2019-07-19T17:45:06.406Z',NULL,89,4,63.719612755399886,3.03,69.04403329313074,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6560,'2017-08-20T11:23:06.426Z',NULL,142,3,46.8990203814063,2.23,55.12324725959297,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6561,'2019-03-09T11:46:31.406Z',NULL,54,1,62.09360840402396,2.95,89.93558557885127,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6562,'2018-07-31T19:26:06.628Z',NULL,133,4,68.4819702983371,3.25,98.70920716582262,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6563,'2019-07-31T05:07:49.176Z',NULL,65,2,68.22769726470014,3.24,86.97082747922151,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6564,'2017-05-21T13:36:54.078Z',NULL,134,2,28.328223666657742,1.35,36.26200578223516,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6565,'2018-06-01T16:37:51.736Z',NULL,101,6,139.82488066180403,6.64,127.56701891335828,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6566,'2017-09-04T00:18:07.865Z',NULL,21,5,40.38334406304544,1.92,36.809069851937664,896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6567,'2018-01-14T06:29:22.024Z',7.657624032141251,190,1,128.5841852057933,5.53,120.80048206897864,897); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6568,'2018-03-31T12:08:11.568Z',NULL,9,1,87.46968147789205,3.76,77.37934967398985,897); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6569,'2018-11-06T09:24:25.292Z',NULL,103,2,47.04215255778118,2.59,43.93292017761957,899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6570,'2017-10-28T18:56:31.347Z',NULL,138,4,75.96718984479077,4.18,77.83010260459844,899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6571,'2017-08-14T18:58:52.126Z',NULL,81,5,29.288656154807867,1.17,27.2308143350208,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6572,'2017-12-04T07:28:51.725Z',NULL,192,1,46.122790137195516,1.84,37.93478105572303,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6573,'2019-12-17T22:05:12.510Z',NULL,104,2,106.44215255778118,4.26,153.13346249913369,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6574,'2019-05-02T01:29:52.837Z',NULL,87,5,117.25536340498041,4.69,137.68522609874958,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6575,'2018-03-05T08:58:08.219Z',NULL,132,1,127.88197029833711,5.12,176.28078360965458,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6576,'2019-08-27T09:36:48.065Z',NULL,34,5,74.30391386913199,2.97,53.525247870785655,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6577,'2019-07-16T17:28:20.899Z',7.657624032141251,2,3,105.11984419607644,4.2,77.87322562166091,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6578,'2018-12-13T11:30:02.946Z',NULL,181,2,143.88940370476112,5.76,146.31564085775022,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6579,'2018-02-06T04:21:53.856Z',NULL,5,2,124.1176465275534,4.96,118.24953585443427,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6580,'2020-03-06T18:14:42.331Z',NULL,162,1,33.56789820016516,1.34,47.20450250885035,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6581,'2019-05-10T17:42:03.228Z',3.1576240321412508,14,4,37.648145389078365,1.51,43.728650735659485,900); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6582,'2019-04-08T00:52:32.925Z',NULL,62,2,133.5202262591817,0,131.36882651784373,901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6583,'2018-02-16T18:00:43.784Z',1.9118797597529176,195,1,109.78077396807234,0,104.21061217465474,901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6584,'2020-01-06T07:03:48.357Z',NULL,173,1,122.3651993029456,9.18,103.38326193216031,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6585,'2020-02-11T16:42:28.499Z',NULL,59,1,89.20214751859149,6.69,90.0566661655107,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6586,'2020-02-24T16:45:26.362Z',NULL,93,1,49.81864156655383,3.74,43.971203064284566,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6587,'2017-02-05T04:07:52.151Z',6.411879759752917,46,1,78.6996782532274,5.9,69.81778328779944,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6588,'2018-05-30T20:33:18.767Z',NULL,143,5,61.1983004605443,4.59,62.48150667508824,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6589,'2017-02-15T02:22:53.162Z',1.9118797597529176,51,1,50.433725012700116,3.78,56.092927557432176,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6590,'2018-11-28T14:06:25.003Z',NULL,119,2,43.43814329652384,3.26,41.02671723788132,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6591,'2019-01-27T19:40:50.363Z',NULL,132,2,127.88197029833711,9.59,138.93210953774414,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6592,'2017-11-29T20:03:44.906Z',NULL,93,2,33.212427711035886,2.49,44.66976045683925,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6593,'2018-12-19T19:39:51.038Z',NULL,198,2,70.14610686710009,5.26,79.83198448792552,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6594,'2019-03-29T20:48:02.246Z',NULL,86,1,92.31436670850246,6.92,126.16522683906659,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6595,'2019-04-07T13:44:27.316Z',NULL,145,2,61.1983004605443,4.59,76.76872504054982,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6596,'2019-03-03T02:17:37.791Z',NULL,151,1,91.61302306843446,6.87,116.54150986282208,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6597,'2018-07-01T13:11:18.353Z',NULL,147,5,66.64727121216615,5,54.4739577649564,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6598,'2020-02-03T19:31:55.930Z',NULL,37,2,80.10774204020768,6.01,83.16434675059668,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6599,'2019-01-27T14:59:20.480Z',NULL,162,2,33.56789820016516,2.52,27.147551238393977,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6600,'2019-03-17T13:36:23.536Z',NULL,113,1,110.47725376186015,8.29,82.70239895216685,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6601,'2019-02-01T15:41:42.688Z',1.9118797597529176,54,1,62.09360840402396,4.66,52.34543368235756,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6602,'2019-12-17T03:30:49.163Z',NULL,9,2,87.46968147789205,6.56,119.8428314811258,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6603,'2019-07-30T04:06:14.731Z',NULL,2,5,105.11984419607644,7.88,78.1163985475875,902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6604,'2018-02-04T06:13:55.030Z',NULL,60,2,29.80214751859149,2.05,28.809430501906174,904); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6605,'2018-04-12T23:49:30.751Z',NULL,16,3,66.11029954877317,4.55,62.16391033632267,904); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6606,'2017-08-26T22:38:03.193Z',NULL,68,7,76.82895921539838,5.28,80.53805179770707,904); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6607,'2017-12-12T01:50:59.373Z',NULL,43,2,50.90170136783837,3.5,40.36788133238846,904); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6608,'2018-01-12T04:20:43.347Z',1.9077161925080979,40,2,99.66240044231697,6.85,72.7586764178566,904); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6609,'2019-02-26T02:22:54.200Z',6.407716192508098,70,2,57.493003808959784,3.95,77.14505367854265,904); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6610,'2017-07-08T06:00:20.487Z',NULL,148,4,92.65447881697106,6.49,83.47675656601311,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6611,'2018-09-04T14:05:39.549Z',NULL,39,4,114.58158180283459,8.02,167.5924011668263,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6612,'2017-06-03T05:19:29.575Z',NULL,96,7,69.88096572393577,4.89,67.42985597535203,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6613,'2016-10-01T21:37:16.262Z',NULL,146,6,84.03151414144409,5.88,104.10729713708811,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6614,'2020-01-23T22:28:55.815Z',NULL,178,2,117.32963250370614,8.21,87.53092980529554,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6615,'2018-04-28T23:19:12.799Z',NULL,64,2,143.4221774571866,10.04,197.46165113008823,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6616,'2018-05-20T13:25:54.270Z',NULL,152,5,48.89568729900663,3.42,69.52270800041606,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6617,'2019-01-01T12:47:40.150Z',NULL,179,2,68.32408657333919,4.78,88.69853450285251,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6618,'2020-03-05T06:49:18.331Z',NULL,45,1,118.0495173798411,8.26,106.45825387608677,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6619,'2019-03-12T23:14:41.875Z',6.407716192508098,139,1,76.77768319177018,5.37,57.823313615691255,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6620,'2019-05-15T15:06:02.538Z',1.9077161925080979,189,5,93.27738254731509,6.53,132.54573275929533,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6621,'2017-06-25T00:47:29.907Z',NULL,96,5,69.88096572393577,4.89,95.21448381308173,905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6622,'2016-08-13T07:42:36.723Z',NULL,92,4,83.2616179105333,0,84.33179766551459,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6623,'2018-08-13T11:21:18.164Z',NULL,101,4,139.82488066180403,0,114.63559811052673,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6624,'2019-11-30T19:38:21.054Z',NULL,94,2,109.21864156655383,0,83.7705043126834,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6625,'2020-01-03T16:43:34.839Z',NULL,56,1,36.37128575934436,0,43.10791859991833,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6626,'2019-09-15T05:34:17.349Z',NULL,35,3,71.53687730741436,0,87.08934954588072,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6627,'2017-08-22T08:31:34.402Z',NULL,22,5,21.42451996044233,0,21.778984233270055,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6628,'2020-01-08T13:37:43.499Z',NULL,109,2,119.04991068193098,0,139.10370021782916,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6629,'2018-11-18T22:54:58.046Z',NULL,86,3,92.31436670850246,0,94.90477968190568,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6630,'2019-05-27T01:42:55.729Z',NULL,14,3,37.648145389078365,0,35.8426970688223,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6631,'2017-12-02T23:40:12.744Z',7.482341143310791,135,2,30.536015447715613,0,23.88805979362253,906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6632,'2019-03-11T00:22:01.812Z',NULL,17,1,79.93608046792765,3.38,73.80951304030663,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6633,'2016-11-10T15:26:48.451Z',NULL,146,3,84.03151414144409,3.55,66.11630779824546,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6634,'2019-07-16T12:43:56.297Z',7.482341143310791,148,5,138.9817182254566,5.87,107.23137950422942,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6635,'2019-07-29T16:29:23.707Z',NULL,10,6,47.6793282102869,2.01,67.62875070872646,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6636,'2018-08-17T19:54:25.122Z',NULL,129,6,148.1672972165937,6.26,128.77885867057404,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6637,'2020-04-17T11:34:30.142Z',NULL,183,2,56.697412301919755,2.4,81.35529790633976,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6638,'2019-04-03T03:03:48.038Z',NULL,28,3,68.12471180754113,2.88,60.589491266338854,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6639,'2018-06-04T01:38:06.731Z',NULL,172,8,122.3651993029456,5.17,141.3359424985371,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6640,'2018-07-29T07:39:19.449Z',NULL,53,6,44.27587240151534,1.87,33.98663827561188,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6641,'2020-02-10T20:51:52.773Z',NULL,140,2,66.80312547576881,2.82,63.52934919275311,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6642,'2019-11-19T00:47:33.649Z',2.9823411433107907,63,3,133.5202262591817,5.64,133.5523033723428,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6643,'2018-04-30T20:38:26.934Z',NULL,108,2,50.094887884945365,2.12,38.99714721215333,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6644,'2019-06-22T01:27:39.467Z',NULL,1,7,44.19489169601981,1.87,62.42702698452698,907); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6645,'2018-12-14T20:04:07.589Z',NULL,73,2,71.6287722595695,2.87,54.5254492680653,908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6646,'2017-06-04T00:54:25.975Z',5.062076779541428,178,7,78.21975500247076,3.13,84.57708688877668,908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6647,'2019-02-28T11:40:25.210Z',NULL,171,2,105.07665741496471,4.2,100.50862735386642,908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6648,'2019-05-13T22:22:59.119Z',NULL,8,6,98.83823503993958,3.95,82.38868205296183,908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6649,'2016-08-15T01:03:43.044Z',NULL,173,8,81.57679953529707,3.26,93.39769928085053,908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6650,'2017-12-21T13:01:55.068Z',NULL,58,2,52.097186713859216,2.08,45.43024890110663,908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6651,'2017-01-31T14:29:43.091Z',NULL,160,2,31.727470408648482,2.06,42.826165015135366,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6652,'2019-02-24T04:08:06.200Z',NULL,10,2,47.6793282102869,3.1,43.80504216294978,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6653,'2018-03-24T23:53:36.812Z',NULL,182,1,84.48940370476112,5.49,88.05398247445672,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6654,'2018-02-20T16:00:55.340Z',NULL,97,2,112.41825444654248,7.31,113.15719022831439,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6655,'2018-02-28T01:43:55.626Z',NULL,191,2,128.5841852057933,8.36,124.36597796000989,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6656,'2017-07-05T04:04:08.589Z',NULL,73,6,47.752514839713,3.1,65.24380351644308,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6657,'2019-10-24T04:46:22.230Z',NULL,76,8,63.82421061366486,4.15,83.46389450016807,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6658,'2017-03-24T23:47:01.930Z',5.062076779541428,187,1,65.98466722567774,4.29,92.5086671298961,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6659,'2019-10-16T02:43:55.914Z',NULL,181,7,143.88940370476112,9.35,196.30798981415583,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6660,'2019-07-09T10:58:47.311Z',NULL,30,5,64.17448218067184,4.17,87.93514574962602,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6661,'2018-12-20T21:06:49.673Z',NULL,186,2,98.9770008385166,6.43,108.20917454668599,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6662,'2017-01-29T05:25:57.893Z',NULL,84,3,54.58418555091025,3.55,61.40997553093814,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6663,'2017-12-30T03:36:59.093Z',NULL,200,2,48.802638078661005,3.17,61.39692626013293,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6664,'2019-01-17T21:15:00.341Z',NULL,42,2,38.00410713690931,2.47,41.25445760105273,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6665,'2019-10-03T00:29:34.028Z',NULL,81,7,43.9329842322118,2.86,33.55216321149454,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6666,'2018-07-31T02:48:51.903Z',NULL,30,5,64.17448218067184,4.17,68.67783570313959,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6667,'2018-09-16T14:55:14.493Z',NULL,164,5,92.96789820016517,6.04,82.60337487649018,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6668,'2018-12-01T20:45:50.242Z',NULL,197,2,70.14610686710009,4.56,63.22637781749333,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6669,'2019-02-01T02:02:10.177Z',NULL,126,2,125.24398120308456,8.14,159.11268396662672,909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6670,'2017-05-16T00:22:42.133Z',NULL,126,4,83.49598746872304,5.01,87.2890222192753,910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6671,'2017-05-07T02:30:20.532Z',NULL,35,4,47.691251538276234,2.86,64.5019777385111,910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6672,'2019-06-04T17:14:17.212Z',NULL,86,6,92.31436670850246,5.54,101.82118964000061,910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6673,'2020-02-29T23:31:01.300Z',NULL,14,1,37.648145389078365,2.26,39.93730604536407,910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6674,'2017-12-22T09:04:22.440Z',NULL,169,1,39.68781795635516,2.38,51.27741961886955,910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6675,'2019-05-30T21:05:07.654Z',NULL,174,4,111.61430894181083,6.7,160.90088709308012,910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6676,'2020-03-09T23:36:47.125Z',NULL,190,1,128.5841852057933,8.36,165.47876165591316,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6677,'2018-02-01T03:55:07.914Z',NULL,124,1,110.93145648834248,7.21,97.46655320473376,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6678,'2019-06-21T21:56:19.383Z',NULL,108,5,50.094887884945365,3.26,71.81873747976806,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6679,'2017-09-02T07:53:13.774Z',NULL,33,4,31.829909130640935,2.07,24.768252306185772,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6680,'2018-06-27T22:50:49.659Z',NULL,128,5,75.08016314504417,4.88,105.73950197728526,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6681,'2020-01-12T19:05:55.238Z',NULL,49,2,131.42865839323724,8.54,140.48937180980883,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6682,'2018-04-23T01:48:00.536Z',NULL,153,4,66.79892314178237,4.34,81.76373202575571,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6683,'2019-03-07T15:27:11.032Z',NULL,141,1,126.20312547576883,8.2,122.85724706289967,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6684,'2017-10-17T11:44:44.229Z',NULL,45,57,78.6996782532274,5.12,79.02522395433887,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6685,'2019-07-22T02:38:56.342Z',3.5968209652293535,77,4,101.01691728415972,6.57,86.25616726541998,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6686,'2019-11-20T12:44:29.019Z',NULL,15,2,37.648145389078365,2.45,37.82386730648466,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6687,'2019-09-15T20:39:06.738Z',NULL,172,37,122.3651993029456,7.95,119.6509717855793,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6688,'2017-04-05T23:01:25.600Z',NULL,15,2,25.09876359271891,1.63,20.132733262516364,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6689,'2019-07-20T08:19:01.418Z',NULL,13,5,112.62925391105566,7.32,109.60134511738897,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6690,'2017-09-18T15:25:44.579Z',NULL,117,6,36.683234169385244,2.38,41.35038364481299,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6691,'2018-04-21T05:36:59.164Z',NULL,143,4,61.1983004605443,3.98,90.66465291414673,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6692,'2019-11-04T02:00:06.531Z',NULL,160,3,47.59120561297272,3.09,51.79175048078532,911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6693,'2017-07-03T09:43:40.355Z',NULL,11,4,88.30453275661709,5.52,67.78022463676557,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6694,'2017-11-18T16:28:41.443Z',8.096820965229353,97,2,74.94550296436165,4.68,72.34024483416853,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6695,'2019-03-29T10:29:10.860Z',NULL,131,1,113.11722203337729,7.07,140.66105601287663,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6696,'2017-07-08T11:02:33.144Z',NULL,94,5,72.81242771103588,4.55,102.59763279884643,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6697,'2019-11-06T00:02:17.823Z',NULL,41,4,63.50890855689462,3.97,88.10697154305602,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6698,'2018-08-31T03:30:01.193Z',NULL,66,7,136.16126271106958,8.51,149.04412081187974,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6699,'2019-05-26T14:10:39.675Z',NULL,125,4,80.39699207990944,5.02,79.33306234542177,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6700,'2017-04-26T04:45:44.669Z',NULL,82,3,40.59697158687298,2.54,29.478803843380966,912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6701,'2019-11-13T09:52:19.823Z',NULL,31,3,105.65346467128523,6.34,155.63483979151843,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6702,'2018-07-11T11:19:40.071Z',NULL,99,5,67.83486485383094,4.07,87.11941764081696,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6703,'2018-10-05T23:38:00.419Z',NULL,136,4,105.20402317157343,6.31,102.19866298220265,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6704,'2017-10-16T12:18:07.401Z',NULL,196,6,46.76407124473339,2.81,65.42659920952514,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6705,'2018-03-05T00:23:55.588Z',NULL,172,1,122.3651993029456,7.34,152.95540980254555,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6706,'2020-02-12T10:08:28.246Z',NULL,23,2,116.86672609493307,7.01,90.91980486475555,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6707,'2017-08-01T01:40:26.491Z',NULL,123,5,73.95430432556165,4.44,87.8645724707252,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6708,'2017-08-24T04:01:58.909Z',NULL,131,5,75.41148135558485,4.52,102.05524030929016,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6709,'2020-03-20T18:01:43.580Z',NULL,115,1,77.91196471862148,4.67,107.58530506793734,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6710,'2020-01-19T22:55:46.624Z',NULL,113,2,110.47725376186015,6.63,95.56875572872411,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6711,'2019-04-03T08:29:00.315Z',NULL,72,3,142.20381898788685,8.53,188.3973177879036,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6712,'2019-12-05T08:02:52.556Z',NULL,184,2,116.09741230191975,6.97,110.47253099914754,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6713,'2019-10-14T00:22:14.624Z',NULL,175,4,117.3248094335266,7.04,103.10533723503175,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6714,'2016-08-26T15:43:24.805Z',NULL,34,5,49.535942579421324,2.97,46.55865853929252,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6715,'2018-06-27T05:14:31.480Z',1.644099553077651,184,7,116.09741230191975,6.97,139.47619594695024,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6716,'2019-08-19T02:10:14.845Z',NULL,52,7,103.67587240151535,6.22,107.91328634066537,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6717,'2017-07-17T08:22:23.039Z',NULL,52,5,69.1172482676769,4.15,73.89907829817888,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6718,'2017-11-11T01:15:07.208Z',NULL,18,3,54.60204747398195,3.28,48.260294483783944,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6719,'2018-02-08T16:42:22.333Z',NULL,171,2,105.07665741496471,6.3,98.51895837154532,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6720,'2016-12-19T18:05:20.568Z',6.144099553077651,47,2,56.05108065511453,3.36,58.4764888353843,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6721,'2018-09-10T21:05:53.175Z',1.644099553077651,80,4,54.91325681036414,3.29,80.01231491782595,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6722,'2018-03-03T01:35:51.209Z',NULL,61,1,23.537915510955656,1.41,20.72442724668511,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6723,'2019-01-09T09:06:05.299Z',NULL,117,2,55.024851254077866,3.3,52.74080143971524,913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6724,'2017-03-09T22:41:42.048Z',NULL,133,1,45.654646865558064,2.85,62.57609716880316,914); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6725,'2018-10-04T19:02:34.485Z',NULL,54,4,62.09360840402396,3.88,52.51262842640043,914); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6726,'2019-02-27T16:47:34.742Z',NULL,199,1,115.4300138092855,7.21,109.65040385910004,914); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6727,'2019-01-04T08:11:03.841Z',NULL,190,1,128.5841852057933,8.04,130.57346077186787,914); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6728,'2019-09-13T21:44:41.343Z',NULL,25,3,68.62263967182464,4.8,100.47432986764055,915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6729,'2020-03-07T04:36:42.685Z',NULL,47,1,84.0766209826718,5.89,69.11435263517001,915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6730,'2017-07-08T16:39:09.428Z',7.6875198916590834,147,5,44.4315141414441,3.11,53.23724736421498,915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6731,'2019-08-17T14:50:13.710Z',NULL,87,7,117.25536340498041,8.21,104.69022640889472,915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6732,'2018-12-05T12:22:49.573Z',NULL,130,2,75.02573869315137,5.25,105.12749125383291,915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6733,'2016-10-09T08:42:44.311Z',NULL,162,7,22.378598800110105,1.57,22.567325614095708,915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6734,'2018-01-21T17:18:54.195Z',NULL,89,2,63.719612755399886,3.19,85.6901360833467,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6735,'2018-02-08T18:05:25.499Z',NULL,104,2,106.44215255778118,5.32,126.25194876957511,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6736,'2018-05-02T01:28:23.825Z',NULL,57,4,122.4223933583994,6.12,173.86114782493226,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6737,'2018-06-23T07:43:49.961Z',3.187519891659084,68,4,115.24343882309758,5.76,164.02928636740518,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6738,'2019-05-11T12:49:26.877Z',NULL,120,4,83.5020135028928,4.18,77.17758164240908,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6739,'2020-01-17T01:59:23.840Z',NULL,183,2,56.697412301919755,2.83,74.0769345800157,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6740,'2019-12-12T12:15:39.929Z',NULL,195,2,109.78077396807234,5.49,134.99733812424333,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6741,'2019-10-15T06:03:11.588Z',NULL,26,5,68.12471180754113,3.41,75.6597503413076,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6742,'2019-09-14T23:51:33.703Z',NULL,126,6,125.24398120308456,6.26,90.79805572222173,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6743,'2018-08-06T21:43:18.044Z',NULL,65,9,68.22769726470014,3.41,80.70212686261539,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6744,'2020-01-27T04:49:33.365Z',NULL,157,2,139.8942352373801,6.99,106.46498111416376,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6745,'2018-04-10T13:41:26.273Z',NULL,132,3,127.88197029833711,6.39,168.3125403948776,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6746,'2019-01-27T10:30:35.643Z',NULL,97,2,112.41825444654248,5.62,161.03423099379035,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6747,'2017-07-03T13:26:04.199Z',NULL,138,5,75.96718984479077,3.8,61.13844456987435,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6748,'2017-07-03T10:20:12.391Z',NULL,109,6,79.36660712128732,3.97,78.73009261193158,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6749,'2018-12-22T00:22:36.254Z',NULL,172,2,122.3651993029456,6.12,124.67896933490657,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6750,'2020-02-03T00:32:49.772Z',NULL,149,2,69.15415037577924,3.46,82.65378881456306,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6751,'2019-05-24T08:19:44.504Z',NULL,107,4,50.094887884945365,2.5,63.36884298488405,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6752,'2018-12-15T02:55:18.620Z',NULL,170,2,105.07665741496471,5.25,126.87123238963444,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6753,'2019-04-21T22:48:06.348Z',NULL,44,2,76.35255205175756,3.82,59.71082478630656,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6754,'2018-07-31T05:39:12.630Z',NULL,41,5,63.50890855689462,3.18,51.26089898451411,916); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6755,'2019-12-07T13:56:38.590Z',NULL,158,2,139.8942352373801,4.06,134.30538255782832,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6756,'2018-04-20T23:06:46.561Z',NULL,198,4,70.14610686710009,2.03,70.33749572028503,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6757,'2018-10-26T17:01:16.885Z',3.108373874046561,11,7,132.45679913492563,3.84,103.98430276722908,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6758,'2018-08-11T16:16:28.406Z',NULL,32,7,107.1448636959614,3.11,93.16678242574874,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6759,'2016-11-28T05:48:48.738Z',NULL,92,3,83.2616179105333,2.41,89.00010821202312,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6760,'2017-11-30T18:12:45.780Z',NULL,38,4,44.04624855892918,1.28,47.555398461632024,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6761,'2018-05-15T05:43:33.663Z',7.608373874046562,196,4,70.14610686710009,2.03,95.32030558553069,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6762,'2019-05-11T05:30:18.384Z',NULL,162,3,33.56789820016516,0.97,25.706807842581096,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6763,'2019-01-08T21:08:16.557Z',NULL,58,1,78.14578007078882,2.27,54.97420447733024,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6764,'2018-02-25T06:02:17.497Z',NULL,53,2,44.27587240151534,1.28,51.16944718745863,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6765,'2019-03-29T21:51:39.933Z',NULL,85,1,54.90104734428525,1.59,74.99252449506386,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6766,'2016-11-22T17:03:00.567Z',NULL,139,3,51.18512212784679,1.48,72.75804570633177,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6767,'2018-08-16T17:25:38.045Z',NULL,169,8,59.53172693453274,1.73,56.55690173249857,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6768,'2019-04-28T05:39:30.143Z',NULL,57,4,122.4223933583994,3.55,121.16568634143263,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6769,'2019-08-26T15:10:36.239Z',NULL,16,7,66.11029954877317,1.92,64.14365691388504,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6770,'2016-11-19T11:46:47.476Z',NULL,19,2,42.67116731707548,1.24,60.59391470049462,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6771,'2020-03-14T17:25:39.244Z',NULL,63,1,133.5202262591817,3.87,185.1013292941814,917); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6772,'2017-03-29T04:33:30.695Z',NULL,161,1,31.727470408648482,1.27,29.846125052518946,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6773,'2019-03-27T19:17:37.881Z',NULL,77,1,101.01691728415972,4.04,129.20603299667067,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6774,'2017-10-28T20:39:34.056Z',NULL,46,4,78.6996782532274,3.15,73.10861546074877,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6775,'2020-01-11T07:07:35.252Z',NULL,121,2,40.44528328808107,1.62,33.26397765059257,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6776,'2019-09-20T09:53:43.456Z',NULL,154,5,81.87529553312261,3.28,113.37696486473921,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6777,'2019-09-19T00:11:04.168Z',NULL,128,4,75.08016314504417,3,67.88204345688774,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6778,'2019-01-02T14:24:20.271Z',NULL,15,2,37.648145389078365,1.51,44.586195471391136,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6779,'2019-04-09T03:04:25.729Z',NULL,181,2,143.88940370476112,5.76,167.64102672486607,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6780,'2019-10-20T22:44:57.216Z',NULL,119,3,43.43814329652384,1.74,55.867172316895235,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6781,'2019-09-10T17:23:07.524Z',6.184409583371231,41,4,63.50890855689462,2.54,65.34460943883163,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6782,'2019-03-10T01:02:13.769Z',NULL,61,1,23.537915510955656,0.94,19.8085803543351,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6783,'2019-01-25T13:46:51.013Z',NULL,169,2,59.53172693453274,2.38,83.20203148355593,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6784,'2020-02-13T06:28:41.083Z',NULL,80,1,54.91325681036414,2.2,40.00532671782205,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6785,'2018-05-03T19:59:31.534Z',NULL,192,2,69.18418520579327,2.77,99.56347280225893,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6786,'2017-03-01T11:42:02.442Z',NULL,173,1,81.57679953529707,3.26,102.13082192092314,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6787,'2020-02-10T07:48:27.562Z',NULL,128,1,75.08016314504417,3,56.85475351511586,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6788,'2019-12-31T21:08:21.460Z',1.6844095833712311,59,1,89.20214751859149,3.57,72.22437769508717,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6789,'2019-05-21T03:17:37.528Z',NULL,196,2,70.14610686710009,2.81,61.360447128731295,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6790,'2019-01-13T02:44:28.471Z',NULL,56,1,36.37128575934436,1.45,39.51640554768324,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6791,'2020-03-15T08:47:17.983Z',NULL,169,1,59.53172693453274,2.38,59.6037329005591,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6792,'2018-03-02T09:19:58.365Z',1.6844095833712311,198,1,70.14610686710009,2.81,80.86296309197368,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6793,'2019-12-16T06:51:31.676Z',NULL,139,2,76.77768319177018,3.07,110.64367348519261,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6794,'2019-11-04T00:59:25.543Z',NULL,150,2,128.55415037577922,5.14,111.0850479709718,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6795,'2018-08-23T19:04:30.752Z',NULL,120,5,83.5020135028928,3.34,92.01966114389883,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6796,'2017-04-16T13:16:26.432Z',NULL,173,2,81.57679953529707,3.26,79.13789874623265,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6797,'2018-09-16T08:14:34.136Z',NULL,124,5,110.93145648834248,4.44,147.66369610599233,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6798,'2018-06-19T21:14:15.241Z',NULL,180,5,68.32408657333919,2.73,48.175115618813166,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6799,'2018-09-25T04:31:54.976Z',NULL,189,2,93.27738254731509,3.73,98.85638252330733,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6800,'2020-03-08T12:48:52.343Z',NULL,2,0,105.11984419607644,4.2,99.67502656273957,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6801,'2016-10-21T10:42:19.925Z',NULL,13,27,75.0861692740371,3,91.88995506839737,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6802,'2017-12-13T13:29:56.594Z',NULL,77,1,67.34461152277315,2.69,56.520957612823814,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6803,'2019-07-16T20:13:46.905Z',NULL,123,4,110.93145648834248,4.44,128.63545793738496,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6804,'2018-02-27T00:50:29.696Z',NULL,90,2,123.1196127553999,4.92,163.47167060545678,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6805,'2018-06-04T05:38:25.920Z',NULL,196,6,70.14610686710009,2.81,52.700205756578015,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6806,'2019-09-29T09:12:44.294Z',NULL,26,5,68.12471180754113,2.72,78.74745910774004,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6807,'2018-09-09T04:06:39.286Z',NULL,156,4,30.615804149046195,1.22,42.14453993738668,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6808,'2019-10-03T21:15:43.270Z',NULL,91,3,65.09432810381134,2.6,65.02115011924795,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6809,'2018-10-27T13:30:38.597Z',NULL,152,3,48.89568729900663,1.96,35.04269798711759,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6810,'2018-11-27T00:43:53.296Z',NULL,25,1,68.62263967182464,2.74,89.40754018543664,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6811,'2017-11-10T15:40:57.368Z',NULL,142,2,46.8990203814063,1.88,60.72155534606188,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6812,'2019-10-08T01:34:57.753Z',NULL,162,42,33.56789820016516,1.34,46.064971983497465,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6813,'2018-02-19T15:23:46.553Z',NULL,83,1,81.87627832636537,3.28,61.973576189727325,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6814,'2020-01-15T09:37:16.091Z',NULL,49,1,131.42865839323724,5.26,122.09338219054476,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6815,'2019-07-12T13:56:49.591Z',NULL,150,2,128.55415037577922,5.14,115.28116371324006,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6816,'2020-01-05T23:34:47.056Z',NULL,98,1,112.41825444654248,4.5,126.74537936310135,918); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6817,'2018-04-04T11:20:03.776Z',NULL,91,3,65.09432810381134,4.48,53.97973378377536,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6818,'2019-05-17T00:57:01.782Z',NULL,170,4,105.07665741496471,7.22,126.2548201849099,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6819,'2017-09-18T11:39:41.947Z',NULL,37,3,53.40516136013846,3.67,50.7840289881697,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6820,'2017-04-30T02:56:03.403Z',NULL,68,2,76.82895921539838,5.28,67.93610920623036,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6821,'2019-09-18T18:55:12.680Z',NULL,176,3,57.92480943352658,3.98,70.8209287803313,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6822,'2018-12-20T01:51:30.992Z',NULL,137,2,67.77247956807186,4.66,91.47451326039823,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6823,'2016-10-21T14:48:35.292Z',NULL,106,7,35.149014295079674,2.42,41.83727677328705,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6824,'2020-03-19T11:00:02.546Z',NULL,55,1,95.77128575934437,6.58,92.54811015154544,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6825,'2018-08-30T08:34:23.842Z',NULL,177,8,128.8192981944599,8.86,121.89047815182839,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6826,'2017-10-04T03:41:24.054Z',NULL,106,7,35.149014295079674,2.42,45.3198847110305,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6827,'2017-12-25T09:02:16.685Z',NULL,146,2,84.03151414144409,5.78,109.2875707435066,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6828,'2017-08-31T12:42:09.530Z',NULL,113,8,73.65150250790677,5.06,98.53558297437387,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6829,'2018-07-18T10:03:41.663Z',2.695038674106682,139,4,76.77768319177018,5.28,85.66909537378518,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6830,'2017-06-13T11:55:49.436Z',NULL,135,6,30.536015447715613,2.1,35.439861477816436,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6831,'2019-08-19T13:20:15.246Z',NULL,45,8,118.0495173798411,8.12,176.3367323025074,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6832,'2019-05-11T06:48:19.641Z',7.195038674106682,188,5,33.87738254731509,2.33,39.778247405198165,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6833,'2016-07-30T03:37:27.218Z',NULL,40,4,66.44160029487797,4.57,79.87654089531651,919); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6834,'2017-10-03T15:52:52.627Z',NULL,193,4,33.587182645381546,1.72,32.897936834606284,923); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6835,'2018-08-04T14:23:04.687Z',NULL,87,6,117.25536340498041,6.01,91.59370334221431,923); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6836,'2017-09-23T16:59:45.534Z',NULL,138,6,75.96718984479077,3.89,64.5362350336827,923); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6837,'2019-07-09T11:46:54.467Z',NULL,37,6,80.10774204020768,4.11,104.79149571466614,923); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6838,'2019-11-02T04:51:28.669Z',NULL,153,2,66.79892314178237,4.68,97.25199157246107,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6839,'2019-09-10T03:59:29.853Z',NULL,135,3,45.80402317157342,3.21,63.23313965263536,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6840,'2016-09-29T14:12:17.059Z',NULL,126,4,83.49598746872304,5.84,123.68943911847916,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6841,'2018-12-20T01:50:10.423Z',NULL,188,2,33.87738254731509,2.37,34.033154930856874,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6842,'2019-09-27T14:07:52.560Z',NULL,38,4,66.06937283839378,4.62,94.05105207703872,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6843,'2018-12-24T00:13:06.967Z',NULL,197,2,70.14610686710009,4.91,96.30710048511793,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6844,'2019-10-07T05:46:02.424Z',NULL,154,4,81.87529553312261,5.73,121.69694407908277,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6845,'2019-02-24T17:32:01.565Z',NULL,167,2,97.70449564120193,6.84,72.40172620330411,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6846,'2019-09-14T19:52:36.452Z',NULL,59,5,89.20214751859149,6.24,112.92745040722299,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6847,'2019-05-16T05:12:59.414Z',1.7657604932015873,145,3,61.1983004605443,4.28,90.80528186250365,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6848,'2019-09-16T20:34:31.921Z',NULL,170,3,105.07665741496471,7.36,127.07101861567502,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6849,'2018-02-20T20:59:27.605Z',NULL,163,1,33.56789820016516,2.35,47.91567864606849,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6850,'2018-12-14T09:56:00.422Z',17.65760493201587,50,1,53.64019616819762,3.75,66.31736839561887,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6851,'2017-09-30T13:47:33.933Z',1.7657604932015873,74,3,34.08536151591033,2.39,36.80103809368107,924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6852,'2019-09-26T13:14:13.575Z',NULL,18,4,81.90307121097293,6.14,114.96605015309409,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6853,'2018-05-08T03:29:21.775Z',NULL,35,3,71.53687730741436,5.37,79.57451774491905,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6854,'2017-03-29T07:48:00.667Z',NULL,84,1,54.58418555091025,4.09,39.57738868216894,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6855,'2017-12-16T01:27:22.905Z',NULL,146,2,84.03151414144409,6.3,99.67810755102393,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6856,'2019-05-02T08:56:21.004Z',NULL,14,2,37.648145389078365,2.82,28.293105506586436,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6857,'2018-11-24T16:06:18.361Z',NULL,122,2,99.84528328808108,7.49,109.54545058132393,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6858,'2019-08-22T12:15:37.005Z',NULL,144,7,61.1983004605443,4.59,70.65741066915398,925); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6859,'2019-10-17T21:32:31.997Z',NULL,161,6,47.59120561297272,2.62,54.70408530380221,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6860,'2017-06-28T23:12:39.002Z',7.128353746201335,174,7,74.40953929454055,4.09,91.14256712464764,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6861,'2017-11-20T04:42:39.923Z',NULL,9,3,58.31312098526137,3.21,66.42257904305616,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6862,'2016-12-20T07:43:54.571Z',NULL,166,1,25.536330427467956,1.4,29.583335395337457,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6863,'2017-04-09T13:04:22.675Z',2.6283537462013347,51,2,50.433725012700116,2.77,61.146424687670546,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6864,'2018-09-07T12:53:05.467Z',NULL,66,3,136.16126271106958,7.49,153.4402356526483,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6865,'2018-06-15T21:04:50.410Z',NULL,148,6,138.9817182254566,7.64,158.82146200388866,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6866,'2019-12-15T02:12:43.168Z',NULL,83,2,81.87627832636537,4.5,97.14707660690262,927); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6867,'2018-05-20T21:49:04.427Z',NULL,123,4,110.93145648834248,5.55,97.97883754257849,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6868,'2019-07-27T10:48:57.341Z',7.128353746201335,193,4,50.38077396807232,2.52,43.51706256787381,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6869,'2019-04-16T07:31:37.674Z',NULL,9,3,87.46968147789205,4.37,88.66864049866717,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6870,'2018-08-18T20:27:29.209Z',NULL,177,8,128.8192981944599,6.44,173.44228612552752,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6871,'2019-01-15T05:10:29.549Z',NULL,47,2,84.0766209826718,4.2,87.15632506425655,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6872,'2019-05-03T14:00:24.447Z',NULL,182,4,84.48940370476112,4.22,78.21129579490528,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6873,'2019-11-25T09:45:32.484Z',NULL,103,3,47.04215255778118,2.35,43.22774730882131,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6874,'2019-02-05T18:05:07.159Z',NULL,114,2,77.91196471862148,3.9,71.22274193814127,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6875,'2017-11-10T12:15:04.598Z',NULL,1,3,29.463261130679875,1.47,29.96499546708545,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6876,'2018-08-14T05:44:45.450Z',NULL,176,6,57.92480943352658,2.9,82.10547082488947,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6877,'2019-03-02T22:35:11.306Z',NULL,95,1,49.81864156655383,2.49,52.99220340992491,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6878,'2019-06-26T14:45:22.841Z',NULL,119,7,43.43814329652384,2.17,61.94081763196415,929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6879,'2017-03-13T16:05:16.938Z',NULL,74,1,34.08536151591033,2.13,27.28379209482525,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6880,'2018-11-15T23:32:41.823Z',NULL,94,3,109.21864156655383,6.83,149.15295532039494,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6881,'2018-03-10T20:16:34.521Z',NULL,55,1,95.77128575934437,5.99,87.60969691268727,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6882,'2018-04-24T14:26:22.749Z',NULL,33,4,47.7448636959614,2.98,47.72698887064249,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6883,'2017-09-23T03:16:42.786Z',8.758867367112371,156,5,20.41053609936413,1.28,23.750042700428924,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6884,'2018-05-26T23:28:14.505Z',NULL,150,4,128.55415037577922,8.03,149.6043383912507,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6885,'2019-08-21T01:12:00.136Z',NULL,114,8,77.91196471862148,4.87,69.99145474717139,930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6886,'2019-04-11T18:21:24.670Z',NULL,165,4,38.30449564120193,2.3,36.486690673055115,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6887,'2019-02-07T21:13:34.895Z',NULL,67,2,41.24480890795779,2.47,53.609183437157405,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6888,'2018-12-04T16:26:07.754Z',NULL,122,3,99.84528328808108,5.99,133.08541026382377,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6889,'2019-08-04T15:29:00.103Z',NULL,117,8,55.024851254077866,3.3,75.25017882239763,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6890,'2017-04-06T08:56:05.811Z',NULL,163,2,22.378598800110105,1.34,27.460782731580572,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6891,'2018-05-31T19:23:52.431Z',NULL,82,5,60.89545738030947,3.65,86.29436561420972,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6892,'2019-03-16T17:15:26.589Z',NULL,30,1,64.17448218067184,3.85,67.75205631933264,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6893,'2019-09-06T05:57:00.915Z',NULL,62,7,133.5202262591817,8.01,129.30946505188177,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6894,'2019-12-19T10:23:47.084Z',NULL,87,2,117.25536340498041,7.04,171.2319611220304,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6895,'2019-08-04T23:13:10.646Z',NULL,31,8,105.65346467128523,6.34,79.63533458523692,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6896,'2019-06-21T08:53:30.118Z',NULL,10,7,47.6793282102869,2.86,36.98281752640803,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6897,'2020-02-12T11:05:37.198Z',NULL,71,1,82.80381898788684,4.97,97.19459414113803,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6898,'2020-03-27T08:44:04.491Z',NULL,103,1,47.04215255778118,2.82,43.59931353183867,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6899,'2017-03-15T08:39:52.538Z',NULL,16,1,44.07353303251545,2.64,48.913607831665466,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6900,'2019-10-23T07:47:54.148Z',NULL,31,6,105.65346467128523,6.34,145.2104493282537,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6901,'2020-02-14T07:37:34.513Z',NULL,130,2,75.02573869315137,4.5,54.1369740350137,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6902,'2017-11-24T17:26:44.462Z',NULL,1,4,29.463261130679875,1.77,33.74361474878336,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6903,'2020-01-27T23:54:58.380Z',NULL,76,3,63.82421061366486,3.83,75.37294243437134,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6904,'2019-06-01T18:39:45.411Z',NULL,111,9,55.526746186906664,3.33,69.45723884467365,931); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6905,'2018-01-19T06:19:08.734Z',NULL,117,3,55.024851254077866,0,54.33238280580623,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6906,'2018-10-05T21:50:56.255Z',NULL,188,6,33.87738254731509,0,25.884210154181687,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6907,'2019-10-10T20:37:31.197Z',NULL,96,4,104.82144858590365,0,126.85340603353592,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6908,'2018-11-18T11:17:35.551Z',3.6208675581866268,119,2,43.43814329652384,0,29.669314050175025,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6909,'2019-12-11T06:49:09.372Z',NULL,134,2,42.49233549998661,0,46.952842017613236,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6910,'2019-11-02T09:33:29.209Z',NULL,59,4,89.20214751859149,0,77.23579305177468,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6911,'2018-12-10T09:40:14.646Z',NULL,90,3,123.1196127553999,0,143.58137122988185,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6912,'2019-05-18T16:41:44.215Z',NULL,41,4,63.50890855689462,0,49.870273324564856,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6913,'2018-07-07T23:51:06.137Z',NULL,21,4,60.57501609456816,0,81.62914646404192,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6914,'2019-10-06T13:30:48.447Z',NULL,136,6,105.20402317157343,0,110.8391714670131,932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6915,'2019-09-17T11:22:23.231Z',NULL,197,5,70.14610686710009,4.38,75.7116754130791,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6916,'2019-07-09T23:58:54.951Z',NULL,125,5,80.39699207990944,5.02,83.85460261497167,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6917,'2019-12-04T05:53:10.734Z',NULL,123,3,110.93145648834248,6.93,104.01049467248694,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6918,'2018-12-02T10:00:57.595Z',8.120867558186626,164,3,92.96789820016517,5.81,117.84296777483438,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6919,'2017-11-01T17:33:45.142Z',NULL,199,4,76.95334253952366,4.81,97.31343090871351,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6920,'2017-06-29T14:06:09.804Z',NULL,14,6,25.09876359271891,1.57,37.409707655332035,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6921,'2018-11-03T01:18:03.051Z',NULL,139,3,76.77768319177018,4.8,84.5260463260154,933); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6922,'2018-07-11T16:48:16.156Z',NULL,117,5,55.024851254077866,4.13,54.72142927506375,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6923,'2018-11-11T17:27:01.769Z',NULL,180,2,68.32408657333919,5.12,99.96398483390986,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6924,'2017-06-04T12:09:14.751Z',NULL,7,6,98.81933684368194,7.41,92.05881716433785,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6925,'2019-08-21T13:33:51.603Z',NULL,37,7,80.10774204020768,6.01,94.46675480256377,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6926,'2019-01-21T17:25:54.361Z',NULL,57,2,122.4223933583994,9.18,143.88601330339054,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6927,'2019-09-24T10:33:00.276Z',NULL,58,6,78.14578007078882,5.86,117.36013617854164,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6928,'2019-02-27T02:34:16.526Z',NULL,87,2,117.25536340498041,8.79,162.28924936661207,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6929,'2019-07-02T18:18:14.228Z',NULL,192,5,69.18418520579327,5.19,86.47970722319047,934); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6930,'2017-01-21T05:18:23.507Z',NULL,19,2,42.67116731707548,2.56,49.0223196617464,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6931,'2017-07-19T12:02:13.949Z',NULL,103,4,31.361435038520785,1.88,33.35596837885106,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6932,'2019-07-23T22:29:25.440Z',NULL,39,5,114.58158180283459,6.87,146.8390960313124,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6933,'2019-04-08T17:46:29.310Z',NULL,167,4,97.70449564120193,5.86,75.16918689023917,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6934,'2018-09-19T16:19:01.304Z',NULL,19,5,64.00675097561322,3.84,80.56796567531673,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6935,'2017-06-02T01:07:11.167Z',4.269116135189207,135,7,30.536015447715613,1.83,27.35870790575039,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6936,'2019-09-27T22:28:27.005Z',NULL,173,5,122.3651993029456,7.34,95.39155094788808,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6937,'2018-11-06T23:16:45.385Z',NULL,125,3,80.39699207990944,4.82,86.22494239704437,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6938,'2019-03-30T04:59:46.861Z',NULL,104,1,106.44215255778118,6.39,151.1277913547506,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6939,'2018-08-07T20:54:18.844Z',NULL,162,6,33.56789820016516,2.01,25.879522339282094,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6940,'2018-01-08T06:35:15.745Z',NULL,19,2,64.00675097561322,3.84,48.47764797007543,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6941,'2019-10-25T19:36:35.252Z',NULL,148,5,138.9817182254566,8.34,145.778438260247,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6942,'2019-04-08T15:04:40.113Z',NULL,41,3,63.50890855689462,3.81,81.33152443806522,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6943,'2018-01-10T11:48:06.469Z',NULL,175,2,117.3248094335266,7.04,93.15713131217301,935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6944,'2019-04-27T04:47:31.182Z',NULL,79,2,41.616917284159726,2.08,37.34592801703833,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6945,'2018-12-31T17:46:35.578Z',NULL,67,2,41.24480890795779,2.06,50.98343423577731,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6946,'2020-01-06T16:28:27.037Z',NULL,98,2,112.41825444654248,5.62,83.25805422971396,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6947,'2019-09-23T12:08:19.591Z',NULL,20,4,37.32649625046575,1.87,33.27655426014617,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6948,'2019-09-26T19:24:11.427Z',NULL,138,5,113.95078476718615,5.7,145.01899613330724,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6949,'2019-05-02T19:54:19.466Z',NULL,70,5,57.493003808959784,2.87,80.09305506922173,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6950,'2018-04-05T09:10:16.059Z',4.269116135189207,156,2,30.615804149046195,1.53,35.64588959699802,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6951,'2020-01-04T12:13:27.571Z',NULL,76,2,63.82421061366486,3.19,81.83305829166302,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6952,'2018-12-19T13:41:32.342Z',NULL,130,3,75.02573869315137,3.75,69.28552491683226,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6953,'2019-03-05T19:35:21.487Z',NULL,16,1,66.11029954877317,3.31,84.6036157455331,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6954,'2019-01-23T14:53:37.292Z',NULL,177,3,128.8192981944599,6.44,149.65418401644487,936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6955,'2019-02-23T02:35:46.672Z',NULL,121,2,40.44528328808107,2.33,49.610037233593744,937); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6956,'2017-10-29T21:00:31.522Z',NULL,38,6,44.04624855892918,2.86,37.673636695717725,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6957,'2019-05-13T03:55:21.685Z',NULL,69,4,73.38772304360626,4.77,74.41700655262893,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6958,'2019-01-31T13:03:19.954Z',NULL,63,2,133.5202262591817,8.68,144.55103239481275,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6959,'2019-03-24T01:27:30.334Z',NULL,60,1,29.80214751859149,1.94,44.168797894130314,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6960,'2017-03-22T00:31:02.829Z',NULL,24,1,74.87095783152942,4.87,92.39208082115618,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6961,'2017-06-12T23:34:03.753Z',NULL,96,8,69.88096572393577,4.54,53.86624964206252,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6962,'2018-07-11T20:54:02.364Z',NULL,25,6,68.62263967182464,4.46,82.98294973544121,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6963,'2017-09-09T16:40:23.766Z',NULL,81,6,29.288656154807867,1.9,25.104968078721154,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6964,'2020-03-26T02:17:40.166Z',NULL,71,1,82.80381898788684,5.38,115.90763060213888,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6965,'2017-02-13T12:46:47.566Z',NULL,24,2,74.87095783152942,4.87,76.64833029250681,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6966,'2020-02-22T17:48:38.911Z',NULL,165,2,38.30449564120193,2.49,55.740001320336425,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6967,'2020-04-06T01:54:42.590Z',NULL,12,30,116.01427581618326,7.54,152.92640987477043,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6968,'2019-07-29T02:27:42.227Z',NULL,46,6,118.0495173798411,7.67,172.81375267968113,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6969,'2019-11-09T02:46:36.630Z',NULL,102,4,47.04215255778118,3.06,52.41997092105663,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6970,'2020-04-02T10:41:11.483Z',NULL,142,4,70.34853057210945,4.57,96.03990951150952,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6971,'2020-02-21T00:21:55.063Z',NULL,140,2,66.80312547576881,4.34,67.80144809002574,939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6972,'2018-06-06T16:04:03.679Z',NULL,158,6,139.8942352373801,5.91,172.97245076689026,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6973,'2020-01-18T05:02:53.653Z',NULL,137,2,67.77247956807186,2.86,95.297969180661,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6974,'2018-12-22T02:03:16.131Z',NULL,164,2,92.96789820016517,3.93,100.83760325562005,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6975,'2017-04-19T00:15:24.678Z',NULL,105,3,35.149014295079674,1.49,51.40742625314238,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6976,'2017-03-10T23:35:09.411Z',NULL,113,1,73.65150250790677,3.11,57.19446972490164,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6977,'2017-03-24T10:58:21.528Z',NULL,88,1,70.27528021081703,2.97,50.127174955766876,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6978,'2019-05-28T00:10:47.660Z',NULL,143,3,61.1983004605443,2.59,50.00931625085185,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6979,'2019-03-25T17:29:16.893Z',NULL,196,1,70.14610686710009,2.96,49.89974649285179,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6980,'2017-05-31T20:47:18.980Z',1.9113425110274627,97,3,74.94550296436165,3.17,109.46374659130574,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6981,'2018-08-06T22:16:22.741Z',NULL,51,6,75.65058751905018,3.2,65.5750930062054,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6982,'2019-08-06T07:30:04.951Z',NULL,191,6,128.5841852057933,5.43,157.15957732829133,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6983,'2017-07-13T05:18:42.866Z',NULL,126,4,83.49598746872304,3.53,100.22097204683739,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6984,'2017-06-06T08:15:26.150Z',NULL,175,5,78.21653962235106,3.3,101.74985983572668,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6985,'2020-01-28T13:18:13.317Z',NULL,45,16,118.0495173798411,4.99,149.45281997369563,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6986,'2018-06-11T11:22:21.907Z',NULL,100,3,67.83486485383094,2.87,89.00891243993439,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6987,'2019-02-05T18:39:27.662Z',NULL,114,1,77.91196471862148,3.29,96.1935705150059,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6988,'2018-11-26T12:42:43.174Z',NULL,157,2,139.8942352373801,5.91,159.318589770854,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6989,'2019-04-21T08:11:00.946Z',NULL,145,2,61.1983004605443,2.59,58.343082197388696,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6990,'2017-07-19T06:52:16.721Z',NULL,72,4,94.80254599192457,4.01,91.58459944385673,940); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6991,'2020-02-08T14:11:32.656Z',NULL,42,1,38.00410713690931,2.38,30.673896055772282,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6992,'2017-06-21T22:48:30.856Z',NULL,112,7,27.55292434006023,1.72,27.778319637958916,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6993,'2019-04-04T17:10:37.408Z',NULL,76,2,63.82421061366486,3.99,53.1466286046418,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6994,'2020-03-17T20:45:17.255Z',NULL,30,1,64.17448218067184,4.01,87.25960786027365,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6995,'2018-08-17T03:43:20.087Z',NULL,67,6,41.24480890795779,2.58,39.4027367150616,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6996,'2019-09-07T19:03:56.244Z',NULL,2,4,105.11984419607644,6.57,135.51358604824424,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6997,'2018-04-03T00:53:11.810Z',NULL,141,3,126.20312547576883,7.89,126.39558519598248,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6998,'2019-07-10T18:27:42.017Z',NULL,46,5,118.0495173798411,7.38,90.0727421915512,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (6999,'2018-08-20T07:20:48.622Z',3.172988389721388,10,6,47.6793282102869,2.98,36.00528206987886,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7000,'2019-06-19T04:41:42.830Z',NULL,54,4,62.09360840402396,3.88,74.84904985617912,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7001,'2017-06-13T14:17:34.453Z',NULL,118,4,38.418408731319154,2.4,56.74535429945049,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7002,'2017-07-16T19:52:04.555Z',NULL,111,3,37.01783079127111,2.31,46.74487366057428,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7003,'2018-06-08T22:37:22.497Z',NULL,146,4,126.04727121216614,7.88,108.02900653083942,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7004,'2018-08-09T12:03:06.175Z',NULL,195,5,109.78077396807234,6.86,163.1306536425947,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7005,'2018-08-17T14:41:23.366Z',NULL,56,7,36.37128575934436,2.27,30.3081791436612,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7006,'2017-03-05T03:47:04.671Z',7.672988389721389,149,1,46.10276691718616,2.88,50.54751537152053,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7007,'2019-08-05T20:57:19.019Z',NULL,161,7,47.59120561297272,2.97,70.02116767952704,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7008,'2016-12-21T18:39:05.734Z',NULL,70,1,38.32866920597319,2.4,53.76954564705794,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7009,'2019-03-24T17:54:17.009Z',NULL,6,1,97.43621265344382,6.09,137.7165298835418,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7010,'2019-03-22T20:21:48.604Z',NULL,91,1,65.09432810381134,4.07,81.8874829016239,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7011,'2017-01-09T19:14:27.480Z',NULL,142,1,46.8990203814063,2.93,67.12917001318066,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7012,'2018-12-12T19:41:38.737Z',NULL,76,1,63.82421061366486,3.99,92.99188408243188,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7013,'2017-08-17T16:54:02.988Z',NULL,49,7,87.61910559549149,5.48,116.1003072192138,942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7014,'2018-09-07T12:29:18.939Z',NULL,155,5,43.77574310182776,2.08,35.93007334436038,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7015,'2018-11-25T09:47:18.138Z',NULL,167,3,97.70449564120193,4.64,119.2965445830406,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7016,'2019-10-04T10:06:41.402Z',NULL,101,7,139.82488066180403,6.64,147.62804280658548,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7017,'2018-11-14T17:44:17.452Z',7.380284115960849,73,4,71.6287722595695,3.4,71.22229116904947,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7018,'2017-03-31T03:55:33.407Z',NULL,179,1,45.549391048892794,2.16,56.7159664745812,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7019,'2019-02-04T18:27:46.509Z',NULL,106,2,52.723521442619514,2.5,48.864618344750056,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7020,'2019-01-09T05:52:52.280Z',NULL,191,2,128.5841852057933,6.11,177.12740035212482,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7021,'2016-05-23T03:28:13.889Z',NULL,45,5,78.6996782532274,3.74,114.09047933906585,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7022,'2019-08-10T13:09:51.448Z',NULL,198,8,70.14610686710009,3.33,64.4161983299029,943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7023,'2019-03-15T14:38:13.126Z',NULL,70,1,57.493003808959784,0,45.758016590343786,944); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7024,'2018-04-23T13:19:04.905Z',NULL,176,3,57.92480943352658,0,71.61965952928414,944); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7025,'2020-01-16T16:04:23.107Z',NULL,46,2,118.0495173798411,0,102.21393074610312,944); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7026,'2018-12-21T21:52:39.743Z',NULL,171,2,105.07665741496471,6.3,87.26533014011659,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7027,'2020-02-03T09:19:24.426Z',NULL,23,2,116.86672609493307,7.01,83.36525583084587,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7028,'2017-01-07T06:11:25.910Z',NULL,100,2,45.22324323588729,2.71,49.07992254766747,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7029,'2016-07-25T18:49:27.738Z',NULL,57,6,81.6149289055996,4.9,89.33463834443197,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7030,'2018-05-01T14:12:25.264Z',NULL,155,4,43.77574310182776,2.63,40.664606691938836,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7031,'2018-10-16T23:12:19.877Z',NULL,90,5,123.1196127553999,7.39,141.1364407342449,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7032,'2020-01-31T09:52:06.617Z',NULL,161,2,47.59120561297272,2.86,67.18555059690452,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7033,'2019-02-19T18:44:24.303Z',NULL,72,2,142.20381898788685,8.53,161.02003728579493,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7034,'2017-08-23T13:34:43.812Z',NULL,67,6,27.496539271971862,1.65,41.11212014615564,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7035,'2019-10-22T04:44:19.152Z',NULL,145,5,61.1983004605443,3.67,81.71717345531097,949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7036,'2019-07-01T07:21:17.545Z',NULL,35,5,71.53687730741436,4.47,62.42350743951908,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7037,'2019-04-09T03:09:59.428Z',NULL,150,3,128.55415037577922,8.03,93.24501845823814,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7038,'2020-02-19T02:33:38.775Z',NULL,200,2,73.20395711799151,4.58,61.661340499997785,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7039,'2018-12-23T17:39:45.425Z',NULL,186,2,98.9770008385166,6.19,144.33684539415188,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7040,'2019-07-30T14:50:09.505Z',9.51495265170324,69,5,73.38772304360626,4.59,52.47859041354691,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7041,'2019-06-21T01:34:58.926Z',NULL,102,5,47.04215255778118,2.94,64.54740656894957,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7042,'2019-10-03T17:01:36.132Z',NULL,171,5,105.07665741496471,6.57,139.92484128276243,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7043,'2018-10-16T10:57:08.802Z',NULL,134,7,42.49233549998661,2.66,38.350935802249474,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7044,'2018-12-30T04:51:09.600Z',NULL,114,2,77.91196471862148,4.87,57.81007909788499,953); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7045,'2018-10-07T12:38:27.531Z',NULL,89,5,63.719612755399886,2.55,92.75680839122018,954); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7046,'2017-10-07T19:31:53.267Z',NULL,175,7,78.21653962235106,3.13,60.693200621005765,954); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7047,'2019-12-19T11:56:35.247Z',NULL,119,2,43.43814329652384,1.74,56.47284367009521,954); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7048,'2017-11-01T05:05:41.492Z',NULL,144,4,40.7988669736962,1.63,54.757302326734454,954); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7049,'2019-01-14T02:15:25.131Z',NULL,160,3,47.59120561297272,1.9,50.5442441738413,954); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7050,'2018-05-21T03:15:11.410Z',NULL,22,6,32.136779940663494,1.29,36.74819313873037,954); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7051,'2018-04-28T06:11:50.180Z',NULL,199,4,115.4300138092855,8.66,143.58812402391757,955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7052,'2018-07-26T06:46:07.413Z',NULL,95,5,49.81864156655383,3.74,55.91047527967335,955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7053,'2017-02-19T06:37:15.138Z',NULL,147,2,44.4315141414441,3.33,46.75195110387277,955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7054,'2020-02-02T15:53:14.739Z',NULL,146,2,126.04727121216614,9.45,159.17531361035427,955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7055,'2020-02-16T22:29:38.243Z',NULL,82,2,60.89545738030947,2.57,81.62339366395771,957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7056,'2018-06-07T04:23:05.949Z',NULL,180,9,68.32408657333919,4.1,90.17986895544075,959); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7057,'2019-06-26T09:08:20.967Z',5.01495265170324,54,7,62.09360840402396,3.73,92.54587630744112,959); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7058,'2019-04-24T18:10:29.151Z',NULL,29,4,123.57448218067185,7.41,95.55424276664128,959); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7059,'2019-04-17T05:08:14.658Z',NULL,115,4,77.91196471862148,3.9,77.83832514758792,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7060,'2017-04-26T09:23:46.146Z',NULL,112,3,27.55292434006023,1.38,29.802176462069472,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7061,'2020-03-30T08:18:40.507Z',NULL,46,1,118.0495173798411,5.9,89.33469989293465,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7062,'2020-04-02T20:28:37.140Z',9.51495265170324,135,3,45.80402317157342,2.29,57.52155724646551,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7063,'2016-12-29T14:31:38.536Z',NULL,127,2,89.65344209669612,4.48,108.79265649238391,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7064,'2019-04-26T22:28:17.412Z',NULL,122,3,99.84528328808108,4.99,127.30638121646061,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7065,'2018-01-09T18:34:40.038Z',NULL,21,2,60.57501609456816,3.03,64.88284894173047,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7066,'2019-02-03T22:40:33.877Z',NULL,181,2,143.88940370476112,7.19,117.36730062787093,960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7067,'2020-01-17T06:40:42.598Z',NULL,75,2,125.81276373452337,8.65,158.10887779293128,961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7068,'2017-09-12T04:49:11.008Z',3.9145284778514973,49,5,87.61910559549149,6.02,62.27559674464644,961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7069,'2017-09-28T14:25:55.983Z',NULL,189,7,62.18492169821006,4.28,91.01554798669257,961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7070,'2019-11-11T04:53:47.781Z',NULL,69,4,73.38772304360626,5.05,92.8529556563804,961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7071,'2017-02-22T05:12:55.480Z',NULL,120,2,55.668009001928525,3.34,64.23866983207304,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7072,'2016-05-29T03:01:02.066Z',NULL,34,5,49.535942579421324,2.97,58.744856736602564,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7073,'2019-02-01T11:10:44.229Z',NULL,177,1,128.8192981944599,7.73,125.01915255182398,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7074,'2018-01-14T10:00:52.035Z',NULL,79,2,41.616917284159726,2.5,52.75428055775479,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7075,'2019-07-02T12:20:43.186Z',NULL,105,5,52.723521442619514,3.16,39.149854876554066,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7076,'2018-05-26T09:43:03.677Z',NULL,21,5,60.57501609456816,3.63,44.98265779557755,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7077,'2019-03-02T03:42:15.411Z',NULL,54,1,62.09360840402396,3.73,45.77022310590676,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7078,'2019-10-20T11:33:08.927Z',NULL,165,8,38.30449564120193,2.3,31.70761329417913,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7079,'2017-11-20T12:02:18.428Z',NULL,51,4,50.433725012700116,3.03,43.796391578343076,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7080,'2018-10-10T23:09:59.813Z',NULL,31,8,105.65346467128523,6.34,149.47497128590757,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7081,'2018-04-24T10:38:18.835Z',NULL,78,4,41.616917284159726,2.5,33.326943048122544,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7082,'2018-04-10T03:23:24.771Z',NULL,1,3,44.19489169601981,2.65,55.08679751012439,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7083,'2017-05-13T10:47:58.441Z',NULL,15,50,25.09876359271891,1.51,26.90881900918795,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7084,'2020-04-14T09:58:08.282Z',NULL,176,3,57.92480943352658,3.48,46.430447657323526,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7085,'2019-12-16T07:49:16.105Z',NULL,128,2,75.08016314504417,4.5,77.67612587593018,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7086,'2019-06-26T07:28:59.121Z',NULL,132,7,127.88197029833711,7.67,141.9344128389478,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7087,'2017-07-12T15:27:56.315Z',NULL,51,7,50.433725012700116,3.03,48.31018061060084,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7088,'2019-04-07T05:31:18.447Z',4.784589233187704,181,4,143.88940370476112,8.63,105.56283608971822,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7089,'2019-05-29T14:42:29.241Z',NULL,157,6,139.8942352373801,8.39,163.02988330391372,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7090,'2019-10-02T03:42:40.090Z',NULL,125,8,80.39699207990944,4.82,88.25313372119477,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7091,'2017-01-25T00:02:06.578Z',NULL,117,3,36.683234169385244,2.2,27.456936033089846,962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7092,'2018-11-24T04:10:15.708Z',NULL,172,4,122.3651993029456,5.26,96.02704257302312,963); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7093,'2018-10-09T21:44:48.583Z',NULL,183,5,56.697412301919755,2.44,51.24654818505649,963); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7094,'2017-01-23T18:38:40.218Z',NULL,180,1,45.549391048892794,1.96,38.277473650251984,963); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7095,'2019-03-11T22:53:57.782Z',NULL,3,1,53.08311732230858,2.28,50.94390008334909,963); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7096,'2019-02-09T03:48:36.096Z',NULL,196,1,70.14610686710009,3.02,71.47900600801081,963); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7097,'2019-03-23T01:02:08.950Z',NULL,151,1,91.61302306843446,4.7,73.0483604095964,964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7098,'2018-05-15T17:08:30.082Z',NULL,93,2,49.81864156655383,2.55,40.29635721622193,964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7099,'2018-12-03T10:25:27.312Z',NULL,78,2,41.616917284159726,2.13,34.663465616001346,964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7100,'2019-01-24T14:21:36.331Z',NULL,181,2,143.88940370476112,5.76,170.96035241673638,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7101,'2016-12-01T20:52:43.429Z',NULL,19,2,42.67116731707548,1.71,60.690394935078345,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7102,'2019-08-31T08:05:38.443Z',NULL,197,6,70.14610686710009,2.81,59.838194080611956,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7103,'2019-02-05T09:47:30.192Z',NULL,20,1,37.32649625046575,1.49,51.26564766423428,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7104,'2017-02-25T19:09:21.080Z',NULL,82,1,40.59697158687298,1.62,28.14923023817893,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7105,'2019-02-19T09:15:28.769Z',NULL,122,2,99.84528328808108,3.99,98.02552716694107,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7106,'2019-09-01T02:46:17.157Z',NULL,186,4,98.9770008385166,3.96,69.08852344325976,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7107,'2017-12-03T17:32:05.081Z',NULL,167,2,65.13633042746795,2.61,84.37441820538113,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7108,'2019-05-01T03:14:40.744Z',NULL,11,5,132.45679913492563,5.3,187.98158698112155,966); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7109,'2017-02-27T20:56:31.304Z',NULL,164,2,61.978598800110106,0,45.729474591044344,967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7110,'2018-09-29T22:54:25.537Z',NULL,38,6,66.06937283839378,3.96,66.1634863890568,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7111,'2017-02-26T23:03:48.166Z',NULL,179,1,45.549391048892794,2.73,38.30846253275361,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7112,'2019-04-11T03:53:24.679Z',NULL,41,2,63.50890855689462,3.81,57.06506980449719,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7113,'2018-05-29T19:12:08.681Z',NULL,182,4,84.48940370476112,5.07,84.21582681254634,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7114,'2018-09-26T14:21:20.750Z',6.768891994042263,135,4,45.80402317157342,2.75,65.50743406846114,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7115,'2018-10-06T11:16:51.374Z',NULL,109,5,119.04991068193098,7.14,146.4006491696078,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7116,'2019-03-19T00:15:43.709Z',NULL,101,1,139.82488066180403,8.39,100.72718579451558,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7117,'2017-11-07T16:19:55.418Z',NULL,171,2,70.05110494330981,4.2,70.97036626312229,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7118,'2020-03-28T09:05:36.187Z',NULL,87,1,117.25536340498041,7.04,154.77446327653703,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7119,'2018-04-06T23:15:17.532Z',NULL,43,3,76.35255205175756,4.58,68.23986571347773,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7120,'2019-11-21T05:46:27.757Z',NULL,112,3,41.329386510090345,2.48,48.8774890391845,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7121,'2016-07-03T07:58:21.548Z',NULL,13,6,75.0861692740371,4.51,95.32321355927004,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7122,'2018-07-29T19:02:44.948Z',NULL,15,56,37.648145389078365,2.26,54.98775937100201,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7123,'2019-02-25T11:26:10.741Z',NULL,98,2,112.41825444654248,6.75,83.15523282016508,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7124,'2018-01-10T09:24:23.398Z',NULL,16,2,66.11029954877317,3.97,85.64867773262307,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7125,'2018-04-21T01:59:46.570Z',NULL,50,3,53.64019616819762,3.22,49.89462440237114,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7126,'2019-11-02T11:46:07.799Z',NULL,121,3,40.44528328808107,2.43,38.811796346212994,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7127,'2019-11-03T14:18:40.990Z',NULL,181,3,143.88940370476112,8.63,109.97520047005705,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7128,'2018-11-08T13:31:56.555Z',NULL,180,3,68.32408657333919,4.1,90.40502700136068,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7129,'2017-01-12T13:52:14.451Z',NULL,89,2,42.47974183693326,2.55,54.24848291819856,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7130,'2019-04-03T08:53:01.490Z',NULL,127,3,134.48016314504417,8.07,125.65133103121589,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7131,'2019-09-21T14:46:46.072Z',NULL,57,6,122.4223933583994,7.35,120.33637167871106,968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7132,'2019-01-29T08:44:28.460Z',NULL,187,2,98.9770008385166,5.94,118.01076757254138,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7133,'2019-01-25T20:23:37.073Z',NULL,130,2,75.02573869315137,4.5,110.65283512127768,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7134,'2018-08-06T23:04:25.787Z',NULL,85,78,54.90104734428525,3.29,60.24880420062281,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7135,'2018-12-06T08:17:06.524Z',NULL,118,2,57.627613096978735,3.46,52.62110488672209,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7136,'2017-08-16T23:47:47.034Z',2.2725003199919276,129,6,98.7781981443958,5.93,123.85246299686516,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7137,'2017-09-08T22:54:51.649Z',NULL,114,4,51.94130981241432,3.12,48.17461900689146,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7138,'2019-04-07T11:11:19.484Z',2.2725003199919276,144,3,61.1983004605443,3.67,87.66468654929565,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7139,'2019-09-20T11:32:57.577Z',NULL,93,4,49.81864156655383,2.99,45.25380911898446,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7140,'2018-12-25T09:21:37.354Z',5.890796545143161,116,2,114.42485125407785,6.87,80.22064620697861,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7141,'2017-08-23T19:40:24.400Z',NULL,77,7,67.34461152277315,4.04,77.9290548114117,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7142,'2019-12-04T18:56:27.189Z',NULL,75,1,125.81276373452337,7.55,132.99186115134654,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7143,'2019-10-22T08:48:19.674Z',NULL,169,4,59.53172693453274,3.57,85.54349684669911,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7144,'2018-10-18T12:30:59.253Z',NULL,14,4,37.648145389078365,2.26,43.90742994275648,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7145,'2020-04-02T17:14:27.399Z',5.890796545143161,92,1,124.89242686579996,7.49,97.78781151098202,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7146,'2018-03-22T03:39:37.180Z',NULL,126,0,125.24398120308456,7.51,164.93050728341385,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7147,'2019-01-23T01:13:51.264Z',NULL,142,1,70.34853057210945,4.22,77.6682587784501,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7148,'2017-10-29T06:19:31.601Z',NULL,95,4,33.212427711035886,1.99,46.606765257043,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7149,'2016-12-15T10:20:26.365Z',NULL,44,2,50.90170136783837,3.05,74.32526651944471,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7150,'2019-04-13T16:38:57.608Z',NULL,171,3,105.07665741496471,6.3,91.15919264468944,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7151,'2019-01-17T13:09:10.865Z',NULL,46,1,118.0495173798411,7.08,140.29819830169012,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7152,'2017-11-11T09:53:33.932Z',NULL,98,2,74.94550296436165,4.5,105.7654389908593,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7153,'2018-07-08T12:47:23.929Z',NULL,137,4,67.77247956807186,4.07,69.09116603504151,969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7154,'2018-07-30T17:03:18.480Z',NULL,58,4,78.14578007078882,4.69,66.62674198620533,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7155,'2019-02-19T22:20:07.958Z',NULL,145,1,61.1983004605443,3.67,84.77669530956712,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7156,'2019-09-16T00:51:28.947Z',NULL,11,2,132.45679913492563,7.95,197.1668288389941,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7157,'2018-07-04T19:15:44.599Z',NULL,23,2,116.86672609493307,7.01,166.08886840651223,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7158,'2020-02-10T03:35:51.560Z',NULL,142,1,70.34853057210945,4.22,90.4823851994352,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7159,'2019-06-07T01:52:58.649Z',NULL,92,5,124.89242686579996,7.49,181.96923782516527,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7160,'2018-05-16T01:50:24.205Z',NULL,131,3,113.11722203337729,6.79,147.4404804258908,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7161,'2018-04-04T06:07:26.536Z',NULL,184,2,116.09741230191975,6.97,113.57465124054872,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7162,'2019-02-16T12:51:01.496Z',NULL,14,2,37.648145389078365,2.26,36.3385879775976,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7163,'2019-10-31T05:58:57.415Z',NULL,61,6,23.537915510955656,1.41,20.64733663239382,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7164,'2017-03-22T23:20:59.623Z',NULL,24,1,74.87095783152942,4.49,82.2643832252992,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7165,'2018-08-02T04:42:04.354Z',NULL,145,8,61.1983004605443,3.67,65.01625096471943,970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7166,'2018-03-14T16:17:53.839Z',NULL,77,1,101.01691728415972,6.06,132.85575919476315,972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7167,'2020-02-10T11:15:06.332Z',NULL,44,1,76.35255205175756,4.58,96.92335685999727,972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7168,'2017-10-13T10:51:40.099Z',NULL,18,3,54.60204747398195,3.28,53.295328891002754,972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7169,'2019-12-19T23:45:59.292Z',NULL,197,2,70.14610686710009,4.21,96.19793768216248,972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7170,'2019-02-15T22:28:52.692Z',NULL,168,15,118.93172693453273,7.14,167.69595395325035,972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7171,'2018-07-18T04:13:54.616Z',NULL,32,3,107.1448636959614,6.43,160.8837456269735,972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7172,'2018-08-19T21:18:19.059Z',NULL,191,6,128.5841852057933,6.43,123.78313729151735,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7173,'2017-12-05T09:31:44.678Z',NULL,58,2,52.097186713859216,2.6,67.70000448555196,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7174,'2018-02-10T17:18:28.105Z',7.000804505819913,138,1,113.95078476718615,5.7,84.32498148646341,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7175,'2018-11-04T09:44:32.791Z',NULL,10,3,47.6793282102869,2.38,68.43623993723536,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7176,'2018-02-13T13:39:17.001Z',NULL,146,1,126.04727121216614,6.3,117.30731592577509,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7177,'2018-01-23T19:01:05.323Z',NULL,113,2,110.47725376186015,5.52,95.67987535923797,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7178,'2017-08-09T02:01:42.827Z',2.5008045058199126,101,4,93.21658710786936,4.66,105.12791568354137,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7179,'2019-11-17T17:12:39.301Z',NULL,82,3,60.89545738030947,3.04,83.5670107072201,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7180,'2018-12-28T02:04:36.951Z',NULL,96,2,104.82144858590365,5.24,127.19555487450506,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7181,'2020-03-30T09:24:53.019Z',NULL,56,1,36.37128575934436,1.82,40.458605888375004,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7182,'2019-02-05T22:02:57.512Z',2.5008045058199126,197,1,70.14610686710009,3.51,64.83788841382705,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7183,'2017-08-21T01:42:55.934Z',NULL,58,6,52.097186713859216,2.6,43.48369433031878,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7184,'2019-02-07T07:11:51.460Z',NULL,25,2,68.62263967182464,3.43,99.36591090828854,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7185,'2019-11-09T00:03:26.665Z',NULL,44,3,76.35255205175756,3.82,67.65862688702794,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7186,'2019-05-14T03:12:13.392Z',NULL,180,4,68.32408657333919,3.42,97.61428169557342,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7187,'2019-05-23T03:32:36.010Z',NULL,189,4,93.27738254731509,4.66,123.67830313119885,975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7188,'2017-10-07T04:44:09.903Z',NULL,16,5,44.07353303251545,2.86,39.67908397936144,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7189,'2018-05-06T13:21:53.175Z',NULL,79,4,41.616917284159726,2.71,34.92882558298474,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7190,'2019-10-30T09:09:37.733Z',NULL,52,4,103.67587240151535,6.74,122.39889629877482,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7191,'2019-05-24T10:17:40.838Z',3.05861245039511,45,4,118.0495173798411,7.67,176.6738395180546,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7192,'2019-06-12T15:27:19.228Z',3.05861245039511,68,8,115.24343882309758,7.49,99.10914409696471,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7193,'2018-04-22T09:49:07.266Z',NULL,142,4,70.34853057210945,4.57,65.71202265709273,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7194,'2019-02-28T08:11:22.384Z',NULL,68,2,115.24343882309758,7.49,148.09451500303734,976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7195,'2017-03-28T05:07:20.402Z',NULL,78,1,27.74461152277315,1.73,22.195703402792244,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7196,'2019-12-13T04:48:07.367Z',NULL,4,2,110.98767151282252,6.94,167.0638254190787,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7197,'2016-07-16T20:08:57.996Z',NULL,128,6,50.053442096696116,3.13,39.05182999255029,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7198,'2018-03-26T03:38:53.409Z',NULL,155,1,43.77574310182776,2.74,58.46763639225886,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7199,'2017-06-12T09:13:25.401Z',NULL,190,4,85.72279013719552,5.36,70.5329382593644,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7200,'2019-02-08T15:15:47.544Z',7.55861245039511,125,1,80.39699207990944,5.02,73.21239876214362,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7201,'2018-12-27T10:11:45.543Z',NULL,143,1,61.1983004605443,3.82,70.6280640135255,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7202,'2018-07-09T04:58:18.565Z',NULL,157,5,139.8942352373801,8.74,161.78592854610108,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7203,'2019-01-02T13:25:46.101Z',NULL,185,2,39.57700083851661,2.47,45.49120967754958,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7204,'2019-12-07T07:33:05.399Z',NULL,124,2,110.93145648834248,6.93,112.58626194592502,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7205,'2018-08-12T10:32:17.635Z',2.4395527478379417,93,8,49.81864156655383,3.11,65.53260594890395,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7206,'2017-07-20T14:37:06.596Z',NULL,160,6,31.727470408648482,1.98,37.565038188593775,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7207,'2019-11-02T12:19:56.598Z',NULL,9,3,87.46968147789205,5.47,96.09385470721254,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7208,'2019-09-19T15:53:49.040Z',NULL,102,4,47.04215255778118,2.94,50.916841756684946,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7209,'2017-04-08T08:58:19.488Z',NULL,77,2,67.34461152277315,4.21,101.65141030994361,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7210,'2016-08-21T14:31:16.405Z',6.939552747837942,145,6,40.7988669736962,2.55,53.7457993356587,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7211,'2020-02-25T17:53:35.607Z',NULL,50,2,53.64019616819762,3.35,67.8008263349755,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7212,'2018-01-03T09:38:16.934Z',NULL,105,2,52.723521442619514,3.3,74.0484940962735,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7213,'2016-12-08T11:40:13.903Z',NULL,37,1,53.40516136013846,3.34,52.85804909846192,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7214,'2018-10-03T11:28:53.503Z',NULL,183,5,56.697412301919755,3.54,58.945597611915915,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7215,'2016-10-15T20:31:50.878Z',NULL,193,6,33.587182645381546,2.1,24.542910840174436,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7216,'2016-08-03T07:30:04.802Z',NULL,57,6,81.6149289055996,5.1,120.23023182130069,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7217,'2019-04-27T07:07:49.709Z',NULL,188,3,33.87738254731509,2.12,47.90226065588372,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7218,'2019-08-01T01:34:43.570Z',NULL,195,6,109.78077396807234,6.86,143.80838388241736,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7219,'2017-12-04T03:35:32.363Z',NULL,195,1,73.18718264538155,4.57,89.31152908119054,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7220,'2018-03-30T22:57:42.514Z',NULL,35,1,71.53687730741436,4.47,79.58411205444663,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7221,'2017-08-22T16:44:39.554Z',NULL,119,8,28.95876219768256,1.81,31.75302314877074,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7222,'2016-07-10T14:07:02.156Z',NULL,145,4,40.7988669736962,2.55,43.04195700825592,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7223,'2018-01-31T18:11:33.179Z',NULL,132,1,127.88197029833711,7.99,181.0536576829913,977); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7224,'2018-10-11T09:26:55.759Z',NULL,190,5,128.5841852057933,8.36,188.46116995587695,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7225,'2018-04-12T10:46:42.276Z',NULL,124,3,110.93145648834248,7.21,122.76389012742655,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7226,'2018-09-07T15:59:40.353Z',NULL,115,4,77.91196471862148,5.06,66.97943863298968,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7227,'2019-01-10T12:16:47.641Z',NULL,81,2,43.9329842322118,2.86,45.40724817308656,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7228,'2019-11-02T18:09:36.995Z',NULL,195,3,109.78077396807234,7.14,100.90740541017264,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7229,'2019-11-21T14:22:57.351Z',NULL,85,2,54.90104734428525,3.57,81.20527356928943,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7230,'2019-11-25T09:43:36.451Z',NULL,65,3,68.22769726470014,4.43,59.43110445326842,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7231,'2017-06-01T19:47:16.085Z',NULL,63,6,89.0134841727878,5.79,81.45451365886653,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7232,'2019-04-30T07:50:19.618Z',NULL,86,2,92.31436670850246,6,134.54884061817256,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7233,'2017-09-23T12:39:02.883Z',NULL,67,5,27.496539271971862,1.79,27.442605008016052,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7234,'2018-03-19T13:37:45.604Z',NULL,43,1,76.35255205175756,4.96,108.35621886462496,978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7235,'2017-12-11T22:33:45.206Z',NULL,114,1,51.94130981241432,3.57,51.8579441244222,980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7236,'2019-11-21T14:10:21.250Z',NULL,54,2,62.09360840402396,4.27,88.6840717053614,980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7237,'2019-07-01T00:26:20.109Z',NULL,81,3,43.9329842322118,3.02,50.205117965644774,980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7238,'2016-10-19T16:51:28.904Z',NULL,179,4,45.549391048892794,0,29.743303102800542,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7239,'2018-11-06T22:10:50.738Z',NULL,169,3,59.53172693453274,0,58.308587464257954,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7240,'2018-06-06T07:16:17.763Z',NULL,85,8,54.90104734428525,0,77.95869837817888,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7241,'2018-10-28T23:35:27.589Z',NULL,131,5,113.11722203337729,0,140.53089816867885,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7242,'2019-01-20T12:25:01.537Z',NULL,195,1,109.78077396807234,0,143.11339993435973,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7243,'2020-04-13T01:35:24.779Z',NULL,91,2,65.09432810381134,0,91.03620578722335,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7244,'2018-09-16T10:54:33.875Z',NULL,147,3,66.64727121216615,0,43.667293821984956,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7245,'2019-09-19T11:37:55.240Z',NULL,35,5,71.53687730741436,0,81.18084247513406,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7246,'2019-03-14T03:17:11.226Z',NULL,104,1,106.44215255778118,0,103.0553525279835,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7247,'2018-02-23T09:48:55.614Z',NULL,110,2,55.526746186906664,0,54.01223957188598,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7248,'2018-06-28T22:11:32.644Z',7.5716636592852415,38,8,66.06937283839378,0,90.24209255893592,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7249,'2020-04-09T20:26:12.516Z',NULL,14,4,37.648145389078365,0,44.25762981704182,981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7250,'2019-08-31T20:43:25.324Z',NULL,60,7,29.80214751859149,1.26,32.2535978824792,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7251,'2019-01-29T04:24:12.071Z',NULL,154,2,81.87529553312261,3.46,86.16561014374817,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7252,'2020-02-16T02:21:04.745Z',NULL,74,2,51.12804227386549,2.16,47.073551603121736,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7253,'2018-01-24T13:22:02.462Z',NULL,168,2,118.93172693453273,5.02,154.07428646112473,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7254,'2018-12-23T10:45:36.242Z',NULL,168,2,118.93172693453273,5.02,98.46618203427116,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7255,'2018-11-14T16:07:20.244Z',NULL,134,4,42.49233549998661,1.8,57.8068754859221,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7256,'2018-08-24T15:01:13.566Z',NULL,57,8,122.4223933583994,5.17,87.68418479150428,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7257,'2020-04-18T03:48:05.277Z',NULL,195,4,109.78077396807234,4.64,110.37733671278325,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7258,'2019-10-28T16:25:03.257Z',NULL,101,7,139.82488066180403,5.91,165.04616752564257,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7259,'2017-02-22T23:18:37.891Z',NULL,81,2,29.288656154807867,1.24,27.906906484055117,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7260,'2020-04-11T05:32:39.243Z',NULL,95,3,49.81864156655383,2.1,56.128023895190395,983); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7261,'2017-10-16T09:56:31.144Z',NULL,127,5,89.65344209669612,5.02,111.78851162452905,987); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7262,'2018-05-13T01:28:48.084Z',NULL,128,5,75.08016314504417,4.2,63.732132123180264,987); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7263,'2017-06-13T12:52:01.057Z',NULL,47,6,56.05108065511453,2.52,53.76495293825915,990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7264,'2018-04-03T13:28:29.617Z',NULL,197,2,70.14610686710009,3.16,97.91412672860979,990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7265,'2019-07-22T05:19:56.702Z',NULL,171,5,105.07665741496471,3.05,99.47318869966507,991); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7266,'2018-07-05T03:44:47.209Z',7.5716636592852415,113,5,110.47725376186015,3.2,109.83629495123343,991); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7267,'2017-09-07T23:19:16.022Z',NULL,111,3,37.01783079127111,1.07,43.909324487052835,991); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7268,'2019-08-30T15:19:57.244Z',NULL,111,5,55.526746186906664,0,78.00247342958296,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7269,'2017-07-18T21:23:34.731Z',NULL,109,3,79.36660712128732,0,71.82849281421423,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7270,'2019-06-04T22:12:25.949Z',NULL,59,4,89.20214751859149,0,123.98117953934297,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7271,'2019-01-15T00:37:30.184Z',NULL,67,2,41.24480890795779,0,29.28444043270252,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7272,'2019-07-31T20:59:35.303Z',NULL,132,4,127.88197029833711,0,83.86154815357132,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7273,'2017-11-03T05:33:06.457Z',NULL,74,2,34.08536151591033,0,43.152654739632155,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7274,'2017-11-23T09:07:43.682Z',NULL,96,3,69.88096572393577,0,49.40561665475936,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7275,'2019-03-06T05:45:23.049Z',NULL,43,1,76.35255205175756,0,82.50620683111259,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7276,'2018-10-06T19:32:25.809Z',NULL,141,5,126.20312547576883,0,103.89071193993476,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7277,'2020-02-19T22:18:11.079Z',NULL,130,1,75.02573869315137,0,100.28546753164491,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7278,'2017-10-04T16:06:38.980Z',NULL,120,3,55.668009001928525,0,44.56236117994043,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7279,'2016-09-04T12:04:17.189Z',NULL,163,4,22.378598800110105,0,27.16699132310414,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7280,'2020-01-16T00:29:26.201Z',6.66539779179297,42,2,38.00410713690931,0,45.61750580285553,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7281,'2019-02-24T18:10:14.815Z',NULL,8,2,98.83823503993958,0,119.7356338563689,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7282,'2018-12-23T12:32:00.811Z',NULL,191,17,128.5841852057933,0,149.55526885947728,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7283,'2017-03-16T05:49:52.278Z',6.66539779179297,21,1,40.38334406304544,0,48.38401092780002,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7284,'2016-11-12T04:36:35.721Z',NULL,166,2,25.536330427467956,0,35.968371395271106,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7285,'2018-12-17T18:57:51.255Z',NULL,131,2,113.11722203337729,0,155.97239081281006,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7286,'2019-08-02T23:56:19.093Z',NULL,48,8,123.20884248534108,0,117.22076096746889,992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7287,'2017-05-10T14:06:47.151Z',NULL,94,5,72.81242771103588,4,91.94829515448643,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7288,'2018-10-13T14:25:32.731Z',NULL,71,5,82.80381898788684,4.55,84.11401653861515,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7289,'2017-08-12T08:59:23.752Z',NULL,34,4,49.535942579421324,2.72,70.92857547175626,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7290,'2019-11-22T03:11:43.960Z',NULL,139,2,76.77768319177018,4.22,115.40542228438042,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7291,'2018-12-19T19:21:09.554Z',NULL,45,2,118.0495173798411,6.49,105.93109773599917,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7292,'2018-11-27T00:06:29.269Z',NULL,178,3,117.32963250370614,6.45,170.647877722293,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7293,'2018-11-18T03:46:00.693Z',NULL,29,3,123.57448218067185,6.8,101.3915016828119,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7294,'2018-11-18T19:32:23.371Z',2.1653977917929703,179,3,68.32408657333919,3.76,58.602645810477306,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7295,'2017-06-26T20:58:26.019Z',0.7521255903139834,33,5,31.829909130640935,1.75,35.607839316922934,993); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7296,'2018-12-04T13:42:13.132Z',NULL,190,1,128.5841852057933,5.14,174.7355363274188,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7297,'2019-10-19T19:21:17.940Z',NULL,27,3,127.52471180754115,5.1,176.41308813243424,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7298,'2019-03-27T18:48:01.269Z',NULL,200,0,73.20395711799151,2.93,108.6635082054464,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7299,'2018-10-02T03:46:42.130Z',NULL,76,2,63.82421061366486,2.55,77.82094192875947,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7300,'2019-11-04T06:21:15.848Z',NULL,179,2,68.32408657333919,2.73,79.88343676262654,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7301,'2016-10-26T13:07:14.798Z',NULL,166,5,25.536330427467956,1.02,21.88340321021828,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7302,'2019-11-26T11:15:04.248Z',NULL,146,2,126.04727121216614,5.04,114.46847983080312,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7303,'2019-05-30T17:18:02.930Z',0.7521255903139834,170,3,105.07665741496471,4.2,123.16264817226143,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7304,'2020-01-20T22:03:38.347Z',NULL,31,2,105.65346467128523,4.23,120.85908948681391,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7305,'2019-09-25T04:19:28.253Z',NULL,190,3,128.5841852057933,5.14,133.77243177502638,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7306,'2020-03-22T17:57:26.826Z',NULL,22,1,32.136779940663494,1.29,41.77297017243534,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7307,'2019-05-06T13:31:50.255Z',NULL,96,3,104.82144858590365,4.19,122.94022265649056,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7308,'2019-11-24T01:17:04.246Z',NULL,130,2,75.02573869315137,3,70.30334939082054,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7309,'2019-10-31T20:23:19.620Z',NULL,142,3,70.34853057210945,2.81,91.51502985718388,995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7310,'2019-04-10T03:03:50.775Z',NULL,77,2,101.01691728415972,6.31,137.49892367161914,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7311,'2019-01-19T03:46:07.603Z',NULL,43,1,76.35255205175756,4.77,112.14095877380116,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7312,'2018-05-23T22:28:47.105Z',NULL,13,2,112.62925391105566,7.04,98.66566006356518,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7313,'2019-01-16T15:18:06.713Z',NULL,19,1,64.00675097561322,4,45.195886069552046,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7314,'2019-11-22T18:07:08.385Z',NULL,9,2,87.46968147789205,5.47,72.80266258925325,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7315,'2019-11-10T07:21:49.660Z',NULL,107,2,50.094887884945365,3.13,58.23388217924022,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7316,'2018-02-23T23:27:44.661Z',NULL,193,1,50.38077396807232,3.15,45.43620349226339,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7317,'2018-07-17T00:23:56.504Z',NULL,83,3,81.87627832636537,5.12,106.32516985355265,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7318,'2018-05-01T05:12:39.215Z',4.1699794213284065,189,3,93.27738254731509,5.83,126.79288638416244,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7319,'2020-02-19T00:44:18.808Z',NULL,54,1,62.09360840402396,3.88,59.42497784488501,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7320,'2018-03-03T17:00:05.279Z',NULL,128,1,75.08016314504417,4.69,82.54809791284983,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7321,'2019-04-28T05:37:08.287Z',NULL,78,3,41.616917284159726,2.6,52.46706483845835,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7322,'2018-06-23T20:14:15.808Z',6.919858457493568,8,7,98.83823503993958,6.18,135.1160456034659,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7323,'2017-11-02T22:44:59.259Z',NULL,19,3,42.67116731707548,2.67,29.889256318043465,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7324,'2018-05-28T07:14:00.529Z',NULL,78,4,41.616917284159726,2.6,44.955907664701094,997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7325,'2018-12-28T07:14:19.243Z',NULL,115,2,77.91196471862148,4.67,71.01889840751826,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7326,'2019-03-20T07:55:04.042Z',NULL,49,1,131.42865839323724,7.89,107.13768265844836,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7327,'2020-02-08T02:42:56.692Z',NULL,85,1,54.90104734428525,3.29,48.936764968181,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7328,'2017-02-09T12:20:07.000Z',NULL,173,1,81.57679953529707,4.89,59.77095283786953,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7329,'2017-12-13T05:31:22.202Z',NULL,134,2,28.328223666657742,1.7,41.722209691470105,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7330,'2017-03-13T22:58:05.006Z',NULL,92,1,83.2616179105333,5,103.93156796553414,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7331,'2020-01-05T12:10:59.976Z',NULL,129,2,148.1672972165937,8.89,128.93125442468863,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7332,'2019-05-23T18:10:39.841Z',NULL,177,5,128.8192981944599,7.73,110.7770485145289,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7333,'2019-12-22T06:32:43.551Z',NULL,54,2,62.09360840402396,3.73,46.370507453871845,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7334,'2019-10-31T00:12:22.733Z',NULL,98,5,112.41825444654248,6.75,136.21436173886977,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7335,'2018-05-28T11:28:01.052Z',NULL,118,4,57.627613096978735,3.46,63.91903221554904,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7336,'2019-08-29T16:29:03.142Z',NULL,162,6,33.56789820016516,2.01,40.496030309745244,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7337,'2017-05-07T20:18:46.500Z',NULL,74,5,34.08536151591033,2.05,40.219120452480645,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7338,'2018-06-23T15:49:42.994Z',NULL,8,7,98.83823503993958,5.93,128.5393335927342,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7339,'2019-08-25T15:27:37.060Z',NULL,150,6,128.55415037577922,7.71,98.96596950967466,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7340,'2019-01-03T23:05:12.749Z',NULL,102,1,47.04215255778118,2.82,69.13056029517315,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7341,'2017-12-10T11:57:26.052Z',NULL,80,2,36.60883787357609,2.2,53.05757757315416,999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7342,'2018-10-29T14:36:49.463Z',NULL,116,6,114.42485125407785,7.15,137.39236320602876,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7343,'2017-08-05T05:21:21.151Z',NULL,118,5,38.418408731319154,2.4,30.471230295155944,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7344,'2016-11-30T01:55:45.158Z',3.558794113825809,133,3,45.654646865558064,2.85,67.34102583865156,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7345,'2020-04-18T18:49:09.590Z',NULL,56,4,36.37128575934436,2.27,53.92031796192405,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7346,'2018-07-12T14:03:08.741Z',NULL,77,5,101.01691728415972,6.31,104.28459748569708,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7347,'2017-06-23T14:51:17.726Z',NULL,166,5,25.536330427467956,1.6,30.48303534248369,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7348,'2018-04-30T12:08:19.976Z',3.558794113825809,15,3,37.648145389078365,2.35,56.27522953986502,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7349,'2020-01-05T09:37:12.853Z',NULL,63,3,133.5202262591817,8.35,163.82651238656166,1000); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7350,'2019-03-28T04:11:33.043Z',NULL,98,1,112.41825444654248,7.03,93.9078273045447,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7351,'2018-04-11T11:38:13.326Z',NULL,192,3,69.18418520579327,4.32,60.5771998353358,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7352,'2019-05-19T12:02:49.277Z',NULL,199,5,115.4300138092855,7.21,123.67393806878981,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7353,'2020-01-27T05:51:43.453Z',NULL,62,3,133.5202262591817,8.35,169.6414615554729,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7354,'2016-07-21T18:44:48.145Z',NULL,105,6,35.149014295079674,2.2,42.21660502601258,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7355,'2017-11-30T21:36:32.292Z',NULL,56,4,24.24752383956291,1.52,29.10176468126481,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7356,'2018-08-02T01:30:48.124Z',NULL,75,9,125.81276373452337,7.86,138.33670150922384,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7357,'2019-10-27T09:00:29.082Z',NULL,105,7,52.723521442619514,3.3,77.3371505820186,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7358,'2019-10-26T21:59:20.443Z',NULL,102,6,47.04215255778118,2.94,59.925296379064335,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7359,'2019-08-01T10:24:50.595Z',NULL,145,7,61.1983004605443,3.82,88.53350295111686,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7360,'2019-03-01T00:47:22.535Z',NULL,77,1,101.01691728415972,6.31,145.16924391618517,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7361,'2018-06-18T14:49:06.448Z',NULL,193,8,50.38077396807232,3.15,67.0495078838467,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7362,'2019-07-10T03:26:56.408Z',NULL,141,5,126.20312547576883,7.89,164.84064819472303,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7363,'2019-04-02T00:23:32.977Z',NULL,88,3,105.41292031622555,6.59,100.71934164966517,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7364,'2017-08-04T21:00:42.767Z',NULL,74,9,34.08536151591033,2.13,38.301121607041786,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7365,'2018-08-07T01:11:17.088Z',NULL,153,7,66.79892314178237,4.17,77.88312200903577,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7366,'2017-03-29T10:28:42.099Z',NULL,21,1,40.38334406304544,2.52,38.85620687466648,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7367,'2017-07-15T07:05:34.767Z',NULL,122,6,66.56352219205405,4.16,62.87479413162343,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7368,'2019-05-09T11:42:30.794Z',NULL,109,4,119.04991068193098,7.44,90.37119494604384,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7369,'2017-08-12T11:03:44.924Z',NULL,93,7,33.212427711035886,2.08,29.08377661084361,1002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7370,'2018-07-25T22:18:07.117Z',7.73922991508785,146,5,126.04727121216614,0,175.49313780448034,1003); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7371,'2017-04-16T18:45:20.897Z',NULL,5,3,82.7450976850356,0,89.59165882075294,1003); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7372,'2017-08-11T21:55:48.984Z',NULL,80,9,36.60883787357609,2.29,25.625042796760173,1004); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7373,'2019-03-22T07:16:28.042Z',3.2392299150878494,43,1,76.35255205175756,4.77,61.012185676106306,1004); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7374,'2016-12-21T02:28:25.200Z',NULL,147,1,44.4315141414441,2.78,58.33438989801484,1004); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7375,'2019-01-17T07:20:23.344Z',NULL,167,1,97.70449564120193,5.62,89.01237395121105,1005); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7376,'2018-11-29T21:29:39.765Z',7.73922991508785,185,3,39.57700083851661,2.28,47.90544959450741,1005); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7377,'2017-12-01T02:18:09.984Z',NULL,119,2,28.95876219768256,1.67,19.98293575359682,1005); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7378,'2019-02-06T06:55:43.850Z',NULL,144,2,61.1983004605443,3.52,64.95807420343624,1005); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7379,'2019-05-13T23:25:46.765Z',NULL,20,4,37.32649625046575,2.15,43.05123619946737,1005); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7380,'2019-08-31T13:48:36.134Z',NULL,137,5,67.77247956807186,3.73,50.70482897431363,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7381,'2017-12-28T15:26:05.760Z',NULL,177,1,85.87953212963993,4.72,71.42430215036906,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7382,'2020-01-31T21:59:34.412Z',NULL,28,1,68.12471180754113,3.75,59.495437647583586,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7383,'2017-07-25T08:20:58.205Z',NULL,184,5,77.3982748679465,4.26,83.57808955979294,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7384,'2018-07-22T12:44:21.884Z',NULL,99,5,67.83486485383094,3.73,68.09595184546544,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7385,'2019-12-28T22:37:09.564Z',NULL,118,2,57.627613096978735,3.17,85.22832272572764,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7386,'2019-10-29T15:02:19.546Z',NULL,95,7,49.81864156655383,2.74,66.32800354519733,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7387,'2018-11-11T16:06:03.151Z',NULL,75,3,125.81276373452337,6.92,101.37716421646081,1006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7388,'2016-08-10T06:28:37.759Z',NULL,38,7,44.04624855892918,2.53,37.671240009268615,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7389,'2020-01-13T14:31:19.526Z',NULL,37,2,80.10774204020768,4.61,84.82645256331531,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7390,'2019-06-30T01:18:26.382Z',NULL,41,7,63.50890855689462,3.65,90.74956693823631,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7391,'2018-07-23T17:08:13.810Z',NULL,16,6,66.11029954877317,3.8,92.58501480647442,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7392,'2018-12-07T18:24:01.963Z',NULL,65,2,68.22769726470014,3.92,89.98543486861404,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7393,'2016-05-30T10:38:04.185Z',NULL,17,4,53.290720311951766,3.06,62.61926815570637,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7394,'2019-08-04T18:57:08.697Z',NULL,1,4,44.19489169601981,2.54,35.923451979532594,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7395,'2017-05-14T20:51:24.266Z',6.807989198646647,66,3,90.77417514071306,5.22,78.74673331413618,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7396,'2019-02-04T17:49:46.660Z',NULL,69,1,73.38772304360626,4.22,98.65453984907747,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7397,'2020-03-01T03:39:55.038Z',NULL,156,1,30.615804149046195,1.76,37.76624818466601,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7398,'2019-07-03T01:57:54.433Z',NULL,165,6,38.30449564120193,2.2,44.74236778545081,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7399,'2017-12-01T17:17:07.861Z',NULL,53,2,29.517248267676894,1.7,35.79262351897348,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7400,'2018-03-25T21:08:42.824Z',NULL,62,1,133.5202262591817,7.68,128.36036900129156,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7401,'2016-07-21T13:22:57.855Z',NULL,158,3,93.26282349158673,5.36,93.76551884444825,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7402,'2017-10-17T12:59:45.563Z',NULL,109,5,79.36660712128732,4.56,85.46867271182002,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7403,'2017-09-17T11:19:40.039Z',NULL,141,6,84.13541698384589,4.84,68.08491075726157,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7404,'2018-07-07T18:49:18.572Z',6.807989198646647,191,4,128.5841852057933,7.39,137.75398457635956,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7405,'2018-10-25T16:29:41.272Z',NULL,191,5,128.5841852057933,7.39,177.45820428812948,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7406,'2017-05-13T07:07:49.679Z',NULL,195,5,73.18718264538155,4.21,102.34392302608839,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7407,'2019-12-06T00:46:56.301Z',NULL,46,2,118.0495173798411,6.79,117.06476543964015,1007); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7408,'2019-06-30T22:20:38.512Z',6.807989198646647,193,5,50.38077396807232,3.15,48.22709527119835,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7409,'2018-10-02T22:06:34.399Z',NULL,86,6,92.31436670850246,5.77,118.52286538482342,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7410,'2017-11-21T04:54:40.993Z',NULL,164,3,61.978598800110106,3.87,71.38969002635517,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7411,'2018-10-02T01:25:38.890Z',NULL,85,5,54.90104734428525,3.43,60.49347213452437,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7412,'2019-12-15T17:35:08.557Z',NULL,197,2,70.14610686710009,4.38,104.07235242793534,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7413,'2019-06-03T17:45:01.729Z',NULL,143,6,61.1983004605443,3.82,59.68089632743484,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7414,'2020-01-30T18:57:07.706Z',NULL,114,1,77.91196471862148,4.87,118.43903347434319,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7415,'2018-09-18T21:51:34.472Z',NULL,92,2,124.89242686579996,7.81,172.7062203890135,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7416,'2019-05-29T07:16:01.408Z',NULL,15,27,37.648145389078365,2.35,53.05607942578885,1008); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7417,'2018-10-10T11:26:05.727Z',NULL,142,5,70.34853057210945,3.17,80.78211209243901,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7418,'2018-12-17T17:41:43.120Z',NULL,12,2,116.01427581618326,5.22,137.97814594247654,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7419,'2019-02-22T09:15:04.244Z',0.4503743422220472,7,1,148.22900526552291,6.67,216.03260490938328,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7420,'2019-02-02T03:45:44.394Z',NULL,4,1,110.98767151282252,4.99,120.88013796954131,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7421,'2017-08-19T06:03:08.920Z',NULL,19,4,42.67116731707548,1.92,29.872904020953655,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7422,'2020-04-10T20:43:58.897Z',NULL,83,1,81.87627832636537,3.68,121.39080894651218,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7423,'2019-03-14T10:13:31.732Z',0.4503743422220472,117,1,55.024851254077866,2.48,62.67329730548435,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7424,'2020-04-10T07:04:57.521Z',NULL,23,3,116.86672609493307,5.26,92.58681328881265,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7425,'2019-03-28T06:41:17.627Z',NULL,165,1,38.30449564120193,1.72,50.582480917661854,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7426,'2019-09-18T18:02:42.086Z',NULL,144,3,61.1983004605443,2.75,49.72058127792737,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7427,'2019-09-24T13:33:53.259Z',4.950374342222047,59,45,89.20214751859149,4.01,105.67180948689948,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7428,'2019-07-18T05:10:10.780Z',NULL,66,3,136.16126271106958,6.13,107.02121940512208,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7429,'2019-10-09T04:41:32.660Z',0.4503743422220472,163,4,33.56789820016516,1.51,25.635434090807024,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7430,'2019-05-26T18:09:33.842Z',NULL,172,3,122.3651993029456,5.51,170.33399604824265,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7431,'2018-06-18T13:52:12.460Z',NULL,89,4,63.719612755399886,2.87,66.78199655786987,1009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7432,'2019-12-06T01:53:55.168Z',NULL,191,1,128.5841852057933,0,170.7958835030059,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7433,'2019-04-02T02:01:39.539Z',NULL,76,2,63.82421061366486,0,56.88019752954952,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7434,'2019-05-21T03:30:41.614Z',NULL,46,3,118.0495173798411,0,139.6913130149251,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7435,'2020-03-18T01:13:43.683Z',NULL,145,1,61.1983004605443,0,87.10308500885137,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7436,'2019-04-13T22:05:23.807Z',NULL,150,3,128.55415037577922,0,100.61346578250603,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7437,'2019-05-17T14:48:49.008Z',NULL,163,4,33.56789820016516,0,41.103360687894885,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7438,'2017-07-20T08:40:36.099Z',5.1643649076061715,38,6,44.04624855892918,0,30.610375737649985,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7439,'2019-02-15T01:33:05.507Z',NULL,85,2,54.90104734428525,0,66.78028991990284,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7440,'2017-05-12T11:19:43.791Z',NULL,17,4,53.290720311951766,0,58.14717294696174,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7441,'2019-12-28T18:37:52.325Z',NULL,98,2,112.41825444654248,0,150.3463276311322,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7442,'2017-03-11T07:48:47.319Z',NULL,196,1,46.76407124473339,0,64.35532268336428,1011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7443,'2018-01-12T12:59:04.561Z',NULL,41,2,63.50890855689462,3.18,48.827897106608,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7444,'2019-05-23T02:49:29.962Z',NULL,185,4,39.57700083851661,1.98,55.21301336269657,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7445,'2017-06-12T10:50:39.050Z',NULL,151,8,61.07534871228964,3.05,61.73117111904347,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7446,'2018-10-29T16:23:29.424Z',NULL,64,7,143.4221774571866,7.17,134.32710204972403,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7447,'2019-03-28T02:20:39.400Z',NULL,181,1,143.88940370476112,7.19,107.5988406542108,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7448,'2019-12-16T04:26:06.320Z',5.1643649076061715,73,2,71.6287722595695,3.58,94.03258612200571,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7449,'2017-05-24T05:03:14.305Z',NULL,11,5,88.30453275661709,4.42,60.076230059445834,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7450,'2018-05-31T09:01:51.484Z',NULL,165,5,38.30449564120193,1.92,47.65062809170417,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7451,'2018-03-09T07:50:52.866Z',5.1643649076061715,120,1,83.5020135028928,4.18,56.44567017370313,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7452,'2018-09-10T19:05:27.033Z',NULL,189,5,93.27738254731509,4.66,66.75161005044873,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7453,'2018-10-13T02:18:44.154Z',5.1643649076061715,33,5,47.7448636959614,2.39,56.70393378724552,1012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7454,'2020-03-19T03:06:32.544Z',NULL,154,1,81.87529553312261,5.63,91.49423899555848,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7455,'2019-03-21T00:41:11.868Z',NULL,59,1,89.20214751859149,6.13,65.31667774708643,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7456,'2019-06-10T01:43:36.298Z',NULL,161,9,47.59120561297272,3.27,33.04123649162561,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7457,'2019-08-03T08:57:50.221Z',NULL,92,10,124.89242686579996,8.59,106.14570326252954,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7458,'2020-04-04T15:03:37.449Z',NULL,37,4,80.10774204020768,5.51,67.9743971598742,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7459,'2019-04-05T05:25:57.681Z',NULL,113,3,110.47725376186015,7.6,88.50044831618163,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7460,'2019-12-13T04:34:07.788Z',NULL,195,2,109.78077396807234,7.55,92.81927940952949,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7461,'2018-04-11T09:04:38.007Z',NULL,5,2,124.1176465275534,8.53,128.66407554523317,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7462,'2019-05-08T13:00:36.247Z',NULL,40,3,99.66240044231697,6.85,119.0078422451127,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7463,'2019-06-16T10:22:05.544Z',NULL,15,6,37.648145389078365,2.59,44.15385720287185,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7464,'2018-07-09T12:12:03.126Z',NULL,121,6,40.44528328808107,2.78,34.84315049672978,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7465,'2019-06-13T19:17:16.171Z',NULL,53,8,44.27587240151534,3.04,61.45349550703704,1014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7466,'2017-05-20T06:51:53.581Z',NULL,21,5,40.38334406304544,2.42,50.500026002094,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7467,'2016-07-30T13:16:33.510Z',7.44143223030174,51,5,50.433725012700116,3.03,59.95012631864247,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7468,'2018-05-17T22:49:56.513Z',NULL,187,3,98.9770008385166,5.94,82.21844470521884,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7469,'2017-09-04T10:46:22.527Z',NULL,16,5,44.07353303251545,2.64,57.99205955429878,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7470,'2019-10-11T04:37:39.164Z',NULL,184,7,116.09741230191975,6.97,97.5908402573409,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7471,'2019-05-22T13:54:51.488Z',NULL,142,5,70.34853057210945,4.22,78.86578965886943,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7472,'2017-07-24T06:33:37.387Z',NULL,86,6,61.54291113900164,3.69,88.45369174252198,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7473,'2018-03-28T03:36:55.025Z',NULL,10,1,47.6793282102869,2.86,33.417967921197324,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7474,'2018-10-17T00:04:25.957Z',NULL,124,7,110.93145648834248,6.66,141.64930778216333,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7475,'2019-11-09T13:01:34.793Z',NULL,18,3,81.90307121097293,4.91,81.96865273408416,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7476,'2017-11-12T21:25:21.582Z',NULL,175,2,78.21653962235106,4.69,104.72807442038686,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7477,'2017-07-03T21:04:39.162Z',NULL,15,5,25.09876359271891,1.51,35.172561021955204,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7478,'2018-01-12T04:50:00.832Z',NULL,24,2,112.30643674729413,6.74,136.64166976570033,1016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7479,'2017-05-14T02:00:50.337Z',NULL,188,4,22.584921698210056,1.36,29.687251437450488,1017); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7480,'2020-01-18T14:02:34.243Z',NULL,35,2,71.53687730741436,4.29,67.92825148382451,1017); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7481,'2018-10-05T14:40:25.599Z',NULL,187,5,98.9770008385166,5.94,117.67922879679634,1017); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7482,'2019-10-14T17:41:23.324Z',NULL,99,7,67.83486485383094,4.07,62.88209086247419,1017); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7483,'2019-02-22T05:36:59.562Z',NULL,184,2,116.09741230191975,6.97,139.75126986421063,1017); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7484,'2019-09-12T02:29:08.678Z',2.082782329841633,196,4,70.14610686710009,3.51,83.14679311445853,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7485,'2019-09-09T04:35:48.728Z',NULL,77,4,101.01691728415972,5.05,145.3572712883243,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7486,'2018-10-03T13:25:48.595Z',NULL,23,6,116.86672609493307,5.84,145.49208459183996,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7487,'2020-04-03T12:51:22.056Z',NULL,194,2,50.38077396807232,2.52,60.80646501682504,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7488,'2017-12-03T22:09:22.287Z',2.082782329841633,73,1,47.752514839713,2.39,48.4634751688727,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7489,'2019-08-03T00:24:17.757Z',NULL,69,6,73.38772304360626,3.67,93.45882817098773,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7490,'2019-04-18T08:13:37.781Z',NULL,191,3,128.5841852057933,6.43,185.86685050230992,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7491,'2019-06-14T10:48:23.875Z',NULL,29,5,123.57448218067185,6.18,88.02384753093446,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7492,'2020-04-01T13:49:32.683Z',NULL,15,2,37.648145389078365,1.88,56.578698722264576,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7493,'2017-06-29T14:31:29.634Z',NULL,75,7,83.87517582301558,4.19,119.12919788091618,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7494,'2019-07-12T16:08:52.030Z',NULL,112,4,41.329386510090345,2.07,28.241673022918413,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7495,'2016-12-05T17:32:57.586Z',NULL,194,1,33.587182645381546,1.68,34.08811898430072,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7496,'2018-07-07T00:50:49.207Z',NULL,4,3,110.98767151282252,5.55,84.152638714543,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7497,'2019-04-14T09:15:21.873Z',NULL,106,2,52.723521442619514,2.64,79.25687250842284,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7498,'2020-04-02T02:50:44.605Z',NULL,150,2,128.55415037577922,6.43,192.2691607306924,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7499,'2019-07-31T09:13:25.472Z',NULL,107,4,50.094887884945365,2.5,67.70665334858516,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7500,'2019-08-17T12:38:34.987Z',NULL,46,4,118.0495173798411,5.9,91.07395213310414,1019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7501,'2020-01-28T01:51:00.760Z',6.582782329841633,64,2,143.4221774571866,8.25,124.58533587943758,1020); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7502,'2018-07-18T21:53:21.710Z',NULL,130,4,75.02573869315137,5.25,65.36090329928564,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7503,'2019-02-25T12:44:52.540Z',NULL,151,1,91.61302306843446,6.41,115.48739748091839,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7504,'2017-07-27T08:04:06.065Z',NULL,20,3,24.884330833643833,1.74,29.676713696957606,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7505,'2017-09-12T15:58:52.930Z',NULL,126,4,83.49598746872304,5.84,66.85771171457256,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7506,'2019-01-30T04:59:35.110Z',NULL,37,2,80.10774204020768,5.61,71.90607580535497,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7507,'2019-04-30T03:41:18.272Z',NULL,28,2,68.12471180754113,4.77,68.76544484358143,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7508,'2016-07-25T15:21:13.077Z',NULL,166,4,25.536330427467956,1.79,25.421065742985576,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7509,'2016-08-01T07:59:57.055Z',NULL,16,5,44.07353303251545,3.09,56.08719943776672,1021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7510,'2016-09-24T19:33:40.352Z',NULL,46,4,78.6996782532274,4.72,56.16546738462072,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7511,'2019-10-13T11:33:56.764Z',NULL,67,4,41.24480890795779,2.47,59.586306164797634,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7512,'2019-12-12T23:58:01.802Z',NULL,113,1,110.47725376186015,6.63,111.5317606366033,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7513,'2019-12-31T20:44:28.425Z',NULL,1,1,44.19489169601981,2.65,43.78929636652401,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7514,'2019-04-10T12:06:23.122Z',1.2733983435112188,98,2,112.41825444654248,6.75,114.50883831357514,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7515,'2020-03-08T03:12:52.305Z',NULL,40,1,99.66240044231697,5.98,97.66950917770869,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7516,'2018-04-19T18:42:15.768Z',NULL,161,3,47.59120561297272,2.86,58.05533248469363,1023); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7517,'2016-10-31T22:34:33.874Z',NULL,109,4,79.36660712128732,4.96,103.39009247105325,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7518,'2017-03-11T21:08:56.168Z',NULL,2,1,70.07989613071763,4.38,104.45349402055777,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7519,'2018-07-23T22:04:40.445Z',NULL,111,5,55.526746186906664,3.47,77.11447620298684,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7520,'2018-08-22T17:08:35.584Z',NULL,95,5,49.81864156655383,3.11,47.964858416156495,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7521,'2018-04-30T04:28:21.143Z',NULL,83,1,81.87627832636537,5.12,65.75145393201393,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7522,'2019-08-26T22:24:58.162Z',NULL,149,3,69.15415037577924,4.32,89.72919916081621,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7523,'2017-12-02T13:04:29.754Z',5.773398343511219,46,1,78.6996782532274,4.92,71.13543393366733,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7524,'2019-05-23T07:26:55.385Z',NULL,191,4,128.5841852057933,8.04,102.90174558198088,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7525,'2017-12-22T12:48:41.351Z',NULL,149,2,46.10276691718616,2.88,34.169133960329034,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7526,'2017-03-19T08:35:34.477Z',NULL,143,1,40.7988669736962,2.55,40.04702471241709,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7527,'2017-03-02T18:50:16.093Z',NULL,20,1,24.884330833643833,1.56,37.95027660654858,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7528,'2017-01-04T13:02:38.043Z',NULL,133,1,45.654646865558064,2.85,67.10449454946104,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7529,'2017-06-17T12:55:20.016Z',NULL,200,3,48.802638078661005,3.05,33.53057519293034,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7530,'2018-09-26T01:59:19.022Z',NULL,134,4,42.49233549998661,2.66,46.25074172543464,1025); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7531,'2019-11-21T08:22:30.107Z',NULL,148,3,138.9817182254566,8.69,176.94491741626126,1027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7532,'2020-01-28T02:00:00.725Z',4.044646241020841,1,2,44.19489169601981,2.76,65.94885985077045,1027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7533,'2016-06-30T20:35:53.924Z',NULL,12,7,77.34285054412217,4.83,73.27031431961758,1027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7534,'2020-03-17T19:49:11.579Z',8.54464624102084,193,1,50.38077396807232,3.15,34.992133710822394,1027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7535,'2020-02-17T07:01:30.057Z',NULL,29,2,123.57448218067185,7.72,174.35987222712487,1027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7536,'2020-03-14T17:49:29.614Z',NULL,139,1,76.77768319177018,4.8,94.22310940929829,1027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7537,'2019-02-05T05:45:31.640Z',NULL,132,1,127.88197029833711,6.39,148.77581537851606,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7538,'2019-09-19T07:29:40.222Z',NULL,161,5,47.59120561297272,2.38,55.59507677781961,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7539,'2017-03-03T03:49:38.395Z',NULL,163,1,22.378598800110105,1.12,22.62426727597486,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7540,'2019-11-29T12:40:05.855Z',NULL,101,2,139.82488066180403,6.99,122.12512209892596,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7541,'2019-09-22T14:40:26.726Z',NULL,112,4,41.329386510090345,2.07,57.94563212474382,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7542,'2019-02-24T00:00:32.664Z',NULL,7,1,148.22900526552291,7.41,165.9786973814708,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7543,'2019-02-05T07:46:59.590Z',NULL,115,2,77.91196471862148,3.9,74.60589520154689,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7544,'2017-02-24T04:37:36.026Z',NULL,38,2,44.04624855892918,2.2,30.740909138581916,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7545,'2018-07-23T18:29:14.198Z',NULL,41,4,63.50890855689462,3.18,95.81699244179279,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7546,'2017-01-21T11:36:37.996Z',NULL,175,2,78.21653962235106,3.91,93.81456046663403,1028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7547,'2018-09-10T19:57:43.858Z',NULL,23,7,116.86672609493307,6.43,94.90706174076605,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7548,'2017-12-24T21:12:47.573Z',NULL,122,3,66.56352219205405,3.66,49.654359283187844,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7549,'2017-11-20T17:10:50.760Z',4.044646241020841,139,4,51.18512212784679,2.82,56.64683269749187,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7550,'2017-03-11T02:10:20.901Z',NULL,117,1,36.683234169385244,2.02,51.273110062908266,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7551,'2017-10-07T23:46:04.610Z',3.590028190289659,196,4,46.76407124473339,2.57,54.14771680903814,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7552,'2019-01-27T22:55:25.442Z',NULL,40,2,99.66240044231697,5.48,137.1846972758346,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7553,'2019-11-11T17:48:57.386Z',NULL,56,4,36.37128575934436,2,32.0678556615204,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7554,'2018-02-22T14:07:31.922Z',NULL,97,2,112.41825444654248,6.18,100.23995234053757,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7555,'2017-12-11T04:49:15.835Z',NULL,71,1,55.202545991924566,3.04,63.0167668575829,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7556,'2018-07-09T08:31:23.508Z',NULL,13,4,112.62925391105566,6.19,93.3344698553522,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7557,'2018-12-07T23:55:45.012Z',NULL,21,1,60.57501609456816,3.33,56.17853687203931,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7558,'2018-09-16T11:41:20.119Z',8.090028190289658,193,4,50.38077396807232,2.77,45.27474458515345,1029); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7559,'2018-03-19T10:07:52.775Z',NULL,14,1,37.648145389078365,2.64,33.13148157629915,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7560,'2019-12-02T03:18:04.605Z',NULL,112,3,41.329386510090345,2.89,41.21000365066365,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7561,'2019-07-22T07:24:24.392Z',NULL,125,6,80.39699207990944,5.63,80.94399384437729,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7562,'2019-07-16T15:06:00.340Z',NULL,11,6,132.45679913492563,9.27,159.57623946465455,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7563,'2018-02-27T03:04:36.734Z',NULL,94,2,109.21864156655383,7.65,162.70799747563103,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7564,'2018-12-23T18:40:33.509Z',NULL,18,2,81.90307121097293,5.73,120.187987961879,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7565,'2019-05-23T19:40:22.243Z',8.090028190289658,81,3,43.9329842322118,3.08,56.21811560397679,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7566,'2020-02-26T18:25:57.020Z',NULL,143,1,61.1983004605443,4.28,58.566534234279,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7567,'2019-05-22T07:51:53.167Z',NULL,130,4,75.02573869315137,5.25,107.20594482943224,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7568,'2017-02-21T11:30:54.680Z',NULL,45,2,78.6996782532274,5.51,120.6315899543719,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7569,'2019-09-08T11:02:35.230Z',5.387291629550194,169,6,59.53172693453274,4.17,59.26172283957383,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7570,'2017-02-21T16:33:00.334Z',NULL,36,1,87.29125153827623,6.11,75.96609293182595,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7571,'2018-02-26T14:09:40.141Z',NULL,77,1,101.01691728415972,7.07,96.1701243281325,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7572,'2017-01-16T08:30:07.329Z',NULL,192,2,46.122790137195516,3.23,52.36431481887331,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7573,'2019-11-25T13:14:47.558Z',NULL,58,2,78.14578007078882,5.47,58.88320549129163,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7574,'2019-08-10T10:08:59.654Z',0.8872916295501936,155,3,43.77574310182776,3.06,50.85129637274816,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7575,'2017-10-26T10:42:45.899Z',NULL,147,4,44.4315141414441,3.11,66.87249176210973,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7576,'2018-09-08T02:43:43.338Z',NULL,4,3,110.98767151282252,7.77,103.22535504373,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7577,'2017-11-28T07:38:42.551Z',NULL,178,1,78.21975500247076,5.48,61.512447873883175,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7578,'2018-03-27T11:25:31.000Z',NULL,197,0,70.14610686710009,4.91,82.64823515399883,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7579,'2019-09-07T19:07:54.379Z',NULL,61,3,23.537915510955656,1.65,32.66372995321975,1030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7580,'2020-02-14T22:32:26.869Z',NULL,60,2,29.80214751859149,1.86,32.95395217637896,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7581,'2018-11-23T01:42:42.530Z',NULL,50,2,53.64019616819762,3.35,42.67321696623483,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7582,'2018-12-21T21:29:56.552Z',NULL,73,1,71.6287722595695,4.48,54.9211757320607,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7583,'2017-12-09T11:43:03.683Z',NULL,111,1,37.01783079127111,2.31,45.303769238833354,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7584,'2016-11-29T03:08:54.962Z',NULL,68,2,76.82895921539838,4.8,75.17126894207534,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7585,'2019-07-13T00:35:33.167Z',NULL,153,3,66.79892314178237,4.17,50.91388875085803,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7586,'2018-06-22T15:49:31.006Z',NULL,158,3,139.8942352373801,8.74,135.1864536037698,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7587,'2019-02-15T20:04:51.403Z',NULL,50,1,53.64019616819762,3.35,36.92251290433832,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7588,'2016-06-29T18:16:14.289Z',NULL,194,4,33.587182645381546,2.1,29.609032605248252,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7589,'2020-04-13T11:09:19.944Z',NULL,70,1,57.493003808959784,3.59,68.65067710449802,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7590,'2018-11-20T03:18:52.859Z',NULL,61,3,23.537915510955656,1.47,24.940227585074158,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7591,'2017-11-04T15:29:05.078Z',NULL,53,3,29.517248267676894,1.84,30.270874325112292,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7592,'2018-03-05T03:08:23.278Z',NULL,109,1,119.04991068193098,7.44,113.91085986269215,1031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7593,'2020-03-10T07:15:26.278Z',8.409445718834656,49,1,131.42865839323724,9.04,120.14847952861419,1032); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7594,'2020-03-25T04:05:25.895Z',NULL,116,1,114.42485125407785,7.87,154.76440397669796,1032); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7595,'2019-10-27T03:03:54.611Z',NULL,63,6,133.5202262591817,9.18,127.64940261412399,1032); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7596,'2019-01-02T15:04:30.439Z',NULL,183,3,56.697412301919755,3.9,72.2033275034625,1032); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7597,'2019-07-14T02:32:59.025Z',NULL,22,7,32.136779940663494,2.21,35.10512167398694,1032); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7598,'2019-04-30T09:34:51.106Z',NULL,91,4,65.09432810381134,4.48,96.02486757238252,1032); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7599,'2018-04-02T07:17:33.969Z',NULL,115,3,77.91196471862148,3.12,61.71978225223945,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7600,'2019-01-06T06:28:42.805Z',NULL,82,2,60.89545738030947,2.44,91.5535670285656,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7601,'2019-04-28T01:04:01.961Z',NULL,162,4,33.56789820016516,1.34,37.51127751895265,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7602,'2019-09-11T20:10:45.063Z',NULL,64,7,143.4221774571866,5.74,103.23716215388521,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7603,'2019-03-14T21:56:30.925Z',NULL,10,1,47.6793282102869,1.91,37.01680763729805,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7604,'2017-11-13T22:22:22.524Z',3.9094457188346547,169,2,39.68781795635516,1.59,45.57654553124511,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7605,'2018-02-27T02:08:31.299Z',NULL,186,2,98.9770008385166,3.96,127.06863668945789,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7606,'2019-03-30T02:34:38.282Z',8.409445718834656,71,1,82.80381898788684,3.31,110.02639583264333,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7607,'2016-12-31T19:23:09.733Z',NULL,120,3,55.668009001928525,2.23,53.91828150220285,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7608,'2018-11-29T00:33:36.575Z',NULL,174,4,111.61430894181083,4.46,95.48515509106748,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7609,'2017-09-07T23:31:55.609Z',NULL,162,5,22.378598800110105,0.9,31.43591644937032,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7610,'2017-03-16T02:40:14.963Z',NULL,126,1,83.49598746872304,3.34,83.40436053538114,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7611,'2020-04-09T06:31:31.590Z',NULL,176,3,57.92480943352658,2.32,66.28865079024867,1035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7612,'2019-02-05T23:09:20.224Z',NULL,50,19,53.64019616819762,2.15,51.033220116976274,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7613,'2017-10-02T00:31:30.439Z',NULL,168,4,79.28781795635516,3.17,52.900553592959824,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7614,'2019-02-06T14:22:10.203Z',NULL,85,12,54.90104734428525,2.2,80.61345657573928,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7615,'2019-11-28T15:53:20.429Z',NULL,167,2,97.70449564120193,3.91,95.27032993722648,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7616,'2019-12-20T08:16:50.679Z',NULL,94,1,109.21864156655383,4.37,107.53586551093767,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7617,'2017-03-07T07:29:49.609Z',NULL,45,1,78.6996782532274,3.15,97.9950854953244,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7618,'2017-04-11T23:50:30.884Z',NULL,96,2,69.88096572393577,2.8,50.85114921914395,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7619,'2016-10-30T02:11:27.671Z',NULL,129,4,98.7781981443958,3.95,133.57445673811083,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7620,'2016-12-15T23:43:27.194Z',1.4715490202275734,131,1,75.41148135558485,3.02,107.78955388342803,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7621,'2017-12-10T07:58:08.887Z',5.971549020227574,5,1,82.7450976850356,3.31,111.8272074042267,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7622,'2019-05-22T01:24:08.484Z',NULL,173,3,122.3651993029456,4.89,139.03264766577269,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7623,'2018-04-24T03:16:32.471Z',NULL,183,1,56.697412301919755,2.27,83.1037650884994,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7624,'2017-07-16T16:43:28.111Z',NULL,81,2,29.288656154807867,1.17,22.458302217442604,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7625,'2017-09-21T02:29:21.367Z',NULL,152,4,32.59712486600442,1.3,27.322956453266443,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7626,'2018-12-12T16:54:26.390Z',NULL,61,20,23.537915510955656,0.94,17.31750122450526,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7627,'2019-01-20T15:57:31.245Z',NULL,24,2,112.30643674729413,4.49,126.09655088869651,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7628,'2019-07-07T17:59:22.095Z',NULL,100,5,67.83486485383094,2.71,96.62846299406841,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7629,'2017-05-15T02:52:16.467Z',NULL,190,4,85.72279013719552,3.43,86.23277729869733,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7630,'2018-02-27T20:12:19.872Z',NULL,62,2,133.5202262591817,5.34,106.67073137548614,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7631,'2016-10-28T09:24:25.617Z',NULL,165,4,25.536330427467956,1.02,31.59857406997853,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7632,'2018-03-11T16:53:28.882Z',NULL,96,1,104.82144858590365,4.19,89.8254199451205,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7633,'2020-03-15T07:16:13.989Z',NULL,91,1,65.09432810381134,2.6,96.76699145787614,1037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7634,'2018-08-25T14:36:59.721Z',NULL,127,5,134.48016314504417,5.38,177.29433164212722,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7635,'2019-01-29T22:00:05.309Z',NULL,94,1,109.21864156655383,4.37,157.54043647480418,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7636,'2018-07-27T01:46:11.941Z',NULL,153,5,66.79892314178237,2.67,45.52338866704685,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7637,'2019-08-16T05:43:07.445Z',8.241041271226909,28,7,68.12471180754113,2.72,56.1253561687485,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7638,'2019-04-22T17:43:32.025Z',NULL,121,3,40.44528328808107,1.62,32.99361406353904,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7639,'2019-05-26T02:50:31.547Z',NULL,171,4,105.07665741496471,4.2,141.5096162313059,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7640,'2019-03-24T01:01:30.536Z',NULL,6,1,97.43621265344382,3.9,86.57485238143389,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7641,'2020-02-12T08:56:31.031Z',NULL,100,2,67.83486485383094,2.71,82.44856880208948,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7642,'2018-10-17T14:05:25.158Z',NULL,129,7,148.1672972165937,5.93,175.9028283018571,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7643,'2018-06-20T01:05:16.808Z',NULL,14,6,37.648145389078365,1.51,27.621417262594655,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7644,'2019-12-14T07:57:57.010Z',NULL,191,1,128.5841852057933,5.14,147.79140217480239,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7645,'2019-02-09T16:47:48.199Z',NULL,172,2,122.3651993029456,4.89,113.4995904519211,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7646,'2017-10-30T03:24:58.867Z',NULL,35,7,47.691251538276234,1.91,62.97703309686894,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7647,'2019-06-19T12:38:36.072Z',NULL,145,8,61.1983004605443,2.45,72.23755537079117,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7648,'2019-02-04T10:35:13.886Z',NULL,13,2,112.62925391105566,4.51,101.80639537607625,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7649,'2018-12-14T05:39:33.084Z',NULL,31,3,105.65346467128523,4.23,136.40367306658692,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7650,'2017-09-30T16:50:09.804Z',NULL,107,5,33.39659192329691,1.34,29.504295395145114,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7651,'2018-12-19T09:58:47.792Z',NULL,193,1,50.38077396807232,2.02,40.69554924785079,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7652,'2020-02-06T14:31:38.391Z',NULL,56,2,36.37128575934436,1.45,36.81506408083107,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7653,'2017-12-09T21:50:48.318Z',NULL,2,2,70.07989613071763,2.8,102.95082539081231,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7654,'2019-08-21T22:13:47.299Z',NULL,7,8,148.22900526552291,5.93,148.93352043879267,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7655,'2016-12-28T03:34:49.000Z',NULL,138,3,75.96718984479077,3.04,78.85872197000194,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7656,'2018-10-10T18:25:43.293Z',NULL,53,7,44.27587240151534,1.77,63.108247928466376,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7657,'2018-06-21T23:16:01.887Z',NULL,23,8,116.86672609493307,4.67,171.32977650366246,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7658,'2018-04-08T05:53:50.835Z',NULL,70,4,57.493003808959784,2.3,50.0886464047089,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7659,'2018-09-06T21:08:32.155Z',NULL,27,7,127.52471180754115,5.1,113.41137355127762,1039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7660,'2018-10-03T19:12:20.871Z',NULL,125,7,80.39699207990944,3.46,109.11313909810632,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7661,'2017-07-04T09:04:24.197Z',NULL,144,6,40.7988669736962,1.75,36.84945727212879,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7662,'2018-09-11T15:45:07.383Z',NULL,144,7,61.1983004605443,2.63,75.0668379681031,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7663,'2019-12-03T04:27:16.665Z',NULL,64,3,143.4221774571866,6.17,213.1989712724598,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7664,'2019-06-05T10:47:02.830Z',NULL,42,9,38.00410713690931,1.63,37.82151488032284,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7665,'2017-02-01T08:29:15.892Z',NULL,42,2,25.336071424606207,1.09,22.755024367238452,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7666,'2018-05-03T10:49:16.786Z',NULL,86,5,92.31436670850246,3.97,75.03972644194533,1040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7667,'2020-01-17T12:20:13.679Z',NULL,188,2,33.87738254731509,1.36,46.83171576917159,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7668,'2017-11-12T08:20:19.145Z',NULL,187,4,65.98466722567774,2.64,45.03646481738476,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7669,'2018-04-29T06:00:40.478Z',NULL,81,4,43.9329842322118,1.76,38.69346440952528,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7670,'2018-06-03T20:19:39.879Z',NULL,16,8,66.11029954877317,2.64,56.02027990298638,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7671,'2017-03-14T04:48:21.212Z',NULL,33,1,31.829909130640935,1.27,28.48692852890923,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7672,'2019-07-11T03:47:01.777Z',NULL,118,5,57.627613096978735,2.31,72.01451379121474,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7673,'2016-11-03T00:48:07.514Z',NULL,199,3,76.95334253952366,3.08,57.8434620290066,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7674,'2018-04-29T18:33:44.876Z',NULL,26,3,68.12471180754113,2.72,55.65845679519984,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7675,'2019-02-16T21:47:52.611Z',NULL,167,2,97.70449564120193,3.91,112.50785251246724,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7676,'2019-02-15T14:06:20.852Z',NULL,50,2,53.64019616819762,2.15,57.560671706783076,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7677,'2018-03-24T06:40:18.019Z',NULL,121,10,40.44528328808107,1.62,48.22658865994005,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7678,'2018-05-29T14:43:53.189Z',NULL,49,3,131.42865839323724,5.26,188.82843363611366,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7679,'2020-01-09T00:04:29.177Z',NULL,111,1,55.526746186906664,2.22,79.02251123846051,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7680,'2019-02-04T06:07:17.173Z',NULL,140,1,66.80312547576881,2.67,68.08111277941441,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7681,'2018-05-27T07:21:12.313Z',NULL,17,4,79.93608046792765,3.2,107.5030444508174,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7682,'2018-04-26T08:40:11.826Z',NULL,183,3,56.697412301919755,2.27,84.04404283443114,1042); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7683,'2019-03-05T00:31:28.268Z',NULL,50,1,53.64019616819762,3.22,62.0644905736974,1045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7684,'2018-07-12T23:46:56.570Z',NULL,71,6,82.80381898788684,4.97,126.47051624407868,1045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7685,'2018-10-05T20:34:04.157Z',NULL,78,5,41.616917284159726,2.5,57.32507225088934,1045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7686,'2018-11-28T15:14:14.201Z',NULL,172,3,122.3651993029456,7.34,113.93851814191655,1045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7687,'2017-09-24T20:10:38.661Z',NULL,112,6,27.55292434006023,1.16,38.74627683300418,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7688,'2019-09-07T07:38:06.070Z',NULL,56,6,36.37128575934436,1.54,33.13990862425227,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7689,'2017-01-04T10:38:29.561Z',NULL,138,2,75.96718984479077,3.21,91.13801269084883,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7690,'2018-09-23T05:23:13.253Z',NULL,145,6,61.1983004605443,2.59,80.61982244101735,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7691,'2018-11-15T00:26:12.686Z',NULL,144,3,61.1983004605443,2.59,60.38541416635281,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7692,'2020-04-01T00:56:18.435Z',NULL,136,3,105.20402317157343,4.44,93.15753086876855,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7693,'2018-03-03T01:35:55.519Z',NULL,15,1,37.648145389078365,1.59,45.25415341549672,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7694,'2017-05-27T18:58:43.349Z',NULL,110,4,37.01783079127111,1.56,32.72568525174116,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7695,'2017-05-31T00:56:46.088Z',NULL,54,4,41.395738936015974,1.75,42.311787752054144,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7696,'2019-01-01T05:32:58.627Z',NULL,98,2,112.41825444654248,4.75,129.72613038049477,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7697,'2017-07-05T06:13:22.523Z',NULL,92,5,83.2616179105333,3.52,56.18734094576766,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7698,'2018-10-29T19:05:31.710Z',NULL,110,6,55.526746186906664,2.35,39.30903292432507,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7699,'2018-07-28T01:01:36.227Z',NULL,50,5,53.64019616819762,2.27,61.400205998453,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7700,'2018-07-15T22:27:01.631Z',NULL,91,6,65.09432810381134,2.75,87.12857676913497,1048); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7701,'2019-01-25T11:09:45.330Z',NULL,28,2,68.12471180754113,2.72,99.88444293545683,1049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7702,'2018-04-20T16:55:44.618Z',NULL,128,3,75.08016314504417,3,79.69913317712087,1049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7703,'2017-02-22T02:43:07.514Z',NULL,54,2,41.395738936015974,1.66,58.4039040140638,1049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7704,'2017-04-04T07:59:17.251Z',8.247203963801049,49,3,87.61910559549149,3.5,92.91838260041783,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7705,'2019-08-30T04:18:57.064Z',NULL,61,7,23.537915510955656,0.94,24.72484712261765,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7706,'2018-09-27T08:04:09.616Z',NULL,164,5,92.96789820016517,3.72,122.88057914139497,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7707,'2018-12-13T09:55:47.644Z',NULL,199,3,115.4300138092855,4.62,100.31346470979182,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7708,'2018-10-11T02:40:13.732Z',NULL,6,6,97.43621265344382,3.9,127.53302919866235,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7709,'2019-05-15T12:57:13.071Z',NULL,120,4,83.5020135028928,3.34,102.90523673214918,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7710,'2018-02-09T17:47:25.150Z',NULL,169,2,59.53172693453274,2.38,77.97029849594338,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7711,'2017-09-11T05:53:55.149Z',NULL,44,5,50.90170136783837,2.04,72.6728728984194,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7712,'2020-03-15T20:46:33.353Z',NULL,53,1,44.27587240151534,1.77,48.12922963162329,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7713,'2017-08-27T15:59:40.451Z',NULL,71,5,55.202545991924566,2.21,64.00687729072176,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7714,'2018-04-30T08:33:56.448Z',NULL,136,3,105.20402317157343,4.21,108.35941023721209,1050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7715,'2019-03-03T08:13:24.640Z',3.7472039638010486,73,1,71.6287722595695,5.01,60.96233841618442,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7716,'2017-02-08T02:30:30.573Z',NULL,126,2,83.49598746872304,5.84,93.29339152753992,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7717,'2018-09-26T08:15:34.632Z',NULL,65,6,68.22769726470014,4.78,97.53296061063786,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7718,'2018-09-19T12:29:46.112Z',NULL,55,6,95.77128575934437,6.7,127.99459335257886,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7719,'2018-06-03T11:26:46.469Z',NULL,105,6,52.723521442619514,3.69,42.253807604942644,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7720,'2018-05-01T03:51:14.571Z',NULL,92,4,124.89242686579996,8.74,123.99769043055784,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7721,'2019-12-29T22:13:50.683Z',NULL,53,2,44.27587240151534,3.1,37.067689329987616,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7722,'2018-05-10T08:50:03.424Z',NULL,159,3,35.53017445377361,2.49,36.577996534996835,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7723,'2019-02-15T01:08:29.948Z',2.7287912354361303,71,1,82.80381898788684,5.8,96.36984166694424,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7724,'2019-07-05T19:59:02.930Z',NULL,57,4,122.4223933583994,8.57,176.71426223786702,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7725,'2017-07-22T07:45:19.653Z',NULL,152,6,32.59712486600442,2.28,40.893861263873056,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7726,'2017-08-30T03:24:26.692Z',NULL,37,6,53.40516136013846,3.74,48.250814105679545,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7727,'2019-04-04T03:09:39.815Z',NULL,147,2,66.64727121216615,4.67,98.88217986966812,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7728,'2017-12-13T07:55:25.120Z',NULL,157,1,93.26282349158673,6.53,126.21149304067355,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7729,'2016-11-17T15:48:19.182Z',NULL,13,2,75.0861692740371,5.26,63.494553007757105,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7730,'2020-03-11T21:01:20.247Z',NULL,36,1,130.93687730741433,9.17,105.91457587417595,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7731,'2019-12-11T22:00:58.540Z',NULL,44,1,76.35255205175756,5.34,105.7038453723861,1051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7732,'2019-09-06T06:40:20.569Z',2.7287912354361303,37,3,80.10774204020768,5.01,78.22973468581563,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7733,'2019-07-17T17:15:17.976Z',NULL,20,3,37.32649625046575,2.33,39.62960854175475,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7734,'2019-01-21T01:55:06.139Z',NULL,182,1,84.48940370476112,5.28,83.71471718639104,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7735,'2019-11-06T01:59:23.781Z',7.22879123543613,12,3,116.01427581618326,7.25,129.2237110011842,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7736,'2019-01-31T22:46:04.594Z',7.22879123543613,161,2,47.59120561297272,2.97,44.19294228202775,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7737,'2020-03-25T08:26:11.425Z',NULL,160,1,47.59120561297272,2.97,32.16996874211043,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7738,'2016-10-21T07:10:13.117Z',NULL,199,4,76.95334253952366,4.81,77.63669987037485,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7739,'2017-01-08T07:12:24.712Z',NULL,84,2,54.58418555091025,3.41,81.29229793078619,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7740,'2019-01-07T13:05:54.394Z',NULL,55,2,95.77128575934437,5.99,133.7794302645936,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7741,'2019-10-26T06:38:23.745Z',NULL,37,5,80.10774204020768,5.01,82.48520454520552,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7742,'2016-11-26T19:10:57.642Z',NULL,34,4,49.535942579421324,3.1,39.151345440356444,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7743,'2018-08-13T13:18:12.992Z',NULL,115,8,77.91196471862148,4.87,61.63219836016708,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7744,'2019-11-09T20:37:13.277Z',NULL,191,4,128.5841852057933,8.04,108.99777567775345,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7745,'2016-11-19T08:34:08.505Z',NULL,73,4,47.752514839713,2.98,54.98296232571338,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7746,'2019-01-02T07:30:36.686Z',NULL,66,3,136.16126271106958,8.51,116.52626386497815,1054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7747,'2017-01-24T12:12:45.779Z',NULL,59,2,59.46809834572766,0,76.33036615576523,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7748,'2016-09-29T23:21:25.696Z',NULL,20,4,24.884330833643833,0,23.600602743760177,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7749,'2016-09-28T12:00:38.410Z',NULL,153,4,44.532615427854914,0,39.862780259456684,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7750,'2017-07-18T14:49:01.257Z',NULL,121,4,26.96352219205405,0,25.09950384609819,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7751,'2019-04-03T18:40:24.102Z',NULL,96,2,104.82144858590365,0,138.12550797776842,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7752,'2018-01-26T02:01:16.594Z',NULL,170,2,105.07665741496471,0,131.48957932918006,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7753,'2019-02-01T03:31:59.191Z',7.9345605184289445,23,2,116.86672609493307,0,166.9285818630631,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7754,'2019-02-10T09:41:02.410Z',NULL,142,2,70.34853057210945,0,92.33735726496532,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7755,'2018-09-24T20:34:53.053Z',NULL,108,6,50.094887884945365,0,32.64599838436288,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7756,'2018-01-22T10:48:47.483Z',NULL,140,3,66.80312547576881,0,70.0659644667967,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7757,'2018-07-12T04:44:14.321Z',NULL,83,5,81.87627832636537,0,78.27884476067243,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7758,'2016-08-15T11:05:18.034Z',7.9345605184289445,125,5,53.59799471993963,0,72.42340338586204,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7759,'2019-01-21T12:03:08.233Z',NULL,88,1,105.41292031622555,0,118.25639301593054,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7760,'2020-02-01T20:06:14.178Z',NULL,93,2,49.81864156655383,0,54.25145191743692,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7761,'2017-04-04T04:48:11.023Z',NULL,35,3,47.691251538276234,0,66.96716172791463,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7762,'2019-12-31T20:56:10.395Z',2.2677199007658255,73,2,71.6287722595695,0,68.96713883981,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7763,'2019-12-02T09:50:31.419Z',NULL,185,2,39.57700083851661,0,32.22042961586928,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7764,'2019-06-18T07:39:56.581Z',NULL,36,7,130.93687730741433,0,142.1250598408461,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7765,'2019-07-21T04:49:21.898Z',NULL,125,6,80.39699207990944,0,76.20902109478595,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7766,'2017-06-29T08:04:33.636Z',NULL,152,7,32.59712486600442,0,26.464853930074973,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7767,'2017-08-04T13:49:09.930Z',NULL,102,8,31.361435038520785,0,37.47077942984304,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7768,'2019-02-14T14:50:09.608Z',NULL,100,2,67.83486485383094,0,92.16353360073781,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7769,'2019-11-13T14:23:22.507Z',NULL,60,3,29.80214751859149,0,40.97591562195961,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7770,'2018-04-24T04:38:25.795Z',NULL,124,3,110.93145648834248,0,80.78455335367144,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7771,'2020-02-13T07:38:08.048Z',NULL,100,1,67.83486485383094,0,44.97727316625956,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7772,'2020-02-18T02:23:30.272Z',NULL,77,2,101.01691728415972,0,99.07710326767474,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7773,'2016-11-21T03:06:10.008Z',NULL,130,3,50.01715912876758,0,44.989176678782606,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7774,'2020-01-31T19:25:20.797Z',NULL,130,2,75.02573869315137,0,99.91015589680944,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7775,'2017-01-31T09:21:03.654Z',NULL,79,1,27.74461152277315,0,38.338216823338314,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7776,'2020-03-21T09:26:25.677Z',NULL,47,1,84.0766209826718,0,54.63829898957278,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7777,'2019-06-06T08:38:58.638Z',NULL,87,5,117.25536340498041,0,145.44312716454073,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7778,'2017-10-26T20:57:58.593Z',NULL,62,3,89.0134841727878,0,93.59812677590946,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7779,'2019-11-21T10:03:54.256Z',NULL,152,1,48.89568729900663,0,50.45328385005262,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7780,'2020-01-14T03:35:27.949Z',NULL,66,1,136.16126271106958,0,169.70861967660215,1055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7781,'2019-12-10T19:30:22.368Z',NULL,138,1,113.95078476718615,7.98,136.50622050101163,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7782,'2019-01-02T08:15:24.488Z',NULL,41,1,63.50890855689462,4.45,98.92169789728726,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7783,'2019-06-17T17:06:48.641Z',5.889265944858963,136,5,105.20402317157343,7.36,90.31687064309628,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7784,'2017-02-27T02:51:32.995Z',NULL,82,2,40.59697158687298,2.84,32.29113635073761,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7785,'2018-04-28T01:36:59.830Z',NULL,162,3,33.56789820016516,2.35,42.757838316389346,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7786,'2018-12-12T20:27:01.417Z',NULL,137,2,67.77247956807186,4.74,81.1380470315068,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7787,'2019-04-23T01:49:55.122Z',NULL,179,3,68.32408657333919,4.78,85.42446342575731,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7788,'2017-04-07T16:15:47.118Z',NULL,79,3,27.74461152277315,1.94,42.91250001145724,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7789,'2018-11-07T15:02:40.904Z',NULL,131,2,113.11722203337729,7.92,92.85024282289469,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7790,'2018-10-21T08:19:21.077Z',NULL,114,4,77.91196471862148,5.45,119.40462151578389,1056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7791,'2017-09-21T00:55:33.106Z',NULL,198,5,46.76407124473339,1.87,69.24764598850614,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7792,'2019-07-21T13:02:45.847Z',NULL,11,5,132.45679913492563,5.3,101.08985792289735,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7793,'2018-12-16T08:33:59.375Z',NULL,141,1,126.20312547576883,5.05,134.6911033957755,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7794,'2019-01-29T04:03:43.623Z',NULL,179,1,68.32408657333919,2.73,71.49815135518702,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7795,'2018-11-13T22:11:05.777Z',NULL,45,3,118.0495173798411,4.72,130.08345124241634,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7796,'2018-12-09T22:14:05.076Z',NULL,177,1,128.8192981944599,5.15,123.59995187867571,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7797,'2019-08-01T15:28:53.412Z',1.3892659448589626,37,5,80.10774204020768,3.2,73.74200282604227,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7798,'2017-02-28T15:41:49.961Z',NULL,166,1,25.536330427467956,1.02,28.41386328125781,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7799,'2018-06-16T16:27:49.313Z',NULL,16,5,66.11029954877317,2.64,84.7336506492,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7800,'2017-03-12T20:09:32.805Z',5.889265944858963,81,1,29.288656154807867,1.17,32.245194563502515,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7801,'2019-12-14T20:59:14.217Z',NULL,141,1,126.20312547576883,5.05,101.06691203458097,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7802,'2019-02-03T01:50:26.493Z',5.583731127253249,76,1,63.82421061366486,2.55,56.2525650391809,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7803,'2016-10-23T10:40:11.912Z',NULL,120,4,55.668009001928525,2.23,69.6189380089618,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7804,'2017-10-26T07:25:58.679Z',5.583731127253249,179,4,45.549391048892794,1.82,46.625761415823106,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7805,'2019-01-27T03:02:38.258Z',NULL,167,1,97.70449564120193,3.91,147.8783481344971,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7806,'2018-03-15T00:11:43.755Z',NULL,124,1,110.93145648834248,4.44,125.62474976717441,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7807,'2019-10-26T18:49:01.414Z',1.0837311272532488,39,4,114.58158180283459,4.58,123.57452791258562,1057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7808,'2020-02-14T08:45:51.893Z',NULL,142,1,70.34853057210945,3.52,71.41210934219916,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7809,'2018-10-30T21:29:27.089Z',NULL,109,5,119.04991068193098,5.95,169.23839089016738,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7810,'2020-04-14T12:55:43.317Z',1.0837311272532488,121,2,40.44528328808107,2.02,56.3993824273776,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7811,'2020-02-29T09:31:17.413Z',NULL,154,1,81.87529553312261,4.09,62.05934479131525,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7812,'2019-05-27T09:32:57.523Z',NULL,77,3,101.01691728415972,5.05,134.0121781877735,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7813,'2018-08-27T19:12:39.019Z',1.0837311272532488,103,3,47.04215255778118,2.35,64.63030797306654,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7814,'2018-01-20T14:19:14.256Z',NULL,99,1,67.83486485383094,3.39,54.49895834317274,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7815,'2019-07-24T06:36:19.545Z',NULL,27,4,127.52471180754115,6.38,138.04899781839464,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7816,'2017-12-29T01:34:28.707Z',NULL,175,1,78.21653962235106,3.91,111.57826036761982,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7817,'2019-02-07T10:28:11.911Z',NULL,173,1,122.3651993029456,6.12,133.86276729058642,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7818,'2018-12-05T20:35:10.953Z',NULL,69,2,73.38772304360626,3.67,67.70351093980577,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7819,'2019-06-12T05:00:47.105Z',NULL,103,4,47.04215255778118,2.35,38.333894932425984,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7820,'2019-06-01T21:13:38.812Z',5.583731127253249,102,3,47.04215255778118,2.35,31.782235131734495,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7821,'2018-01-09T04:56:19.395Z',NULL,110,1,55.526746186906664,2.78,48.86422599363163,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7822,'2017-06-16T05:48:17.988Z',NULL,36,4,87.29125153827623,4.36,59.28009492561994,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7823,'2018-06-20T00:02:31.972Z',NULL,181,4,143.88940370476112,7.19,117.17544017253799,1058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7824,'2018-04-22T07:13:41.874Z',NULL,153,2,66.79892314178237,4.01,74.46136989714834,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7825,'2019-01-14T01:13:53.242Z',NULL,17,2,79.93608046792765,4.8,78.84523202771274,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7826,'2019-09-20T06:34:13.541Z',NULL,163,5,33.56789820016516,2.01,34.412774098046164,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7827,'2017-11-14T22:57:57.450Z',NULL,100,3,45.22324323588729,2.71,61.06150061302109,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7828,'2018-03-09T13:23:34.367Z',NULL,19,1,64.00675097561322,3.84,61.31155907675672,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7829,'2018-12-05T11:54:18.666Z',4.133455869617402,63,2,133.5202262591817,8.01,140.27933099170883,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7830,'2018-07-01T05:37:23.215Z',NULL,71,4,82.80381898788684,4.97,91.77314872819004,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7831,'2018-08-08T00:28:56.516Z',NULL,195,7,109.78077396807234,6.59,84.73981499675644,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7832,'2016-10-04T03:23:16.068Z',NULL,199,6,76.95334253952366,4.62,110.04607542823567,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7833,'2019-02-10T09:36:01.124Z',NULL,91,1,65.09432810381134,3.91,43.271375001652714,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7834,'2017-11-18T13:28:34.134Z',NULL,101,3,93.21658710786936,5.59,111.59091069655963,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7835,'2017-03-03T01:58:00.864Z',NULL,179,1,45.549391048892794,2.73,36.23015285209912,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7836,'2018-12-17T22:48:55.560Z',NULL,120,2,83.5020135028928,5.01,125.16301395924157,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7837,'2019-12-06T17:09:22.297Z',NULL,157,2,139.8942352373801,8.39,202.01669927825077,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7838,'2018-06-16T01:02:42.847Z',NULL,190,8,128.5841852057933,7.72,182.99959128917783,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7839,'2018-11-07T19:03:26.247Z',NULL,50,4,53.64019616819762,3.22,63.954173806054484,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7840,'2018-12-13T17:10:15.346Z',8.633455869617402,48,2,123.20884248534108,7.39,90.81606396527239,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7841,'2017-11-16T19:39:27.447Z',NULL,54,3,41.395738936015974,2.48,52.57290025019134,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7842,'2018-05-31T06:31:31.655Z',NULL,97,6,112.41825444654248,6.75,163.7238952275015,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7843,'2019-11-30T08:58:59.821Z',NULL,47,4,84.0766209826718,5.04,104.94651865061793,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7844,'2016-11-15T19:32:50.676Z',NULL,156,4,20.41053609936413,1.22,19.76804993981094,1061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7845,'2017-05-09T17:13:21.276Z',NULL,127,6,89.65344209669612,4.93,120.94023289775963,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7846,'2018-11-02T14:25:08.674Z',NULL,102,3,47.04215255778118,2.59,60.268304454665895,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7847,'2019-07-15T10:27:32.160Z',NULL,116,5,114.42485125407785,6.29,107.98721353851414,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7848,'2018-12-02T09:25:33.564Z',NULL,192,2,69.18418520579327,3.81,103.15712039333586,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7849,'2018-10-01T15:43:51.049Z',NULL,45,5,118.0495173798411,6.49,129.25099658056672,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7850,'2019-10-01T23:16:35.298Z',NULL,1,5,44.19489169601981,2.43,31.442665407064666,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7851,'2020-01-27T07:45:47.589Z',NULL,146,2,126.04727121216614,6.93,172.5514724832839,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7852,'2017-05-13T15:51:08.893Z',NULL,196,5,46.76407124473339,2.57,48.736740253009195,1062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7853,'2018-09-05T15:41:29.653Z',NULL,167,5,97.70449564120193,6.2,136.28964137702906,1063); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7854,'2019-06-30T20:33:58.126Z',NULL,21,7,60.57501609456816,3.85,59.145921001740696,1063); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7855,'2018-12-29T18:27:56.787Z',NULL,90,2,123.1196127553999,7.82,155.65276210247788,1063); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7856,'2019-10-05T19:57:26.923Z',NULL,160,5,47.59120561297272,3.02,33.60125693159295,1063); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7857,'2018-09-23T17:03:08.282Z',NULL,140,4,66.80312547576881,4.24,98.33247137322915,1063); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7858,'2017-11-15T04:47:50.431Z',NULL,147,3,44.4315141414441,1.78,60.544419126060625,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7859,'2017-10-17T10:23:06.721Z',NULL,77,6,67.34461152277315,2.69,47.56338692814401,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7860,'2018-08-04T23:24:56.972Z',NULL,79,8,41.616917284159726,1.66,42.932397801617704,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7861,'2018-10-02T11:57:40.184Z',NULL,153,6,66.79892314178237,2.67,80.87100708616579,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7862,'2019-02-27T00:12:07.814Z',NULL,97,1,112.41825444654248,4.5,153.71331199002506,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7863,'2019-05-13T22:25:17.527Z',NULL,28,4,68.12471180754113,2.72,53.212786613556645,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7864,'2018-10-27T04:04:38.369Z',NULL,107,5,50.094887884945365,2,32.5237378056123,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7865,'2019-08-14T18:03:11.797Z',NULL,136,6,105.20402317157343,4.21,91.23854371902392,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7866,'2017-08-16T18:33:29.500Z',NULL,84,8,54.58418555091025,2.18,81.81707367407623,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7867,'2018-12-10T09:53:12.486Z',NULL,75,2,125.81276373452337,5.03,134.60028630163274,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7868,'2018-06-17T04:19:37.485Z',NULL,149,7,69.15415037577924,2.77,82.33191824065743,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7869,'2018-05-18T02:51:38.582Z',NULL,27,5,127.52471180754115,5.1,127.21938317448603,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7870,'2019-02-23T09:43:00.419Z',NULL,56,2,36.37128575934436,1.45,44.07415137859132,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7871,'2018-12-11T23:56:33.614Z',NULL,87,2,117.25536340498041,4.69,81.63379907282183,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7872,'2018-05-23T07:13:07.439Z',6.583345678224265,177,4,128.8192981944599,5.15,161.29312171907853,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7873,'2018-08-04T06:38:33.858Z',NULL,23,4,116.86672609493307,4.67,126.96673019862644,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7874,'2018-10-20T17:28:30.257Z',3.292548879777841,143,5,61.1983004605443,2.45,74.78628630816178,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7875,'2019-08-22T13:20:02.612Z',NULL,121,9,40.44528328808107,1.62,61.430224841051626,1064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7876,'2020-02-26T14:30:30.288Z',7.792548879777841,78,2,41.616917284159726,0,60.827975816586815,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7877,'2017-12-23T17:16:16.829Z',3.292548879777841,184,1,77.3982748679465,0,49.081890427134546,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7878,'2019-10-20T19:21:22.381Z',NULL,103,5,47.04215255778118,0,55.782131161720066,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7879,'2018-02-19T21:30:47.801Z',NULL,61,2,23.537915510955656,0,26.443867819199337,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7880,'2018-06-13T04:24:01.264Z',NULL,95,6,49.81864156655383,0,34.638024839235776,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7881,'2018-07-14T17:42:24.082Z',NULL,166,3,38.30449564120193,0,32.25416119943983,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7882,'2019-04-16T11:51:34.477Z',NULL,196,2,70.14610686710009,0,52.21532268761407,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7883,'2019-01-01T01:04:08.316Z',NULL,136,1,105.20402317157343,0,149.21601161228483,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7884,'2020-01-15T07:59:02.462Z',NULL,59,2,89.20214751859149,0,100.83508901629907,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7885,'2019-12-28T19:55:40.302Z',NULL,122,2,99.84528328808108,0,70.91044874117264,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7886,'2016-07-02T15:23:26.621Z',NULL,34,3,49.535942579421324,0,54.14069152427013,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7887,'2020-03-30T06:49:58.038Z',NULL,195,1,109.78077396807234,0,153.68920411288397,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7888,'2018-01-16T11:57:20.366Z',NULL,60,2,29.80214751859149,0,22.01182040727885,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7889,'2019-03-13T06:41:01.257Z',NULL,40,1,99.66240044231697,0,137.92346729195066,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7890,'2018-12-13T14:12:42.243Z',NULL,50,2,53.64019616819762,0,76.13124273999932,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7891,'2019-10-28T20:49:09.783Z',NULL,177,7,128.8192981944599,0,112.735520244058,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7892,'2019-06-13T11:21:34.649Z',NULL,162,8,33.56789820016516,0,21.640717976953056,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7893,'2018-04-21T12:22:45.818Z',NULL,152,4,48.89568729900663,0,59.62215660881093,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7894,'2019-07-28T00:37:12.998Z',NULL,31,6,105.65346467128523,0,128.75367225509925,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7895,'2019-09-12T03:22:17.659Z',NULL,186,6,98.9770008385166,0,126.79580419246324,1065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7896,'2018-04-19T04:22:25.458Z',NULL,67,3,41.24480890795779,2.58,53.53510825601914,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7897,'2018-08-03T11:41:29.433Z',NULL,17,5,79.93608046792765,5,69.17276296688388,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7898,'2017-04-13T11:28:15.161Z',NULL,194,2,33.587182645381546,2.1,24.92148266166256,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7899,'2020-01-05T07:26:57.317Z',NULL,132,1,127.88197029833711,7.99,139.21862878282178,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7900,'2019-04-26T11:39:08.083Z',1.9733682800449313,30,2,64.17448218067184,4.01,56.29810723267275,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7901,'2017-07-04T05:35:05.724Z',NULL,174,4,74.40953929454055,4.65,63.51666107079868,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7902,'2018-07-29T05:30:03.120Z',NULL,103,4,47.04215255778118,2.94,59.92421949996383,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7903,'2019-09-02T04:36:18.522Z',NULL,68,3,115.24343882309758,7.2,154.95399329963104,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7904,'2019-12-18T12:04:19.708Z',NULL,86,2,92.31436670850246,5.77,113.63909177338329,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7905,'2019-12-20T23:52:42.878Z',6.473368280044931,154,2,81.87529553312261,5.12,60.21487964138641,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7906,'2020-01-24T05:13:01.080Z',NULL,152,1,48.89568729900663,3.06,66.88124049175882,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7907,'2017-12-24T23:12:44.826Z',NULL,182,1,56.326269136507406,3.52,80.33768140040324,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7908,'2018-07-26T00:16:29.885Z',NULL,182,27,84.48940370476112,5.28,130.37396436437865,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7909,'2018-07-20T23:28:54.372Z',NULL,67,3,41.24480890795779,2.58,33.2618125859597,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7910,'2019-11-28T04:51:22.071Z',NULL,181,2,143.88940370476112,8.99,159.57420488141656,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7911,'2018-05-11T13:43:04.618Z',NULL,7,2,148.22900526552291,9.26,151.04223210189573,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7912,'2018-08-15T06:07:45.602Z',NULL,193,6,50.38077396807232,3.15,45.594865422555166,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7913,'2017-04-15T02:17:53.280Z',1.9733682800449313,118,2,38.418408731319154,2.4,53.91466255653092,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7914,'2019-08-07T07:40:36.217Z',6.473368280044931,71,4,82.80381898788684,5.18,126.10306074658769,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7915,'2019-12-08T01:05:40.868Z',NULL,168,2,118.93172693453273,7.43,110.42934979623966,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7916,'2019-02-02T04:24:11.750Z',NULL,144,1,61.1983004605443,3.82,49.80639712290802,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7917,'2020-03-03T00:18:48.197Z',NULL,20,1,37.32649625046575,2.33,52.71336187761424,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7918,'2018-09-07T16:17:56.742Z',NULL,54,5,62.09360840402396,3.88,56.87905293838237,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7919,'2019-08-28T07:03:16.390Z',NULL,102,8,47.04215255778118,2.94,54.21407920263301,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7920,'2018-09-18T00:09:16.494Z',NULL,128,4,75.08016314504417,4.69,64.46068838175351,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7921,'2018-05-29T20:21:23.039Z',NULL,136,3,105.20402317157343,6.58,126.46668806963953,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7922,'2017-10-07T20:14:39.293Z',NULL,49,5,87.61910559549149,5.48,78.61706355504543,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7923,'2017-11-26T00:15:15.438Z',1.9733682800449313,66,2,90.77417514071306,5.67,87.48638394636708,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7924,'2018-09-29T17:41:40.788Z',1.9733682800449313,197,4,70.14610686710009,4.38,53.40025625851545,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7925,'2016-09-25T12:50:14.926Z',7.555026894795966,168,4,79.28781795635516,4.96,109.87282734638015,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7926,'2018-08-13T15:17:18.601Z',7.555026894795966,174,5,111.61430894181083,6.98,90.9508144961631,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7927,'2018-07-14T06:47:22.038Z',NULL,61,3,23.537915510955656,1.47,32.485511611606135,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7928,'2018-01-19T08:00:07.606Z',NULL,134,1,42.49233549998661,2.66,30.155643716992458,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7929,'2018-11-21T16:46:02.038Z',NULL,26,3,68.12471180754113,4.26,89.07450225480804,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7930,'2019-04-12T15:25:19.674Z',NULL,173,4,122.3651993029456,7.65,146.09592103240968,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7931,'2020-02-22T02:50:37.593Z',NULL,128,2,75.08016314504417,4.69,103.83846799388252,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7932,'2018-01-08T07:29:34.789Z',7.555026894795966,145,2,61.1983004605443,3.82,70.36177687164285,1066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7933,'2020-01-13T23:19:31.564Z',NULL,36,2,130.93687730741433,7.86,180.40877395103712,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7934,'2018-09-23T02:36:16.858Z',NULL,182,5,84.48940370476112,5.07,91.17117423897334,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7935,'2018-08-13T04:14:53.603Z',NULL,41,7,63.50890855689462,3.81,92.56712429222232,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7936,'2018-05-11T08:27:20.969Z',NULL,110,5,55.526746186906664,3.33,46.57081647038586,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7937,'2019-02-09T16:25:00.332Z',NULL,136,2,105.20402317157343,6.31,136.39344228755908,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7938,'2018-02-19T13:26:16.913Z',NULL,71,1,82.80381898788684,4.97,73.63480551483241,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7939,'2018-10-16T16:37:49.520Z',NULL,74,5,51.12804227386549,3.07,36.20757080582766,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7940,'2019-04-22T13:23:47.384Z',NULL,121,3,40.44528328808107,2.43,52.36478093577091,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7941,'2019-09-17T18:25:26.489Z',NULL,118,3,57.627613096978735,3.46,69.88262262375503,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7942,'2018-05-12T04:19:07.159Z',NULL,91,4,65.09432810381134,3.91,67.58486861261817,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7943,'2018-05-15T20:42:02.956Z',NULL,39,4,114.58158180283459,6.87,107.22276616024418,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7944,'2019-12-07T01:08:33.532Z',NULL,49,1,131.42865839323724,7.89,127.4939571833936,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7945,'2018-12-10T08:36:44.534Z',3.0550268947959656,191,2,128.5841852057933,7.72,178.0897004877806,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7946,'2017-11-18T04:54:15.521Z',NULL,187,3,65.98466722567774,3.96,56.85157439460651,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7947,'2020-01-13T10:54:56.960Z',NULL,197,1,70.14610686710009,4.21,53.345192275084216,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7948,'2020-02-23T04:59:18.215Z',NULL,109,2,119.04991068193098,7.14,184.63538447640718,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7949,'2017-05-13T02:27:51.764Z',NULL,30,4,42.7829881204479,2.57,64.31231151862998,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7950,'2017-12-20T02:41:04.288Z',NULL,18,2,54.60204747398195,3.28,43.52090920125381,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7951,'2019-06-12T07:17:15.322Z',NULL,80,6,54.91325681036414,3.29,66.85638279716304,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7952,'2019-03-07T23:47:08.300Z',NULL,28,1,68.12471180754113,4.09,45.55367788936928,1067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7953,'2018-03-22T02:23:11.796Z',NULL,127,1,134.48016314504417,5.78,194.85863538935203,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7954,'2019-01-24T15:02:30.815Z',NULL,160,2,47.59120561297272,2.05,39.16692121214811,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7955,'2018-02-21T00:34:37.097Z',NULL,186,2,98.9770008385166,4.26,93.37011521346122,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7956,'2018-03-30T06:55:34.064Z',NULL,183,1,56.697412301919755,2.44,81.76903519198164,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7957,'2019-07-17T01:33:30.995Z',NULL,24,5,112.30643674729413,4.83,98.21734807110816,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7958,'2019-02-27T02:10:55.483Z',NULL,149,2,69.15415037577924,2.97,79.51821741280372,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7959,'2018-08-17T04:18:03.568Z',NULL,5,7,124.1176465275534,5.34,102.19362087381015,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7960,'2020-02-12T15:17:43.086Z',NULL,197,2,70.14610686710009,3.02,54.466367131303535,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7961,'2019-06-01T20:15:36.282Z',NULL,63,8,133.5202262591817,5.74,117.78422519170664,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7962,'2019-12-13T22:46:48.754Z',3.0507420792360054,53,2,44.27587240151534,1.9,43.583477908392,1068); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7963,'2019-05-25T11:56:50.730Z',NULL,100,3,67.83486485383094,4.75,71.77938149987045,1069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7964,'2019-11-09T19:28:14.911Z',NULL,174,3,111.61430894181083,7.81,105.53753264884273,1069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7965,'2019-01-07T17:20:42.689Z',NULL,140,2,66.80312547576881,4.68,59.65757921674965,1069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7966,'2019-07-21T22:12:23.928Z',NULL,49,5,131.42865839323724,9.86,125.3347379732458,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7967,'2018-10-22T05:23:20.318Z',NULL,74,5,51.12804227386549,3.83,48.87013557176295,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7968,'2017-10-15T22:45:41.092Z',7.550742079236006,155,5,29.183828734551838,2.19,43.56412273541386,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7969,'2020-02-15T03:18:35.800Z',NULL,114,2,77.91196471862148,5.84,89.47090757416628,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7970,'2017-11-03T17:42:36.922Z',NULL,142,3,46.8990203814063,3.52,40.05329319140247,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7971,'2018-08-25T16:30:21.144Z',3.0507420792360054,193,8,50.38077396807232,3.78,79.08742581558542,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7972,'2018-08-13T08:33:33.546Z',NULL,54,7,62.09360840402396,4.66,61.81374708468766,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7973,'2018-02-01T00:57:40.706Z',NULL,59,1,89.20214751859149,6.69,89.75110682028908,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7974,'2018-05-30T19:29:09.637Z',NULL,21,3,60.57501609456816,4.54,46.61206485548912,1070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7975,'2018-10-16T15:34:29.690Z',7.074118399884091,20,5,37.32649625046575,1.49,53.32683795530533,1071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7976,'2020-03-24T23:15:49.985Z',NULL,6,1,97.43621265344382,3.9,145.48905753024926,1071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7977,'2020-02-15T09:57:42.236Z',NULL,141,2,126.20312547576883,6.31,171.89679731495605,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7978,'2018-12-15T22:43:10.828Z',NULL,172,2,122.3651993029456,6.12,123.60694086169015,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7979,'2020-03-09T13:14:34.034Z',NULL,141,1,126.20312547576883,6.31,166.16223072800355,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7980,'2018-05-28T06:05:18.807Z',NULL,113,3,110.47725376186015,5.52,106.7731907403201,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7981,'2018-08-19T01:08:21.820Z',NULL,6,4,97.43621265344382,4.87,101.63203419950635,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7982,'2019-08-20T03:28:53.327Z',NULL,13,6,112.62925391105566,5.63,74.05601065413724,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7983,'2018-06-13T18:05:07.245Z',NULL,43,6,76.35255205175756,3.82,66.97540964932766,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7984,'2017-08-06T14:24:41.721Z',2.57411839988409,79,4,27.74461152277315,1.39,42.53933745717437,1072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7985,'2020-02-23T19:51:13.308Z',NULL,171,1,105.07665741496471,7.22,149.65206615661143,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7986,'2019-07-24T12:40:53.748Z',NULL,19,4,64.00675097561322,4.4,50.55827509695048,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7987,'2018-06-14T09:51:55.142Z',NULL,5,7,124.1176465275534,8.53,121.09409003525273,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7988,'2019-07-04T09:52:54.609Z',NULL,64,4,143.4221774571866,9.86,164.67371820097804,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7989,'2018-11-23T23:44:43.875Z',NULL,66,3,136.16126271106958,9.36,152.7039876224306,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7990,'2019-05-31T17:00:42.201Z',NULL,159,5,35.53017445377361,2.44,35.405164670720545,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7991,'2019-11-19T06:18:02.922Z',NULL,195,3,109.78077396807234,7.55,152.58910849013628,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7992,'2017-02-08T13:43:12.680Z',NULL,95,2,33.212427711035886,2.28,28.336025766293186,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7993,'2017-05-13T07:12:26.226Z',NULL,165,5,25.536330427467956,1.76,32.57941887067024,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7994,'2017-04-08T07:44:33.003Z',NULL,180,3,45.549391048892794,3.13,36.62806138984123,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7995,'2017-02-24T03:44:43.982Z',NULL,129,2,98.7781981443958,6.79,92.36481103741987,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7996,'2018-05-08T08:04:04.759Z',NULL,24,6,112.30643674729413,7.72,144.08700255498135,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7997,'2020-04-16T12:00:21.418Z',3.618805222345128,162,4,33.56789820016516,2.31,32.16263655173555,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7998,'2017-10-11T00:07:33.049Z',NULL,55,6,63.84752383956291,4.39,82.96708911424224,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (7999,'2019-07-05T12:09:24.936Z',NULL,10,4,47.6793282102869,3.28,45.79208558935164,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8000,'2017-03-07T20:53:56.285Z',3.618805222345128,41,1,42.33927237126308,2.91,32.425343221330934,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8001,'2017-08-20T12:51:27.445Z',NULL,55,7,63.84752383956291,4.39,49.007043686050274,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8002,'2018-05-04T16:16:41.402Z',NULL,71,4,82.80381898788684,5.69,60.81550342118349,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8003,'2017-02-11T03:34:17.011Z',NULL,25,2,45.7484264478831,3.15,44.35339694243654,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8004,'2020-04-06T02:57:07.742Z',NULL,47,3,84.0766209826718,5.78,117.06193274968605,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8005,'2017-09-11T15:51:34.940Z',NULL,75,6,83.87517582301558,5.77,66.19478891645271,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8006,'2018-01-06T04:43:13.962Z',NULL,68,3,115.24343882309758,7.92,138.72797913319857,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8007,'2016-10-17T15:34:53.887Z',NULL,135,6,30.536015447715613,2.1,32.487930814289975,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8008,'2017-09-03T11:05:51.843Z',NULL,36,4,87.29125153827623,6,116.18685489655758,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8009,'2018-08-20T12:56:01.996Z',NULL,132,7,127.88197029833711,8.79,86.06679357093766,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8010,'2018-01-18T16:57:09.171Z',NULL,128,2,75.08016314504417,5.16,76.34020861132011,1073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8011,'2018-12-10T23:43:42.157Z',NULL,54,2,62.09360840402396,4.35,65.89763615455666,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8012,'2019-04-11T07:02:49.593Z',NULL,123,4,110.93145648834248,7.77,114.337588447924,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8013,'2018-07-26T20:05:59.986Z',NULL,127,5,134.48016314504417,9.41,169.21265575235574,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8014,'2017-01-17T13:48:00.310Z',NULL,119,1,28.95876219768256,2.03,28.789632612599963,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8015,'2017-07-06T13:23:37.877Z',NULL,79,4,27.74461152277315,1.94,28.4089995834173,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8016,'2019-06-06T22:53:17.762Z',NULL,47,5,84.0766209826718,5.89,64.87931917692067,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8017,'2019-10-23T11:55:21.770Z',NULL,101,4,139.82488066180403,9.79,124.80222875742764,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8018,'2017-05-07T19:19:53.874Z',NULL,2,4,70.07989613071763,4.91,90.53735445196352,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8019,'2019-03-27T09:48:44.205Z',NULL,186,1,98.9770008385166,6.93,81.24126882858351,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8020,'2017-02-20T18:36:18.775Z',NULL,113,2,73.65150250790677,5.16,57.71186091900384,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8021,'2017-07-04T02:20:44.751Z',3.299954833216653,157,5,93.26282349158673,6.53,93.80967416924659,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8022,'2019-12-08T06:29:18.664Z',NULL,76,2,63.82421061366486,4.47,53.37914674605657,1074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8023,'2018-11-16T03:50:22.940Z',NULL,54,3,62.09360840402396,2.48,48.108668247232494,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8024,'2017-07-18T04:56:02.063Z',NULL,143,5,40.7988669736962,1.63,58.10679657521083,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8025,'2017-01-05T23:51:00.169Z',NULL,130,2,50.01715912876758,2,68.02175427223256,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8026,'2019-11-07T18:24:14.522Z',NULL,55,3,95.77128575934437,3.83,82.85504274267575,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8027,'2017-03-31T12:46:58.155Z',NULL,53,1,29.517248267676894,1.18,24.626780842297492,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8028,'2019-09-15T03:49:58.678Z',NULL,73,6,71.6287722595695,2.87,93.90205458843543,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8029,'2019-12-17T08:38:23.668Z',NULL,73,2,71.6287722595695,2.87,94.3043322394179,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8030,'2019-07-22T00:09:49.003Z',NULL,63,5,133.5202262591817,5.34,188.7300136570842,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8031,'2017-05-21T22:36:33.574Z',NULL,141,4,84.13541698384589,3.37,96.51406848486664,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8032,'2019-11-12T19:25:16.880Z',NULL,7,3,148.22900526552291,5.93,214.6676532880623,1075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8033,'2017-02-17T15:38:34.649Z',NULL,59,1,59.46809834572766,3.87,57.7940554621476,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8034,'2019-09-02T22:21:05.803Z',NULL,117,3,55.024851254077866,3.58,36.6680329561399,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8035,'2017-04-30T19:06:51.301Z',NULL,37,2,53.40516136013846,3.47,37.92683603930619,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8036,'2019-10-12T16:16:01.206Z',NULL,70,4,57.493003808959784,3.74,75.32381213814949,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8037,'2018-03-15T16:12:32.090Z',NULL,3,1,53.08311732230858,3.45,70.26226327522853,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8038,'2018-04-03T22:53:36.781Z',NULL,152,3,48.89568729900663,3.18,50.25692731040506,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8039,'2017-10-14T22:39:20.555Z',7.799954833216653,79,4,27.74461152277315,1.8,19.187351766299805,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8040,'2019-08-25T21:49:00.240Z',NULL,110,5,55.526746186906664,3.61,71.78290456297051,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8041,'2018-10-10T18:37:39.155Z',NULL,184,4,116.09741230191975,7.55,98.79984410815717,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8042,'2017-03-07T19:18:58.926Z',NULL,164,1,61.978598800110106,4.03,67.0372047323545,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8043,'2019-11-29T18:26:03.495Z',7.799954833216653,127,3,134.48016314504417,8.74,132.87907711462663,1076); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8044,'2019-02-01T11:31:44.951Z',NULL,85,1,54.90104734428525,3.29,79.74235644569929,1077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8045,'2017-01-10T16:21:00.566Z',NULL,164,1,61.978598800110106,3.72,75.63576799546675,1077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8046,'2019-03-30T16:09:57.910Z',NULL,133,1,68.4819702983371,4.11,53.71776434977211,1077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8047,'2017-10-02T23:45:19.903Z',NULL,163,4,22.378598800110105,0.9,32.91426530054462,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8048,'2019-01-07T22:51:50.849Z',NULL,186,2,98.9770008385166,3.96,139.83578943221272,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8049,'2019-12-16T19:27:38.972Z',NULL,125,2,80.39699207990944,3.22,109.0047886064102,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8050,'2018-09-30T01:53:28.900Z',NULL,15,4,37.648145389078365,1.51,29.408186418754493,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8051,'2020-01-04T05:54:45.698Z',NULL,10,1,47.6793282102869,1.91,51.18961945436416,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8052,'2017-02-25T14:32:48.223Z',NULL,80,1,36.60883787357609,1.46,24.871999725140302,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8053,'2018-01-31T16:28:31.200Z',NULL,60,2,29.80214751859149,1.19,34.16385827798924,1078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8054,'2017-08-13T21:47:27.959Z',NULL,114,7,51.94130981241432,2.08,37.61215610994483,1080); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8055,'2018-11-19T05:36:05.581Z',NULL,160,2,47.59120561297272,1.9,57.88738845705559,1080); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8056,'2018-05-17T02:04:56.414Z',NULL,196,2,70.14610686710009,2.81,91.18194725328546,1080); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8057,'2019-11-01T02:00:38.623Z',NULL,190,2,128.5841852057933,5.14,150.890565103027,1080); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8058,'2019-03-25T01:09:27.718Z',NULL,195,1,109.78077396807234,4.39,137.1892793934865,1080); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8059,'2019-01-28T20:15:37.494Z',NULL,55,2,95.77128575934437,3.83,64.61249299573862,1080); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8060,'2019-03-20T13:24:38.782Z',NULL,130,1,75.02573869315137,3,73.75226515015113,1081); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8061,'2019-11-29T14:25:48.194Z',NULL,159,2,35.53017445377361,2.13,49.60104624114565,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8062,'2018-01-06T10:55:10.297Z',NULL,24,2,112.30643674729413,6.74,140.59858476778678,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8063,'2019-01-24T01:35:26.416Z',NULL,155,1,43.77574310182776,2.63,37.65290098844878,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8064,'2018-02-26T03:21:24.287Z',NULL,99,1,67.83486485383094,4.07,54.75418333473299,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8065,'2018-08-18T08:59:23.630Z',NULL,8,4,98.83823503993958,5.93,104.77994819577178,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8066,'2018-02-01T18:29:14.359Z',NULL,194,1,50.38077396807232,3.02,52.4885531593792,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8067,'2018-11-13T13:04:08.363Z',NULL,106,2,52.723521442619514,3.16,63.390490886851524,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8068,'2020-01-22T00:09:12.837Z',NULL,155,2,43.77574310182776,2.63,68.13568800479737,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8069,'2019-03-04T00:16:50.068Z',NULL,169,1,59.53172693453274,3.57,74.56959376117055,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8070,'2017-12-25T00:48:24.588Z',6.693904333927918,172,2,81.57679953529707,4.89,53.21915172522772,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8071,'2019-12-22T21:21:33.610Z',NULL,94,2,109.21864156655383,6.55,146.35693748676724,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8072,'2016-06-23T22:01:24.421Z',NULL,194,5,33.587182645381546,2.02,50.786735145024835,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8073,'2017-09-04T12:38:23.247Z',NULL,76,4,42.54947374244324,2.55,59.845092021005485,1083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8074,'2019-06-25T22:03:28.514Z',6.693904333927918,13,4,112.62925391105566,4.51,119.22961569274054,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8075,'2020-01-27T02:01:10.078Z',6.693904333927918,16,2,66.11029954877317,2.64,96.51148474293203,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8076,'2017-08-15T18:06:44.506Z',NULL,57,8,81.6149289055996,3.26,55.554093551913574,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8077,'2019-10-16T13:56:49.791Z',NULL,12,5,116.01427581618326,4.64,156.81533967166172,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8078,'2018-11-27T14:13:32.771Z',NULL,97,2,112.41825444654248,4.5,136.27023530633642,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8079,'2017-08-06T13:50:04.851Z',NULL,199,4,76.95334253952366,3.08,116.2792094569101,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8080,'2019-06-02T13:25:23.821Z',NULL,127,4,134.48016314504417,5.38,133.17105327142468,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8081,'2017-07-12T06:19:15.494Z',NULL,139,3,51.18512212784679,2.05,39.00796559200122,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8082,'2017-08-16T09:59:26.188Z',NULL,147,4,44.4315141414441,1.78,41.01591502205533,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8083,'2018-10-13T07:08:41.025Z',NULL,156,3,30.615804149046195,1.22,23.489144753068267,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8084,'2019-02-17T08:31:21.741Z',NULL,75,1,125.81276373452337,5.03,120.66804836617273,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8085,'2016-10-28T07:32:51.363Z',NULL,71,6,55.202545991924566,2.21,54.05969578922708,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8086,'2017-04-10T17:19:38.504Z',NULL,160,2,31.727470408648482,1.27,22.868110573472116,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8087,'2020-02-07T05:52:51.319Z',NULL,42,1,38.00410713690931,1.52,55.741364282845346,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8088,'2016-12-21T17:11:47.084Z',NULL,39,2,76.38772120188973,3.06,57.430533146634374,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8089,'2016-12-25T02:46:46.455Z',NULL,29,2,82.3829881204479,3.3,76.67213287932532,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8090,'2016-10-31T18:14:52.231Z',NULL,10,6,31.78621880685793,1.27,33.74356287051413,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8091,'2018-06-19T03:16:55.347Z',NULL,94,6,109.21864156655383,4.37,77.95682370069059,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8092,'2017-08-04T01:27:04.120Z',NULL,173,51,81.57679953529707,3.26,73.91712970278596,1084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8093,'2019-04-02T17:24:52.112Z',NULL,194,1,50.38077396807232,2.17,37.06474775173926,1086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8094,'2018-07-16T03:34:20.889Z',NULL,104,4,106.44215255778118,4.58,127.34606365888564,1086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8095,'2020-01-29T22:01:02.824Z',NULL,173,2,122.3651993029456,5.26,133.44505813379897,1086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8096,'2017-03-07T06:55:31.419Z',5.848767410782681,5,1,82.7450976850356,3.56,125.8660330809306,1086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8097,'2018-08-16T15:36:17.546Z',NULL,14,5,37.648145389078365,1.62,36.46353338464517,1086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8098,'2020-03-08T22:17:58.681Z',NULL,34,1,74.30391386913199,3.2,110.97507047043614,1086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8099,'2018-08-09T12:34:17.000Z',NULL,200,5,73.20395711799151,5.03,75.41614355459757,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8100,'2020-02-11T21:20:12.771Z',NULL,196,1,70.14610686710009,4.82,69.98725374612725,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8101,'2019-09-09T04:00:54.780Z',NULL,98,2,112.41825444654248,7.73,75.65461532239966,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8102,'2020-03-12T18:53:40.606Z',NULL,22,0,32.136779940663494,2.21,33.09867818187701,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8103,'2019-03-18T04:07:58.266Z',NULL,33,1,47.7448636959614,3.28,39.78946466036566,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8104,'2017-12-04T01:40:57.358Z',NULL,147,2,44.4315141414441,3.05,52.29608688825626,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8105,'2018-10-28T20:10:09.181Z',NULL,182,6,84.48940370476112,5.81,84.12814743168605,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8106,'2019-06-16T22:05:34.562Z',NULL,7,7,148.22900526552291,10.19,130.13266036001258,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8107,'2019-11-27T11:44:17.228Z',5.652567032877066,96,3,104.82144858590365,7.21,93.17308547652878,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8108,'2018-10-05T17:17:29.364Z',NULL,104,7,106.44215255778118,7.32,159.1962416493961,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8109,'2019-08-08T17:16:41.468Z',NULL,87,8,117.25536340498041,8.06,179.45845140868602,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8110,'2019-07-14T17:31:50.934Z',NULL,41,5,63.50890855689462,4.37,84.62287029872238,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8111,'2017-09-30T14:15:55.582Z',NULL,147,5,44.4315141414441,3.05,48.087877365117336,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8112,'2017-04-25T02:54:41.685Z',NULL,33,3,31.829909130640935,2.19,23.055978508632975,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8113,'2018-03-29T22:54:38.917Z',NULL,20,1,37.32649625046575,2.57,37.702893446155905,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8114,'2019-08-06T20:10:59.332Z',NULL,179,7,68.32408657333919,4.7,70.46499482092635,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8115,'2018-07-30T09:12:50.123Z',NULL,89,5,63.719612755399886,4.38,90.44193074092331,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8116,'2019-08-07T20:45:03.763Z',NULL,59,8,89.20214751859149,6.13,114.91569130786011,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8117,'2018-02-21T00:07:53.993Z',NULL,38,2,66.06937283839378,4.54,87.7603829674676,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8118,'2017-12-29T15:47:00.499Z',NULL,12,2,77.34285054412217,5.32,118.64661933330449,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8119,'2019-06-03T16:07:06.228Z',NULL,73,7,71.6287722595695,4.92,79.48230234059552,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8120,'2019-09-18T16:43:23.676Z',NULL,47,5,84.0766209826718,5.78,69.15391055694103,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8121,'2016-08-27T19:53:26.193Z',NULL,13,6,75.0861692740371,5.16,59.345205466445684,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8122,'2019-07-08T12:50:56.280Z',NULL,111,3,55.526746186906664,3.82,46.91690095014738,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8123,'2019-01-24T18:53:00.524Z',NULL,197,2,70.14610686710009,4.82,97.37693498919923,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8124,'2018-08-23T08:04:11.301Z',6.669747470011844,25,8,68.62263967182464,4.72,70.23613311392022,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8125,'2018-09-30T19:05:24.296Z',NULL,68,4,115.24343882309758,7.92,141.9922159389026,1087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8126,'2018-03-23T10:29:24.014Z',NULL,5,1,124.1176465275534,5.24,116.68754049600851,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8127,'2018-12-04T01:43:58.058Z',NULL,184,2,116.09741230191975,4.91,102.32365767549977,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8128,'2020-03-07T20:28:22.760Z',2.1697474700118438,93,1,49.81864156655383,2.1,40.42139152328185,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8129,'2019-01-02T15:39:44.547Z',NULL,171,2,105.07665741496471,4.44,98.33672251375958,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8130,'2017-11-15T20:14:05.798Z',6.669747470011844,198,3,46.76407124473339,1.98,50.71613039277714,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8131,'2018-01-01T08:21:00.761Z',NULL,106,2,52.723521442619514,2.23,62.26392431343239,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8132,'2018-01-29T06:52:18.598Z',NULL,103,2,47.04215255778118,1.99,44.24070563203491,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8133,'2018-08-08T19:15:45.652Z',NULL,8,6,98.83823503993958,4.18,116.69976525359854,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8134,'2019-11-14T01:48:09.778Z',NULL,170,2,105.07665741496471,4.44,79.54819343930647,1089); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8135,'2019-08-04T04:06:38.218Z',NULL,190,4,128.5841852057933,6.43,110.24492759019762,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8136,'2019-08-19T13:10:28.478Z',NULL,68,4,115.24343882309758,5.76,160.39972349927163,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8137,'2019-05-04T06:52:44.101Z',NULL,4,2,110.98767151282252,5.55,78.94393094160499,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8138,'2017-02-03T02:26:52.709Z',NULL,13,1,75.0861692740371,3.75,69.92325652369689,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8139,'2018-11-26T19:06:11.938Z',NULL,115,3,77.91196471862148,3.9,55.511857196395745,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8140,'2018-05-22T04:02:07.787Z',NULL,19,4,64.00675097561322,3.2,79.94153034402323,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8141,'2018-06-03T02:53:22.247Z',NULL,46,5,118.0495173798411,5.9,115.8474781757122,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8142,'2018-09-07T15:05:14.146Z',NULL,4,4,110.98767151282252,5.55,108.32345438702546,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8143,'2018-07-14T10:59:22.332Z',NULL,165,3,38.30449564120193,1.92,58.37873273800205,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8144,'2017-07-07T15:02:18.465Z',NULL,54,3,41.395738936015974,2.07,35.08297423476173,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8145,'2019-04-26T04:14:40.828Z',NULL,57,2,122.4223933583994,6.12,172.77903900542918,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8146,'2018-05-12T11:55:20.519Z',NULL,179,3,68.32408657333919,3.42,67.53409215695852,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8147,'2017-10-03T00:18:15.916Z',NULL,18,5,54.60204747398195,2.73,78.63142142282521,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8148,'2016-10-11T08:12:06.873Z',NULL,156,6,20.41053609936413,1.02,16.228438609011825,1091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8149,'2019-03-09T01:23:35.456Z',2.3716257148669966,103,1,47.04215255778118,0,43.9847276045493,1092); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8150,'2017-07-23T17:28:25.309Z',NULL,40,4,66.44160029487797,0,53.0767166081427,1092); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8151,'2019-09-11T16:38:45.008Z',6.871625714866997,72,3,142.20381898788685,8.89,172.72148365447148,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8152,'2018-10-04T20:29:45.171Z',NULL,186,5,98.9770008385166,6.19,77.1766436555949,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8153,'2020-02-01T09:02:06.255Z',NULL,45,2,118.0495173798411,7.38,170.46676246786802,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8154,'2019-02-11T15:31:06.657Z',NULL,70,1,57.493003808959784,3.59,82.430386803218,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8155,'2017-04-08T19:11:36.983Z',NULL,73,2,47.752514839713,2.98,59.4649728469793,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8156,'2018-05-18T05:50:09.447Z',NULL,122,2,99.84528328808108,6.24,97.11089063675203,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8157,'2018-01-22T02:42:14.656Z',NULL,136,1,105.20402317157343,6.58,74.80151642079821,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8158,'2018-03-02T22:57:15.437Z',NULL,2,1,105.11984419607644,6.57,71.59404175196114,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8159,'2018-09-17T23:15:09.965Z',NULL,103,4,47.04215255778118,2.94,33.11394159944024,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8160,'2019-03-05T01:55:20.012Z',NULL,138,1,113.95078476718615,7.12,107.54893357434842,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8161,'2018-01-02T12:04:44.709Z',6.629083228001225,103,2,47.04215255778118,2.94,61.171586619327506,1093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8162,'2019-08-23T07:59:49.303Z',NULL,155,6,43.77574310182776,2.63,55.55119291000661,1095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8163,'2019-08-20T02:12:17.654Z',NULL,71,6,82.80381898788684,4.97,54.18481267133537,1095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8164,'2019-08-26T12:55:33.591Z',NULL,3,8,53.08311732230858,3.18,46.64442402875817,1095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8165,'2017-11-15T12:24:15.740Z',NULL,138,3,75.96718984479077,4.56,67.31790848558545,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8166,'2017-09-17T18:41:29.905Z',NULL,86,5,61.54291113900164,3.69,58.53260024277408,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8167,'2018-07-09T02:33:55.065Z',NULL,99,5,67.83486485383094,4.07,47.58619341717141,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8168,'2018-07-23T00:23:00.630Z',NULL,95,5,49.81864156655383,2.99,58.348207230517346,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8169,'2018-09-15T01:18:26.873Z',NULL,4,4,110.98767151282252,6.66,155.42939169178769,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8170,'2017-12-06T14:43:48.529Z',NULL,98,2,74.94550296436165,4.5,108.00641112675379,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8171,'2017-10-19T16:51:41.844Z',NULL,142,6,46.8990203814063,2.81,60.006857037931,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8172,'2017-03-30T15:37:57.554Z',6.629083228001225,68,1,76.82895921539838,4.61,78.57030392680528,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8173,'2019-05-27T02:24:11.306Z',NULL,20,5,37.32649625046575,2.24,34.76990446982398,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8174,'2018-06-02T00:15:20.945Z',NULL,200,7,73.20395711799151,4.39,65.09641559468126,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8175,'2018-02-03T19:44:43.751Z',NULL,88,2,105.41292031622555,6.32,142.79723397772068,1096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8176,'2017-11-17T05:06:27.365Z',NULL,152,3,32.59712486600442,2.28,23.653492448506785,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8177,'2017-12-11T01:11:06.433Z',NULL,132,2,85.25464686555807,5.97,132.06485084903684,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8178,'2018-02-18T13:52:21.613Z',NULL,194,2,50.38077396807232,3.53,51.87158856526859,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8179,'2017-06-03T07:19:25.588Z',NULL,185,5,26.384667225677738,1.85,26.891154418486334,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8180,'2019-04-22T15:57:02.656Z',NULL,157,3,139.8942352373801,9.79,188.65323390446432,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8181,'2019-09-18T06:37:29.428Z',NULL,136,4,105.20402317157343,7.36,109.41671595381519,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8182,'2017-02-16T20:02:47.461Z',4.570389342133382,18,2,54.60204747398195,3.82,60.782773058267615,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8183,'2019-06-06T21:24:13.050Z',NULL,30,9,64.17448218067184,4.49,67.97046688131407,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8184,'2019-01-31T10:47:52.500Z',NULL,54,3,62.09360840402396,4.35,92.0251599027669,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8185,'2018-08-20T18:28:42.866Z',NULL,87,8,117.25536340498041,8.21,179.283153792278,1097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8186,'2019-06-19T19:04:45.791Z',NULL,81,7,43.9329842322118,2.75,61.51082638792401,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8187,'2019-01-25T08:10:01.756Z',NULL,23,3,116.86672609493307,7.3,111.05055558261886,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8188,'2019-02-23T21:31:37.596Z',4.570389342133382,52,2,103.67587240151535,6.48,106.55839328025354,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8189,'2019-06-04T23:51:39.190Z',NULL,116,5,114.42485125407785,7.15,114.97649400642032,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8190,'2017-09-24T09:27:22.683Z',NULL,2,4,70.07989613071763,4.38,73.27657302266279,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8191,'2017-10-29T11:55:34.785Z',NULL,136,48,70.13601544771562,4.38,60.486563515622315,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8192,'2017-10-16T00:30:22.794Z',NULL,169,5,39.68781795635516,2.48,48.85369129411872,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8193,'2018-02-13T16:40:15.104Z',NULL,110,1,55.526746186906664,3.47,39.48610975264419,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8194,'2017-06-28T19:32:14.343Z',NULL,26,7,45.41647453836076,2.84,46.44006895134445,1099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8195,'2018-09-28T06:52:04.666Z',NULL,45,5,118.0495173798411,5.61,113.56482222640263,1100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8196,'2018-06-13T06:07:14.126Z',NULL,126,7,125.24398120308456,5.95,167.15607152925963,1100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8197,'2018-12-04T11:56:22.231Z',NULL,112,3,41.329386510090345,1.96,46.41114851975958,1100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8198,'2017-04-28T20:42:16.458Z',NULL,186,3,65.98466722567774,3.13,53.81285863595783,1100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8199,'2018-11-07T08:24:46.022Z',NULL,113,3,110.47725376186015,5.25,109.45981960965801,1100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8200,'2018-09-05T05:11:58.839Z',NULL,90,7,123.1196127553999,5.85,181.64303883056704,1100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8201,'2019-01-27T10:52:19.425Z',NULL,64,3,143.4221774571866,7.17,122.59740623554377,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8202,'2019-06-12T18:03:06.814Z',NULL,60,7,29.80214751859149,1.49,42.33996684673441,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8203,'2019-07-10T22:37:13.946Z',NULL,104,5,106.44215255778118,5.32,92.893616113253,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8204,'2019-11-25T21:38:33.690Z',NULL,12,32,116.01427581618326,5.8,82.12121476956217,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8205,'2020-02-25T09:46:24.838Z',NULL,179,14,68.32408657333919,3.42,82.56110349825012,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8206,'2018-11-20T05:35:56.380Z',NULL,193,2,50.38077396807232,2.52,73.573269116518,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8207,'2019-04-24T15:54:30.558Z',NULL,198,2,70.14610686710009,3.51,55.477817367349,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8208,'2018-12-19T20:01:11.044Z',NULL,198,2,70.14610686710009,3.51,46.53654534481449,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8209,'2019-05-23T07:18:31.672Z',NULL,22,5,32.136779940663494,1.61,36.27576356507882,1101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8210,'2018-10-28T16:42:16.207Z',NULL,169,8,59.53172693453274,2.68,71.30364721622914,1102); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8211,'2019-05-19T09:32:00.371Z',NULL,65,5,68.22769726470014,3.07,80.87882816997737,1102); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8212,'2019-05-17T23:32:49.414Z',NULL,180,3,68.32408657333919,4.78,87.56913223258051,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8213,'2017-03-16T23:00:40.902Z',NULL,192,0,46.122790137195516,3.23,31.913477779635663,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8214,'2018-07-30T05:40:30.171Z',NULL,103,2,47.04215255778118,3.29,73.979508847494,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8215,'2018-09-25T09:56:46.898Z',0.49606813100477876,174,2,111.61430894181083,7.81,113.03674946109042,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8216,'2018-12-11T01:39:53.810Z',NULL,163,1,33.56789820016516,2.35,45.468384467565116,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8217,'2020-01-15T20:24:56.427Z',NULL,122,1,99.84528328808108,6.99,139.733752777927,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8218,'2017-06-13T02:32:58.719Z',NULL,164,2,61.978598800110106,4.34,55.1483295124931,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8219,'2017-02-17T22:14:35.567Z',0.49606813100477876,71,1,55.202545991924566,3.86,43.118946278101234,1104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8220,'2019-03-19T11:08:58.000Z',NULL,88,1,105.41292031622555,0,110.79762471950782,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8221,'2018-03-17T09:29:34.148Z',NULL,195,0,109.78077396807234,0,123.41792801409952,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8222,'2018-11-27T09:48:53.922Z',NULL,17,2,79.93608046792765,0,105.13738289146623,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8223,'2020-03-15T07:52:32.504Z',NULL,150,1,128.55415037577922,0,126.5861416786724,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8224,'2017-07-15T14:52:35.241Z',NULL,134,2,28.328223666657742,0,29.89460611038855,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8225,'2019-07-12T20:29:03.232Z',NULL,127,2,134.48016314504417,0,146.9759564255889,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8226,'2019-08-31T01:13:30.263Z',NULL,149,3,69.15415037577924,0,89.82431085159858,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8227,'2018-11-05T22:27:43.941Z',0.49606813100477876,72,1,142.20381898788685,0,180.58459855495127,1105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8228,'2019-03-18T16:16:35.309Z',NULL,5,0,124.1176465275534,8.53,129.9233274574255,1106); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8229,'2018-11-12T00:14:32.993Z',NULL,38,3,66.06937283839378,4.54,73.88495655501609,1106); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8230,'2018-03-27T21:26:12.196Z',NULL,84,1,81.87627832636537,5.63,101.15981589417218,1106); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8231,'2019-04-13T14:16:53.990Z',NULL,173,4,122.3651993029456,8.41,193.88035686967197,1106); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8232,'2018-03-09T20:49:45.454Z',NULL,72,1,142.20381898788685,8.53,113.29107063389594,1107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8233,'2018-05-25T17:06:27.731Z',NULL,187,6,98.9770008385166,5.94,77.71205380003053,1107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8234,'2019-03-29T05:35:26.766Z',NULL,156,1,30.615804149046195,1.91,34.81646094799514,1108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8235,'2018-10-22T07:04:57.917Z',NULL,196,8,70.14610686710009,4.38,70.2053194215367,1108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8236,'2019-05-05T00:17:03.760Z',NULL,74,5,51.12804227386549,3.07,64.5471007235449,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8237,'2018-02-09T06:53:07.854Z',NULL,130,2,75.02573869315137,4.5,99.06075511165142,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8238,'2020-01-15T20:30:11.035Z',NULL,118,3,57.627613096978735,3.46,74.78416138291605,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8239,'2020-03-31T10:39:44.573Z',NULL,59,1,89.20214751859149,5.35,63.147893747131,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8240,'2018-05-03T20:19:17.893Z',NULL,16,5,66.11029954877317,3.97,49.15637733334349,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8241,'2018-10-12T16:25:54.117Z',NULL,172,5,122.3651993029456,7.34,98.4056899470343,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8242,'2019-12-21T22:08:08.176Z',NULL,65,2,68.22769726470014,4.09,51.10532102328906,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8243,'2016-11-24T15:51:50.288Z',NULL,13,36,75.0861692740371,4.51,79.1208353492979,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8244,'2017-03-09T21:47:56.012Z',NULL,126,1,83.49598746872304,5.01,75.97052968105913,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8245,'2018-02-03T08:53:09.637Z',NULL,14,2,37.648145389078365,2.26,42.57642912218485,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8246,'2019-12-12T21:56:02.189Z',5.215835374370548,166,29,38.30449564120193,2.3,34.00552999777385,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8247,'2017-11-03T07:06:18.877Z',NULL,180,4,45.549391048892794,2.73,62.976349510134234,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8248,'2019-02-14T07:59:10.629Z',NULL,169,2,59.53172693453274,3.57,68.60686636403967,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8249,'2018-05-27T12:11:57.051Z',NULL,49,5,131.42865839323724,7.89,124.60193045804216,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8250,'2019-10-13T04:48:16.835Z',NULL,188,7,33.87738254731509,2.03,42.74567609685091,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8251,'2019-04-07T04:09:25.587Z',NULL,92,3,124.89242686579996,7.49,158.58037118279867,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8252,'2020-02-11T07:57:08.569Z',NULL,7,2,148.22900526552291,8.89,173.2972133947807,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8253,'2020-01-20T00:56:22.342Z',NULL,12,2,116.01427581618326,6.96,161.61108324421568,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8254,'2019-02-27T16:26:25.754Z',NULL,157,2,139.8942352373801,8.39,139.53713453493415,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8255,'2019-08-23T11:45:40.031Z',NULL,182,8,84.48940370476112,5.07,76.07442405750736,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8256,'2017-11-02T20:47:45.999Z',NULL,165,4,25.536330427467956,1.53,18.375103451640616,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8257,'2017-10-26T20:33:10.714Z',NULL,50,7,35.76013077879841,2.15,37.34829666473154,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8258,'2019-06-17T07:49:09.633Z',NULL,30,8,64.17448218067184,3.85,55.64640272737504,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8259,'2019-06-26T09:24:18.710Z',NULL,156,8,30.615804149046195,1.84,32.28092773766112,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8260,'2018-03-31T18:27:43.219Z',3.430285139614894,6,1,97.43621265344382,5.85,117.77144180298144,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8261,'2018-03-09T23:03:33.481Z',NULL,32,1,107.1448636959614,6.43,161.36301691883753,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8262,'2019-03-24T20:55:32.409Z',NULL,150,1,128.55415037577922,7.71,98.57334121344735,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8263,'2019-08-30T11:26:27.869Z',NULL,137,7,67.77247956807186,4.07,74.77401931443471,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8264,'2018-07-31T15:03:02.169Z',NULL,59,5,89.20214751859149,5.35,138.7074807835332,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8265,'2017-06-25T08:30:34.087Z',NULL,21,6,40.38334406304544,2.42,34.01738549636961,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8266,'2020-04-04T15:58:34.319Z',NULL,98,2,112.41825444654248,6.75,79.7421615756675,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8267,'2019-05-31T02:42:56.410Z',NULL,154,3,81.87529553312261,4.91,119.43171826599745,1109); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8268,'2017-07-02T23:14:04.643Z',NULL,95,5,33.212427711035886,1.4,41.73414856733991,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8269,'2019-12-08T12:57:24.358Z',NULL,164,3,92.96789820016517,3.93,125.98903218613528,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8270,'2016-11-08T14:37:57.073Z',NULL,144,4,40.7988669736962,1.72,47.08622520351656,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8271,'2017-11-25T22:59:46.365Z',NULL,46,4,78.6996782532274,3.33,107.84406381284047,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8272,'2019-06-17T00:50:26.786Z',NULL,63,6,133.5202262591817,5.64,174.69678621107315,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8273,'2017-07-19T20:54:59.569Z',NULL,22,5,21.42451996044233,0.91,13.919096011837922,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8274,'2017-12-25T10:31:42.140Z',NULL,21,2,40.38334406304544,1.71,33.74812662123912,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8275,'2019-02-07T03:17:07.987Z',NULL,142,1,70.34853057210945,2.97,71.88211444075833,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8276,'2018-11-11T21:03:42.566Z',NULL,100,2,67.83486485383094,2.87,43.939230498947516,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8277,'2019-12-31T04:33:25.169Z',NULL,185,2,39.57700083851661,1.67,41.026315470739185,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8278,'2017-02-08T13:48:53.806Z',NULL,148,2,92.65447881697106,3.91,85.14375026513903,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8279,'2016-06-21T07:31:41.511Z',7.9302851396148935,79,6,27.74461152277315,1.17,37.35221440578711,1112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8280,'2018-12-24T03:09:33.585Z',NULL,21,1,60.57501609456816,2.42,87.2629184663657,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8281,'2017-05-21T18:31:21.705Z',NULL,13,3,75.0861692740371,3,92.40920062818837,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8282,'2018-06-15T14:08:00.541Z',7.887082278162525,150,6,128.55415037577922,5.14,158.0896474625111,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8283,'2017-01-03T09:56:23.705Z',NULL,200,2,48.802638078661005,1.95,62.67177664304509,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8284,'2019-06-12T20:44:32.558Z',NULL,115,6,77.91196471862148,3.12,55.6189524971166,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8285,'2017-05-29T03:07:10.311Z',NULL,200,5,48.802638078661005,1.95,56.625242913394146,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8286,'2019-02-18T08:58:17.927Z',NULL,72,21,142.20381898788685,5.69,204.238534926448,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8287,'2017-04-11T03:33:55.855Z',NULL,11,3,88.30453275661709,3.53,81.3725130123203,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8288,'2019-07-17T17:57:02.897Z',NULL,99,4,67.83486485383094,2.71,46.07406576308191,1113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8289,'2020-03-28T18:47:12.314Z',NULL,179,1,68.32408657333919,4.7,105.3988519283842,1114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8290,'2017-08-22T11:29:06.465Z',NULL,47,9,56.05108065511453,3.85,81.96708032825516,1114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8291,'2019-01-11T03:10:14.013Z',NULL,126,2,125.24398120308456,8.61,167.8317040247004,1114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8292,'2019-08-11T08:21:00.407Z',NULL,87,7,117.25536340498041,8.06,145.1616156166786,1114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8293,'2020-01-02T21:21:43.830Z',NULL,58,2,78.14578007078882,4.69,93.76366327809276,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8294,'2018-10-24T15:32:01.436Z',NULL,185,4,39.57700083851661,2.37,62.31633959171273,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8295,'2018-08-28T05:43:08.967Z',NULL,186,5,98.9770008385166,5.94,91.17726537016024,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8296,'2018-04-28T15:51:36.613Z',NULL,177,2,128.8192981944599,7.73,178.78118010396096,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8297,'2019-04-08T20:13:47.344Z',NULL,52,3,103.67587240151535,6.22,143.5960432158847,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8298,'2019-03-31T21:50:41.833Z',NULL,41,1,63.50890855689462,3.81,73.42288988259287,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8299,'2017-12-15T08:35:34.727Z',3.387082278162526,167,1,65.13633042746795,3.91,90.07997505843498,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8300,'2017-04-08T16:52:42.528Z',NULL,153,3,44.532615427854914,2.67,63.52903079698998,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8301,'2018-09-23T16:49:20.012Z',NULL,150,5,128.55415037577922,7.71,97.71666435540004,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8302,'2017-04-23T11:42:56.397Z',NULL,11,2,88.30453275661709,5.3,100.74372985698867,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8303,'2019-11-22T02:48:44.404Z',3.387082278162526,37,3,80.10774204020768,4.81,65.48237925128943,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8304,'2018-09-16T16:35:06.870Z',3.387082278162526,123,6,110.93145648834248,6.66,143.45181354278276,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8305,'2019-07-09T22:23:09.520Z',NULL,39,5,114.58158180283459,6.87,149.11625352755445,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8306,'2019-10-14T18:25:23.545Z',NULL,51,6,75.65058751905018,4.54,118.1741949586497,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8307,'2019-10-24T12:06:41.268Z',NULL,170,5,105.07665741496471,6.3,140.51557568293413,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8308,'2016-08-18T21:45:56.202Z',NULL,21,6,40.38334406304544,2.42,51.17516640592163,1115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8309,'2019-10-14T11:18:40.318Z',NULL,50,6,53.64019616819762,2.15,43.506066653715834,1116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8310,'2019-05-19T23:18:59.601Z',NULL,28,4,68.12471180754113,2.72,93.66436425310677,1116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8311,'2017-03-25T17:25:03.349Z',NULL,30,1,42.7829881204479,3.21,43.39291961466385,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8312,'2018-12-04T01:51:53.531Z',NULL,98,2,112.41825444654248,8.43,148.79795428189396,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8313,'2018-12-25T02:46:45.392Z',NULL,152,2,48.89568729900663,3.67,40.23710216331009,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8314,'2017-12-25T20:11:24.559Z',NULL,169,2,39.68781795635516,2.98,27.19141319576886,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8315,'2019-03-10T01:22:01.996Z',NULL,181,1,143.88940370476112,10.79,150.15701982695597,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8316,'2017-08-19T00:17:41.363Z',NULL,131,4,75.41148135558485,5.66,49.128620728988494,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8317,'2019-06-15T23:50:10.621Z',NULL,179,6,68.32408657333919,5.12,72.6190718073215,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8318,'2019-04-27T06:44:22.063Z',NULL,122,3,99.84528328808108,7.49,102.3087444644141,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8319,'2018-08-18T08:00:51.802Z',NULL,179,6,68.32408657333919,5.12,58.988412817147506,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8320,'2016-12-21T01:14:53.641Z',NULL,79,2,27.74461152277315,2.08,40.150263134036834,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8321,'2018-12-01T12:24:13.807Z',NULL,172,2,122.3651993029456,9.18,128.57577108136545,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8322,'2018-04-05T17:19:19.358Z',NULL,186,3,98.9770008385166,7.42,71.29716862491553,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8323,'2019-12-08T21:29:52.842Z',NULL,77,2,101.01691728415972,7.58,92.21022710587283,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8324,'2018-10-09T23:55:18.166Z',NULL,90,5,123.1196127553999,9.23,96.56781092847964,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8325,'2017-07-04T05:22:32.776Z',NULL,6,3,64.95747510229587,4.87,101.67136489428025,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8326,'2018-07-07T11:46:11.517Z',NULL,48,3,123.20884248534108,9.24,158.47765641006637,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8327,'2019-06-05T05:05:38.408Z',NULL,172,6,122.3651993029456,9.18,187.13399952953398,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8328,'2019-06-28T23:49:30.847Z',NULL,169,6,59.53172693453274,4.46,68.18109067512547,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8329,'2020-01-04T12:24:50.749Z',NULL,85,2,54.90104734428525,4.12,42.79234727411241,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8330,'2017-03-02T19:45:16.449Z',NULL,5,1,82.7450976850356,6.21,61.459798112464114,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8331,'2017-12-03T13:44:49.781Z',NULL,62,2,89.0134841727878,6.68,119.98541139892527,1117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8332,'2016-12-22T16:37:37.280Z',NULL,176,2,38.616539622351056,2.32,25.366217030038502,1118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8333,'2017-10-13T15:25:57.901Z',NULL,194,5,33.587182645381546,2.02,50.55873427491434,1118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8334,'2018-06-10T14:38:23.569Z',NULL,165,5,38.30449564120193,2.3,52.03263937316922,1118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8335,'2020-02-17T06:20:54.676Z',NULL,113,2,110.47725376186015,6.63,159.43163270109656,1118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8336,'2020-04-05T11:23:35.592Z',NULL,65,3,68.22769726470014,4.09,66.99516277682757,1118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8337,'2020-04-14T12:35:50.494Z',NULL,195,2,109.78077396807234,6.59,127.68825274763027,1118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8338,'2019-02-19T20:13:58.928Z',NULL,137,1,67.77247956807186,3.39,100.05013455542817,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8339,'2018-02-16T18:15:49.694Z',NULL,28,1,68.12471180754113,3.41,81.81740221418382,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8340,'2019-11-11T11:32:51.841Z',NULL,41,2,63.50890855689462,3.18,94.46953264276773,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8341,'2020-03-21T18:04:02.899Z',NULL,100,1,67.83486485383094,3.39,90.70449809518657,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8342,'2018-03-08T16:17:24.410Z',NULL,96,1,104.82144858590365,5.24,130.14231872380162,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8343,'2019-01-12T15:52:33.807Z',NULL,29,2,123.57448218067185,6.18,189.15357883800525,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8344,'2018-06-25T18:29:55.051Z',NULL,158,7,139.8942352373801,6.99,101.66845511312002,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8345,'2018-08-29T11:30:09.704Z',NULL,185,8,39.57700083851661,1.98,56.55137790875762,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8346,'2020-01-26T01:56:29.598Z',6.514897579974,133,2,68.4819702983371,3.42,52.143235190301844,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8347,'2018-11-15T23:59:57.831Z',NULL,199,3,115.4300138092855,5.77,149.2193176758984,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8348,'2019-03-31T17:40:27.495Z',NULL,159,1,35.53017445377361,1.78,45.60795064708153,1119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8349,'2018-02-01T17:59:38.822Z',NULL,163,2,33.56789820016516,2.52,43.55587175753408,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8350,'2019-01-12T14:13:40.415Z',NULL,3,2,53.08311732230858,3.98,58.5915319674659,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8351,'2018-07-29T22:18:08.031Z',NULL,38,4,66.06937283839378,4.96,57.54470898021696,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8352,'2017-12-18T01:47:18.346Z',NULL,32,2,71.42990913064094,5.36,107.96753964625451,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8353,'2017-10-12T14:21:22.481Z',NULL,155,6,29.183828734551838,2.19,34.59057796545529,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8354,'2019-04-24T15:12:06.859Z',NULL,40,3,99.66240044231697,7.47,110.31780224583743,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8355,'2019-06-18T10:43:35.073Z',NULL,150,5,128.55415037577922,9.64,145.76387265747385,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8356,'2018-03-02T02:17:19.695Z',NULL,125,1,80.39699207990944,6.03,113.37392974062287,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8357,'2019-09-25T06:03:27.333Z',NULL,71,3,82.80381898788684,6.21,131.95783551148926,1120); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8358,'2019-12-22T20:11:10.727Z',6.514897579974,58,2,78.14578007078882,3.91,81.22123146227139,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8359,'2020-04-14T09:53:15.599Z',NULL,61,3,23.537915510955656,1.18,25.195152816106358,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8360,'2018-10-04T05:21:07.599Z',NULL,140,5,66.80312547576881,3.34,68.77531924987645,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8361,'2020-02-14T14:48:47.629Z',6.580991123671062,85,1,54.90104734428525,2.75,74.01619444583146,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8362,'2017-07-08T22:50:26.053Z',NULL,90,4,82.07974183693327,4.1,80.09402585735585,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8363,'2018-07-04T22:03:36.205Z',NULL,145,4,61.1983004605443,3.06,60.34163885335286,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8364,'2016-11-15T13:15:56.780Z',NULL,168,3,79.28781795635516,3.96,85.328246835043,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8365,'2017-08-19T18:02:35.098Z',NULL,174,8,74.40953929454055,3.72,55.19678960960883,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8366,'2017-08-09T23:45:23.861Z',NULL,22,6,21.42451996044233,1.07,29.126426595014095,1121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8367,'2019-12-24T05:16:16.011Z',NULL,17,1,79.93608046792765,4.8,112.64021701024113,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8368,'2019-01-27T11:15:01.761Z',NULL,186,2,98.9770008385166,5.94,82.60705295505541,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8369,'2018-09-24T12:34:10.361Z',NULL,132,5,127.88197029833711,7.67,89.91766273862801,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8370,'2018-04-12T00:57:47.622Z',NULL,158,2,139.8942352373801,8.39,217.51635065155187,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8371,'2020-01-05T16:44:12.474Z',NULL,11,2,132.45679913492563,7.95,193.27195259227443,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8372,'2019-08-29T15:48:56.577Z',NULL,146,8,126.04727121216614,7.56,90.89661603601573,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8373,'2018-03-25T22:05:51.140Z',NULL,158,1,139.8942352373801,8.39,171.11267849884922,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8374,'2018-07-05T23:10:27.760Z',NULL,82,5,60.89545738030947,3.65,81.40252660362162,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8375,'2018-05-17T22:54:02.437Z',NULL,160,4,47.59120561297272,2.86,66.65321595097669,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8376,'2019-08-13T22:31:23.300Z',NULL,183,4,56.697412301919755,3.4,53.61722973827399,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8377,'2017-10-26T17:36:14.534Z',NULL,178,3,78.21975500247076,4.69,99.89094399076959,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8378,'2019-07-23T06:03:29.006Z',NULL,5,4,124.1176465275534,7.45,120.24690746573026,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8379,'2019-01-02T04:43:28.041Z',NULL,3,2,53.08311732230858,3.18,82.43106544963186,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8380,'2017-12-06T18:24:29.471Z',NULL,155,1,29.183828734551838,1.75,29.41248262731621,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8381,'2019-03-31T21:44:03.922Z',NULL,87,1,117.25536340498041,7.04,125.54445079608331,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8382,'2019-01-31T06:28:38.126Z',NULL,107,2,50.094887884945365,3.01,54.60509770806433,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8383,'2017-12-23T12:12:27.480Z',NULL,9,2,58.31312098526137,3.5,83.79564778179547,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8384,'2020-04-05T01:47:16.162Z',NULL,193,3,50.38077396807232,3.02,50.916696305444745,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8385,'2019-06-05T18:55:46.175Z',NULL,78,7,41.616917284159726,2.5,29.325673166632487,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8386,'2019-08-19T01:09:20.007Z',NULL,111,7,55.526746186906664,3.33,35.4310031533108,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8387,'2017-11-01T19:15:28.276Z',NULL,39,4,76.38772120188973,4.58,77.08633041116245,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8388,'2018-07-19T02:03:04.635Z',NULL,125,6,80.39699207990944,4.82,59.35887513413811,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8389,'2018-10-08T10:04:22.296Z',9.64912361451846,76,7,63.82421061366486,3.83,58.168045435533756,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8390,'2017-01-26T07:15:19.320Z',NULL,117,2,36.683234169385244,2.2,34.59081933270876,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8391,'2020-04-12T15:07:19.653Z',NULL,168,3,118.93172693453273,7.14,119.71496700858185,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8392,'2018-05-04T10:32:52.939Z',NULL,51,5,75.65058751905018,4.54,72.27261096868051,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8393,'2017-03-13T13:32:06.815Z',NULL,68,1,76.82895921539838,4.61,57.802748005715046,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8394,'2020-02-06T11:27:37.926Z',NULL,21,2,60.57501609456816,3.63,50.188119578535485,1122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8395,'2017-09-29T01:20:07.780Z',NULL,31,7,70.43564311419016,5.28,64.38718921675604,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8396,'2018-05-16T02:42:04.782Z',NULL,187,5,98.9770008385166,7.42,90.80277669729828,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8397,'2019-08-25T04:04:07.930Z',NULL,40,6,99.66240044231697,7.47,125.10015804997508,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8398,'2020-01-15T06:29:53.657Z',NULL,22,2,32.136779940663494,2.41,48.84959810572619,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8399,'2020-02-25T22:27:18.248Z',5.1491236145184605,69,2,73.38772304360626,5.5,68.35380758585713,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8400,'2020-02-17T10:59:42.237Z',NULL,11,2,132.45679913492563,9.93,151.0774114912996,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8401,'2018-02-27T09:34:24.799Z',NULL,130,2,75.02573869315137,5.63,92.59648050432172,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8402,'2018-02-18T01:48:23.272Z',NULL,166,2,38.30449564120193,2.87,57.40092101957533,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8403,'2017-01-07T17:21:49.896Z',NULL,89,3,42.47974183693326,3.19,62.196473544968754,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8404,'2018-09-25T21:16:03.583Z',NULL,109,7,119.04991068193098,8.93,97.33594394887494,1123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8405,'2017-09-01T07:03:15.918Z',NULL,147,6,44.4315141414441,2.78,32.40854540151245,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8406,'2018-01-23T19:27:43.559Z',NULL,151,2,91.61302306843446,5.73,59.387310161003384,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8407,'2018-07-26T04:47:41.625Z',NULL,191,6,128.5841852057933,8.04,86.40679652169887,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8408,'2018-12-13T08:21:47.132Z',NULL,145,2,61.1983004605443,3.82,46.495142674388426,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8409,'2018-04-09T08:38:00.011Z',NULL,167,3,97.70449564120193,6.11,109.33100933316035,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8410,'2019-07-21T06:31:08.940Z',NULL,114,6,77.91196471862148,4.87,120.70004315554597,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8411,'2018-05-17T03:39:38.818Z',NULL,10,5,47.6793282102869,2.98,72.71795306157111,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8412,'2019-05-10T05:19:57.169Z',NULL,113,4,110.47725376186015,6.9,143.9710125002153,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8413,'2019-07-19T18:08:30.408Z',NULL,175,5,117.3248094335266,7.33,81.28368496505641,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8414,'2019-06-11T23:06:55.526Z',NULL,71,6,82.80381898788684,5.18,64.31147162700884,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8415,'2018-11-15T00:26:33.056Z',NULL,132,2,127.88197029833711,7.99,175.232488245357,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8416,'2019-07-10T14:20:55.641Z',NULL,194,5,50.38077396807232,3.15,79.544260777578,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8417,'2019-11-16T18:19:41.550Z',NULL,48,3,123.20884248534108,7.7,134.4071481948837,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8418,'2017-12-08T14:39:09.639Z',NULL,192,1,46.122790137195516,2.88,40.47489868164946,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8419,'2018-08-15T23:22:29.690Z',NULL,128,7,75.08016314504417,4.69,76.29208291541237,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8420,'2018-09-18T07:45:50.594Z',NULL,15,5,37.648145389078365,2.35,45.77365462598415,1125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8421,'2018-05-19T04:24:34.807Z',NULL,128,4,75.08016314504417,4.5,82.37312300030877,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8422,'2020-03-14T19:53:54.130Z',NULL,39,1,114.58158180283459,6.87,100.53396585082993,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8423,'2020-01-04T13:31:53.201Z',NULL,19,2,64.00675097561322,3.84,71.37331951543467,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8424,'2019-11-27T20:30:28.767Z',NULL,107,3,50.094887884945365,3.01,34.445052484166474,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8425,'2019-12-10T18:50:04.613Z',NULL,12,2,116.01427581618326,6.96,126.15682568954995,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8426,'2018-06-20T00:00:10.922Z',NULL,57,6,122.4223933583994,7.35,146.3006761369235,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8427,'2019-02-24T17:29:16.160Z',NULL,17,2,79.93608046792765,4.8,119.0955544457282,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8428,'2019-05-04T13:05:41.477Z',NULL,46,5,118.0495173798411,7.08,80.31271167207346,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8429,'2019-06-05T11:22:35.059Z',NULL,60,8,29.80214751859149,1.79,40.83354423388785,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8430,'2019-02-16T14:00:37.152Z',NULL,196,2,70.14610686710009,4.21,46.641710131716245,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8431,'2019-11-02T05:31:43.362Z',NULL,21,4,60.57501609456816,3.63,84.46004771690828,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8432,'2019-10-08T16:59:45.016Z',NULL,180,7,68.32408657333919,4.1,67.81402453333709,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8433,'2017-06-17T13:43:04.830Z',NULL,112,8,27.55292434006023,1.65,27.700831869674378,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8434,'2018-10-08T06:59:47.075Z',NULL,169,7,59.53172693453274,3.57,70.80144972177084,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8435,'2019-12-03T07:04:38.777Z',NULL,176,2,57.92480943352658,3.48,62.54462395198623,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8436,'2018-08-26T12:54:33.763Z',7.8228095456727,50,9,53.64019616819762,3.22,39.710709274060676,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8437,'2019-08-05T21:24:18.817Z',NULL,52,9,103.67587240151535,6.22,142.651316009605,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8438,'2018-02-11T17:38:23.219Z',7.8228095456727,12,2,116.01427581618326,6.96,153.9840763311899,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8439,'2020-01-18T16:43:43.797Z',NULL,38,2,66.06937283839378,3.96,87.85542935963379,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8440,'2017-07-04T19:00:34.968Z',NULL,184,6,77.3982748679465,4.64,69.97679173870904,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8441,'2019-02-08T09:56:06.518Z',NULL,162,2,33.56789820016516,2.01,23.23564331319749,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8442,'2017-11-28T05:25:16.130Z',NULL,163,3,22.378598800110105,1.34,18.294422028496196,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8443,'2017-09-03T22:38:31.285Z',NULL,186,4,65.98466722567774,3.96,96.08190635929702,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8444,'2019-12-10T20:43:44.417Z',NULL,136,1,105.20402317157343,6.31,112.46305411882031,1126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8445,'2018-12-01T03:48:32.657Z',NULL,117,1,55.024851254077866,3.44,59.67115794999602,1127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8446,'2019-06-18T17:25:08.238Z',NULL,82,6,60.89545738030947,3.81,66.16151270874427,1127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8447,'2019-02-07T01:12:16.597Z',7.150053375236908,177,1,128.8192981944599,8.05,97.36763403258274,1127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8448,'2019-04-18T12:29:54.383Z',7.150053375236908,138,2,113.95078476718615,7.12,72.57357659077206,1127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8449,'2019-01-23T01:46:20.416Z',NULL,125,2,80.39699207990944,3.62,66.41402502268181,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8450,'2020-02-20T23:21:26.983Z',NULL,109,2,119.04991068193098,5.36,92.90455381236052,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8451,'2019-04-21T12:52:54.035Z',NULL,27,3,127.52471180754115,5.74,166.0938051706238,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8452,'2019-12-09T20:41:19.089Z',NULL,19,2,64.00675097561322,2.88,54.3919582104717,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8453,'2019-02-01T15:06:05.024Z',NULL,89,1,63.719612755399886,2.87,89.2131731459246,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8454,'2019-08-01T16:26:01.360Z',NULL,2,4,105.11984419607644,4.73,110.87044483807762,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8455,'2017-10-26T06:45:57.701Z',NULL,174,4,74.40953929454055,3.35,63.752838966433075,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8456,'2019-12-16T03:16:02.747Z',NULL,25,2,68.62263967182464,3.09,44.712862294582685,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8457,'2019-11-29T04:47:58.089Z',NULL,106,3,52.723521442619514,2.37,36.10753116612937,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8458,'2019-12-01T17:57:14.932Z',NULL,166,2,38.30449564120193,1.72,54.02995693585813,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8459,'2019-05-06T18:45:35.495Z',NULL,57,4,122.4223933583994,5.51,179.88296751795238,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8460,'2018-09-01T01:37:23.799Z',NULL,151,4,91.61302306843446,4.12,131.20317692157064,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8461,'2019-04-30T01:37:13.402Z',NULL,181,2,143.88940370476112,6.48,212.71595291292243,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8462,'2017-11-30T00:51:39.889Z',NULL,125,2,53.59799471993963,2.41,60.0054720780869,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8463,'2018-02-03T21:34:19.858Z',NULL,79,2,41.616917284159726,1.87,42.21539770367137,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8464,'2017-09-21T18:41:43.593Z',NULL,85,6,36.6006982295235,1.65,54.7576643109568,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8465,'2019-11-29T04:48:37.433Z',NULL,156,3,30.615804149046195,1.38,38.03207435075831,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8466,'2018-04-28T16:34:27.879Z',NULL,26,2,68.12471180754113,3.07,104.20005546008058,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8467,'2017-10-07T10:34:26.784Z',NULL,156,54,20.41053609936413,0.92,23.68275754999484,1128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8468,'2016-11-11T19:56:25.736Z',NULL,147,4,44.4315141414441,2.89,39.136380314703985,1129); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8469,'2018-12-18T00:11:30.853Z',NULL,12,2,116.01427581618326,4.64,103.0184238181027,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8470,'2019-04-13T04:44:34.968Z',NULL,62,3,133.5202262591817,5.34,207.68394807858104,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8471,'2018-02-02T07:42:58.916Z',NULL,30,2,64.17448218067184,2.57,58.29502328768063,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8472,'2017-08-26T14:59:40.284Z',NULL,43,9,50.90170136783837,2.04,50.22781407352366,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8473,'2018-09-26T03:22:32.070Z',NULL,15,5,37.648145389078365,1.51,30.4858666747734,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8474,'2020-03-14T02:11:24.673Z',NULL,173,1,122.3651993029456,4.89,139.33787762443572,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8475,'2017-02-24T13:46:21.040Z',NULL,73,1,47.752514839713,1.91,72.52967538152241,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8476,'2017-12-12T22:30:11.362Z',7.6423308374972,121,2,26.96352219205405,1.08,37.039477726673525,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8477,'2018-11-28T18:50:43.273Z',NULL,169,3,59.53172693453274,2.38,47.206604102325066,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8478,'2020-04-04T09:52:42.802Z',NULL,139,3,76.77768319177018,3.07,103.83259867743261,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8479,'2019-08-17T21:47:26.510Z',NULL,88,9,105.41292031622555,4.22,153.06230175154454,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8480,'2019-03-04T06:39:27.046Z',NULL,189,1,93.27738254731509,3.73,124.11557507147343,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8481,'2019-08-15T20:58:26.866Z',NULL,190,7,128.5841852057933,5.14,197.0343136797556,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8482,'2020-01-05T00:05:32.434Z',NULL,77,2,101.01691728415972,4.04,144.80035410006334,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8483,'2018-12-02T18:33:06.943Z',NULL,38,2,66.06937283839378,2.64,88.39730607353731,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8484,'2018-12-06T18:09:15.658Z',NULL,31,2,105.65346467128523,4.23,164.30124374340977,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8485,'2018-05-01T14:45:37.684Z',NULL,66,5,136.16126271106958,5.45,90.44483822145095,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8486,'2019-05-20T07:06:47.516Z',2.5425052254582954,18,5,81.90307121097293,3.28,59.861527708136315,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8487,'2019-05-05T17:23:52.573Z',NULL,104,5,106.44215255778118,4.26,84.12300085467017,1130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8488,'2017-03-21T04:32:39.689Z',NULL,64,1,95.61478497145774,6.57,86.16962169253704,1131); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8489,'2018-04-28T14:00:45.337Z',NULL,56,2,36.37128575934436,2.5,40.759487951200704,1131); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8490,'2016-12-11T13:44:43.572Z',NULL,185,2,26.384667225677738,1.81,17.20149991724267,1131); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8491,'2020-03-25T09:17:52.595Z',NULL,57,1,122.4223933583994,8.42,158.50246634527355,1131); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8492,'2019-03-02T17:14:33.023Z',NULL,50,1,53.64019616819762,3.69,59.354660367275876,1131); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8493,'2018-05-14T21:28:57.330Z',NULL,105,3,52.723521442619514,3.16,54.15815534414112,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8494,'2019-07-19T06:33:12.981Z',NULL,179,4,68.32408657333919,4.1,75.81828386573008,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8495,'2018-03-21T00:48:57.802Z',NULL,73,1,71.6287722595695,4.3,73.74266211990863,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8496,'2016-11-18T02:37:15.339Z',NULL,173,2,81.57679953529707,4.89,115.89748472797004,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8497,'2017-08-06T03:38:56.932Z',NULL,57,4,81.6149289055996,4.9,65.27448319892231,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8498,'2019-03-31T09:20:16.234Z',NULL,113,1,110.47725376186015,6.63,165.12866071178985,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8499,'2018-07-11T21:02:35.908Z',NULL,25,4,68.62263967182464,4.12,79.26302395023569,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8500,'2019-04-22T21:59:51.295Z',NULL,69,3,73.38772304360626,4.4,60.11437526912993,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8501,'2017-09-03T21:55:23.426Z',NULL,17,3,53.290720311951766,3.2,47.02359771409656,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8502,'2019-03-08T07:50:56.260Z',NULL,18,1,81.90307121097293,4.91,95.80499950213384,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8503,'2019-11-12T21:27:50.744Z',NULL,10,3,47.6793282102869,2.86,37.61137783042245,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8504,'2017-05-18T18:30:43.548Z',NULL,95,4,33.212427711035886,1.99,50.433820720326466,1132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8505,'2018-02-25T15:30:00.633Z',NULL,1,1,44.19489169601981,2.54,46.96519423417642,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8506,'2019-02-28T19:09:17.210Z',NULL,158,1,139.8942352373801,8.04,136.2066784893364,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8507,'2017-07-20T15:21:13.682Z',NULL,112,4,27.55292434006023,1.58,17.881791357782785,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8508,'2018-01-20T06:51:23.390Z',NULL,104,1,106.44215255778118,6.12,118.85503046003541,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8509,'2019-12-13T10:20:15.367Z',NULL,184,1,116.09741230191975,6.68,101.48667516438691,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8510,'2018-05-16T20:28:05.008Z',7.042505225458296,9,4,87.46968147789205,5.03,61.36126017968917,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8511,'2020-02-28T02:52:25.304Z',NULL,44,2,76.35255205175756,4.39,89.48044819045901,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8512,'2018-04-15T14:10:18.467Z',NULL,144,3,61.1983004605443,3.52,49.29084964834547,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8513,'2018-11-12T07:21:57.524Z',NULL,169,2,59.53172693453274,3.42,52.67806882138451,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8514,'2019-07-11T06:20:21.316Z',NULL,70,4,57.493003808959784,3.31,80.09692598844465,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8515,'2017-11-30T10:05:43.533Z',NULL,157,2,93.26282349158673,5.36,136.31895456430092,1133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8516,'2019-08-04T01:39:32.130Z',NULL,111,3,55.526746186906664,2.64,77.10304409381044,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8517,'2019-04-28T16:05:51.419Z',NULL,133,1,68.4819702983371,3.25,76.08420343573556,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8518,'2018-04-29T17:00:42.043Z',1.608566871499705,90,2,123.1196127553999,5.85,111.21232778934416,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8519,'2018-11-14T19:33:09.713Z',6.108566871499705,44,3,76.35255205175756,3.63,102.70622443705614,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8520,'2019-10-20T03:27:32.761Z',NULL,39,6,114.58158180283459,5.44,130.9946022144682,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8521,'2018-09-09T08:32:27.824Z',NULL,190,4,128.5841852057933,6.11,130.92547135419954,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8522,'2017-04-10T08:20:44.760Z',NULL,159,2,23.686782969182406,1.13,29.59479523526384,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8523,'2019-04-23T15:18:34.277Z',NULL,136,2,105.20402317157343,5,83.76840759271086,1134); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8524,'2020-01-16T10:49:06.924Z',NULL,82,1,60.89545738030947,4.19,88.78846229247434,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8525,'2019-08-03T15:17:19.627Z',NULL,52,5,103.67587240151535,7.13,151.34959100988388,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8526,'2018-08-14T07:33:41.882Z',NULL,104,5,106.44215255778118,7.32,93.87878012709842,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8527,'2018-09-09T11:26:06.783Z',NULL,119,4,43.43814329652384,2.99,30.038441017262343,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8528,'2019-01-10T03:29:17.525Z',NULL,21,2,60.57501609456816,4.16,96.75048830901832,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8529,'2017-04-28T00:45:26.400Z',NULL,17,2,53.290720311951766,3.66,82.30751024069066,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8530,'2020-01-17T01:04:04.621Z',NULL,191,2,128.5841852057933,8.84,144.6442326407009,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8531,'2019-05-31T01:07:34.348Z',NULL,198,2,70.14610686710009,4.82,56.82115955741871,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8532,'2019-03-05T19:20:49.141Z',NULL,102,1,47.04215255778118,3.23,64.13847240401287,1135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8533,'2017-10-24T11:59:47.887Z',NULL,6,6,64.95747510229587,3.25,79.00196117730198,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8534,'2018-07-20T22:46:15.673Z',NULL,69,4,73.38772304360626,3.67,104.11614459376226,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8535,'2018-03-21T22:27:15.726Z',NULL,105,1,52.723521442619514,2.64,61.14629998079935,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8536,'2017-07-11T12:21:49.776Z',NULL,116,5,76.28323416938524,3.81,86.38975285375646,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8537,'2019-08-29T11:55:45.001Z',NULL,115,5,77.91196471862148,3.9,106.46613295183055,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8538,'2017-08-11T22:20:35.137Z',NULL,198,3,46.76407124473339,2.34,55.04204651489335,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8539,'2017-10-24T22:56:37.013Z',NULL,1,4,29.463261130679875,1.47,29.056204186309415,1137); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8540,'2018-10-23T06:54:58.887Z',NULL,116,5,114.42485125407785,0,126.20205367298917,1138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8541,'2018-04-24T09:19:19.819Z',NULL,23,2,116.86672609493307,0,133.7352893891529,1138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8542,'2018-11-21T06:30:02.678Z',NULL,157,2,139.8942352373801,0,164.97707354176373,1138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8543,'2018-02-14T08:01:04.874Z',NULL,94,2,109.21864156655383,6.55,88.13553967943716,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8544,'2018-05-27T05:39:05.760Z',NULL,147,4,66.64727121216615,4,86.5261092758992,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8545,'2017-09-28T09:29:31.583Z',NULL,44,5,50.90170136783837,3.05,46.60592375308999,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8546,'2018-12-12T09:29:34.065Z',NULL,22,2,32.136779940663494,1.93,23.302100983974203,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8547,'2020-01-27T01:27:59.685Z',NULL,150,1,128.55415037577922,7.71,116.17381742284468,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8548,'2020-04-03T11:14:57.792Z',NULL,104,2,106.44215255778118,6.39,137.67025500206938,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8549,'2019-02-13T11:52:47.198Z',NULL,123,17,110.93145648834248,6.66,129.9431814587159,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8550,'2019-12-19T14:11:51.929Z',NULL,118,3,57.627613096978735,3.46,40.157960901704485,1141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8551,'2019-06-17T22:19:28.941Z',8.095547892100928,6,6,97.43621265344382,5.85,92.23086777687416,1142); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8552,'2018-12-06T09:59:02.521Z',NULL,49,2,131.42865839323724,9.2,182.62524588831158,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8553,'2018-09-20T00:21:33.616Z',NULL,87,6,117.25536340498041,8.21,116.01668133534214,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8554,'2019-09-22T10:22:16.170Z',NULL,38,6,66.06937283839378,4.62,85.80963600080223,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8555,'2017-10-29T04:31:11.638Z',NULL,81,6,29.288656154807867,2.05,44.58628408514329,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8556,'2019-07-20T11:07:49.748Z',8.095547892100928,115,4,77.91196471862148,5.45,102.83386849283498,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8557,'2018-10-20T07:40:31.078Z',NULL,4,4,110.98767151282252,7.77,112.42855587911784,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8558,'2017-11-02T05:13:06.858Z',NULL,71,2,55.202545991924566,3.86,35.79713142257397,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8559,'2019-07-22T03:38:50.213Z',NULL,77,5,101.01691728415972,7.07,129.68303865930247,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8560,'2018-12-15T22:48:35.348Z',NULL,180,2,68.32408657333919,4.78,83.28074739929909,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8561,'2018-08-07T09:49:16.461Z',NULL,95,5,49.81864156655383,3.49,36.92725407667266,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8562,'2017-09-03T07:33:05.425Z',NULL,184,4,77.3982748679465,5.42,95.02871898776047,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8563,'2017-12-28T18:35:01.135Z',NULL,156,1,20.41053609936413,1.43,27.919299934026583,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8564,'2019-03-11T22:36:42.138Z',NULL,14,1,37.648145389078365,2.64,32.34372578853231,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8565,'2018-05-27T16:17:57.820Z',NULL,95,4,49.81864156655383,3.49,33.17613201496994,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8566,'2019-02-17T08:37:48.871Z',NULL,32,1,107.1448636959614,7.5,85.5354237026172,1143); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8567,'2018-01-18T17:21:28.216Z',NULL,82,2,60.89545738030947,3.81,82.61199614613946,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8568,'2019-05-22T19:25:00.689Z',NULL,78,5,41.616917284159726,2.6,49.80478046059195,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8569,'2017-07-30T06:15:31.813Z',3.2556388099841733,57,5,81.6149289055996,5.1,99.44848060885491,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8570,'2017-10-29T15:30:30.873Z',NULL,108,5,33.39659192329691,2.09,49.58316972928711,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8571,'2018-04-17T17:46:50.063Z',NULL,74,3,51.12804227386549,3.2,34.32292375708079,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8572,'2017-11-10T01:05:05.596Z',NULL,45,3,78.6996782532274,4.92,124.40474055621196,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8573,'2017-12-09T08:48:08.503Z',NULL,28,2,45.41647453836076,2.84,53.95011254948181,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8574,'2020-02-12T16:10:48.663Z',NULL,58,2,78.14578007078882,4.88,116.34273247077876,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8575,'2019-11-16T05:41:39.618Z',NULL,64,4,143.4221774571866,8.96,152.5618228952807,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8576,'2020-01-26T16:02:33.554Z',NULL,57,2,122.4223933583994,7.65,109.68935914081608,1144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8577,'2017-03-21T02:13:22.153Z',3.2556388099841733,152,1,32.59712486600442,1.4,20.560831608847536,1147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8578,'2019-03-04T14:59:45.327Z',NULL,160,1,47.59120561297272,2.05,40.159611545452336,1147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8579,'2016-09-27T05:38:38.449Z',NULL,116,5,76.28323416938524,3.28,76.67218322476232,1147); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8580,'2019-11-17T03:39:44.800Z',NULL,154,2,81.87529553312261,3.28,60.76721335140985,1149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8581,'2017-06-01T10:13:07.734Z',NULL,100,4,45.22324323588729,1.81,33.49386499385608,1149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8582,'2018-06-29T04:10:29.776Z',NULL,146,6,126.04727121216614,5.04,192.78027588219385,1149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8583,'2018-04-20T17:12:32.645Z',NULL,182,3,84.48940370476112,3.38,83.55619615391954,1149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8584,'2017-11-19T08:36:07.439Z',NULL,75,2,83.87517582301558,3.36,108.71507069006226,1149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8585,'2017-05-19T12:30:41.397Z',NULL,174,4,74.40953929454055,2.98,114.3180483589009,1149); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8586,'2019-04-16T17:51:04.495Z',NULL,26,4,68.12471180754113,0,76.53839143391019,1150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8587,'2019-12-14T00:36:22.760Z',NULL,196,2,70.14610686710009,0,56.23498934973399,1150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8588,'2019-08-28T10:20:59.907Z',NULL,3,7,53.08311732230858,0,61.042634577800285,1150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8589,'2018-09-08T03:56:40.718Z',NULL,96,6,104.82144858590365,0,109.43543417645937,1150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8590,'2019-11-07T14:57:42.382Z',3.2556388099841733,123,4,110.93145648834248,7.21,165.85162161993006,1151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8591,'2017-03-10T09:06:30.197Z',NULL,84,1,54.58418555091025,3.55,84.49281570493582,1151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8592,'2019-02-11T14:00:37.007Z',NULL,114,2,77.91196471862148,5.06,71.85735791528597,1151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8593,'2018-12-14T14:47:10.830Z',NULL,103,2,47.04215255778118,3.06,41.74330096988761,1151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8594,'2018-10-14T04:19:00.003Z',4.524239056657057,152,5,48.89568729900663,3.18,55.64665626531672,1151); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8595,'2017-07-16T13:15:24.532Z',NULL,179,5,45.549391048892794,2.73,45.53101510702694,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8596,'2019-06-14T01:06:44.292Z',NULL,99,5,67.83486485383094,4.07,106.10178709632116,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8597,'2019-05-22T02:19:04.340Z',NULL,83,4,81.87627832636537,4.91,104.81200526515701,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8598,'2019-03-04T23:56:12.515Z',NULL,136,1,105.20402317157343,6.31,107.46303358178423,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8599,'2019-09-21T11:36:24.947Z',NULL,200,5,73.20395711799151,4.39,71.38473774068707,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8600,'2019-09-06T02:02:48.821Z',NULL,181,5,143.88940370476112,8.63,225.10974848016028,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8601,'2019-04-05T15:36:07.319Z',NULL,20,3,37.32649625046575,2.24,27.289451609713876,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8602,'2018-03-28T06:20:20.840Z',NULL,180,1,68.32408657333919,4.1,105.95825537444257,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8603,'2019-06-28T04:21:06.718Z',4.524239056657057,174,6,111.61430894181083,6.7,82.99850382772165,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8604,'2019-05-13T02:54:18.459Z',NULL,77,4,101.01691728415972,6.06,153.04486194673262,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8605,'2019-04-13T18:54:25.570Z',NULL,116,3,114.42485125407785,6.87,153.69132975744714,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8606,'2017-11-22T00:54:20.661Z',NULL,197,3,46.76407124473339,2.81,48.34980657118839,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8607,'2016-05-16T07:16:52.783Z',NULL,34,4,49.535942579421324,2.97,40.690417898267015,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8608,'2020-01-13T12:01:01.261Z',NULL,187,2,98.9770008385166,5.94,145.1342341985323,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8609,'2020-02-24T07:37:51.500Z',NULL,177,1,128.8192981944599,7.73,139.16401080638144,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8610,'2019-12-02T03:28:53.669Z',NULL,182,2,84.48940370476112,5.07,124.36168360475492,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8611,'2019-01-09T01:19:44.847Z',NULL,56,2,36.37128575934436,2.18,31.375985664243032,1152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8612,'2019-05-17T17:34:54.149Z',NULL,162,4,33.56789820016516,2.31,45.79018000740496,1153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8613,'2019-12-10T11:46:44.011Z',NULL,17,2,79.93608046792765,5,99.33958852068228,1154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8614,'2018-04-25T12:12:13.169Z',NULL,194,3,50.38077396807232,3.15,59.70858618961887,1154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8615,'2017-05-29T20:38:34.612Z',NULL,169,4,39.68781795635516,2.48,29.407474581899866,1154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8616,'2016-06-23T20:33:23.765Z',NULL,157,5,93.26282349158673,5.83,139.82161815017056,1154); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8617,'2018-09-18T05:38:09.417Z',NULL,125,5,80.39699207990944,5.23,75.70379312223396,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8618,'2017-11-24T11:55:47.214Z',NULL,54,39,41.395738936015974,2.69,61.46165896965796,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8619,'2017-05-30T00:47:18.338Z',NULL,151,4,61.07534871228964,3.97,92.74806088430653,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8620,'2018-04-27T10:04:33.860Z',NULL,146,2,126.04727121216614,8.19,95.48205804376981,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8621,'2018-05-25T17:48:55.062Z',NULL,127,4,134.48016314504417,8.74,197.44262476668018,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8622,'2017-08-31T03:21:00.982Z',NULL,114,9,51.94130981241432,3.38,37.02137209239211,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8623,'2020-04-05T03:57:43.369Z',NULL,2,4,105.11984419607644,6.83,122.21325331067288,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8624,'2017-07-11T19:21:35.511Z',NULL,178,5,78.21975500247076,5.08,103.81966837041153,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8625,'2018-06-29T20:49:53.266Z',NULL,49,6,131.42865839323724,8.54,188.88587902335797,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8626,'2016-12-13T00:09:22.390Z',NULL,92,2,83.2616179105333,5.41,55.07558986688116,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8627,'2018-06-23T09:35:43.652Z',NULL,106,6,52.723521442619514,3.43,66.9250482527191,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8628,'2019-04-06T21:13:29.364Z',NULL,23,4,116.86672609493307,7.6,80.581266987522,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8629,'2019-11-30T13:07:36.497Z',8.221615385346402,3,3,53.08311732230858,3.45,44.338877127699384,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8630,'2019-09-22T00:37:01.271Z',NULL,189,5,93.27738254731509,6.06,117.82072372234265,1155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8631,'2017-08-21T20:56:48.250Z',NULL,73,7,47.752514839713,1.91,30.739855451332087,1156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8632,'2020-01-25T18:01:53.525Z',NULL,83,1,81.87627832636537,5.63,61.797691855405674,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8633,'2019-01-29T09:10:27.570Z',NULL,129,1,148.1672972165937,10.19,196.7934382452851,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8634,'2018-12-30T00:24:59.193Z',NULL,2,2,105.11984419607644,7.23,72.1161179743066,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8635,'2019-06-10T03:02:10.579Z',3.7216153853464014,138,6,113.95078476718615,7.83,126.30440731376876,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8636,'2018-02-24T11:21:07.664Z',3.7216153853464014,19,1,64.00675097561322,4.4,100.46573878454588,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8637,'2018-11-02T13:56:31.402Z',NULL,104,30,106.44215255778118,7.32,166.01671764770475,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8638,'2019-09-14T02:33:09.855Z',NULL,25,5,68.62263967182464,4.72,71.75525338536147,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8639,'2018-11-10T17:12:20.950Z',NULL,140,3,66.80312547576881,4.59,50.21077406519434,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8640,'2018-10-31T23:23:18.784Z',NULL,18,7,81.90307121097293,5.63,128.15095036433834,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8641,'2019-07-17T21:27:31.854Z',NULL,169,6,59.53172693453274,4.09,60.226658272061705,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8642,'2018-04-26T09:52:51.301Z',NULL,165,4,38.30449564120193,2.63,61.04784592414571,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8643,'2019-08-08T10:59:36.983Z',NULL,48,8,123.20884248534108,8.47,95.7859753998998,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8644,'2019-11-06T07:33:38.334Z',NULL,42,4,38.00410713690931,2.61,29.31492945508794,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8645,'2017-06-01T05:33:27.257Z',NULL,25,8,45.7484264478831,3.15,31.224452526043187,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8646,'2018-01-12T12:26:24.049Z',NULL,170,2,105.07665741496471,7.22,118.66602555361573,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8647,'2019-10-03T18:06:06.580Z',NULL,41,8,63.50890855689462,4.37,45.58975816146663,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8648,'2017-10-08T13:17:14.431Z',NULL,13,7,75.0861692740371,5.16,103.82958833904524,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8649,'2019-01-05T18:48:00.403Z',NULL,146,2,126.04727121216614,8.67,157.82253608445444,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8650,'2019-08-11T09:49:02.001Z',NULL,40,7,99.66240044231697,6.85,139.85759035473762,1158); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8651,'2018-04-02T09:33:23.228Z',9.973027276671862,82,3,60.89545738030947,2.44,90.40875777993641,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8652,'2018-07-09T20:07:07.446Z',NULL,65,6,68.22769726470014,2.73,60.57042915690974,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8653,'2019-02-20T18:37:19.371Z',NULL,60,2,29.80214751859149,1.19,34.656420039188475,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8654,'2019-04-10T10:26:09.597Z',NULL,127,4,134.48016314504417,5.38,134.07606758043002,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8655,'2018-04-05T07:03:40.503Z',NULL,161,4,47.59120561297272,1.9,70.90138402540681,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8656,'2019-12-07T05:22:47.011Z',NULL,55,3,95.77128575934437,3.83,73.77840274320447,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8657,'2019-12-20T02:59:02.931Z',NULL,195,2,109.78077396807234,4.39,150.72275485214155,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8658,'2019-07-29T12:12:03.366Z',NULL,75,5,125.81276373452337,5.03,157.57821137098057,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8659,'2020-02-04T18:04:19.378Z',NULL,89,2,63.719612755399886,2.55,66.00777607572206,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8660,'2018-09-16T09:43:34.006Z',9.973027276671862,151,6,91.61302306843446,3.66,93.72512517667174,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8661,'2019-04-24T18:43:32.309Z',NULL,104,4,106.44215255778118,4.26,71.13650875999183,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8662,'2018-05-12T02:30:50.183Z',NULL,197,6,70.14610686710009,2.81,62.411548426300236,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8663,'2019-09-08T10:11:44.794Z',NULL,169,7,59.53172693453274,2.38,53.92027060821702,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8664,'2018-06-10T01:34:28.435Z',NULL,73,8,71.6287722595695,2.87,70.28194938223052,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8665,'2018-09-26T09:58:25.847Z',NULL,170,6,105.07665741496471,4.2,153.16127713778187,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8666,'2019-12-18T00:51:06.982Z',NULL,117,2,55.024851254077866,2.2,79.15912277817006,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8667,'2019-08-05T00:48:21.675Z',NULL,12,7,116.01427581618326,4.64,148.39069789124093,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8668,'2018-05-07T06:58:57.651Z',NULL,117,4,55.024851254077866,2.2,71.92256131655341,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8669,'2017-11-13T13:00:26.088Z',NULL,161,4,31.727470408648482,1.27,38.96252211385262,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8670,'2019-05-15T21:29:21.986Z',NULL,121,5,40.44528328808107,1.62,33.56428118193621,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8671,'2017-09-02T14:18:21.821Z',NULL,61,6,15.691943673970439,0.63,19.803765006145998,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8672,'2020-02-17T13:30:39.905Z',NULL,32,2,107.1448636959614,4.29,110.5280582922998,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8673,'2016-12-15T22:04:40.368Z',NULL,110,1,37.01783079127111,1.48,23.671194589738093,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8674,'2019-11-21T19:05:11.016Z',NULL,114,2,77.91196471862148,3.12,66.34794485604885,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8675,'2019-11-24T11:05:46.063Z',NULL,8,2,98.83823503993958,3.95,136.89608035082634,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8676,'2019-09-08T01:14:05.836Z',NULL,65,4,68.22769726470014,2.73,47.44870472190636,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8677,'2018-12-22T22:47:01.769Z',NULL,174,2,111.61430894181083,4.46,105.7098607593305,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8678,'2018-07-19T05:26:27.815Z',6.242330728038512,142,3,70.34853057210945,2.81,78.60831549454767,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8679,'2019-03-24T18:21:20.825Z',NULL,86,1,92.31436670850246,3.69,85.90006325706375,1160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8680,'2017-08-28T15:10:38.396Z',NULL,100,7,45.22324323588729,1.81,33.777066041161774,1161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8681,'2016-10-18T05:46:55.669Z',1.7423307280385119,56,6,24.24752383956291,0.97,17.928699466569633,1161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8682,'2018-01-07T09:05:12.224Z',NULL,87,2,117.25536340498041,4.69,91.94341372259434,1161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8683,'2019-10-10T19:33:33.691Z',NULL,31,6,105.65346467128523,6.87,109.79822691247855,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8684,'2018-08-23T17:36:38.873Z',NULL,169,5,59.53172693453274,3.87,52.2883191496986,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8685,'2016-04-30T18:56:13.352Z',NULL,34,2,49.535942579421324,3.22,58.97671771449234,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8686,'2019-04-17T04:52:12.697Z',NULL,125,3,80.39699207990944,5.23,123.02663720896001,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8687,'2017-05-01T13:42:50.687Z',NULL,45,3,78.6996782532274,5.12,74.98207579253746,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8688,'2017-04-03T04:20:58.891Z',NULL,102,2,31.361435038520785,2.04,40.19000737692682,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8689,'2017-03-27T01:47:07.213Z',NULL,62,1,89.0134841727878,5.79,116.5211178156886,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8690,'2018-06-05T06:48:40.651Z',NULL,84,3,81.87627832636537,5.32,65.14868760121487,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8691,'2019-04-05T23:17:56.590Z',NULL,146,2,126.04727121216614,8.19,82.39882406182763,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8692,'2017-01-26T02:20:11.007Z',6.242330728038512,168,1,79.28781795635516,5.15,52.02866068068661,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8693,'2019-10-25T10:16:29.751Z',NULL,118,3,57.627613096978735,3.75,84.76688397957115,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8694,'2019-02-05T15:37:37.943Z',NULL,149,1,69.15415037577924,4.5,63.89048513385438,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8695,'2018-04-07T06:14:30.018Z',NULL,23,2,116.86672609493307,7.6,159.41110630628907,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8696,'2017-03-16T21:28:54.414Z',NULL,158,1,93.26282349158673,6.06,101.2134294995746,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8697,'2019-02-14T09:23:50.170Z',NULL,26,1,68.12471180754113,4.43,52.63391034902235,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8698,'2017-01-22T22:13:48.367Z',NULL,77,2,67.34461152277315,4.38,74.21291052965569,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8699,'2018-08-03T04:27:40.353Z',NULL,92,7,124.89242686579996,8.12,95.9135388039359,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8700,'2019-08-21T05:52:12.305Z',NULL,194,6,50.38077396807232,3.27,66.23692778450102,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8701,'2019-05-20T20:01:24.791Z',7.531246298993929,159,3,35.53017445377361,2.31,36.76999495275356,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8702,'2019-01-29T15:33:35.754Z',NULL,148,2,138.9817182254566,9.03,109.41371506088718,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8703,'2019-05-03T17:53:27.184Z',NULL,163,4,33.56789820016516,2.18,30.801201660994785,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8704,'2018-08-14T12:11:56.378Z',NULL,144,5,61.1983004605443,3.98,83.88934408990109,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8705,'2019-04-01T06:53:00.197Z',NULL,80,3,54.91325681036414,3.57,47.842581483272824,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8706,'2017-01-26T19:37:16.480Z',NULL,28,2,45.41647453836076,2.95,59.309931087759594,1162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8707,'2020-02-03T03:21:01.972Z',NULL,165,2,38.30449564120193,1.92,39.829936122066336,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8708,'2018-12-16T11:01:02.809Z',NULL,156,2,30.615804149046195,1.53,45.17118941610432,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8709,'2018-06-27T00:53:21.207Z',NULL,75,4,125.81276373452337,6.29,82.25029097516536,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8710,'2018-01-29T07:40:26.292Z',NULL,173,2,122.3651993029456,6.12,188.506540485733,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8711,'2018-11-14T04:38:25.130Z',NULL,114,3,77.91196471862148,3.9,90.02066247153257,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8712,'2018-05-20T21:32:02.245Z',NULL,185,3,39.57700083851661,1.98,57.72907856868342,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8713,'2016-08-01T23:21:45.273Z',NULL,125,5,53.59799471993963,2.68,44.571198735524355,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8714,'2017-06-07T02:54:24.604Z',NULL,122,6,66.56352219205405,3.33,90.29969715947678,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8715,'2017-12-05T11:49:18.046Z',NULL,53,2,29.517248267676894,1.48,22.538561564278957,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8716,'2019-12-26T19:43:22.439Z',NULL,184,2,116.09741230191975,5.8,109.40747386378267,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8717,'2019-07-15T08:58:03.814Z',NULL,88,6,105.41292031622555,5.27,95.93740608610209,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8718,'2018-12-08T23:55:29.228Z',NULL,69,2,73.38772304360626,3.67,115.76674653634501,1163); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8719,'2017-06-12T06:37:48.542Z',NULL,141,6,84.13541698384589,4.63,72.58248280741904,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8720,'2017-07-26T22:49:17.207Z',NULL,188,3,22.584921698210056,1.24,17.31229414634464,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8721,'2016-10-18T19:31:05.825Z',3.0312462989939286,43,4,50.90170136783837,2.8,71.39667922305657,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8722,'2017-04-12T10:02:48.515Z',NULL,103,3,31.361435038520785,1.72,28.129869906083847,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8723,'2018-09-13T03:06:44.647Z',NULL,38,5,66.06937283839378,3.63,70.51997825558811,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8724,'2019-05-11T21:21:48.189Z',NULL,116,3,114.42485125407785,6.29,118.08772914636917,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8725,'2019-01-14T04:04:37.875Z',NULL,168,1,118.93172693453273,6.54,99.6430184689925,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8726,'2018-11-14T16:56:56.430Z',NULL,119,2,43.43814329652384,2.39,59.684982291930304,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8727,'2017-05-04T06:36:22.148Z',NULL,183,3,37.7982748679465,2.08,35.955043456974515,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8728,'2016-12-15T05:10:28.844Z',NULL,125,2,53.59799471993963,2.95,49.34308060568407,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8729,'2018-03-08T02:58:37.193Z',4.3750944164389045,174,1,111.61430894181083,6.14,110.7685915753644,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8730,'2018-11-01T01:39:08.557Z',NULL,13,2,112.62925391105566,6.19,159.7672088362609,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8731,'2018-10-15T23:00:54.226Z',4.3750944164389045,187,5,98.9770008385166,5.44,109.35874941579492,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8732,'2018-06-18T00:02:48.301Z',NULL,121,7,40.44528328808107,2.22,36.64783385894685,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8733,'2017-06-10T09:09:11.356Z',NULL,86,9,61.54291113900164,3.38,86.63467743442625,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8734,'2018-12-05T20:16:09.479Z',4.3750944164389045,83,3,81.87627832636537,4.5,103.61403353374656,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8735,'2017-09-09T17:22:15.729Z',NULL,65,7,45.4851315098001,2.5,65.78433851952452,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8736,'2017-12-08T20:45:44.230Z',4.3750944164389045,3,2,35.388744881539054,1.95,29.46463998282917,1164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8737,'2017-10-15T05:43:57.818Z',NULL,73,5,47.752514839713,2.39,69.11769649577194,1165); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8738,'2020-04-15T15:32:33.196Z',NULL,121,3,40.44528328808107,2.02,44.947416891518095,1165); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8739,'2016-11-26T10:30:06.654Z',NULL,133,4,45.654646865558064,2.28,41.32135578640292,1165); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8740,'2018-12-10T18:20:18.414Z',NULL,5,2,124.1176465275534,0,74.3165009990901,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8741,'2018-10-09T04:53:08.250Z',NULL,134,6,42.49233549998661,0,28.263942886057595,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8742,'2019-09-30T13:03:31.634Z',NULL,58,5,78.14578007078882,0,68.6116507093082,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8743,'2019-06-07T23:16:12.291Z',NULL,122,5,99.84528328808108,0,120.14913296391697,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8744,'2018-02-26T19:40:32.070Z',NULL,180,1,68.32408657333919,0,86.3917046026348,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8745,'2018-03-24T02:57:21.227Z',NULL,84,1,81.87627832636537,0,113.59448591690264,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8746,'2018-06-12T21:29:25.350Z',NULL,140,9,66.80312547576881,0,70.12873542513819,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8747,'2018-06-27T21:50:43.600Z',NULL,157,9,139.8942352373801,0,196.49075790367138,1168); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8748,'2019-09-06T14:03:58.931Z',NULL,67,5,41.24480890795779,1.2,30.325748422073683,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8749,'2019-05-26T03:41:01.391Z',NULL,21,4,60.57501609456816,1.76,74.55178284461532,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8750,'2019-04-25T20:55:05.036Z',NULL,170,2,105.07665741496471,3.05,107.87432046958223,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8751,'2018-12-16T00:42:16.740Z',NULL,156,2,30.615804149046195,0.89,43.68812181211232,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8752,'2019-11-18T07:51:13.465Z',NULL,154,2,81.87529553312261,2.37,125.47155710320365,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8753,'2017-07-07T20:03:07.964Z',NULL,55,2,63.84752383956291,1.85,74.7336163923082,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8754,'2017-05-10T15:51:34.459Z',NULL,72,3,94.80254599192457,2.75,122.55746941287335,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8755,'2019-07-29T11:46:30.151Z',NULL,159,4,35.53017445377361,1.03,25.856208370483163,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8756,'2018-01-31T10:01:01.565Z',6.077864880741949,192,1,69.18418520579327,2.01,74.6458148346662,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8757,'2017-09-04T04:52:48.805Z',NULL,107,4,33.39659192329691,0.97,44.057891254984774,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8758,'2018-02-13T19:08:40.672Z',NULL,22,2,32.136779940663494,0.93,39.9098335310939,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8759,'2017-12-24T08:54:43.423Z',1.5778648807419486,23,2,77.91115072995538,2.26,54.83881433837813,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8760,'2019-10-23T23:43:26.720Z',NULL,118,4,57.627613096978735,1.67,40.499113890537046,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8761,'2018-11-17T09:01:53.665Z',NULL,97,3,112.41825444654248,3.26,100.31983576108323,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8762,'2019-03-29T18:14:35.829Z',NULL,71,1,82.80381898788684,2.4,56.60775331814359,1169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8763,'2019-05-04T11:39:58.269Z',NULL,14,3,37.648145389078365,1.62,35.163141754715234,1170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8764,'2018-11-22T11:10:54.863Z',NULL,134,1,42.49233549998661,1.83,33.73231498219433,1170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8765,'2018-11-26T02:17:15.324Z',NULL,76,2,63.82421061366486,2.74,60.94634793879982,1170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8766,'2018-01-18T14:46:10.881Z',NULL,55,2,95.77128575934437,4.12,112.1847106937889,1170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8767,'2020-04-15T12:30:50.654Z',NULL,16,1,66.11029954877317,2.84,59.496188015067965,1170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8768,'2019-05-22T00:56:43.746Z',NULL,11,3,132.45679913492563,5.7,163.2833529523791,1170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8769,'2019-11-24T13:32:31.107Z',NULL,139,2,76.77768319177018,0,56.975805205882395,1171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8770,'2019-12-07T23:58:45.564Z',NULL,30,2,64.17448218067184,3.85,55.20073388976321,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8771,'2018-08-25T01:54:44.103Z',NULL,82,5,60.89545738030947,3.65,61.985151256079696,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8772,'2017-09-08T11:01:50.034Z',NULL,32,2,71.42990913064094,4.29,47.49295006009666,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8773,'2019-04-23T19:58:31.783Z',NULL,176,2,57.92480943352658,3.48,36.52540264313349,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8774,'2018-02-05T13:26:59.340Z',NULL,44,1,76.35255205175756,4.58,69.16100268251027,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8775,'2017-09-07T12:08:26.239Z',NULL,165,5,25.536330427467956,1.53,29.17501939540038,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8776,'2018-09-14T22:29:09.758Z',NULL,180,5,68.32408657333919,4.1,86.54155922191852,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8777,'2018-02-03T07:56:37.662Z',3.490475384788483,101,2,139.82488066180403,8.39,118.69989448101622,1172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8778,'2017-07-25T22:53:47.997Z',NULL,105,6,35.149014295079674,1.58,32.79010871768433,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8779,'2018-10-05T11:05:10.415Z',NULL,169,7,59.53172693453274,2.68,49.47024332039645,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8780,'2020-04-11T09:09:11.714Z',NULL,40,3,99.66240044231697,4.48,66.30729509984258,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8781,'2017-05-09T12:17:45.078Z',NULL,5,3,82.7450976850356,3.72,62.98189554230187,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8782,'2018-05-01T16:36:36.996Z',NULL,103,4,47.04215255778118,2.12,32.28398434258726,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8783,'2018-07-27T13:58:16.505Z',3.490475384788483,158,6,139.8942352373801,6.3,210.80337788561044,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8784,'2019-01-08T19:12:42.869Z',NULL,142,3,70.34853057210945,3.17,84.96018195106984,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8785,'2019-03-29T06:26:59.615Z',NULL,132,1,127.88197029833711,5.75,136.54299541494805,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8786,'2018-04-08T01:25:30.613Z',NULL,91,2,65.09432810381134,2.93,67.1107861509884,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8787,'2019-08-22T01:43:14.979Z',3.490475384788483,157,5,139.8942352373801,6.3,176.18611955859936,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8788,'2018-05-07T17:35:17.828Z',NULL,177,4,128.8192981944599,5.8,143.7573184600278,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8789,'2018-05-16T07:03:51.587Z',NULL,77,4,101.01691728415972,4.55,83.84833973878341,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8790,'2019-09-25T19:14:42.431Z',NULL,150,4,128.55415037577922,5.78,190.2803768619224,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8791,'2019-09-14T13:34:54.492Z',NULL,17,5,79.93608046792765,3.6,49.32970491615236,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8792,'2018-05-12T08:08:32.546Z',NULL,87,4,117.25536340498041,5.28,141.17740142220106,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8793,'2018-01-31T16:16:02.768Z',NULL,34,2,74.30391386913199,3.34,65.22922850507528,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8794,'2017-03-05T11:01:13.155Z',NULL,46,1,78.6996782532274,3.54,99.50769619328427,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8795,'2017-12-13T00:02:56.862Z',NULL,56,3,24.24752383956291,1.09,16.67636418277143,1175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8796,'2019-09-22T21:57:19.231Z',NULL,81,5,43.9329842322118,2.2,66.21989666758466,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8797,'2020-01-29T21:34:46.828Z',NULL,21,2,60.57501609456816,3.03,92.08400520942003,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8798,'2017-10-31T07:59:51.002Z',NULL,16,7,44.07353303251545,2.2,62.25616294890342,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8799,'2018-04-06T19:01:53.531Z',NULL,84,4,81.87627832636537,4.09,107.03513500431183,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8800,'2017-02-28T02:19:47.203Z',NULL,146,2,84.03151414144409,4.2,66.69045568298446,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8801,'2019-03-22T09:37:18.201Z',NULL,141,1,126.20312547576883,6.31,189.48934665436337,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8802,'2020-01-01T05:48:29.781Z',NULL,166,1,38.30449564120193,1.92,28.58308211683819,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8803,'2019-08-01T14:52:24.966Z',NULL,185,7,39.57700083851661,1.98,43.534537353509336,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8804,'2016-10-12T22:46:58.316Z',NULL,51,6,50.433725012700116,2.52,68.33017264176064,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8805,'2017-09-05T22:26:23.141Z',NULL,67,4,27.496539271971862,1.37,24.017652481190414,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8806,'2019-11-21T08:11:48.436Z',NULL,86,2,92.31436670850246,4.62,131.43673101350907,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8807,'2020-04-17T22:55:32.051Z',NULL,52,3,103.67587240151535,5.18,163.67368544193167,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8808,'2018-11-28T10:32:03.040Z',3.691791072318495,79,4,41.616917284159726,2.08,29.743071725324445,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8809,'2019-02-23T16:26:32.357Z',NULL,79,2,41.616917284159726,2.08,51.394831930939326,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8810,'2019-04-15T16:53:39.155Z',NULL,139,3,76.77768319177018,3.84,53.610427271419375,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8811,'2017-08-26T14:25:26.522Z',NULL,88,5,70.27528021081703,3.51,92.06587108831928,1177); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8812,'2019-10-06T13:18:37.153Z',NULL,22,6,32.136779940663494,1.61,49.9251250385252,1179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8813,'2020-02-11T19:36:29.204Z',NULL,100,2,67.83486485383094,3.39,66.94821152845952,1179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8814,'2019-04-25T01:28:54.558Z',8.191791072318495,13,2,112.62925391105566,5.63,108.59893078161099,1179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8815,'2017-05-15T19:33:41.627Z',NULL,198,4,46.76407124473339,2.34,65.85395714672508,1179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8816,'2018-11-11T02:47:42.654Z',NULL,153,3,66.79892314178237,3.34,86.75110213549812,1179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8817,'2017-08-16T00:26:37.149Z',NULL,79,5,27.74461152277315,1.39,36.223043858395144,1179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8818,'2018-12-29T18:23:06.677Z',NULL,13,1,112.62925391105566,7.04,81.28304127619448,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8819,'2019-03-21T12:08:14.540Z',NULL,183,1,56.697412301919755,3.54,90.8889015269858,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8820,'2018-11-14T05:23:41.518Z',NULL,91,2,65.09432810381134,4.07,64.55477799543024,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8821,'2020-01-30T18:57:53.134Z',NULL,9,2,87.46968147789205,5.47,68.2645388195735,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8822,'2018-01-23T15:49:26.402Z',NULL,90,2,123.1196127553999,7.69,142.76760798805304,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8823,'2019-03-16T05:06:47.383Z',NULL,68,1,115.24343882309758,7.2,78.83405951152079,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8824,'2018-06-15T04:20:17.272Z',NULL,196,4,70.14610686710009,4.38,90.02070722857225,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8825,'2019-09-17T14:52:30.923Z',NULL,68,4,115.24343882309758,7.2,107.6015516170368,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8826,'2018-10-02T01:17:06.224Z',6.960265179888118,33,5,47.7448636959614,2.98,36.78222343170364,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8827,'2018-06-03T02:49:10.005Z',2.4602651798881183,178,4,117.32963250370614,7.33,92.09133470242286,1180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8828,'2017-04-27T20:08:29.238Z',NULL,16,2,44.07353303251545,2.53,55.65879532028487,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8829,'2019-05-17T06:14:19.623Z',NULL,169,4,59.53172693453274,3.42,50.322212032722284,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8830,'2017-01-31T15:57:33.643Z',NULL,77,2,67.34461152277315,3.87,51.07829985931103,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8831,'2017-07-23T02:17:24.449Z',NULL,187,3,65.98466722567774,3.79,65.1906941014422,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8832,'2017-08-20T19:17:31.503Z',NULL,161,4,31.727470408648482,1.82,34.89896938074516,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8833,'2019-04-14T13:57:27.161Z',NULL,43,2,76.35255205175756,4.39,62.84612695444821,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8834,'2018-03-22T10:29:59.008Z',NULL,116,1,114.42485125407785,6.58,156.642689043747,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8835,'2019-02-16T22:57:43.269Z',NULL,21,1,60.57501609456816,3.48,54.16234805147421,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8836,'2019-01-23T16:00:02.372Z',NULL,38,2,66.06937283839378,3.8,74.98601160940565,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8837,'2018-11-04T10:32:20.176Z',NULL,166,3,38.30449564120193,2.2,55.69672179152539,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8838,'2016-08-31T18:54:45.394Z',NULL,189,6,62.18492169821006,3.58,72.81890444432088,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8839,'2019-05-28T04:53:13.316Z',NULL,51,4,75.65058751905018,4.35,52.5506810026531,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8840,'2019-05-07T20:09:36.683Z',NULL,10,3,47.6793282102869,2.74,65.9024871324359,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8841,'2018-06-13T21:18:17.228Z',NULL,49,5,131.42865839323724,7.56,162.44114633185958,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8842,'2018-05-11T11:35:00.821Z',NULL,118,5,57.627613096978735,3.31,75.15641866966891,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8843,'2019-05-04T07:27:21.312Z',NULL,19,5,64.00675097561322,3.68,40.82347442939401,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8844,'2019-02-01T20:40:12.978Z',NULL,83,2,81.87627832636537,4.71,61.102969080258724,1181); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8845,'2019-12-20T08:43:49.541Z',NULL,5,2,124.1176465275534,6.21,155.92106771258503,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8846,'2018-11-28T03:11:57.341Z',NULL,163,3,33.56789820016516,1.68,33.464680251666884,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8847,'2016-12-21T16:21:05.273Z',NULL,187,2,65.98466722567774,3.3,97.25231676236983,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8848,'2018-04-07T07:26:29.126Z',NULL,91,3,65.09432810381134,3.25,53.427277271125725,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8849,'2018-04-06T11:20:27.629Z',NULL,173,3,122.3651993029456,6.12,155.49066693362477,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8850,'2016-09-11T17:16:28.437Z',NULL,4,6,73.99178100854834,3.7,111.91489419894424,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8851,'2017-06-24T09:18:31.879Z',NULL,163,6,22.378598800110105,1.12,29.073109128638848,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8852,'2019-01-06T10:17:22.405Z',NULL,91,2,65.09432810381134,3.25,46.40139975248751,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8853,'2019-07-08T18:52:13.698Z',NULL,182,6,84.48940370476112,4.22,94.24762992987534,1182); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8854,'2018-03-21T00:43:38.891Z',NULL,171,1,105.07665741496471,6.3,113.67335040972509,1187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8855,'2017-08-26T04:40:14.095Z',NULL,17,9,53.290720311951766,3.2,72.88694039514274,1187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8856,'2018-06-30T00:15:55.126Z',NULL,59,8,89.20214751859149,5.35,57.95877881711645,1187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8857,'2017-12-03T22:22:31.128Z',NULL,143,2,40.7988669736962,2.45,40.675753475614066,1187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8858,'2017-05-01T01:10:17.935Z',NULL,38,3,44.04624855892918,2.75,55.86692581605369,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8859,'2017-10-12T19:46:16.055Z',3.463180138824815,180,6,45.549391048892794,2.85,48.34027805707123,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8860,'2019-12-30T07:38:39.642Z',NULL,65,2,68.22769726470014,4.26,67.0627830873149,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8861,'2019-03-31T23:12:17.040Z',NULL,18,1,81.90307121097293,5.12,106.34650993062769,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8862,'2019-10-02T10:47:00.757Z',3.463180138824815,26,4,68.12471180754113,4.26,63.77026240412885,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8863,'2019-04-05T07:05:44.046Z',NULL,97,3,112.41825444654248,7.03,105.4780172683735,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8864,'2018-08-27T03:42:29.612Z',3.463180138824815,148,7,138.9817182254566,8.69,86.90268581797929,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8865,'2017-10-31T11:45:09.380Z',NULL,187,4,65.98466722567774,4.12,42.94521331745899,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8866,'2019-12-07T00:45:40.438Z',NULL,183,2,56.697412301919755,3.54,85.16022051720375,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8867,'2017-06-25T10:18:07.258Z',NULL,194,6,33.587182645381546,2.1,51.074947910135144,1188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8868,'2020-02-06T02:22:16.619Z',NULL,132,2,127.88197029833711,5.12,200.83177095905697,1191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8869,'2016-10-29T23:28:21.428Z',NULL,21,6,40.38334406304544,1.62,30.346490459659755,1191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8870,'2019-02-09T16:07:02.255Z',NULL,162,1,33.56789820016516,1.34,36.13973045765331,1191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8871,'2020-02-08T16:13:37.129Z',NULL,99,2,67.83486485383094,2.71,82.14440020558463,1191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8872,'2020-01-08T11:17:44.731Z',NULL,45,3,118.0495173798411,4.72,127.12801694009032,1191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8873,'2019-03-21T21:39:36.779Z',NULL,139,1,76.77768319177018,5.28,81.15263043528675,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8874,'2017-11-21T12:33:27.693Z',NULL,111,4,37.01783079127111,2.54,44.97202004448131,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8875,'2019-09-21T10:04:13.980Z',NULL,146,6,126.04727121216614,8.67,153.23950664321436,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8876,'2018-04-25T08:33:03.349Z',NULL,26,3,68.12471180754113,4.68,78.21091797582132,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8877,'2019-06-21T00:23:40.485Z',NULL,195,5,109.78077396807234,7.55,174.57568370649122,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8878,'2019-04-15T05:55:05.233Z',3.463180138824815,182,2,84.48940370476112,5.81,65.2264411532574,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8879,'2019-06-05T07:28:33.649Z',NULL,7,4,148.22900526552291,10.19,238.32732001721533,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8880,'2018-04-05T05:31:28.892Z',2.7669516941000025,75,3,125.81276373452337,8.65,77.61225285591392,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8881,'2018-07-26T17:31:04.861Z',NULL,177,6,128.8192981944599,8.86,116.4846353202422,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8882,'2019-03-30T12:35:08.572Z',NULL,89,1,63.719612755399886,4.38,72.63559177732962,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8883,'2018-07-15T19:07:01.027Z',NULL,92,5,124.89242686579996,8.59,161.08646988651248,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8884,'2018-03-16T15:21:20.752Z',NULL,142,1,70.34853057210945,4.84,90.54671535128216,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8885,'2018-06-21T12:34:08.700Z',NULL,104,6,106.44215255778118,7.32,137.43928661851598,1192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8886,'2018-07-23T16:46:02.670Z',NULL,98,6,112.41825444654248,5.34,71.00539610759881,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8887,'2019-12-09T22:17:59.301Z',NULL,28,2,68.12471180754113,3.24,83.18181920468069,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8888,'2018-11-18T06:53:29.671Z',NULL,147,2,66.64727121216615,3.17,67.93342227286965,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8889,'2020-04-10T06:41:50.182Z',NULL,59,2,89.20214751859149,4.24,132.31730517020785,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8890,'2019-10-26T23:25:59.241Z',NULL,193,4,50.38077396807232,2.39,48.684763788161135,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8891,'2019-06-12T11:58:13.460Z',NULL,78,6,41.616917284159726,1.98,60.10188425422194,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8892,'2018-09-02T22:31:44.400Z',NULL,87,5,117.25536340498041,5.57,80.81200926678558,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8893,'2018-09-09T16:39:58.240Z',NULL,111,3,55.526746186906664,2.64,55.320571703394315,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8894,'2019-01-14T23:15:02.126Z',7.266951694100002,109,1,119.04991068193098,5.65,119.6784582754069,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8895,'2020-01-04T12:44:42.079Z',NULL,4,2,110.98767151282252,5.27,173.59370538469642,1193); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8896,'2019-06-08T10:58:22.378Z',NULL,123,6,110.93145648834248,7.77,141.5329115255694,1194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8897,'2020-01-06T02:43:28.218Z',NULL,71,2,82.80381898788684,5.8,110.4553360985626,1194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8898,'2018-04-28T01:05:09.596Z',NULL,145,4,61.1983004605443,2.59,74.30583582106833,1196); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8899,'2018-11-02T11:57:34.733Z',NULL,48,3,123.20884248534108,5.21,155.15142652758604,1196); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8900,'2018-04-24T11:02:23.961Z',2.7669516941000025,41,3,63.50890855689462,2.68,95.59738702031031,1196); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8901,'2019-03-19T08:50:01.491Z',NULL,60,1,29.80214751859149,1.26,21.8080653614239,1196); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8902,'2018-04-07T14:08:09.439Z',NULL,22,2,32.136779940663494,1.36,46.01263487472145,1196); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8903,'2018-07-29T01:57:26.726Z',NULL,55,3,95.77128575934437,3.83,140.7811667557029,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8904,'2018-03-28T23:33:17.440Z',NULL,196,1,70.14610686710009,2.81,68.97386465953319,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8905,'2020-02-03T19:46:06.980Z',NULL,185,2,39.57700083851661,1.58,47.27162541540014,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8906,'2018-05-26T04:13:42.166Z',NULL,187,5,98.9770008385166,3.96,102.50527317634582,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8907,'2018-09-19T03:36:33.205Z',NULL,144,5,61.1983004605443,2.45,57.17799974204596,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8908,'2017-01-28T17:12:56.417Z',NULL,183,2,37.7982748679465,1.51,28.35878839544827,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8909,'2019-08-27T09:45:48.706Z',5.173699030641814,140,10,66.80312547576881,2.67,49.52243533369186,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8910,'2019-08-01T04:51:03.639Z',NULL,103,10,47.04215255778118,1.88,72.20090059471562,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8911,'2018-05-04T02:08:00.084Z',NULL,80,5,54.91325681036414,2.2,51.152862486701984,1197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8912,'2018-10-20T02:11:53.825Z',NULL,149,7,69.15415037577924,4.84,76.10152405759426,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8913,'2019-03-06T21:02:54.770Z',NULL,11,1,132.45679913492563,9.27,180.83021141387118,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8914,'2020-03-15T21:14:14.017Z',NULL,108,1,50.094887884945365,3.51,46.844601174598495,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8915,'2018-03-30T18:14:19.990Z',NULL,112,1,41.329386510090345,2.89,62.461423404236996,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8916,'2018-04-10T18:01:42.630Z',NULL,178,4,117.32963250370614,8.21,182.61655634558477,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8917,'2017-12-19T12:16:11.134Z',NULL,45,2,78.6996782532274,5.51,104.77121658138375,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8918,'2018-10-12T17:58:21.161Z',NULL,109,5,119.04991068193098,8.33,89.76897475350434,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8919,'2018-02-05T01:48:23.986Z',NULL,45,2,118.0495173798411,8.26,95.37489303474509,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8920,'2018-12-18T06:40:36.019Z',NULL,40,2,99.66240044231697,6.98,138.51137020929238,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8921,'2018-07-08T03:15:42.586Z',NULL,156,5,30.615804149046195,2.14,33.44542623003816,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8922,'2019-06-08T09:00:39.053Z',NULL,29,6,123.57448218067185,8.65,126.10433315086847,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8923,'2020-02-13T12:43:10.193Z',NULL,9,2,87.46968147789205,6.12,81.10747100273593,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8924,'2018-05-10T18:59:10.977Z',9.673699030641814,93,5,49.81864156655383,3.49,56.061991219104826,1199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8925,'2020-02-22T00:49:17.435Z',5.173699030641814,181,2,143.88940370476112,8.63,165.1998894204668,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8926,'2019-10-17T03:12:56.184Z',NULL,167,7,97.70449564120193,5.86,96.51099645012046,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8927,'2017-01-27T12:33:02.798Z',NULL,118,2,38.418408731319154,2.31,26.534798092664413,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8928,'2018-07-30T09:08:46.612Z',NULL,171,6,105.07665741496471,6.3,127.64791212709696,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8929,'2018-02-16T02:34:32.594Z',NULL,131,2,113.11722203337729,6.79,155.89354539070538,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8930,'2019-04-01T05:12:23.614Z',NULL,121,4,40.44528328808107,2.43,56.568204895912736,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8931,'2017-10-23T18:39:01.191Z',5.173699030641814,60,5,19.86809834572766,1.19,12.579803892964332,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8932,'2019-10-13T16:20:13.562Z',NULL,101,5,139.82488066180403,8.39,136.93295751964104,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8933,'2019-07-22T19:02:36.689Z',5.173699030641814,119,6,43.43814329652384,2.61,53.80562829359163,1200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8934,'2017-01-03T05:44:53.401Z',NULL,78,2,27.74461152277315,2.08,25.276470070629266,1201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8935,'2018-12-25T00:04:27.278Z',NULL,119,1,43.43814329652384,3.26,55.94190858566044,1201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8936,'2017-01-25T20:36:52.112Z',5.931626687320073,42,1,25.336071424606207,1.9,25.359529518410476,1201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8937,'2016-08-25T23:11:06.834Z',1.4316266873200731,161,3,31.727470408648482,2.38,48.344095586670846,1201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8938,'2018-05-19T10:15:04.370Z',NULL,105,3,52.723521442619514,2.11,34.67171596862643,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8939,'2018-05-15T14:39:15.135Z',NULL,180,3,68.32408657333919,2.73,91.59526998623534,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8940,'2018-07-05T21:21:43.591Z',NULL,118,2,57.627613096978735,2.31,82.25588323314246,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8941,'2019-11-12T21:06:37.618Z',NULL,59,2,89.20214751859149,3.57,81.71693067651509,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8942,'2018-08-25T02:58:28.557Z',NULL,154,7,81.87529553312261,3.28,60.00269121249298,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8943,'2018-05-11T11:42:13.761Z',NULL,36,4,130.93687730741433,5.24,153.03993852874288,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8944,'2019-03-17T18:00:25.514Z',NULL,12,1,116.01427581618326,4.64,142.93956537892325,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8945,'2018-07-02T12:10:55.664Z',NULL,138,5,113.95078476718615,4.56,118.18830489292043,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8946,'2019-09-19T20:56:06.436Z',NULL,2,5,105.11984419607644,4.2,160.9339844942424,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8947,'2019-11-28T11:50:02.398Z',NULL,46,3,118.0495173798411,4.72,136.36259343553445,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8948,'2019-07-31T14:06:03.273Z',NULL,45,5,118.0495173798411,4.72,184.35181834167523,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8949,'2019-01-20T22:59:49.224Z',NULL,77,2,101.01691728415972,4.04,148.5309948843596,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8950,'2019-03-21T17:10:52.032Z',1.4316266873200731,58,1,78.14578007078882,3.13,88.8430066767915,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8951,'2018-07-20T00:02:25.755Z',NULL,85,4,54.90104734428525,2.2,36.89994747371269,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8952,'2017-06-04T11:57:22.543Z',NULL,5,3,82.7450976850356,3.31,115.74941510149954,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8953,'2020-01-05T22:27:10.031Z',NULL,60,1,29.80214751859149,1.19,18.80548427306837,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8954,'2020-04-02T07:37:13.047Z',NULL,121,1,40.44528328808107,1.62,57.111821640557146,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8955,'2017-12-25T13:45:45.270Z',NULL,1,1,29.463261130679875,1.18,44.69020302829728,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8956,'2020-03-13T13:47:55.387Z',NULL,39,1,114.58158180283459,4.58,158.849373120059,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8957,'2019-09-07T07:20:43.299Z',NULL,144,4,61.1983004605443,2.45,88.13308338472315,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8958,'2019-07-22T22:11:21.777Z',NULL,79,4,41.616917284159726,1.66,64.85115912786038,1202); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8959,'2019-12-04T21:14:45.710Z',NULL,135,2,45.80402317157342,2.29,72.72214352973299,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8960,'2019-03-06T00:54:41.747Z',NULL,99,1,67.83486485383094,3.39,72.59650485684068,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8961,'2018-05-20T06:38:13.413Z',NULL,70,3,57.493003808959784,2.87,37.226708628124264,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8962,'2017-01-21T17:07:45.912Z',NULL,171,2,70.05110494330981,3.5,78.51888364068039,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8963,'2017-06-08T00:27:25.285Z',NULL,171,4,70.05110494330981,3.5,98.2206979841109,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8964,'2017-03-09T06:47:58.798Z',NULL,28,1,45.41647453836076,2.27,30.564167361637516,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8965,'2016-11-28T04:18:19.922Z',NULL,25,3,45.7484264478831,2.29,72.7082813465288,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8966,'2017-10-10T17:32:09.666Z',NULL,109,5,79.36660712128732,3.97,71.56583350883903,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8967,'2017-10-23T19:20:32.125Z',NULL,19,5,42.67116731707548,2.13,46.40710916032139,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8968,'2017-12-18T02:35:18.175Z',NULL,196,2,46.76407124473339,2.34,62.817864742452024,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8969,'2017-03-03T04:43:52.151Z',NULL,12,1,77.34285054412217,3.87,77.39311041270433,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8970,'2019-10-12T06:43:08.893Z',7.140210362071339,144,5,61.1983004605443,3.06,73.80865286258206,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8971,'2016-12-09T05:05:55.632Z',NULL,112,2,27.55292434006023,1.38,20.628504296590343,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8972,'2019-03-02T16:14:42.194Z',NULL,172,1,122.3651993029456,6.12,91.28939031934648,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8973,'2018-07-23T04:55:23.945Z',NULL,119,4,43.43814329652384,2.17,51.28139060441377,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8974,'2018-07-03T03:59:14.891Z',NULL,199,3,115.4300138092855,5.77,81.52359145416847,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8975,'2019-04-23T00:23:34.822Z',NULL,138,2,113.95078476718615,5.7,76.33764291538412,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8976,'2017-07-09T01:37:33.047Z',NULL,141,4,84.13541698384589,4.21,75.39171250954907,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8977,'2019-03-07T22:10:42.181Z',NULL,5,1,124.1176465275534,6.21,106.92426993986042,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8978,'2017-08-23T09:28:37.519Z',NULL,53,4,29.517248267676894,1.48,18.575680473175098,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8979,'2018-03-12T05:24:28.813Z',NULL,91,1,65.09432810381134,3.25,72.27127992282837,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8980,'2017-10-01T17:08:19.151Z',NULL,9,3,58.31312098526137,2.92,70.00465766405205,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8981,'2020-01-15T02:39:07.198Z',7.140210362071339,135,2,45.80402317157342,2.29,44.765464521723906,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8982,'2018-05-11T06:08:14.763Z',NULL,51,5,75.65058751905018,3.78,73.55034717771574,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8983,'2018-10-17T13:31:05.662Z',NULL,87,5,117.25536340498041,5.86,115.77074590864346,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8984,'2018-02-02T00:41:57.566Z',NULL,183,1,56.697412301919755,2.83,85.12679272220333,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8985,'2020-02-16T07:08:15.715Z',NULL,26,1,68.12471180754113,3.41,42.05997877153631,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8986,'2019-01-26T11:43:51.177Z',NULL,128,1,75.08016314504417,3.75,119.47835917751515,1203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8987,'2018-10-29T01:46:36.899Z',7.140210362071339,27,35,127.52471180754115,7.65,127.60757267893082,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8988,'2018-12-12T20:27:43.454Z',NULL,127,1,134.48016314504417,8.07,180.03482329511723,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8989,'2018-03-02T16:13:06.100Z',NULL,120,1,83.5020135028928,5.01,92.0352290340257,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8990,'2019-07-12T21:22:42.888Z',NULL,168,4,118.93172693453273,7.14,165.40692886481767,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8991,'2017-11-14T00:45:42.575Z',NULL,142,3,46.8990203814063,2.81,75.43525800580835,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8992,'2016-10-21T08:27:20.598Z',NULL,182,7,56.326269136507406,3.38,69.71044536338445,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8993,'2020-03-03T02:58:10.785Z',NULL,147,1,66.64727121216615,4,43.0383570155348,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8994,'2019-11-03T18:41:25.606Z',NULL,18,4,81.90307121097293,4.91,64.89765840987113,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8995,'2017-10-13T17:07:42.093Z',NULL,141,5,84.13541698384589,5.05,107.26020724718998,1204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8996,'2020-04-04T20:06:03.813Z',NULL,118,2,57.627613096978735,2.31,38.42751879849199,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8997,'2019-04-24T11:31:10.081Z',NULL,119,2,43.43814329652384,1.74,67.35826375754878,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8998,'2017-07-09T22:17:44.149Z',NULL,106,5,35.149014295079674,1.41,50.03638434033018,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (8999,'2017-09-25T18:40:10.896Z',NULL,39,6,76.38772120188973,3.06,59.701750338867505,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9000,'2017-03-22T22:28:09.386Z',NULL,59,1,59.46809834572766,2.38,42.265993359170444,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9001,'2018-11-22T04:55:59.629Z',NULL,46,3,118.0495173798411,4.72,72.64186305372701,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9002,'2019-02-15T15:57:09.295Z',NULL,88,2,105.41292031622555,4.22,62.79284243119259,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9003,'2019-12-01T14:46:01.611Z',NULL,186,2,98.9770008385166,3.96,81.90450741169789,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9004,'2016-11-15T18:59:32.582Z',NULL,112,3,27.55292434006023,1.1,32.64866496231598,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9005,'2019-12-22T17:59:14.115Z',NULL,111,2,55.526746186906664,2.22,82.00511660036538,1205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9006,'2018-03-05T19:14:07.308Z',7.75524916717055,137,1,67.77247956807186,3.73,73.60678888292348,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9007,'2018-02-02T18:26:38.229Z',NULL,116,2,114.42485125407785,6.29,125.94798828892951,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9008,'2017-05-15T19:49:24.351Z',7.75524916717055,106,4,35.149014295079674,1.93,40.05189955011228,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9009,'2020-01-14T05:17:07.877Z',NULL,33,2,47.7448636959614,2.63,74.17650845345743,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9010,'2018-10-08T18:28:13.099Z',NULL,72,7,142.20381898788685,7.82,113.18693174662297,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9011,'2018-06-28T05:14:30.540Z',NULL,163,6,33.56789820016516,1.85,43.659520451710925,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9012,'2019-02-25T01:56:56.497Z',NULL,63,2,133.5202262591817,7.34,89.56659908722332,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9013,'2019-10-02T23:08:54.792Z',NULL,25,5,68.62263967182464,3.77,60.56610633904591,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9014,'2020-02-05T16:38:25.210Z',NULL,60,1,29.80214751859149,1.64,44.473429090669974,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9015,'2019-01-16T10:25:34.887Z',NULL,23,1,116.86672609493307,6.43,109.97616669494741,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9016,'2017-08-26T13:58:13.426Z',NULL,196,7,46.76407124473339,2.57,28.11104396934767,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9017,'2019-12-19T10:50:30.185Z',NULL,125,2,80.39699207990944,4.42,122.04699242140974,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9018,'2018-11-18T09:00:11.161Z',NULL,155,3,43.77574310182776,2.41,29.96358901943153,1209); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9019,'2018-10-17T18:56:49.819Z',NULL,25,7,68.62263967182464,4.12,84.6341701308768,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9020,'2018-12-17T09:44:08.632Z',NULL,186,3,98.9770008385166,5.94,153.41856421982246,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9021,'2017-06-30T18:02:03.152Z',NULL,34,8,49.535942579421324,2.97,32.38082146664859,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9022,'2018-11-28T16:11:22.282Z',NULL,160,3,47.59120561297272,2.86,56.40081797053091,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9023,'2017-10-12T10:05:49.892Z',NULL,56,7,24.24752383956291,1.45,16.985615018332748,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9024,'2019-06-29T07:32:53.032Z',5.357639281309321,61,8,23.537915510955656,1.41,33.78255484625533,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9025,'2017-04-23T21:08:28.558Z',NULL,6,3,64.95747510229587,3.9,69.1286744269009,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9026,'2020-01-20T02:46:10.437Z',NULL,194,2,50.38077396807232,3.02,54.738086523160256,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9027,'2018-11-27T09:46:33.618Z',NULL,8,4,98.83823503993958,5.93,145.47469293199384,1210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9028,'2019-06-16T13:26:52.565Z',NULL,52,9,103.67587240151535,6.22,128.56097366544464,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9029,'2019-11-22T17:40:56.271Z',NULL,111,4,55.526746186906664,3.33,78.65317138699727,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9030,'2018-01-06T10:33:46.985Z',NULL,95,2,49.81864156655383,2.99,41.322759532871935,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9031,'2018-02-07T13:53:07.981Z',NULL,56,2,36.37128575934436,2.18,44.572902441381785,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9032,'2019-12-19T11:42:55.841Z',NULL,133,2,68.4819702983371,4.11,86.786119436961,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9033,'2019-09-08T11:03:54.206Z',NULL,152,6,48.89568729900663,2.93,31.907184491442305,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9034,'2019-06-25T20:30:00.136Z',NULL,15,9,37.648145389078365,2.26,48.19240689132543,1211); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9035,'2019-06-30T18:00:28.997Z',NULL,166,9,38.30449564120193,1.92,57.328356568275574,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9036,'2020-02-27T06:07:51.744Z',NULL,145,2,61.1983004605443,3.06,43.21391219967081,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9037,'2018-04-01T20:45:13.554Z',NULL,110,4,55.526746186906664,2.78,49.63098367758105,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9038,'2018-12-22T14:47:03.581Z',NULL,58,2,78.14578007078882,3.91,93.7574901504169,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9039,'2018-02-04T23:34:55.502Z',5.357639281309321,38,2,66.06937283839378,3.3,83.5409683489753,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9040,'2018-04-15T08:04:43.995Z',NULL,74,4,51.12804227386549,2.56,55.03331027793394,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9041,'2018-11-29T18:44:46.132Z',NULL,139,4,76.77768319177018,3.84,112.11225622452561,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9042,'2019-07-05T20:44:32.704Z',NULL,190,7,128.5841852057933,6.43,114.82714723159128,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9043,'2019-06-03T13:17:47.775Z',NULL,71,8,82.80381898788684,4.14,59.47860355298864,1212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9044,'2018-02-27T03:22:10.440Z',NULL,62,2,133.5202262591817,8.01,101.62868077112113,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9045,'2018-10-16T18:15:06.703Z',NULL,113,5,110.47725376186015,6.63,161.05154405233222,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9046,'2019-11-23T05:56:26.930Z',NULL,101,3,139.82488066180403,8.39,158.47633354845516,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9047,'2018-07-04T00:50:06.637Z',NULL,57,5,122.4223933583994,7.35,92.19016871199716,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9048,'2018-09-26T02:04:05.970Z',NULL,166,6,38.30449564120193,2.3,24.367912733262475,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9049,'2019-03-15T06:30:58.713Z',NULL,27,1,127.52471180754115,7.65,78.83248768603222,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9050,'2019-08-24T16:47:50.829Z',NULL,143,7,61.1983004605443,3.67,96.94982219622545,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9051,'2017-10-09T05:18:20.871Z',NULL,65,57,45.4851315098001,2.73,59.948241519719645,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9052,'2019-03-26T16:08:09.717Z',NULL,137,1,67.77247956807186,4.07,78.41348838086658,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9053,'2017-12-25T08:06:43.352Z',NULL,62,2,89.0134841727878,5.34,134.2128210054376,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9054,'2018-06-27T07:07:27.384Z',NULL,21,5,60.57501609456816,3.63,94.44875607652043,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9055,'2018-09-07T05:51:31.756Z',8.083815016385648,184,4,116.09741230191975,6.97,182.14755132695544,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9056,'2019-11-29T12:15:50.704Z',NULL,84,3,81.87627832636537,4.91,52.42804173009591,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9057,'2018-10-22T03:48:53.739Z',NULL,129,6,148.1672972165937,8.89,97.15614945189863,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9058,'2018-06-08T01:07:42.395Z',NULL,184,6,116.09741230191975,6.97,163.77071562673447,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9059,'2017-08-03T01:22:06.496Z',NULL,167,7,65.13633042746795,3.91,50.861247960741046,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9060,'2019-09-18T15:22:25.729Z',NULL,180,5,68.32408657333919,4.1,63.80549803718246,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9061,'2017-07-02T08:05:49.401Z',NULL,100,5,45.22324323588729,2.71,55.87997437869378,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9062,'2016-11-29T04:43:52.801Z',NULL,161,2,31.727470408648482,1.9,30.39902335554533,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9063,'2019-07-17T16:34:56.363Z',NULL,57,5,122.4223933583994,7.35,152.65056265620453,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9064,'2018-05-10T00:35:15.567Z',NULL,34,6,74.30391386913199,4.46,76.03083047430047,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9065,'2019-05-02T18:00:55.853Z',NULL,57,6,122.4223933583994,7.35,83.75042326318919,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9066,'2020-01-01T21:08:19.687Z',NULL,170,3,105.07665741496471,6.3,105.79328114791394,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9067,'2017-09-17T15:41:31.363Z',NULL,111,6,37.01783079127111,2.22,29.799209055084102,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9068,'2019-09-23T08:31:12.035Z',NULL,3,5,53.08311732230858,3.18,71.34105058753991,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9069,'2018-01-15T01:34:09.536Z',NULL,167,2,97.70449564120193,5.86,94.08947794474345,1213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9070,'2017-09-19T09:19:56.605Z',NULL,196,6,46.76407124473339,2.22,38.63687609225,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9071,'2016-09-16T20:57:20.762Z',NULL,168,5,79.28781795635516,3.77,94.04416526290701,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9072,'2018-01-14T06:07:08.292Z',8.083815016385648,64,2,143.4221774571866,6.81,122.52688278962155,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9073,'2018-03-22T19:43:51.615Z',NULL,78,1,41.616917284159726,1.98,64.54417268108007,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9074,'2019-03-28T19:58:42.724Z',NULL,12,1,116.01427581618326,5.51,178.70447241049828,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9075,'2019-06-29T21:09:09.207Z',NULL,45,4,118.0495173798411,5.61,182.92746408897352,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9076,'2017-11-16T06:09:38.481Z',NULL,64,3,95.61478497145774,4.54,94.3790156274437,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9077,'2017-07-20T21:51:44.728Z',NULL,7,6,98.81933684368194,4.69,154.03494855407058,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9078,'2019-03-21T13:03:20.666Z',NULL,169,1,59.53172693453274,2.83,47.64871452901991,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9079,'2019-02-11T05:42:21.532Z',2.3313834574997347,57,2,122.4223933583994,5.82,94.71087415963078,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9080,'2019-03-19T18:14:13.536Z',6.831383457499735,27,1,127.52471180754115,6.06,126.82980156537434,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9081,'2018-03-22T19:31:17.614Z',NULL,46,1,118.0495173798411,5.61,132.93626339154784,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9082,'2018-10-27T04:57:30.167Z',NULL,108,3,50.094887884945365,2.38,39.326945257048905,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9083,'2016-11-14T20:53:43.126Z',NULL,30,2,42.7829881204479,2.03,27.464453772942083,1214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9084,'2019-05-31T14:50:40.482Z',NULL,136,3,105.20402317157343,6.05,170.473204964071,1215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9085,'2017-12-19T04:45:05.003Z',NULL,69,1,48.925148695737505,2.81,62.6890179495907,1215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9086,'2020-03-27T07:44:53.801Z',2.3313834574997347,183,1,56.697412301919755,3.26,38.63013801639189,1215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9087,'2017-05-22T18:11:44.498Z',NULL,60,4,19.86809834572766,1.14,12.061602936923117,1215); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9088,'2018-06-04T01:07:26.659Z',NULL,1,4,44.19489169601981,0,51.86882422724083,1216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9089,'2018-05-12T12:14:04.050Z',NULL,89,4,63.719612755399886,0,83.21068983930634,1216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9090,'2020-03-12T04:17:15.215Z',NULL,183,1,56.697412301919755,0,80.17244923585834,1216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9091,'2018-03-14T05:35:18.876Z',NULL,101,1,139.82488066180403,0,107.51529145955327,1216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9092,'2018-09-04T21:41:54.230Z',NULL,69,6,73.38772304360626,0,78.16645045765931,1216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9093,'2019-06-12T00:57:23.873Z',NULL,111,5,55.526746186906664,0,33.50391800282452,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9094,'2017-05-23T11:08:57.697Z',NULL,84,4,54.58418555091025,0,32.997011634749036,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9095,'2019-07-06T15:37:05.208Z',NULL,65,4,68.22769726470014,0,66.77780778085673,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9096,'2020-03-05T20:47:12.467Z',NULL,146,1,126.04727121216614,0,80.72061396451527,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9097,'2019-07-11T17:05:18.029Z',NULL,195,4,109.78077396807234,0,81.51794657107575,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9098,'2018-12-13T00:59:30.570Z',NULL,28,1,68.12471180754113,0,78.57044316476043,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9099,'2019-12-30T00:09:59.077Z',NULL,28,1,68.12471180754113,0,88.32736862243544,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9100,'2019-06-24T03:46:15.397Z',NULL,69,4,73.38772304360626,0,80.3251523043045,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9101,'2017-11-27T05:11:02.223Z',NULL,76,3,42.54947374244324,0,57.123216003593726,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9102,'2018-12-06T11:04:30.520Z',NULL,117,2,55.024851254077866,0,60.62371518285316,1217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9103,'2019-11-23T06:09:58.324Z',NULL,98,3,112.41825444654248,4.5,157.5707198638557,1219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9104,'2018-11-26T13:47:50.576Z',NULL,193,2,50.38077396807232,2.02,43.081801730077125,1219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9105,'2019-06-17T14:42:48.182Z',NULL,61,6,23.537915510955656,0.94,36.30251820102859,1219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9106,'2020-03-23T02:36:48.251Z',NULL,41,1,63.50890855689462,2.54,51.08725129181118,1219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9107,'2017-07-30T05:00:57.567Z',NULL,179,3,45.549391048892794,2.51,64.16840695979275,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9108,'2018-09-01T06:24:17.854Z',NULL,169,3,59.53172693453274,3.27,70.72907512657723,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9109,'2018-09-29T19:54:31.251Z',NULL,73,3,71.6287722595695,3.94,109.94824204863316,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9110,'2019-11-04T04:29:16.527Z',NULL,41,3,63.50890855689462,3.49,92.54863749954615,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9111,'2019-10-24T15:29:29.850Z',7.619037153060124,118,5,57.627613096978735,3.17,52.080857680743236,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9112,'2018-07-26T20:31:08.534Z',NULL,162,3,33.56789820016516,1.85,46.52340465495555,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9113,'2017-08-05T15:09:28.308Z',NULL,30,5,42.7829881204479,2.35,57.784893594396685,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9114,'2019-08-17T11:34:39.612Z',NULL,180,7,68.32408657333919,3.76,66.64437357521037,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9115,'2019-09-26T15:18:05.630Z',NULL,108,6,50.094887884945365,2.76,71.67113303595895,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9116,'2018-10-08T05:02:24.507Z',NULL,107,7,50.094887884945365,2.76,35.604964318338006,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9117,'2018-12-22T18:51:03.122Z',NULL,73,2,71.6287722595695,3.94,55.78074277949961,1220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9118,'2019-06-08T00:35:36.434Z',NULL,163,6,33.56789820016516,2.52,53.56204872072199,1221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9119,'2019-08-22T05:04:11.546Z',NULL,181,7,143.88940370476112,10.79,92.4571647028198,1221); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9120,'2018-05-23T11:40:23.561Z',NULL,147,3,66.64727121216615,3.67,82.96788630658942,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9121,'2018-08-27T11:03:38.360Z',NULL,12,7,116.01427581618326,6.38,187.12119793733882,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9122,'2020-02-13T00:42:17.650Z',NULL,93,2,49.81864156655383,2.74,64.54979444120653,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9123,'2019-01-17T20:16:02.926Z',NULL,130,2,75.02573869315137,4.13,105.69018251898667,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9124,'2018-10-14T10:20:32.102Z',NULL,63,7,133.5202262591817,7.34,205.24782925137723,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9125,'2020-01-03T09:06:44.744Z',3.119037153060124,6,2,97.43621265344382,5.36,60.63243270765361,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9126,'2018-01-09T09:58:41.603Z',NULL,100,2,67.83486485383094,3.73,91.21283225596997,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9127,'2019-12-29T01:26:53.081Z',NULL,26,1,68.12471180754113,3.75,108.92709268798004,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9128,'2017-10-20T14:20:42.258Z',NULL,73,5,47.752514839713,2.63,70.03048341932859,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9129,'2019-12-19T11:11:53.093Z',NULL,135,2,45.80402317157342,2.52,40.28600807672736,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9130,'2018-05-31T20:37:10.331Z',NULL,77,3,101.01691728415972,5.56,136.12781707960264,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9131,'2017-07-26T03:04:57.610Z',NULL,61,3,15.691943673970439,0.86,12.313256070684968,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9132,'2020-02-19T20:24:14.264Z',NULL,7,1,148.22900526552291,8.15,230.93509150459386,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9133,'2017-07-22T23:48:08.915Z',NULL,51,4,50.433725012700116,2.77,55.25591585908467,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9134,'2018-07-07T13:53:32.617Z',NULL,141,4,126.20312547576883,6.94,121.9403636526774,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9135,'2020-02-20T17:04:52.183Z',7.029638382266534,45,1,118.0495173798411,6.49,186.51435834664753,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9136,'2019-04-14T12:39:22.737Z',NULL,44,2,76.35255205175756,4.2,93.52582399497021,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9137,'2017-02-23T10:39:58.350Z',NULL,126,1,83.49598746872304,4.59,121.42064888321484,1222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9138,'2018-04-03T14:19:43.015Z',NULL,68,3,115.24343882309758,5.76,153.76922613123915,1223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9139,'2017-12-21T07:59:18.175Z',NULL,111,2,37.01783079127111,1.85,36.82990151521204,1223); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9140,'2020-04-01T17:24:40.211Z',NULL,102,2,47.04215255778118,3.06,56.60919310594672,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9141,'2018-02-15T02:09:21.377Z',NULL,147,1,66.64727121216615,4.33,68.26891334351367,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9142,'2019-11-20T06:33:08.990Z',7.029638382266534,29,2,123.57448218067185,8.03,88.99352124014106,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9143,'2018-08-11T08:27:29.836Z',NULL,173,4,122.3651993029456,7.95,142.28407319932586,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9144,'2020-01-29T01:48:39.624Z',NULL,85,1,54.90104734428525,3.57,42.828492674611425,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9145,'2019-09-28T03:59:36.218Z',NULL,28,4,68.12471180754113,4.43,83.710128473881,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9146,'2018-05-02T20:27:59.655Z',NULL,143,4,61.1983004605443,3.98,81.37677646272924,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9147,'2019-06-11T23:46:58.064Z',NULL,169,6,59.53172693453274,3.87,70.13614245547541,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9148,'2018-09-20T23:38:55.941Z',NULL,5,4,124.1176465275534,8.07,128.48958350708781,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9149,'2017-12-09T07:42:40.062Z',NULL,62,1,89.0134841727878,5.79,88.72148241139818,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9150,'2017-02-12T12:55:22.907Z',NULL,89,1,42.47974183693326,2.76,49.709991229581426,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9151,'2018-06-04T21:53:16.522Z',NULL,111,6,55.526746186906664,3.61,76.40693455429252,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9152,'2018-12-15T13:20:06.556Z',NULL,134,2,42.49233549998661,2.76,44.208497936299786,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9153,'2020-03-13T08:50:37.132Z',NULL,142,1,70.34853057210945,4.57,58.16282594749623,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9154,'2019-06-23T15:31:48.274Z',7.029638382266534,6,7,97.43621265344382,6.33,109.64343450243078,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9155,'2017-10-19T22:10:15.283Z',NULL,55,6,63.84752383956291,4.15,87.94348847242235,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9156,'2018-03-19T11:56:52.493Z',NULL,147,1,66.64727121216615,4.33,76.5741270187034,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9157,'2019-05-02T10:13:04.531Z',NULL,73,4,71.6287722595695,4.66,45.205935344959755,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9158,'2018-06-17T17:31:47.764Z',NULL,45,7,118.0495173798411,7.67,115.68587888608812,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9159,'2019-05-06T18:20:58.489Z',2.8255200355118832,171,5,105.07665741496471,6.83,153.61561660818572,1225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9160,'2018-10-20T09:29:20.714Z',NULL,180,5,68.32408657333919,4.27,85.41463086051428,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9161,'2019-07-29T19:04:16.441Z',7.325520035511883,175,5,117.3248094335266,7.33,167.23813966768202,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9162,'2018-10-19T02:29:49.129Z',NULL,62,7,133.5202262591817,8.35,209.78945853108738,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9163,'2017-08-29T02:19:18.672Z',NULL,148,8,92.65447881697106,5.79,147.28367484596507,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9164,'2017-09-22T04:32:42.379Z',NULL,155,5,29.183828734551838,1.82,47.54457707224025,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9165,'2016-11-17T09:15:42.503Z',NULL,30,3,42.7829881204479,2.67,50.41763189117316,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9166,'2020-01-18T12:25:58.324Z',NULL,89,2,63.719612755399886,3.98,73.96363525341988,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9167,'2018-02-13T03:35:03.207Z',NULL,83,2,81.87627832636537,5.12,99.42912660680857,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9168,'2020-04-10T06:03:02.570Z',NULL,124,4,110.93145648834248,6.93,168.68517070451696,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9169,'2020-03-22T21:43:34.388Z',NULL,104,1,106.44215255778118,6.65,125.30978520241655,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9170,'2019-10-04T09:19:11.523Z',NULL,74,5,51.12804227386549,3.2,73.39247392154778,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9171,'2018-08-09T17:33:25.960Z',NULL,81,6,43.9329842322118,2.75,45.12741941920216,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9172,'2018-03-13T20:45:41.841Z',NULL,57,1,122.4223933583994,7.65,113.54468759336909,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9173,'2017-12-09T03:18:52.868Z',NULL,181,1,95.92626913650741,6,130.9138012856319,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9174,'2018-08-21T07:18:07.051Z',NULL,29,6,123.57448218067185,7.72,141.35701718116587,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9175,'2017-07-26T03:21:22.013Z',NULL,99,6,45.22324323588729,2.83,72.4245606314549,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9176,'2017-11-21T20:35:08.932Z',NULL,169,3,39.68781795635516,2.48,33.931697766779585,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9177,'2018-09-05T04:44:24.952Z',NULL,62,5,133.5202262591817,8.35,151.51227635819478,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9178,'2019-01-25T06:34:31.797Z',NULL,48,2,123.20884248534108,7.7,175.48753434856957,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9179,'2017-06-13T19:10:29.652Z',NULL,57,4,81.6149289055996,5.1,61.80481364632893,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9180,'2017-08-06T09:12:41.515Z',2.8255200355118832,156,4,20.41053609936413,1.28,28.01487070272192,1226); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9181,'2019-02-21T15:47:32.978Z',2.8255200355118832,46,2,118.0495173798411,4.72,155.21854858351296,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9182,'2017-12-22T20:03:52.353Z',NULL,125,2,53.59799471993963,2.14,62.78666799725211,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9183,'2019-08-31T15:31:39.775Z',NULL,138,8,113.95078476718615,4.56,158.6299934048464,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9184,'2020-04-02T18:10:17.503Z',NULL,4,4,110.98767151282252,4.44,127.02057135876542,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9185,'2020-02-08T10:26:30.971Z',NULL,31,2,105.65346467128523,4.23,151.63843549572272,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9186,'2020-04-14T04:21:05.394Z',NULL,137,4,67.77247956807186,2.71,64.01222028692914,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9187,'2018-12-10T03:13:22.126Z',NULL,69,2,73.38772304360626,2.94,107.4571830332961,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9188,'2019-01-19T07:39:19.013Z',3.9843279023671476,147,2,66.64727121216615,2.67,90.37743381562403,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9189,'2019-08-14T06:04:18.461Z',NULL,113,9,110.47725376186015,4.42,103.34578635629495,1227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9190,'2019-07-12T16:51:34.659Z',NULL,98,7,112.41825444654248,5.34,131.3212041831676,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9191,'2019-11-01T21:20:58.377Z',NULL,170,4,105.07665741496471,4.99,72.27672294396461,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9192,'2019-04-22T17:49:56.905Z',NULL,153,3,66.79892314178237,3.17,69.50925889916252,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9193,'2018-07-13T15:32:47.280Z',NULL,50,5,53.64019616819762,2.55,63.83086106944375,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9194,'2020-03-24T08:00:51.471Z',NULL,165,1,38.30449564120193,1.82,24.252698199774276,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9195,'2020-03-20T20:46:57.198Z',NULL,125,1,80.39699207990944,3.82,80.41362093412279,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9196,'2019-06-23T22:34:13.295Z',NULL,186,8,98.9770008385166,4.7,81.87090962894243,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9197,'2019-01-31T15:35:00.347Z',NULL,103,2,47.04215255778118,2.23,70.65751376238329,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9198,'2018-12-08T07:11:57.406Z',NULL,90,2,123.1196127553999,5.85,172.78607664057742,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9199,'2019-03-19T11:30:25.301Z',NULL,39,1,114.58158180283459,5.44,96.88754241381412,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9200,'2018-09-06T05:16:28.315Z',NULL,98,5,112.41825444654248,5.34,81.3540919486444,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9201,'2018-10-04T22:44:43.543Z',NULL,63,6,133.5202262591817,6.34,212.2559789718372,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9202,'2018-07-18T15:23:44.898Z',NULL,101,4,139.82488066180403,6.64,88.28642520389245,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9203,'2019-05-27T12:21:29.308Z',NULL,177,5,128.8192981944599,6.12,150.57901479710696,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9204,'2018-04-23T10:09:27.507Z',NULL,130,4,75.02573869315137,3.56,46.93583113664706,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9205,'2019-10-10T03:27:03.342Z',NULL,113,75,110.47725376186015,5.25,103.36091787434876,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9206,'2019-03-21T06:38:06.958Z',NULL,11,1,132.45679913492563,6.29,167.92191263772722,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9207,'2017-10-13T06:21:09.109Z',NULL,100,6,45.22324323588729,2.15,64.04394524495174,1228); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9208,'2017-12-02T20:27:28.691Z',NULL,66,3,90.77417514071306,5.67,131.3586330232476,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9209,'2018-08-24T13:31:53.374Z',NULL,26,9,68.12471180754113,4.26,62.486205184166465,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9210,'2017-11-18T05:01:20.569Z',NULL,178,3,78.21975500247076,4.89,106.3336749570145,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9211,'2019-11-04T15:07:30.177Z',NULL,149,2,69.15415037577924,4.32,111.20650944570596,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9212,'2020-01-09T11:30:36.960Z',NULL,192,2,69.18418520579327,4.32,44.167964358760564,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9213,'2018-10-11T22:03:16.726Z',NULL,149,6,69.15415037577924,4.32,88.91866234307182,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9214,'2018-11-30T22:45:20.698Z',NULL,79,3,41.616917284159726,2.6,34.827525871746836,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9215,'2020-03-19T13:46:21.064Z',NULL,159,1,35.53017445377361,2.22,55.88091864326362,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9216,'2018-01-06T18:32:50.222Z',NULL,112,3,41.329386510090345,2.58,61.33748456114272,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9217,'2019-08-24T19:46:51.840Z',NULL,79,8,41.616917284159726,2.6,34.8853973933946,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9218,'2019-06-19T11:10:31.798Z',NULL,199,5,115.4300138092855,7.21,138.19923554179826,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9219,'2017-10-27T20:55:20.104Z',9.004082035685766,115,6,51.94130981241432,3.25,37.32088886251039,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9220,'2017-06-20T20:24:35.516Z',NULL,176,7,38.616539622351056,2.41,56.16169086970006,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9221,'2018-09-24T23:36:59.818Z',NULL,126,4,125.24398120308456,7.83,169.67150517557596,1229); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9222,'2019-04-30T02:05:03.479Z',NULL,158,3,139.8942352373801,8.39,86.3692057700941,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9223,'2018-12-31T07:16:39.879Z',NULL,10,2,47.6793282102869,2.86,64.44376407237039,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9224,'2018-02-13T22:54:17.513Z',NULL,154,2,81.87529553312261,4.91,57.5116576407633,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9225,'2020-03-04T07:20:29.521Z',NULL,55,1,95.77128575934437,5.75,61.21057714429293,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9226,'2019-04-12T15:05:08.299Z',NULL,4,3,110.98767151282252,6.66,149.48231642936435,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9227,'2019-06-26T08:25:12.342Z',NULL,122,7,99.84528328808108,5.99,61.27701323756456,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9228,'2018-09-25T06:33:07.951Z',NULL,141,4,126.20312547576883,7.57,147.9255536173315,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9229,'2018-02-04T22:37:51.317Z',NULL,195,2,109.78077396807234,6.59,152.14857880706862,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9230,'2019-10-12T03:22:05.083Z',NULL,83,6,81.87627832636537,4.91,99.44694230222052,1230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9231,'2017-10-25T04:30:46.588Z',NULL,91,6,43.39621873587423,2.6,61.00122009052077,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9232,'2019-06-23T04:33:11.782Z',NULL,105,9,52.723521442619514,3.16,35.32389509495621,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9233,'2017-05-16T16:40:02.322Z',NULL,187,5,65.98466722567774,3.96,45.09271654189329,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9234,'2016-11-23T08:12:06.289Z',NULL,51,3,50.433725012700116,3.03,30.80788957154234,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9235,'2019-05-02T23:12:46.250Z',NULL,113,4,110.47725376186015,6.63,176.47501099172038,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9236,'2019-08-30T07:54:24.979Z',NULL,75,8,125.81276373452337,7.55,184.18967344604823,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9237,'2017-09-10T04:27:42.507Z',NULL,57,7,81.6149289055996,4.9,91.66220281420817,1231); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9238,'2019-06-14T14:59:02.771Z',NULL,175,9,117.3248094335266,4.69,156.88009356894455,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9239,'2019-09-29T20:05:06.431Z',NULL,151,6,91.61302306843446,3.66,132.92219690984584,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9240,'2019-09-04T12:08:46.898Z',4.504082035685767,14,6,37.648145389078365,1.51,47.945900891509346,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9241,'2020-01-14T12:50:40.373Z',NULL,151,2,91.61302306843446,3.66,104.18875122563406,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9242,'2020-04-02T01:56:30.642Z',NULL,111,3,55.526746186906664,2.22,54.02828535652141,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9243,'2019-05-10T22:52:37.705Z',NULL,107,5,50.094887884945365,2,43.041334385337976,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9244,'2018-07-23T04:23:45.743Z',NULL,148,37,138.9817182254566,5.56,145.88773109344433,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9245,'2019-05-17T12:08:10.585Z',NULL,180,4,68.32408657333919,2.73,76.87938256298395,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9246,'2019-06-11T20:47:15.937Z',NULL,188,6,33.87738254731509,1.36,30.95310519187274,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9247,'2019-11-09T02:28:06.653Z',NULL,119,3,43.43814329652384,1.74,47.67023277741262,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9248,'2019-11-12T09:39:11.568Z',NULL,99,4,67.83486485383094,2.71,96.4196102090812,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9249,'2019-08-23T03:46:46.617Z',2.9399583841151644,166,8,38.30449564120193,1.53,27.494855835832677,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9250,'2020-01-08T12:34:48.242Z',2.9399583841151644,184,2,116.09741230191975,4.64,155.69399573876606,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9251,'2019-06-12T08:44:58.438Z',NULL,182,4,84.48940370476112,3.38,62.690590170304276,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9252,'2018-01-06T04:54:28.243Z',NULL,54,2,62.09360840402396,2.48,60.84968748444938,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9253,'2018-11-24T09:50:36.880Z',NULL,150,3,128.55415037577922,5.14,109.77988338977424,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9254,'2019-02-12T20:51:23.582Z',NULL,96,2,104.82144858590365,4.19,79.03175948596963,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9255,'2020-04-08T23:09:58.002Z',NULL,94,3,109.21864156655383,4.37,64.11938947075325,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9256,'2019-07-24T08:22:06.286Z',NULL,150,5,128.55415037577922,5.14,95.24255628993046,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9257,'2019-11-19T02:29:48.075Z',NULL,74,4,51.12804227386549,2.05,57.38689708975244,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9258,'2017-06-24T07:33:21.918Z',NULL,96,6,69.88096572393577,2.8,107.52369348599828,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9259,'2018-06-09T17:27:42.586Z',2.9399583841151644,106,6,52.723521442619514,2.11,31.07133001449906,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9260,'2019-01-14T23:16:16.525Z',NULL,22,2,32.136779940663494,1.29,33.34307394160486,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9261,'2018-07-17T09:32:18.280Z',NULL,149,6,69.15415037577924,2.77,96.00010476631316,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9262,'2018-08-15T05:55:52.798Z',NULL,61,6,23.537915510955656,0.94,23.993976991836924,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9263,'2018-03-24T11:25:27.515Z',NULL,82,1,60.89545738030947,2.44,92.11429931835451,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9264,'2019-08-10T07:07:35.444Z',NULL,195,8,109.78077396807234,4.39,133.41071045282592,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9265,'2019-11-10T15:38:28.138Z',NULL,87,4,117.25536340498041,4.69,126.72009981303252,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9266,'2018-10-24T16:33:52.491Z',NULL,148,5,138.9817182254566,5.56,125.19436875536762,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9267,'2019-01-22T07:49:13.893Z',7.439958384115164,120,1,83.5020135028928,3.34,109.95877952798295,1232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9268,'2018-02-06T09:13:42.267Z',NULL,83,2,81.87627832636537,4.91,84.29159087515612,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9269,'2019-09-16T20:08:02.696Z',NULL,186,5,98.9770008385166,5.94,100.46827533991085,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9270,'2017-07-27T11:03:55.720Z',NULL,133,5,45.654646865558064,2.74,44.949856316674236,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9271,'2017-11-12T17:37:31.311Z',NULL,180,3,45.549391048892794,2.73,30.210596880898738,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9272,'2019-12-30T04:17:36.722Z',NULL,42,2,38.00410713690931,2.28,48.134551845811245,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9273,'2017-06-21T04:19:17.322Z',NULL,118,7,38.418408731319154,2.31,24.107508207158997,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9274,'2018-08-11T00:36:53.783Z',NULL,60,7,29.80214751859149,1.79,47.79617981435203,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9275,'2018-05-27T15:42:36.340Z',NULL,191,5,128.5841852057933,7.72,195.4257016859955,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9276,'2017-09-03T22:53:00.226Z',NULL,49,4,87.61910559549149,5.26,113.80242284354024,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9277,'2020-01-15T21:15:00.748Z',NULL,135,2,45.80402317157342,2.75,52.94175531774689,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9278,'2019-01-19T00:26:55.474Z',NULL,191,2,128.5841852057933,7.72,159.70266912196783,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9279,'2019-06-27T06:24:56.773Z',NULL,97,8,112.41825444654248,6.75,76.06236976660982,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9280,'2017-03-28T00:39:36.377Z',NULL,10,1,31.78621880685793,1.91,25.684306386921335,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9281,'2018-05-02T11:25:43.037Z',NULL,28,5,68.12471180754113,4.09,53.2788591411159,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9282,'2019-05-31T19:39:14.077Z',NULL,159,6,35.53017445377361,2.13,49.208069370026436,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9283,'2019-06-06T04:18:21.236Z',4.093272647721562,88,7,105.41292031622555,6.32,64.83311783524618,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9284,'2018-08-27T11:06:01.000Z',4.093272647721562,35,7,71.53687730741436,4.29,76.8600730725214,1234); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9285,'2020-01-30T10:32:00.361Z',NULL,120,3,83.5020135028928,5.01,93.11127584099567,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9286,'2018-02-24T01:05:07.965Z',NULL,47,2,84.0766209826718,5.04,56.247922746960896,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9287,'2019-10-06T06:06:13.915Z',NULL,116,8,114.42485125407785,6.87,105.68522615566536,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9288,'2016-12-23T19:25:33.233Z',NULL,171,2,70.05110494330981,4.2,43.03068853427005,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9289,'2017-04-19T11:08:20.786Z',NULL,155,3,29.183828734551838,1.75,17.329736534089886,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9290,'2017-03-31T06:28:03.038Z',NULL,187,1,65.98466722567774,3.96,81.28731663050726,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9291,'2018-01-07T13:29:21.495Z',NULL,44,2,76.35255205175756,4.58,49.81128006768204,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9292,'2019-10-04T17:11:30.406Z',NULL,62,6,133.5202262591817,8.01,138.64285786313923,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9293,'2016-09-15T03:38:12.846Z',NULL,162,4,22.378598800110105,1.34,15.698534987805878,1236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9294,'2020-02-09T13:18:57.222Z',NULL,200,2,73.20395711799151,5.03,62.11433288230281,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9295,'2018-06-09T20:18:16.582Z',NULL,40,7,99.66240044231697,6.85,66.52394500164829,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9296,'2019-01-05T00:19:34.989Z',NULL,169,2,59.53172693453274,4.09,72.06502658128237,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9297,'2018-03-17T20:52:27.381Z',8.593272647721562,143,1,61.1983004605443,4.21,41.66001245596289,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9298,'2020-01-08T07:31:13.947Z',NULL,7,2,148.22900526552291,10.19,207.41920209251933,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9299,'2019-10-13T09:22:03.676Z',4.093272647721562,95,6,49.81864156655383,3.43,71.63027051356403,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9300,'2020-01-04T21:28:53.854Z',NULL,65,2,68.22769726470014,4.69,49.66385725248999,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9301,'2019-03-18T10:42:53.707Z',NULL,186,1,98.9770008385166,6.8,89.2019783150466,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9302,'2019-12-18T20:22:28.187Z',NULL,12,2,116.01427581618326,7.98,147.23126720173184,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9303,'2018-04-25T15:41:43.816Z',NULL,52,2,103.67587240151535,7.13,117.92699536863415,1237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9304,'2019-05-20T22:39:33.779Z',6.599869694423705,69,4,73.38772304360626,4.77,110.51419589911283,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9305,'2017-12-30T14:56:30.553Z',NULL,13,2,75.0861692740371,4.88,94.04678565096158,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9306,'2017-06-30T21:48:10.460Z',NULL,175,5,78.21653962235106,5.08,118.1739561962991,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9307,'2016-09-27T14:38:02.695Z',NULL,151,4,61.07534871228964,3.97,44.364747897146195,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9308,'2018-05-18T03:15:15.705Z',NULL,76,5,63.82421061366486,4.15,70.73494553997696,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9309,'2019-05-09T20:41:35.176Z',NULL,47,5,84.0766209826718,5.46,58.87666779846407,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9310,'2018-12-27T12:03:25.015Z',NULL,197,2,70.14610686710009,4.56,73.92647591611893,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9311,'2019-12-30T15:23:37.912Z',NULL,157,2,139.8942352373801,9.09,151.61254821412805,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9312,'2017-08-24T01:33:42.377Z',NULL,96,4,69.88096572393577,4.54,107.04020550628746,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9313,'2018-07-03T12:35:37.699Z',NULL,150,4,128.55415037577922,8.36,182.57828563915086,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9314,'2019-07-18T06:39:59.118Z',NULL,7,5,148.22900526552291,9.63,127.63333931918713,1238); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9315,'2020-01-05T18:02:10.472Z',NULL,69,2,73.38772304360626,5.5,54.28272173395689,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9316,'2018-07-02T18:28:59.774Z',NULL,129,4,148.1672972165937,11.11,171.69097555189134,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9317,'2018-07-11T10:48:47.085Z',NULL,28,4,68.12471180754113,5.11,97.8055405315537,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9318,'2017-06-11T00:47:32.566Z',NULL,52,7,69.1172482676769,5.18,86.47948792430235,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9319,'2019-09-25T16:48:35.476Z',NULL,163,5,33.56789820016516,2.52,25.530592213976572,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9320,'2019-06-14T00:40:37.104Z',2.099869694423705,92,7,124.89242686579996,9.37,134.02729404988628,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9321,'2018-03-01T06:40:31.813Z',NULL,64,1,143.4221774571866,10.76,229.99275846563947,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9322,'2017-12-05T16:46:13.609Z',NULL,153,2,44.532615427854914,3.34,55.44877242928733,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9323,'2019-10-07T19:54:11.897Z',NULL,112,5,41.329386510090345,3.1,42.09926406637858,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9324,'2019-02-02T06:23:43.118Z',NULL,121,2,40.44528328808107,3.03,57.342100530330185,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9325,'2016-07-30T14:46:43.537Z',NULL,51,5,50.433725012700116,3.78,73.42850650284747,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9326,'2020-02-09T09:53:27.589Z',6.599869694423705,69,1,73.38772304360626,5.5,57.32019262919533,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9327,'2017-12-03T18:00:10.345Z',NULL,54,2,41.395738936015974,3.1,45.34886863011878,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9328,'2020-04-09T20:50:27.260Z',NULL,87,3,117.25536340498041,8.79,154.55444033432917,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9329,'2019-11-21T16:48:51.098Z',NULL,145,2,61.1983004605443,4.59,39.316034066218386,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9330,'2017-11-04T01:22:00.058Z',NULL,172,2,81.57679953529707,6.12,130.8798713256299,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9331,'2020-01-27T08:19:52.816Z',NULL,60,2,29.80214751859149,2.24,21.651037292388065,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9332,'2018-07-26T13:25:07.972Z',NULL,113,5,110.47725376186015,8.29,88.36172153729102,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9333,'2019-08-28T15:58:04.451Z',NULL,74,7,51.12804227386549,3.83,31.53821924267797,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9334,'2020-01-16T20:20:51.618Z',NULL,115,2,77.91196471862148,5.84,71.77239327180276,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9335,'2017-07-14T13:37:16.002Z',NULL,161,5,31.727470408648482,2.38,33.531551151422924,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9336,'2018-03-13T00:09:33.840Z',NULL,160,1,47.59120561297272,3.57,45.96219906119255,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9337,'2017-11-18T16:23:29.338Z',NULL,81,4,29.288656154807867,2.2,23.85520798716058,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9338,'2020-02-09T15:20:06.469Z',NULL,101,2,139.82488066180403,10.49,188.7580967609454,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9339,'2020-04-17T19:03:12.832Z',NULL,195,3,109.78077396807234,8.23,177.11459572032544,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9340,'2019-10-14T18:31:04.907Z',NULL,68,5,115.24343882309758,8.64,146.10183865706958,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9341,'2017-09-15T20:40:48.566Z',NULL,101,6,93.21658710786936,6.99,95.04259543344963,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9342,'2019-12-12T21:13:10.279Z',NULL,132,2,127.88197029833711,9.59,141.99714983426855,1240); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9343,'2018-11-09T10:04:09.926Z',NULL,60,4,29.80214751859149,1.94,44.479761601568654,1241); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9344,'2018-04-12T15:22:48.697Z',NULL,183,3,56.697412301919755,3.69,91.95348878044094,1241); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9345,'2018-12-29T03:39:39.537Z',NULL,191,1,128.5841852057933,8.36,101.10196854927793,1241); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9346,'2018-04-18T00:19:29.323Z',NULL,60,2,29.80214751859149,1.94,24.14072812657528,1241); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9347,'2018-09-03T08:32:36.983Z',NULL,105,5,52.723521442619514,3.43,59.33745118018479,1241); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9348,'2016-12-14T13:22:29.221Z',NULL,9,2,58.31312098526137,2.92,91.43858288262847,1242); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9349,'2019-03-29T06:20:34.225Z',NULL,61,1,23.537915510955656,1.18,36.22614048096185,1242); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9350,'2018-12-29T08:37:02.764Z',NULL,187,2,98.9770008385166,4.95,146.60478902668763,1242); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9351,'2017-09-02T11:18:15.744Z',NULL,16,3,44.07353303251545,2.2,42.687183255228426,1242); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9352,'2017-03-18T11:03:45.369Z',NULL,189,1,62.18492169821006,4.66,47.15196926446593,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9353,'2017-12-28T12:31:13.843Z',NULL,143,2,40.7988669736962,3.06,44.94410939913058,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9354,'2017-06-30T11:20:56.715Z',NULL,39,6,76.38772120188973,5.73,116.96138010953517,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9355,'2018-03-22T18:13:43.104Z',NULL,99,1,67.83486485383094,5.09,44.72914140654714,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9356,'2018-02-16T07:59:55.298Z',NULL,93,2,49.81864156655383,3.74,52.861019656655294,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9357,'2016-10-07T07:02:11.532Z',NULL,109,7,79.36660712128732,5.95,97.8895730200368,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9358,'2019-05-30T23:34:23.630Z',NULL,10,6,47.6793282102869,3.58,55.31540188424511,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9359,'2019-08-18T02:30:49.841Z',9.970767008799905,53,10,44.27587240151534,3.32,45.429641607694755,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9360,'2019-12-15T22:09:08.525Z',NULL,50,3,53.64019616819762,4.02,74.56775969137384,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9361,'2017-06-06T08:19:44.396Z',NULL,63,8,89.0134841727878,6.68,55.73924091569148,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9362,'2019-03-20T06:37:16.576Z',NULL,130,1,75.02573869315137,5.63,120.76197758638138,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9363,'2016-10-12T04:30:39.130Z',NULL,156,5,20.41053609936413,1.53,32.40542372917403,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9364,'2019-10-24T18:38:21.838Z',NULL,11,70,132.45679913492563,9.93,115.34101286653724,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9365,'2017-05-10T12:16:33.401Z',NULL,85,5,36.6006982295235,2.75,52.77767766887744,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9366,'2019-08-16T06:28:00.307Z',NULL,22,7,32.136779940663494,2.41,33.393918774896726,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9367,'2017-04-01T06:49:42.298Z',NULL,31,4,70.43564311419016,5.28,92.06519376752468,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9368,'2018-06-18T12:57:04.038Z',NULL,200,9,73.20395711799151,5.49,103.40364739443837,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9369,'2019-04-21T09:50:11.943Z',NULL,162,4,33.56789820016516,2.52,55.50213336362242,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9370,'2017-04-25T05:56:20.281Z',NULL,179,4,45.549391048892794,3.42,57.625956113095675,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9371,'2018-05-27T04:32:09.345Z',NULL,152,5,48.89568729900663,3.67,48.74096432422065,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9372,'2017-09-09T18:29:43.188Z',NULL,122,7,66.56352219205405,4.99,99.7915483091032,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9373,'2020-02-05T16:00:52.365Z',NULL,126,2,125.24398120308456,9.39,95.56580454738528,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9374,'2017-01-12T17:26:52.130Z',NULL,98,3,74.94550296436165,5.62,120.9347363024235,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9375,'2019-02-21T10:31:15.014Z',NULL,81,2,43.9329842322118,3.29,39.44860469064995,1243); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9376,'2016-09-22T19:13:48.832Z',NULL,163,6,22.378598800110105,1.4,16.86103790797619,1244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9377,'2016-08-09T00:59:54.965Z',NULL,55,7,63.84752383956291,3.99,92.88568494389025,1244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9378,'2019-05-26T13:13:46.084Z',NULL,54,5,62.09360840402396,3.88,89.89146722512405,1244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9379,'2017-08-30T19:39:17.255Z',NULL,187,10,65.98466722567774,4.12,55.017880693301755,1244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9380,'2017-03-21T15:51:52.965Z',NULL,53,1,29.517248267676894,1.84,35.663082427556176,1244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9381,'2020-02-22T02:33:24.705Z',NULL,37,2,80.10774204020768,4.81,130.55561788381715,1245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9382,'2018-07-29T10:01:14.005Z',NULL,25,6,68.62263967182464,4.12,95.27551531204463,1245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9383,'2019-07-19T16:03:30.988Z',NULL,3,4,53.08311732230858,3.18,70.44665550448136,1245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9384,'2017-07-15T18:15:45.543Z',NULL,89,3,42.47974183693326,2.76,60.19524104881916,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9385,'2017-12-04T01:43:07.890Z',NULL,125,1,53.59799471993963,3.48,75.84869712896493,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9386,'2019-10-19T22:53:07.636Z',NULL,29,31,123.57448218067185,8.03,191.84025515643083,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9387,'2020-04-04T02:57:34.032Z',NULL,193,2,50.38077396807232,3.27,54.39489302280188,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9388,'2019-06-26T08:59:43.947Z',6.538291576328883,2,5,105.11984419607644,6.83,94.47055720014174,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9389,'2018-04-08T14:52:20.335Z',NULL,132,3,127.88197029833711,8.31,178.12006782684833,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9390,'2020-01-13T12:11:04.260Z',NULL,160,2,47.59120561297272,3.09,77.82593050685206,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9391,'2019-02-05T11:59:21.144Z',NULL,170,1,105.07665741496471,6.83,155.80963818013547,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9392,'2019-06-21T14:34:12.102Z',NULL,76,69,63.82421061366486,4.15,53.83835606687928,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9393,'2018-04-09T20:53:55.380Z',NULL,92,2,124.89242686579996,8.12,158.75816192012144,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9394,'2019-01-23T14:35:09.722Z',NULL,9,2,87.46968147789205,5.69,84.66903373400206,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9395,'2020-03-31T21:13:26.231Z',NULL,196,1,70.14610686710009,4.56,67.4031801717619,1246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9396,'2017-06-06T00:58:28.371Z',NULL,115,5,51.94130981241432,3.12,38.76104532072413,1247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9397,'2018-07-22T08:20:55.775Z',NULL,172,4,122.3651993029456,7.34,88.12934116090834,1247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9398,'2018-05-10T18:11:56.379Z',NULL,107,4,50.094887884945365,3.01,31.450084941250005,1247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9399,'2017-03-06T07:08:16.169Z',NULL,31,1,70.43564311419016,4.23,61.76389923370101,1247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9400,'2018-10-23T18:57:24.870Z',NULL,165,6,38.30449564120193,2.3,42.93493720457849,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9401,'2018-06-25T16:45:11.896Z',NULL,64,5,143.4221774571866,8.61,89.22401989364113,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9402,'2019-10-12T02:39:42.137Z',NULL,76,3,63.82421061366486,3.83,97.52036810222002,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9403,'2018-12-02T13:58:56.017Z',NULL,123,1,110.93145648834248,6.66,81.68638875121488,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9404,'2019-01-13T11:48:10.096Z',6.538291576328883,75,1,125.81276373452337,7.55,104.28467201793313,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9405,'2020-01-28T14:49:08.966Z',NULL,48,2,123.20884248534108,7.39,169.42937185211707,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9406,'2019-09-24T07:50:46.934Z',NULL,29,4,123.57448218067185,7.41,186.8086964571142,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9407,'2016-06-16T08:15:40.022Z',NULL,33,5,31.829909130640935,1.91,30.54753728358835,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9408,'2019-08-15T10:21:46.949Z',NULL,11,8,132.45679913492563,7.95,125.82352439793829,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9409,'2019-09-26T00:02:03.372Z',2.0382915763288834,167,5,97.70449564120193,5.86,148.42413027680414,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9410,'2017-09-14T12:18:10.641Z',NULL,189,5,62.18492169821006,3.73,76.398077690588,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9411,'2018-05-25T08:54:44.224Z',NULL,73,5,71.6287722595695,4.3,58.520643658806556,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9412,'2018-09-15T00:23:34.963Z',NULL,124,6,110.93145648834248,6.66,151.27152896759713,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9413,'2019-11-04T02:48:47.409Z',NULL,104,3,106.44215255778118,6.39,120.51604517389276,1248); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9414,'2017-06-10T12:25:48.692Z',NULL,134,7,28.328223666657742,1.77,17.131763857586797,1249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9415,'2020-04-18T02:47:30.027Z',3.828160252430738,88,3,105.41292031622555,6.59,118.76169147980997,1249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9416,'2019-01-30T06:33:29.673Z',3.828160252430738,4,2,110.98767151282252,6.94,69.95646860100284,1249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9417,'2020-01-29T19:26:15.921Z',NULL,190,3,128.5841852057933,8.04,176.99077926608325,1249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9418,'2019-11-09T00:39:07.738Z',NULL,12,3,116.01427581618326,7.25,120.78440906505925,1249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9419,'2017-01-19T12:53:25.767Z',NULL,79,2,27.74461152277315,1.73,20.922257681247313,1249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9420,'2018-10-17T10:35:00.243Z',NULL,155,6,43.77574310182776,2.52,51.60207000064953,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9421,'2017-12-09T07:06:35.718Z',8.328160252430738,145,2,40.7988669736962,2.35,36.757366220451445,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9422,'2018-10-29T01:29:17.800Z',8.328160252430738,44,4,76.35255205175756,4.39,50.062375213577035,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9423,'2017-01-08T10:39:56.522Z',NULL,105,2,35.149014295079674,2.02,29.125190079397942,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9424,'2017-04-19T12:35:05.045Z',NULL,157,3,93.26282349158673,5.36,151.48981817881952,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9425,'2018-03-28T14:30:18.993Z',NULL,142,1,70.34853057210945,4.05,51.06041809303795,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9426,'2017-10-18T09:59:30.047Z',NULL,109,6,79.36660712128732,4.56,89.70167568830094,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9427,'2017-01-20T05:28:22.887Z',NULL,182,3,56.326269136507406,3.24,50.80055603963194,1250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9428,'2017-01-26T09:48:22.946Z',NULL,148,3,92.65447881697106,5.56,142.38197627513,1252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9429,'2020-02-27T06:27:50.574Z',NULL,152,2,48.89568729900663,2.93,35.63683299979606,1252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9430,'2019-03-20T02:25:01.554Z',NULL,3,1,53.08311732230858,3.18,49.290291974694355,1252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9431,'2017-03-24T19:51:55.368Z',NULL,136,1,70.13601544771562,4.21,73.33717763708191,1252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9432,'2019-10-22T21:53:54.947Z',NULL,149,6,69.15415037577924,4.15,112.28534945501032,1252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9433,'2019-09-27T19:28:44.992Z',NULL,18,5,81.90307121097293,4.91,51.068431908015874,1252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9434,'2017-10-30T15:54:51.529Z',NULL,170,5,70.05110494330981,4.55,91.38095254786626,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9435,'2017-01-04T09:59:34.860Z',NULL,186,2,65.98466722567774,4.29,83.86123286999171,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9436,'2020-04-08T23:09:37.545Z',NULL,199,3,115.4300138092855,7.5,168.17339235109245,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9437,'2017-12-25T14:24:04.824Z',NULL,55,2,63.84752383956291,4.15,67.45145521190115,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9438,'2018-12-06T01:30:21.294Z',NULL,19,2,64.00675097561322,4.16,86.1504859176734,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9439,'2017-10-29T16:02:40.675Z',NULL,6,6,64.95747510229587,4.22,48.05014746414887,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9440,'2019-07-13T19:44:42.546Z',NULL,57,6,122.4223933583994,7.96,137.34325297851134,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9441,'2017-01-30T16:13:30.067Z',6.89456095844175,194,2,33.587182645381546,2.18,26.051555837105823,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9442,'2016-10-22T09:27:48.698Z',NULL,142,5,46.8990203814063,3.05,70.69440930758836,1253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9443,'2018-01-03T13:25:41.512Z',NULL,80,2,54.91325681036414,0,38.483831507234186,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9444,'2017-05-25T15:31:32.827Z',NULL,30,3,42.7829881204479,0,32.76067891812516,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9445,'2018-06-19T20:02:53.098Z',NULL,5,4,124.1176465275534,0,170.14717413472775,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9446,'2017-10-05T03:36:50.949Z',NULL,120,5,55.668009001928525,0,46.45414876806927,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9447,'2020-03-30T20:23:45.336Z',NULL,18,1,81.90307121097293,0,111.09827275885642,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9448,'2019-02-04T03:39:33.932Z',NULL,51,1,75.65058751905018,0,54.36611099053832,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9449,'2017-09-19T09:46:47.548Z',NULL,132,3,85.25464686555807,0,120.7707904036732,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9450,'2018-08-17T13:06:22.050Z',NULL,127,6,134.48016314504417,0,119.109198863165,1254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9451,'2018-03-20T23:06:51.572Z',NULL,99,1,67.83486485383094,2.71,102.87737790321547,1258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9452,'2019-02-10T00:18:33.970Z',NULL,164,2,92.96789820016517,3.72,104.4096135993241,1258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9453,'2018-10-09T12:49:39.446Z',NULL,91,6,65.09432810381134,2.6,65.6852521481668,1258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9454,'2018-02-01T06:45:48.940Z',1.3326813139494038,128,2,75.08016314504417,3,112.51190303577337,1258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9455,'2019-08-12T23:29:53.481Z',NULL,26,5,68.12471180754113,2.72,81.09264965899057,1258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9456,'2016-10-06T09:36:21.006Z',1.3326813139494038,126,3,83.49598746872304,5.84,59.25795467448527,1259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9457,'2020-01-03T04:58:55.181Z',NULL,16,1,66.11029954877317,4.63,66.48299009698077,1259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9458,'2019-04-11T17:56:34.266Z',NULL,145,1,61.1983004605443,3.98,37.098461591631505,1260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9459,'2018-08-04T18:36:29.572Z',NULL,48,5,123.20884248534108,7.7,144.593601863936,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9460,'2017-08-22T13:47:16.906Z',NULL,9,7,58.31312098526137,3.64,94.54939799595525,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9461,'2018-08-25T02:29:28.264Z',NULL,58,7,78.14578007078882,4.88,128.30821428417792,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9462,'2017-08-19T14:38:38.069Z',NULL,65,5,45.4851315098001,2.84,63.419851079851604,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9463,'2017-02-15T23:24:47.209Z',NULL,7,1,98.81933684368194,6.18,115.92362978740233,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9464,'2018-12-07T02:16:35.984Z',NULL,128,1,75.08016314504417,4.69,54.97229987398856,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9465,'2018-10-09T18:20:45.143Z',NULL,60,6,29.80214751859149,1.86,27.874322323458724,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9466,'2017-09-09T17:49:16.871Z',NULL,20,5,24.884330833643833,1.56,18.022755853057937,1262); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9467,'2018-01-09T20:25:56.271Z',NULL,28,1,68.12471180754113,4.26,43.758741938176776,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9468,'2017-04-02T09:13:24.571Z',NULL,78,1,27.74461152277315,1.73,27.216310938556763,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9469,'2018-05-17T12:15:11.384Z',NULL,127,2,134.48016314504417,8.41,79.35345122686495,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9470,'2017-01-20T08:21:01.592Z',1.3326813139494038,64,1,95.61478497145774,5.98,75.33765036070412,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9471,'2018-11-23T19:25:34.959Z',NULL,32,2,107.1448636959614,6.7,111.31825364005991,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9472,'2017-12-30T23:24:42.496Z',NULL,126,1,83.49598746872304,5.22,117.21527215274317,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9473,'2017-03-18T16:10:17.025Z',NULL,6,0,64.95747510229587,4.06,52.4505699362479,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9474,'2017-08-22T19:19:43.223Z',NULL,38,3,44.04624855892918,2.75,34.472766883211406,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9475,'2019-07-17T04:29:21.650Z',NULL,156,4,30.615804149046195,1.91,41.58179568603113,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9476,'2018-11-24T19:42:24.959Z',NULL,50,2,53.64019616819762,3.35,77.14093402678955,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9477,'2017-06-18T02:17:56.030Z',NULL,78,5,27.74461152277315,1.73,34.16367394203044,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9478,'2019-06-19T09:20:47.626Z',NULL,165,5,38.30449564120193,2.39,44.00793709419443,1263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9479,'2018-05-26T15:24:03.478Z',NULL,148,2,138.9817182254566,4.03,149.08572879179385,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9480,'2020-03-08T09:04:38.838Z',NULL,113,1,110.47725376186015,3.2,126.24564604556731,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9481,'2019-12-13T00:17:48.154Z',NULL,25,2,68.62263967182464,1.99,65.76447643379235,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9482,'2019-03-07T03:01:02.682Z',NULL,62,1,133.5202262591817,3.87,196.7854430890121,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9483,'2019-12-20T17:48:12.342Z',NULL,62,2,133.5202262591817,3.87,203.9155129305176,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9484,'2020-03-21T07:27:26.960Z',NULL,166,1,38.30449564120193,1.11,40.80926530085357,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9485,'2016-09-04T10:11:27.986Z',NULL,194,5,33.587182645381546,0.97,24.151297840386555,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9486,'2019-08-15T22:10:59.449Z',NULL,149,5,69.15415037577924,2.01,43.821262280104406,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9487,'2018-10-18T08:49:42.855Z',7.870428490248269,128,6,75.08016314504417,2.18,105.36893621601442,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9488,'2020-02-06T19:42:20.765Z',NULL,152,2,48.89568729900663,1.42,45.74094452766236,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9489,'2017-10-21T05:09:21.656Z',NULL,130,4,50.01715912876758,1.45,33.571294875147174,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9490,'2018-01-07T12:39:46.759Z',NULL,100,2,67.83486485383094,1.97,71.44768741598644,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9491,'2020-02-10T03:08:25.759Z',NULL,130,2,75.02573869315137,2.18,49.380586677397815,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9492,'2019-03-16T09:44:54.023Z',7.870428490248269,3,1,53.08311732230858,1.54,76.13228559352011,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9493,'2017-07-22T10:46:45.225Z',NULL,196,6,46.76407124473339,1.36,58.72359043915586,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9494,'2019-03-15T10:05:55.051Z',NULL,98,1,112.41825444654248,3.26,146.88116590424855,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9495,'2020-01-03T18:00:47.640Z',NULL,40,2,99.66240044231697,2.89,124.51490114828547,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9496,'2019-03-03T16:01:06.295Z',NULL,17,1,79.93608046792765,2.32,71.15495108302504,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9497,'2019-04-03T09:38:15.685Z',NULL,19,2,64.00675097561322,1.86,46.994215606128876,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9498,'2019-05-27T17:52:28.746Z',7.870428490248269,149,3,69.15415037577924,2.01,91.0145721128312,1264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9499,'2019-01-19T01:22:38.153Z',NULL,119,1,43.43814329652384,2.06,61.8264041063971,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9500,'2019-09-01T12:41:56.789Z',NULL,86,4,92.31436670850246,4.38,103.6032596268656,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9501,'2019-03-21T08:41:53.785Z',NULL,99,1,67.83486485383094,3.22,74.57783586703107,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9502,'2019-09-17T22:29:56.267Z',NULL,125,5,80.39699207990944,3.82,81.550800539291,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9503,'2018-03-10T15:41:47.003Z',NULL,38,1,66.06937283839378,3.14,45.002515961941114,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9504,'2019-07-05T01:20:04.512Z',NULL,26,5,68.12471180754113,3.24,97.75946463672663,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9505,'2018-07-06T14:46:12.920Z',NULL,25,6,68.62263967182464,3.26,75.99211749243165,1265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9506,'2019-06-21T01:41:03.675Z',NULL,55,6,95.77128575934437,0,93.59546310070667,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9507,'2017-02-24T11:08:14.534Z',7.870428490248269,176,1,38.616539622351056,0,25.931378802214624,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9508,'2018-11-27T16:13:16.582Z',NULL,156,2,30.615804149046195,0,42.46487076014956,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9509,'2017-12-03T15:24:39.228Z',NULL,16,1,44.07353303251545,0,63.32038830265887,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9510,'2020-03-30T20:21:02.362Z',NULL,2,1,105.11984419607644,0,134.35617466826528,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9511,'2018-02-02T00:53:59.984Z',NULL,46,2,118.0495173798411,0,171.01930047710806,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9512,'2018-01-17T00:39:16.253Z',NULL,114,1,77.91196471862148,0,98.6750216599871,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9513,'2017-10-29T13:17:49.192Z',2.321253870187226,95,3,33.212427711035886,0,41.57605514692486,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9514,'2019-04-30T13:15:24.509Z',NULL,35,2,71.53687730741436,0,46.107396417050026,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9515,'2018-08-07T17:26:20.066Z',NULL,200,6,73.20395711799151,0,76.08572898788553,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9516,'2018-08-12T18:54:01.003Z',NULL,129,6,148.1672972165937,0,222.55963135096232,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9517,'2017-12-14T05:41:43.292Z',NULL,177,2,85.87953212963993,0,74.62960175667186,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9518,'2019-03-12T00:16:31.269Z',NULL,29,1,123.57448218067185,0,69.01268232914475,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9519,'2018-09-07T00:09:34.142Z',NULL,61,3,23.537915510955656,0,18.1700213541794,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9520,'2018-06-02T14:13:50.113Z',NULL,107,4,50.094887884945365,0,52.35900963685247,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9521,'2019-11-28T16:39:19.037Z',NULL,149,3,69.15415037577924,0,57.42503034257435,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9522,'2019-06-24T07:07:20.462Z',NULL,168,7,118.93172693453273,0,122.37658573789403,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9523,'2019-04-20T06:24:38.547Z',NULL,187,3,98.9770008385166,0,127.73224461058157,1266); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9524,'2020-02-29T23:39:02.611Z',NULL,166,1,38.30449564120193,0,48.30306032604672,1267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9525,'2018-02-26T21:06:44.984Z',6.821253870187226,116,1,114.42485125407785,0,173.38763415997778,1267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9526,'2020-04-08T16:32:17.472Z',NULL,121,3,40.44528328808107,1.62,32.96290596341003,1268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9527,'2018-08-23T14:01:45.294Z',NULL,120,8,83.5020135028928,3.34,51.910308741920254,1268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9528,'2018-06-19T04:34:16.772Z',NULL,184,5,116.09741230191975,4.64,93.71644214155572,1268); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9529,'2017-07-15T15:25:51.851Z',NULL,174,3,74.40953929454055,4.46,62.85890744983535,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9530,'2017-11-23T00:18:59.461Z',2.321253870187226,178,2,78.21975500247076,4.69,108.87825221303599,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9531,'2016-12-13T16:18:12.919Z',NULL,146,1,84.03151414144409,5.04,64.49866836552164,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9532,'2017-01-28T12:27:33.479Z',NULL,126,2,83.49598746872304,5.01,50.96252733771796,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9533,'2018-04-20T03:45:27.992Z',NULL,94,3,109.21864156655383,6.55,98.42227361392248,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9534,'2017-11-16T21:19:41.199Z',NULL,3,3,35.388744881539054,2.12,27.867325827499,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9535,'2018-02-24T01:03:33.857Z',NULL,174,2,111.61430894181083,6.7,173.81136768450983,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9536,'2018-11-08T00:40:27.479Z',6.821253870187226,197,3,70.14610686710009,4.21,75.22184286429774,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9537,'2018-05-24T12:52:33.410Z',NULL,2,4,105.11984419607644,6.31,83.91114033184552,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9538,'2018-02-28T18:13:55.781Z',NULL,164,1,92.96789820016517,5.58,130.39395198820444,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9539,'2020-04-08T17:08:12.318Z',NULL,129,2,148.1672972165937,8.89,205.836166145756,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9540,'2018-02-20T04:01:13.073Z',NULL,180,1,68.32408657333919,4.1,49.11360911381965,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9541,'2018-08-15T06:57:47.401Z',NULL,42,7,38.00410713690931,2.28,23.035170901255942,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9542,'2019-12-15T17:22:55.280Z',NULL,142,2,70.34853057210945,4.22,96.22612175722796,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9543,'2018-06-03T05:28:08.041Z',NULL,61,5,23.537915510955656,1.41,26.024868708840966,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9544,'2017-05-22T03:49:59.396Z',8.220913713997705,82,3,40.59697158687298,2.44,41.11768685978788,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9545,'2017-12-31T18:00:52.192Z',NULL,167,1,65.13633042746795,3.91,38.37254632456397,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9546,'2017-12-17T19:41:01.914Z',NULL,187,1,65.98466722567774,3.96,75.77517739659842,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9547,'2019-09-06T23:54:04.211Z',NULL,150,4,128.55415037577922,7.71,164.30852449531685,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9548,'2019-03-30T10:29:09.270Z',3.720913713997704,157,1,139.8942352373801,8.39,94.6697465784093,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9549,'2018-01-25T10:48:14.068Z',NULL,120,2,83.5020135028928,5.01,112.278752084884,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9550,'2016-05-31T12:58:08.106Z',NULL,13,4,75.0861692740371,4.51,71.16770210939363,1269); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9551,'2019-11-28T14:40:37.083Z',NULL,67,2,41.24480890795779,2.89,44.33086665446082,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9552,'2020-03-10T21:59:24.378Z',NULL,177,1,128.8192981944599,9.02,87.46761921849297,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9553,'2019-09-07T06:04:47.156Z',NULL,14,4,37.648145389078365,2.64,59.6266703498392,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9554,'2018-05-23T00:52:23.389Z',NULL,95,4,49.81864156655383,3.49,77.98474971048873,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9555,'2019-05-25T19:00:29.185Z',3.720913713997704,123,6,110.93145648834248,7.77,181.21929781642402,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9556,'2018-11-05T22:22:12.596Z',NULL,95,3,49.81864156655383,3.49,58.47174602733926,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9557,'2020-03-08T09:34:26.013Z',8.220913713997705,37,1,80.10774204020768,5.61,107.19552792440086,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9558,'2017-10-28T18:30:39.050Z',NULL,73,7,47.752514839713,3.34,30.67181981983337,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9559,'2019-02-08T11:24:47.590Z',NULL,127,2,134.48016314504417,9.41,101.9483632375415,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9560,'2017-01-30T23:34:00.588Z',3.720913713997704,30,3,42.7829881204479,2.99,39.2773337165656,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9561,'2018-05-26T01:12:31.977Z',NULL,196,6,70.14610686710009,4.91,79.25132250917544,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9562,'2019-09-15T18:08:22.747Z',NULL,81,6,43.9329842322118,3.08,35.8064998836322,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9563,'2019-05-01T08:16:26.365Z',NULL,17,4,79.93608046792765,5.6,70.59399971093391,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9564,'2020-02-21T16:52:52.697Z',3.720913713997704,185,2,39.57700083851661,2.77,41.486176212642526,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9565,'2019-05-10T21:47:54.672Z',3.720913713997704,114,4,77.91196471862148,5.45,84.22473378611582,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9566,'2019-05-26T17:39:28.452Z',NULL,5,3,124.1176465275534,8.69,159.4063168606579,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9567,'2019-06-13T13:16:49.693Z',NULL,7,5,148.22900526552291,10.38,144.03843420956275,1270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9568,'2017-05-05T06:48:58.737Z',NULL,33,4,31.829909130640935,1.75,36.30734770912045,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9569,'2019-01-17T06:31:21.010Z',3.4147149814024216,152,2,48.89568729900663,2.69,75.91771619835424,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9570,'2018-05-11T14:48:29.798Z',NULL,165,3,38.30449564120193,2.11,27.100729472647124,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9571,'2018-10-09T20:32:50.962Z',NULL,39,4,114.58158180283459,6.3,91.31731752138886,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9572,'2016-08-24T06:19:44.104Z',3.4147149814024216,182,7,56.326269136507406,3.1,40.62328965368807,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9573,'2019-12-17T00:06:07.471Z',NULL,31,2,105.65346467128523,5.81,83.69732847491719,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9574,'2019-03-07T07:42:43.294Z',NULL,175,1,117.3248094335266,6.45,128.81250887678962,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9575,'2017-06-12T03:03:50.823Z',NULL,56,6,24.24752383956291,1.33,38.782945387032946,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9576,'2018-06-20T19:58:39.056Z',NULL,48,4,123.20884248534108,6.78,85.01082389634486,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9577,'2018-10-13T21:23:21.146Z',NULL,25,6,68.62263967182464,3.77,56.140215102773425,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9578,'2018-03-01T03:55:54.660Z',NULL,73,1,71.6287722595695,3.94,50.681223601446376,1271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9579,'2017-09-02T05:51:23.805Z',NULL,38,6,44.04624855892918,1.86,40.72227628685432,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9580,'2020-04-13T11:01:04.526Z',NULL,165,3,38.30449564120193,1.62,41.80649145592768,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9581,'2019-03-29T16:43:45.730Z',NULL,71,1,82.80381898788684,3.5,91.80711923901738,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9582,'2017-08-15T12:10:47.033Z',NULL,185,7,26.384667225677738,1.11,32.7041341680244,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9583,'2019-11-16T20:08:26.532Z',NULL,93,3,49.81864156655383,2.1,52.186996846505636,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9584,'2019-03-07T00:13:50.961Z',NULL,53,1,44.27587240151534,1.87,48.513997558097856,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9585,'2020-03-21T13:02:03.222Z',7.914714981402422,134,1,42.49233549998661,1.8,68.66562361381861,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9586,'2016-07-30T04:40:54.459Z',NULL,194,5,33.587182645381546,1.42,32.353702649338146,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9587,'2017-01-18T04:38:19.993Z',NULL,21,2,40.38334406304544,1.71,24.84326938784249,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9588,'2017-04-25T23:34:15.854Z',NULL,53,3,29.517248267676894,1.25,27.66381629126514,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9589,'2017-04-18T08:40:55.355Z',NULL,165,3,25.536330427467956,1.08,21.43818656299681,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9590,'2017-04-20T23:01:38.445Z',NULL,58,3,52.097186713859216,2.2,79.01651647533308,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9591,'2017-03-05T20:46:09.266Z',NULL,65,1,45.4851315098001,1.92,59.56903421290167,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9592,'2018-06-15T23:49:39.353Z',NULL,122,8,99.84528328808108,4.22,81.87012095818062,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9593,'2018-08-31T13:04:24.603Z',NULL,26,7,68.12471180754113,2.88,45.60798097381497,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9594,'2019-05-22T15:44:16.486Z',NULL,64,4,143.4221774571866,6.06,205.69969337164125,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9595,'2016-11-24T20:58:41.207Z',NULL,110,3,37.01783079127111,1.56,27.50527837458513,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9596,'2018-09-05T05:00:15.036Z',NULL,80,5,54.91325681036414,2.32,78.02495520150107,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9597,'2019-09-18T05:39:43.856Z',NULL,69,6,73.38772304360626,3.1,58.103842880919,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9598,'2019-04-21T01:26:10.740Z',NULL,70,4,57.493003808959784,2.43,34.52392627593678,1272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9599,'2018-09-12T00:02:30.251Z',5.237492853988311,56,4,36.37128575934436,2.55,58.22404451083456,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9600,'2018-01-15T08:44:58.346Z',NULL,137,1,67.77247956807186,4.74,110.13208484065719,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9601,'2017-09-01T23:24:23.611Z',NULL,189,3,62.18492169821006,4.35,87.71572326213177,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9602,'2018-12-15T17:13:44.510Z',NULL,123,1,110.93145648834248,7.77,158.22009974386768,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9603,'2018-10-12T04:50:41.122Z',5.237492853988311,50,5,53.64019616819762,3.75,60.78032168682908,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9604,'2018-03-16T01:03:51.030Z',NULL,50,1,53.64019616819762,3.75,48.09230712582175,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9605,'2017-11-01T01:58:41.678Z',NULL,140,3,44.53541698384588,3.12,71.89533161820734,1273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9606,'2019-08-01T00:13:09.952Z',NULL,138,6,113.95078476718615,7.98,112.87078621101965,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9607,'2018-10-12T23:00:49.727Z',NULL,22,4,32.136779940663494,2.25,32.031866710014285,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9608,'2019-09-12T01:20:05.775Z',NULL,149,3,69.15415037577924,4.84,90.53015488143546,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9609,'2016-09-26T13:28:09.858Z',NULL,80,5,36.60883787357609,2.56,25.22939637110362,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9610,'2018-09-16T00:36:29.615Z',NULL,121,5,40.44528328808107,2.83,43.251323571276075,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9611,'2017-10-11T20:12:42.239Z',NULL,171,4,70.05110494330981,4.9,87.45574365569462,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9612,'2020-04-18T02:47:07.011Z',NULL,118,2,57.627613096978735,4.03,35.828410212574774,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9613,'2017-11-05T17:37:49.628Z',NULL,142,2,46.8990203814063,3.28,77.08922867288422,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9614,'2019-05-17T22:06:21.568Z',0.7374928539883108,151,2,91.61302306843446,6.41,90.29359415013639,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9615,'2019-07-28T11:19:25.174Z',NULL,31,3,105.65346467128523,7.4,159.43082313063866,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9616,'2017-03-17T18:26:10.215Z',NULL,156,9,20.41053609936413,1.43,13.697829890393724,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9617,'2018-11-08T17:24:39.548Z',NULL,20,3,37.32649625046575,2.61,47.26834366171647,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9618,'2019-09-10T04:07:52.225Z',NULL,163,3,33.56789820016516,2.35,20.33106999091525,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9619,'2019-07-18T12:02:07.568Z',NULL,84,2,81.87627832636537,5.73,80.72290870854417,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9620,'2018-10-06T07:14:44.512Z',NULL,172,4,122.3651993029456,8.57,160.38807515949932,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9621,'2018-11-30T21:32:08.548Z',NULL,172,3,122.3651993029456,8.57,112.08273522750723,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9622,'2017-07-07T10:05:29.941Z',0.7374928539883108,90,3,82.07974183693327,5.75,135.37840228284176,1274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9623,'2020-01-26T05:09:29.064Z',NULL,6,1,97.43621265344382,6.33,59.44778059962208,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9624,'2018-01-31T18:47:38.600Z',NULL,25,1,68.62263967182464,4.46,95.759116952337,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9625,'2018-01-21T15:07:29.292Z',NULL,86,1,92.31436670850246,6,126.07565955280634,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9626,'2019-03-20T14:21:28.442Z',NULL,124,0,110.93145648834248,7.21,103.68592685266486,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9627,'2018-07-14T10:41:42.921Z',NULL,83,2,81.87627832636537,5.32,73.43880049376688,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9628,'2018-03-26T04:04:51.152Z',NULL,50,5,53.64019616819762,3.49,83.56203653401573,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9629,'2017-11-19T21:06:23.193Z',NULL,176,2,38.616539622351056,2.51,56.73255042633017,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9630,'2018-08-07T18:15:18.612Z',NULL,16,4,66.11029954877317,4.3,101.51521801378223,1275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9631,'2019-12-03T03:13:58.881Z',NULL,98,1,112.41825444654248,7.03,130.45159790705802,1276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9632,'2019-08-24T23:00:35.830Z',NULL,19,6,64.00675097561322,4,47.48994086460446,1276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9633,'2018-11-03T12:36:20.384Z',NULL,158,3,139.8942352373801,7.69,195.92567323687328,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9634,'2018-05-16T16:39:50.392Z',NULL,185,4,39.57700083851661,2.18,31.516305498204243,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9635,'2016-11-11T14:27:10.431Z',NULL,176,4,38.616539622351056,2.12,45.50327504178719,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9636,'2020-01-02T12:43:47.767Z',NULL,14,2,37.648145389078365,2.07,48.98344354202791,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9637,'2018-08-08T05:57:01.567Z',NULL,25,6,68.62263967182464,3.77,41.64498070590054,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9638,'2017-04-21T20:24:18.023Z',NULL,67,4,27.496539271971862,1.51,42.70977893150892,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9639,'2017-09-27T06:19:46.347Z',2.7765829091649,165,59,25.536330427467956,1.4,37.1674533789863,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9640,'2018-11-26T08:42:45.304Z',NULL,138,3,113.95078476718615,6.27,90.62773838343956,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9641,'2016-07-31T17:08:28.860Z',7.2765829091649,8,5,65.89215669329305,3.62,82.7708435585286,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9642,'2019-08-02T11:04:25.053Z',7.2765829091649,171,6,105.07665741496471,5.78,72.20743527902948,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9643,'2017-06-21T01:55:14.531Z',NULL,129,4,98.7781981443958,5.43,79.29305517490191,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9644,'2019-04-15T05:06:51.643Z',NULL,85,3,54.90104734428525,3.02,40.419277199244334,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9645,'2017-01-20T22:52:51.631Z',NULL,101,2,93.21658710786936,5.13,89.11598117994389,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9646,'2016-11-30T07:33:25.450Z',NULL,123,3,73.95430432556165,4.07,56.82657136367512,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9647,'2017-02-08T10:15:58.617Z',7.2765829091649,179,1,45.549391048892794,2.51,50.48165961775585,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9648,'2019-10-02T18:21:38.351Z',NULL,43,4,76.35255205175756,4.2,102.33641630641941,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9649,'2018-02-01T15:01:44.047Z',NULL,93,2,49.81864156655383,2.74,62.130861137244096,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9650,'2018-10-27T06:53:13.940Z',NULL,136,7,105.20402317157343,5.79,116.94297706884144,1280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9651,'2019-09-19T05:59:33.665Z',NULL,33,6,47.7448636959614,1.91,29.890245639664922,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9652,'2018-02-18T14:13:49.061Z',NULL,193,2,50.38077396807232,2.02,47.26194314435663,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9653,'2018-07-18T21:29:09.351Z',NULL,93,5,49.81864156655383,1.99,69.61974809323141,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9654,'2018-05-03T20:51:56.487Z',NULL,107,5,50.094887884945365,2,72.31286379487402,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9655,'2018-12-04T12:59:43.445Z',NULL,63,2,133.5202262591817,5.34,192.2631536965737,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9656,'2020-02-11T05:10:34.432Z',2.7765829091649,123,1,110.93145648834248,4.44,141.71958176653467,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9657,'2018-04-09T17:52:28.696Z',NULL,103,2,47.04215255778118,1.88,31.94178157425132,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9658,'2018-11-06T03:04:46.750Z',NULL,13,3,112.62925391105566,4.51,79.18609492391462,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9659,'2018-05-06T14:30:38.327Z',NULL,38,6,66.06937283839378,2.64,47.55318356621068,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9660,'2018-04-17T02:32:59.687Z',NULL,136,4,105.20402317157343,4.21,108.30651385333306,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9661,'2017-11-23T21:34:55.634Z',NULL,178,4,78.21975500247076,3.13,93.18014266609306,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9662,'2017-08-07T12:09:37.544Z',NULL,38,9,44.04624855892918,1.76,38.09818168504478,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9663,'2019-01-09T15:57:18.186Z',8.500303604532451,80,3,54.91325681036414,2.2,42.09001692333152,1281); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9664,'2019-02-27T19:13:01.177Z',NULL,180,2,68.32408657333919,4.44,85.93587748511202,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9665,'2017-10-02T20:17:59.240Z',8.500303604532451,156,4,20.41053609936413,1.33,20.990754347938214,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9666,'2018-03-10T09:18:06.540Z',NULL,180,1,68.32408657333919,4.44,60.65713925544972,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9667,'2017-09-20T15:29:00.671Z',NULL,41,4,42.33927237126308,2.75,67.00394126522777,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9668,'2017-10-10T15:27:25.651Z',NULL,146,4,84.03151414144409,5.46,133.11619503223412,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9669,'2019-08-11T00:36:13.199Z',NULL,8,5,98.83823503993958,6.42,124.54641148385298,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9670,'2019-06-17T20:22:34.794Z',8.500303604532451,112,5,41.329386510090345,2.69,52.070334360699476,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9671,'2019-08-03T16:49:14.728Z',NULL,142,5,70.34853057210945,4.57,41.281490166781175,1282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9672,'2019-03-13T18:55:24.140Z',NULL,58,1,78.14578007078882,5.47,73.7443280414021,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9673,'2018-05-17T05:34:21.083Z',NULL,52,5,103.67587240151535,7.26,143.42968332758457,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9674,'2018-05-28T18:10:53.072Z',NULL,57,5,122.4223933583994,8.57,132.6341200618853,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9675,'2018-08-16T14:27:03.266Z',NULL,186,5,98.9770008385166,6.93,97.2108093508498,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9676,'2019-10-25T17:37:59.229Z',8.500303604532451,129,4,148.1672972165937,10.37,126.76261304108098,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9677,'2018-11-24T12:01:57.477Z',NULL,96,3,104.82144858590365,7.34,73.64477033426343,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9678,'2020-03-16T01:22:05.662Z',NULL,76,1,63.82421061366486,4.47,58.28517857814215,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9679,'2019-08-04T05:08:49.430Z',4.000303604532451,140,5,66.80312547576881,4.68,61.74608401183746,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9680,'2019-09-29T22:07:34.455Z',NULL,75,5,125.81276373452337,8.81,138.58669477017946,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9681,'2018-11-15T10:01:44.354Z',NULL,75,3,125.81276373452337,8.81,88.5250527762935,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9682,'2019-11-05T12:17:34.599Z',NULL,16,2,66.11029954877317,4.63,53.09671711861963,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9683,'2018-09-05T01:11:33.566Z',4.000303604532451,160,5,47.59120561297272,3.33,70.63441059274348,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9684,'2019-07-07T13:06:22.176Z',NULL,85,7,54.90104734428525,3.84,67.30985312677844,1283); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9685,'2018-11-23T01:57:50.636Z',NULL,1,3,44.19489169601981,2.76,32.02671088128672,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9686,'2018-03-18T11:57:07.549Z',NULL,197,1,70.14610686710009,4.38,62.32132092531286,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9687,'2017-10-02T23:49:47.759Z',NULL,11,4,88.30453275661709,5.52,138.35754214513915,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9688,'2019-01-22T03:07:49.645Z',NULL,58,2,78.14578007078882,4.88,63.53952995722607,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9689,'2016-12-09T12:22:30.814Z',NULL,120,2,55.668009001928525,3.48,81.42529789247766,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9690,'2018-01-30T05:43:33.701Z',NULL,114,2,77.91196471862148,4.87,47.491681441462156,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9691,'2020-04-14T08:29:46.218Z',NULL,127,3,134.48016314504417,8.41,103.97420817987008,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9692,'2017-09-19T01:56:46.114Z',NULL,171,5,70.05110494330981,4.38,94.09276116668761,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9693,'2017-10-02T08:58:19.290Z',NULL,54,8,41.395738936015974,2.59,33.40631483188817,1287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9694,'2018-11-28T20:59:34.225Z',NULL,177,3,128.8192981944599,0,141.6873113026969,1288); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9695,'2019-04-10T22:43:57.609Z',NULL,99,2,67.83486485383094,4.66,112.2682281387842,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9696,'2019-04-09T19:05:57.015Z',NULL,33,3,47.7448636959614,3.28,70.01775350070842,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9697,'2020-02-08T04:54:31.118Z',NULL,7,2,148.22900526552291,10.19,164.18220529345794,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9698,'2020-03-02T16:04:34.676Z',NULL,27,1,127.52471180754115,8.77,156.25766446916018,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9699,'2018-02-25T03:37:40.909Z',NULL,76,1,63.82421061366486,4.39,87.7900533793301,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9700,'2017-12-08T04:41:14.700Z',NULL,118,2,38.418408731319154,2.64,36.26356974534076,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9701,'2019-02-03T11:03:34.030Z',NULL,39,2,114.58158180283459,7.88,142.59877055210032,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9702,'2020-01-17T20:44:13.061Z',NULL,153,2,66.79892314178237,4.59,57.11467670835589,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9703,'2018-09-04T03:31:15.712Z',NULL,148,5,138.9817182254566,9.55,145.33522008758405,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9704,'2019-08-12T22:34:46.640Z',NULL,152,8,48.89568729900663,3.36,56.51058481389635,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9705,'2017-10-15T21:55:27.983Z',NULL,1,6,29.463261130679875,2.03,20.166582315288565,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9706,'2018-12-01T16:34:54.985Z',NULL,35,2,71.53687730741436,4.92,82.83255597670312,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9707,'2019-02-10T04:59:56.959Z',NULL,134,1,42.49233549998661,2.92,61.93039733554749,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9708,'2019-07-22T12:43:58.494Z',NULL,30,4,64.17448218067184,4.41,68.39265637917751,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9709,'2018-08-29T20:22:00.945Z',NULL,18,8,81.90307121097293,5.63,75.21859757627216,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9710,'2018-10-17T11:28:48.496Z',NULL,49,6,131.42865839323724,9.04,118.7573920319936,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9711,'2019-02-25T23:21:09.149Z',NULL,184,1,116.09741230191975,7.98,111.55916474770564,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9712,'2018-01-12T10:53:35.518Z',NULL,147,2,66.64727121216615,4.58,89.7647429490456,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9713,'2020-02-26T03:30:07.090Z',NULL,26,2,68.12471180754113,4.68,80.45956453881661,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9714,'2017-04-30T14:34:09.588Z',4.2187259066703895,64,4,95.61478497145774,6.57,140.7450049506847,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9715,'2019-11-25T18:25:15.232Z',NULL,79,3,41.616917284159726,2.86,26.175157215051236,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9716,'2017-07-06T12:42:25.288Z',NULL,7,4,98.81933684368194,6.79,73.70870439122749,1289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9717,'2020-03-27T03:07:27.048Z',7.830815145043829,143,1,61.1983004605443,3.67,92.15678079481619,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9718,'2019-07-11T22:43:19.337Z',NULL,101,5,139.82488066180403,8.39,206.11670519776644,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9719,'2020-03-22T01:36:04.475Z',NULL,61,1,23.537915510955656,1.41,24.711763766870973,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9720,'2019-12-21T05:20:13.244Z',NULL,75,2,125.81276373452337,7.55,150.0845602360067,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9721,'2017-07-25T21:12:37.868Z',NULL,103,5,31.361435038520785,1.88,25.49953274977529,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9722,'2019-02-02T04:08:19.556Z',NULL,1,2,44.19489169601981,2.65,41.11895894618074,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9723,'2017-09-10T23:05:02.287Z',NULL,162,6,22.378598800110105,1.34,36.786990141979004,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9724,'2019-09-30T15:56:31.736Z',NULL,92,6,124.89242686579996,7.49,121.13881247145329,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9725,'2019-06-14T07:42:57.743Z',7.830815145043829,123,6,110.93145648834248,6.66,100.69727564214219,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9726,'2019-07-03T17:06:52.632Z',NULL,139,5,76.77768319177018,4.61,126.37051790345603,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9727,'2018-11-25T14:57:50.551Z',NULL,51,4,75.65058751905018,4.54,62.56872072778874,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9728,'2019-06-10T20:50:25.862Z',NULL,181,6,143.88940370476112,8.63,114.62175103178355,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9729,'2019-09-12T17:45:02.208Z',NULL,162,5,33.56789820016516,2.01,24.310351350467055,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9730,'2018-08-13T07:43:16.619Z',NULL,82,7,60.89545738030947,3.65,38.5640609407712,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9731,'2020-03-16T16:57:41.045Z',NULL,99,1,67.83486485383094,4.07,109.93972059295325,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9732,'2017-08-27T16:15:53.809Z',NULL,134,7,28.328223666657742,1.7,25.32660229686536,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9733,'2018-10-05T20:43:05.208Z',NULL,107,7,50.094887884945365,3.01,40.58684749522036,1290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9734,'2019-03-28T06:22:56.069Z',NULL,16,1,66.11029954877317,4.55,46.25743061966509,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9735,'2019-01-02T10:38:05.854Z',7.830815145043829,72,1,142.20381898788685,9.78,159.34911563510659,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9736,'2019-11-14T15:24:37.052Z',3.330815145043829,162,2,33.56789820016516,2.31,50.254771062640806,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9737,'2019-04-18T04:47:31.982Z',NULL,88,3,105.41292031622555,7.25,106.08728274673874,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9738,'2018-11-14T19:02:28.327Z',NULL,182,3,84.48940370476112,5.81,67.61864843223324,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9739,'2019-03-28T13:43:25.803Z',3.7797613400637005,19,1,64.00675097561322,4.4,39.50587406758978,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9740,'2018-07-15T12:16:50.604Z',NULL,191,6,128.5841852057933,8.84,142.3971605561736,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9741,'2018-07-03T01:45:22.924Z',NULL,123,5,110.93145648834248,7.63,101.67650043130591,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9742,'2018-08-20T04:06:02.970Z',3.7797613400637005,166,7,38.30449564120193,2.63,22.728970433014307,1291); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9743,'2019-09-29T20:18:54.626Z',NULL,12,6,116.01427581618326,7.25,78.2209929991276,1292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9744,'2019-11-14T10:06:35.153Z',NULL,42,3,38.00410713690931,2.38,28.017754423520934,1292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9745,'2017-02-26T10:18:03.612Z',NULL,84,2,54.58418555091025,3.28,85.0073406545359,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9746,'2020-03-08T04:55:38.383Z',NULL,8,1,98.83823503993958,5.93,56.09615433661397,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9747,'2019-06-02T07:16:55.971Z',3.7797613400637005,102,6,47.04215255778118,2.82,35.790250453255915,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9748,'2019-06-23T20:44:49.212Z',NULL,191,5,128.5841852057933,7.72,206.6518296173194,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9749,'2018-04-25T23:39:39.085Z',NULL,189,3,93.27738254731509,5.6,68.65339734142066,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9750,'2019-04-08T13:31:06.295Z',NULL,89,3,63.719612755399886,3.82,38.153700282379,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9751,'2018-10-22T12:54:22.877Z',NULL,49,4,131.42865839323724,7.89,111.9566576016978,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9752,'2019-07-09T03:46:06.528Z',NULL,170,4,105.07665741496471,6.3,131.4557034890982,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9753,'2019-10-19T19:02:12.525Z',3.7797613400637005,152,4,48.89568729900663,2.93,73.72844683438456,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9754,'2018-07-18T13:39:04.559Z',8.2797613400637,176,5,57.92480943352658,3.48,40.1898723624715,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9755,'2017-09-23T15:04:15.020Z',NULL,20,5,24.884330833643833,1.49,32.05199767881626,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9756,'2018-01-29T04:26:11.602Z',8.2797613400637,168,2,118.93172693453273,7.14,141.2145642904561,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9757,'2020-01-02T14:06:20.342Z',NULL,98,2,112.41825444654248,6.75,90.56489128490583,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9758,'2019-03-24T19:29:25.003Z',8.2797613400637,34,1,74.30391386913199,4.46,45.47730955223819,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9759,'2019-01-24T07:41:57.747Z',NULL,87,2,117.25536340498041,7.04,67.44769742632455,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9760,'2018-05-31T08:06:42.431Z',NULL,22,4,32.136779940663494,1.93,44.4950850476291,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9761,'2020-03-30T17:49:48.963Z',NULL,148,1,138.9817182254566,8.34,122.72068658647805,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9762,'2020-01-20T02:50:35.854Z',NULL,7,2,148.22900526552291,8.89,226.313255038311,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9763,'2018-08-19T13:20:28.086Z',NULL,107,5,50.094887884945365,3.01,78.31164920700371,1294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9764,'2020-01-29T09:31:58.431Z',NULL,115,2,77.91196471862148,3.7,120.05909992244946,1295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9765,'2019-04-17T02:14:08.790Z',NULL,78,2,41.616917284159726,1.98,65.56044446644205,1295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9766,'2018-10-16T17:03:24.909Z',NULL,160,6,47.59120561297272,2.26,66.92774644665624,1295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9767,'2018-04-01T15:43:15.374Z',NULL,74,3,51.12804227386549,3.52,36.44181593739897,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9768,'2018-06-15T06:35:30.721Z',NULL,84,5,81.87627832636537,5.63,118.2204339394728,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9769,'2018-03-15T10:51:16.414Z',7.571696738086265,63,1,133.5202262591817,9.18,166.4676841914814,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9770,'2018-02-14T14:50:38.152Z',3.0716967380862656,40,2,99.66240044231697,6.85,133.1021701768452,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9771,'2019-05-02T01:49:08.497Z',NULL,77,5,101.01691728415972,6.94,166.39906682614756,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9772,'2019-03-24T23:44:44.445Z',NULL,151,1,91.61302306843446,6.3,151.26063259262426,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9773,'2018-06-03T22:53:42.557Z',NULL,172,4,122.3651993029456,8.41,165.5174609983886,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9774,'2018-11-10T22:19:34.275Z',NULL,6,3,97.43621265344382,6.7,147.01519385095705,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9775,'2018-03-09T21:09:48.914Z',NULL,119,1,43.43814329652384,2.99,28.125485251021697,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9776,'2017-09-24T11:35:02.580Z',3.0716967380862656,196,5,46.76407124473339,3.22,55.419163172258116,1296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9777,'2017-08-08T07:26:35.598Z',NULL,174,8,74.40953929454055,3.72,52.06441374006875,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9778,'2019-10-13T08:32:23.053Z',NULL,121,5,40.44528328808107,2.02,43.37554375495764,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9779,'2018-02-12T15:14:11.246Z',NULL,78,2,41.616917284159726,2.08,35.78495016741509,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9780,'2019-01-14T03:06:25.859Z',NULL,164,2,92.96789820016517,4.65,125.65178087014804,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9781,'2019-07-05T19:03:42.499Z',NULL,65,5,68.22769726470014,3.41,39.58655116279153,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9782,'2018-11-06T14:32:08.461Z',NULL,188,3,33.87738254731509,1.69,34.60684741995081,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9783,'2018-08-20T04:59:15.949Z',NULL,110,7,55.526746186906664,2.78,63.913555703708774,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9784,'2020-02-02T19:36:17.152Z',NULL,129,2,148.1672972165937,7.41,94.77729252731838,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9785,'2019-04-25T02:26:39.121Z',7.571696738086265,130,3,75.02573869315137,3.75,112.6399213908916,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9786,'2018-10-07T19:31:10.424Z',NULL,193,4,50.38077396807232,2.52,75.45617034069609,1297); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9787,'2018-06-18T14:21:55.045Z',NULL,151,6,91.61302306843446,3.66,104.15031051322089,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9788,'2019-02-21T22:15:43.934Z',NULL,86,2,92.31436670850246,3.69,74.23763873456602,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9789,'2017-02-11T02:52:30.199Z',NULL,185,2,26.384667225677738,1.06,16.662842954272374,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9790,'2018-01-25T16:33:31.961Z',NULL,127,2,134.48016314504417,5.38,168.51354523475692,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9791,'2019-04-10T20:20:12.983Z',NULL,162,2,33.56789820016516,1.34,45.568899689131825,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9792,'2018-10-01T04:49:28.740Z',NULL,91,5,65.09432810381134,2.6,61.08993691212716,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9793,'2020-03-01T03:08:00.934Z',NULL,111,1,55.526746186906664,2.22,38.244226703771005,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9794,'2019-03-03T02:54:10.675Z',7.664082223598622,148,1,138.9817182254566,5.56,160.88362625756992,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9795,'2019-02-27T14:44:27.337Z',NULL,107,2,50.094887884945365,2,76.0274448230371,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9796,'2019-04-17T19:14:41.998Z',7.664082223598622,108,3,50.094887884945365,2,73.67190138187156,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9797,'2020-01-15T06:05:22.713Z',NULL,31,1,105.65346467128523,4.23,121.09893907574565,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9798,'2020-02-29T02:57:30.733Z',7.664082223598622,107,2,50.094887884945365,2,80.39269940507829,1298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9799,'2016-12-14T06:24:09.250Z',NULL,140,2,44.53541698384588,1.78,47.817559376801555,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9800,'2019-02-21T12:31:39.472Z',NULL,129,2,148.1672972165937,5.93,172.99102943824684,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9801,'2019-06-26T14:16:59.825Z',NULL,72,6,142.20381898788685,5.69,194.2864227014637,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9802,'2016-12-23T13:45:58.969Z',3.1640822235986215,19,2,42.67116731707548,1.71,31.053923750687986,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9803,'2017-01-26T12:55:39.389Z',NULL,199,1,76.95334253952366,3.08,91.65291893184613,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9804,'2017-08-03T09:35:41.527Z',NULL,8,5,65.89215669329305,2.64,95.13309420114149,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9805,'2017-01-24T08:27:20.305Z',NULL,83,2,54.58418555091025,2.18,59.203464115431224,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9806,'2020-01-29T00:40:58.609Z',NULL,136,2,105.20402317157343,4.21,72.95353793247244,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9807,'2017-05-09T11:06:52.182Z',NULL,75,4,83.87517582301558,3.36,103.88642252631146,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9808,'2018-03-17T14:36:01.573Z',NULL,180,1,68.32408657333919,2.73,59.115867973700524,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9809,'2018-10-04T17:54:37.753Z',NULL,173,4,122.3651993029456,4.89,186.78669091919454,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9810,'2019-05-26T08:42:35.581Z',NULL,193,3,50.38077396807232,2.02,37.61031827686446,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9811,'2018-09-14T21:26:44.676Z',NULL,164,3,92.96789820016517,3.72,143.67385403450655,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9812,'2019-01-30T08:15:05.793Z',NULL,158,1,139.8942352373801,5.6,101.18491362798395,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9813,'2019-12-02T04:58:43.380Z',NULL,124,1,110.93145648834248,4.44,112.23915833869744,1299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9814,'2018-07-14T08:28:36.859Z',NULL,184,5,116.09741230191975,7.55,127.56093083155234,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9815,'2018-07-29T06:47:50.517Z',NULL,185,6,39.57700083851661,2.57,51.77585522351886,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9816,'2017-06-25T10:08:33.087Z',NULL,122,8,66.56352219205405,4.33,90.0640873854988,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9817,'2017-12-16T11:14:22.885Z',NULL,71,2,55.202545991924566,3.59,81.06705656438415,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9818,'2020-01-26T13:45:10.165Z',NULL,93,2,49.81864156655383,3.24,39.13664793814941,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9819,'2017-08-22T14:48:45.984Z',NULL,106,7,35.149014295079674,2.28,22.796181242105277,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9820,'2018-02-05T05:40:23.094Z',7.664082223598622,79,1,41.616917284159726,2.71,55.00166733642651,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9821,'2017-09-18T06:10:35.674Z',7.664082223598622,147,3,44.4315141414441,2.89,29.99380888732473,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9822,'2019-07-20T05:14:38.258Z',NULL,62,5,133.5202262591817,8.68,190.33707038725296,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9823,'2019-06-14T09:37:06.477Z',NULL,72,8,142.20381898788685,9.24,116.04308207271002,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9824,'2018-12-09T17:57:37.212Z',NULL,98,2,112.41825444654248,7.31,173.60261634544045,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9825,'2019-10-16T21:30:15.334Z',NULL,170,5,105.07665741496471,6.83,60.46006417127915,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9826,'2018-10-11T16:54:28.734Z',6.9115470527571,115,5,77.91196471862148,5.06,77.29001128806087,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9827,'2018-01-02T13:00:36.934Z',NULL,147,17,66.64727121216615,4.33,56.088420696547395,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9828,'2019-01-16T22:04:57.609Z',NULL,22,1,32.136779940663494,2.09,38.78352030126246,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9829,'2020-04-19T02:30:54.846Z',NULL,90,2,123.1196127553999,8,148.68414120637837,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9830,'2020-01-05T14:51:53.161Z',NULL,98,1,112.41825444654248,7.31,155.22962428249068,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9831,'2019-01-25T01:05:48.662Z',NULL,187,1,98.9770008385166,6.43,160.57270803088554,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9832,'2017-04-29T12:25:46.818Z',NULL,55,3,63.84752383956291,4.15,67.41214472338667,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9833,'2019-05-28T09:50:53.053Z',NULL,25,4,68.62263967182464,4.46,93.09344073581238,1300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9834,'2019-02-09T10:05:23.965Z',NULL,113,1,110.47725376186015,4.42,150.31517466367794,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9835,'2018-11-08T19:11:59.300Z',2.4115470527570997,141,3,126.20312547576883,5.05,80.4198439049165,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9836,'2019-01-15T08:41:50.708Z',NULL,164,2,92.96789820016517,3.72,147.21582624216578,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9837,'2020-03-05T16:48:28.715Z',NULL,145,1,61.1983004605443,2.45,67.74644009458369,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9838,'2018-08-09T00:28:05.872Z',NULL,123,6,110.93145648834248,4.44,175.34543707440253,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9839,'2020-03-05T13:50:26.865Z',NULL,23,1,116.86672609493307,4.67,71.09916677916544,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9840,'2019-08-10T03:43:49.502Z',NULL,28,6,68.12471180754113,2.72,68.01564968933114,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9841,'2019-05-16T07:12:31.296Z',NULL,143,4,61.1983004605443,2.45,68.7202965868056,1301); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9842,'2018-05-07T16:49:56.151Z',NULL,107,3,50.094887884945365,2,74.52104230697142,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9843,'2020-01-13T05:31:08.787Z',NULL,66,2,136.16126271106958,5.45,113.1328345623403,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9844,'2019-06-01T11:24:50.685Z',6.9115470527571,181,5,143.88940370476112,5.76,90.35988498691324,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9845,'2017-03-08T03:44:17.115Z',NULL,45,1,78.6996782532274,3.15,114.02424269911089,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9846,'2017-07-18T10:08:55.805Z',6.9115470527571,17,4,53.290720311951766,2.13,82.29914505722294,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9847,'2018-01-27T01:00:45.498Z',NULL,15,1,37.648145389078365,1.51,35.843302643870764,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9848,'2019-07-06T04:01:48.202Z',NULL,14,4,37.648145389078365,1.51,59.25665642571753,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9849,'2018-09-16T07:06:57.974Z',NULL,97,6,112.41825444654248,4.5,149.66208738340515,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9850,'2019-06-26T04:21:55.573Z',NULL,62,5,133.5202262591817,5.34,77.1714181856985,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9851,'2017-10-02T07:55:19.374Z',NULL,95,5,33.212427711035886,1.33,18.326761896879216,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9852,'2020-03-04T16:06:40.522Z',NULL,130,1,75.02573869315137,3,75.78535283226903,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9853,'2019-05-05T18:15:05.152Z',NULL,29,4,123.57448218067185,4.94,91.2690704382381,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9854,'2019-01-21T01:51:03.566Z',2.4115470527570997,10,1,47.6793282102869,1.91,42.63838911919811,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9855,'2019-06-24T09:59:24.188Z',NULL,65,5,68.22769726470014,2.73,96.90451315363595,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9856,'2019-05-02T16:25:27.110Z',NULL,120,5,83.5020135028928,3.34,58.910607214515586,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9857,'2019-06-26T23:42:04.121Z',NULL,72,9,142.20381898788685,5.69,161.02454971921216,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9858,'2018-02-21T19:15:21.540Z',NULL,143,2,61.1983004605443,2.45,99.11935411749695,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9859,'2020-03-14T03:54:55.588Z',9.18033342135194,127,1,134.48016314504417,5.38,156.79580221907722,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9860,'2018-07-17T07:25:10.924Z',NULL,47,4,84.0766209826718,3.36,108.43202592404077,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9861,'2018-06-15T18:22:16.039Z',NULL,115,5,77.91196471862148,3.12,116.36628698580287,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9862,'2018-08-23T00:09:46.689Z',NULL,28,8,68.12471180754113,2.72,99.33778322818628,1302); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9863,'2017-12-09T11:25:18.136Z',NULL,41,3,42.33927237126308,2.54,44.46104018252589,1303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9864,'2019-09-29T15:09:46.635Z',NULL,40,6,99.66240044231697,5.98,103.10687717840013,1303); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9865,'2019-10-21T22:14:15.494Z',NULL,199,5,115.4300138092855,6.93,120.55667213416025,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9866,'2019-12-31T22:10:55.158Z',NULL,149,2,69.15415037577924,4.15,90.27135119457063,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9867,'2019-08-10T10:02:01.495Z',NULL,42,10,38.00410713690931,2.28,24.91617206218779,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9868,'2020-04-02T05:27:36.180Z',NULL,75,3,125.81276373452337,7.55,103.28420391939338,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9869,'2018-07-30T17:08:48.542Z',NULL,67,6,41.24480890795779,2.47,28.834326297288523,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9870,'2020-02-23T08:03:49.534Z',NULL,177,2,128.8192981944599,7.73,76.2164336543399,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9871,'2018-07-12T17:09:53.116Z',NULL,195,4,109.78077396807234,6.59,164.80632642394158,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9872,'2018-01-27T11:27:09.811Z',NULL,50,2,53.64019616819762,3.22,82.04323280902307,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9873,'2019-03-19T10:26:59.331Z',NULL,24,1,112.30643674729413,6.74,89.0383834731645,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9874,'2017-04-22T23:54:53.514Z',NULL,90,3,82.07974183693327,4.92,115.1684418883665,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9875,'2018-07-06T12:33:30.639Z',NULL,157,6,139.8942352373801,8.39,143.83340749872033,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9876,'2016-05-14T09:26:52.819Z',NULL,36,5,87.29125153827623,5.24,143.19494428599413,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9877,'2018-05-05T02:24:28.195Z',NULL,25,6,68.62263967182464,4.12,108.06898984580643,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9878,'2017-10-26T03:43:54.774Z',NULL,147,8,44.4315141414441,2.67,34.76841864625083,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9879,'2019-06-15T06:25:06.262Z',NULL,89,7,63.719612755399886,3.82,42.97852962861419,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9880,'2019-08-28T03:16:56.017Z',NULL,113,6,110.47725376186015,6.63,137.46362188111692,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9881,'2019-09-01T12:32:01.597Z',NULL,155,6,43.77574310182776,2.63,39.16256376262546,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9882,'2019-03-06T01:12:45.955Z',NULL,66,1,136.16126271106958,8.17,195.38330077319713,1304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9883,'2017-05-19T07:12:36.101Z',NULL,183,4,37.7982748679465,1.51,51.91933601489419,1305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9884,'2020-02-01T13:16:43.013Z',NULL,99,1,67.83486485383094,2.71,56.38448346229019,1305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9885,'2019-12-31T02:00:21.357Z',NULL,24,2,112.30643674729413,4.49,138.2254348515201,1305); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9886,'2018-02-12T10:52:05.119Z',NULL,138,2,113.95078476718615,7.12,85.60178321221954,1306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9887,'2020-01-07T23:54:31.737Z',NULL,160,2,47.59120561297272,2.97,68.22349720619158,1306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9888,'2018-06-21T20:55:27.522Z',NULL,88,9,105.41292031622555,6.59,98.72076346134368,1306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9889,'2017-05-25T23:58:22.083Z',4.327178248530759,193,6,33.587182645381546,2.1,51.14187519980407,1306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9890,'2018-10-24T20:25:26.870Z',NULL,32,8,107.1448636959614,4.29,83.26510570390589,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9891,'2017-03-23T21:37:31.040Z',NULL,163,1,22.378598800110105,0.9,15.558251468291674,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9892,'2019-02-28T02:35:58.317Z',NULL,127,2,134.48016314504417,5.38,149.51650344476178,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9893,'2019-08-21T13:37:26.360Z',NULL,38,8,66.06937283839378,2.64,68.27760403477075,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9894,'2019-12-20T23:18:38.152Z',NULL,1,2,44.19489169601981,1.77,44.17574153095457,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9895,'2020-02-08T07:04:24.728Z',NULL,40,2,99.66240044231697,3.99,150.40157214030108,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9896,'2019-11-25T23:11:52.624Z',NULL,32,3,107.1448636959614,4.29,83.83330509452014,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9897,'2019-04-06T02:49:42.096Z',NULL,196,2,70.14610686710009,2.81,62.45984605642616,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9898,'2018-05-01T05:22:37.513Z',NULL,146,47,126.04727121216614,5.04,170.36185681800626,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9899,'2018-09-04T21:56:14.132Z',NULL,177,5,128.8192981944599,5.15,106.31395595588884,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9900,'2018-09-18T16:39:43.321Z',8.827178248530759,137,4,67.77247956807186,2.71,91.43016197129585,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9901,'2019-11-25T12:31:27.771Z',NULL,150,3,128.55415037577922,5.14,91.04708102357733,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9902,'2018-08-26T07:59:10.516Z',4.327178248530759,6,10,97.43621265344382,3.9,55.446945255266066,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9903,'2019-02-24T00:37:23.024Z',NULL,115,2,77.91196471862148,3.12,70.03783599974116,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9904,'2019-03-23T19:20:53.965Z',8.827178248530759,172,1,122.3651993029456,4.89,200.72437676476548,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9905,'2019-10-13T00:11:57.986Z',NULL,22,6,32.136779940663494,1.29,34.51344243054288,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9906,'2019-03-22T03:38:02.712Z',NULL,152,1,48.89568729900663,1.96,60.88271490529678,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9907,'2017-10-06T08:11:48.576Z',NULL,161,4,31.727470408648482,1.27,19.755067615043124,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9908,'2019-01-08T01:40:17.632Z',NULL,28,2,68.12471180754113,2.72,97.0539648230407,1307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9909,'2019-07-07T04:35:50.035Z',NULL,22,5,32.136779940663494,1.29,38.56773388378149,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9910,'2016-12-13T18:42:29.625Z',NULL,175,2,78.21653962235106,3.13,75.45963414440571,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9911,'2019-05-05T16:50:45.149Z',NULL,135,6,45.80402317157342,1.83,60.07525984180663,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9912,'2019-11-20T07:47:20.730Z',NULL,7,4,148.22900526552291,5.93,91.4610438993443,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9913,'2020-02-27T07:02:04.240Z',NULL,162,2,33.56789820016516,1.34,37.941429630970866,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9914,'2020-02-20T17:29:55.280Z',NULL,182,2,84.48940370476112,3.38,49.82838166893,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9915,'2018-06-10T08:58:32.036Z',NULL,41,5,63.50890855689462,2.54,43.95269328805849,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9916,'2018-09-19T02:56:32.817Z',NULL,110,4,55.526746186906664,2.22,67.0522285091479,1308); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9917,'2019-02-02T06:58:34.663Z',8.341672267473886,186,1,98.9770008385166,4.26,85.7266206487267,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9918,'2020-02-09T23:26:52.283Z',NULL,82,1,60.89545738030947,2.62,72.54494016614855,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9919,'2018-09-30T06:18:32.595Z',NULL,143,4,61.1983004605443,2.63,46.1246625430156,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9920,'2019-01-14T20:49:45.559Z',NULL,196,2,70.14610686710009,3.02,86.12493645906272,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9921,'2018-12-25T00:56:33.757Z',NULL,37,3,80.10774204020768,3.44,71.49483896404071,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9922,'2019-07-04T05:28:30.517Z',NULL,47,7,84.0766209826718,3.62,73.9452171696733,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9923,'2019-11-03T05:50:05.771Z',NULL,160,3,47.59120561297272,2.05,63.09967162913365,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9924,'2019-11-10T11:41:44.286Z',NULL,129,2,148.1672972165937,6.37,101.34529670300834,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9925,'2019-10-06T21:29:25.712Z',NULL,140,6,66.80312547576881,2.87,85.44305944137137,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9926,'2018-01-22T07:28:19.360Z',8.341672267473886,78,2,41.616917284159726,1.79,64.32036587703647,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9927,'2019-04-04T11:43:11.762Z',NULL,65,3,68.22769726470014,2.93,109.11916492006439,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9928,'2017-11-25T10:22:18.664Z',NULL,153,3,44.532615427854914,1.91,41.29254446575584,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9929,'2018-06-06T18:03:38.019Z',NULL,166,5,38.30449564120193,1.65,55.96758684322225,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9930,'2018-09-25T04:02:43.739Z',NULL,121,4,40.44528328808107,1.74,65.61266054332556,1309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9931,'2017-12-26T21:50:32.111Z',3.841672267473886,109,2,79.36660712128732,4.76,45.81479230117773,1310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9932,'2019-07-30T21:24:51.003Z',NULL,156,7,30.615804149046195,2.1,20.815169042568947,1312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9933,'2019-10-13T22:31:58.470Z',NULL,178,6,117.32963250370614,8.07,68.11939820994456,1312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9934,'2019-02-20T10:54:52.172Z',3.841672267473886,105,1,52.723521442619514,3.62,84.39320201621199,1312); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9935,'2018-04-25T08:47:47.182Z',NULL,61,2,23.537915510955656,1.32,24.20213731295418,1313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9936,'2019-04-15T22:29:54.327Z',NULL,39,3,114.58158180283459,6.42,93.84301886818929,1313); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9937,'2017-07-11T15:29:57.594Z',NULL,106,5,35.149014295079674,2.28,55.80452545501558,1314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9938,'2017-11-18T18:53:23.756Z',NULL,74,3,34.08536151591033,2.56,20.40911881868265,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9939,'2017-02-26T19:22:03.886Z',NULL,181,2,95.92626913650741,7.19,83.8940697406819,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9940,'2019-06-07T16:31:58.651Z',NULL,171,8,105.07665741496471,7.88,175.53888945320185,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9941,'2018-03-12T19:28:08.908Z',2.8933000061698833,54,1,62.09360840402396,4.66,52.962073148657154,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9942,'2018-10-24T07:37:17.673Z',NULL,181,5,143.88940370476112,10.79,92.38622033902165,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9943,'2017-09-20T20:14:30.659Z',NULL,94,5,72.81242771103588,5.46,58.94575352870164,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9944,'2018-02-09T04:14:34.152Z',NULL,40,2,99.66240044231697,7.47,100.90616504337535,1316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9945,'2020-02-01T03:54:07.956Z',NULL,116,2,114.42485125407785,6.87,113.17711694820824,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9946,'2018-01-13T21:06:24.913Z',NULL,142,2,70.34853057210945,4.22,61.81900387758586,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9947,'2018-03-07T23:32:33.706Z',NULL,105,1,52.723521442619514,3.16,42.466934362905036,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9948,'2020-02-11T22:30:11.794Z',NULL,177,2,128.8192981944599,7.73,79.42489912714495,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9949,'2019-09-19T17:46:50.095Z',NULL,119,3,43.43814329652384,2.61,64.37628625224549,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9950,'2017-05-27T06:30:58.458Z',NULL,36,3,87.29125153827623,5.24,121.22076337319675,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9951,'2019-05-22T04:58:00.153Z',NULL,99,3,67.83486485383094,4.07,87.90757260081753,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9952,'2019-06-10T23:50:27.453Z',NULL,25,6,68.62263967182464,4.12,112.84717243509905,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9953,'2019-11-01T17:45:50.610Z',NULL,146,3,126.04727121216614,7.56,100.00457525080161,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9954,'2019-07-08T21:39:58.294Z',NULL,105,5,52.723521442619514,3.16,42.302716109243036,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9955,'2017-07-15T21:07:23.478Z',NULL,64,6,95.61478497145774,5.74,101.13400042551345,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9956,'2018-09-18T09:04:16.578Z',NULL,130,5,75.02573869315137,4.5,71.576046010024,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9957,'2019-12-19T23:30:51.648Z',7.393300006169883,163,1,33.56789820016516,2.01,39.51128831210281,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9958,'2018-05-22T18:00:29.441Z',2.8933000061698833,28,4,68.12471180754113,4.09,51.8200258557004,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9959,'2019-10-31T01:34:03.738Z',NULL,13,5,112.62925391105566,6.76,81.24008163596972,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9960,'2018-10-26T06:06:54.479Z',NULL,65,4,68.22769726470014,4.09,85.91844470603688,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9961,'2018-12-08T23:21:40.287Z',NULL,123,1,110.93145648834248,6.66,118.88908602650116,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9962,'2020-03-13T19:16:25.233Z',NULL,190,1,128.5841852057933,7.72,160.22726374864146,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9963,'2019-06-18T06:58:00.204Z',NULL,161,4,47.59120561297272,2.86,61.40463247950207,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9964,'2020-01-18T16:48:55.994Z',NULL,9,2,87.46968147789205,5.25,83.39105807188554,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9965,'2018-07-29T13:37:23.704Z',NULL,109,6,119.04991068193098,7.14,98.64163387649005,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9966,'2019-08-31T06:37:46.495Z',NULL,66,8,136.16126271106958,8.17,200.1084982819079,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9967,'2019-05-09T10:25:23.060Z',NULL,11,4,132.45679913492563,7.95,192.39563294800274,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9968,'2020-04-18T15:07:45.668Z',NULL,90,3,123.1196127553999,7.39,88.29955409654595,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9969,'2020-03-25T20:22:20.586Z',NULL,98,1,112.41825444654248,6.75,74.07094485570141,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9970,'2018-10-01T23:02:01.486Z',NULL,186,3,98.9770008385166,5.94,138.06454236274956,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9971,'2019-03-17T09:36:20.546Z',NULL,193,1,50.38077396807232,3.02,62.52203669262782,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9972,'2019-12-13T00:24:48.583Z',2.266051551919344,160,2,47.59120561297272,2.86,59.87374184631878,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9973,'2018-12-06T14:55:43.618Z',NULL,77,2,101.01691728415972,6.06,81.57774135304537,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9974,'2018-10-14T03:59:05.591Z',NULL,169,3,59.53172693453274,3.57,83.26124823317834,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9975,'2019-07-26T05:28:32.953Z',NULL,129,4,148.1672972165937,8.89,101.1487173923251,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9976,'2020-01-20T14:42:30.542Z',2.266051551919344,7,2,148.22900526552291,8.89,88.14473165767642,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9977,'2020-01-02T18:23:10.888Z',2.266051551919344,101,2,139.82488066180403,8.39,216.44535554240008,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9978,'2019-05-14T13:58:01.318Z',NULL,133,4,68.4819702983371,4.11,39.871198342771415,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9979,'2018-11-09T06:06:14.363Z',NULL,40,3,99.66240044231697,5.98,117.4592313859301,1317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9980,'2020-03-06T18:51:41.379Z',NULL,81,1,43.9329842322118,2.64,36.35490064439628,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9981,'2018-04-05T14:24:24.419Z',NULL,66,3,136.16126271106958,8.17,114.79421389136095,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9982,'2018-08-18T02:50:53.308Z',NULL,170,8,105.07665741496471,6.3,131.79198879840524,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9983,'2019-07-05T14:37:18.529Z',NULL,83,6,81.87627832636537,4.91,107.04233805069252,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9984,'2018-12-08T10:34:47.676Z',NULL,87,2,117.25536340498041,7.04,106.98535030768113,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9985,'2019-12-10T00:09:50.437Z',NULL,123,2,110.93145648834248,6.66,181.73254846933727,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9986,'2020-03-17T20:29:28.867Z',NULL,195,1,109.78077396807234,6.59,97.61184498386655,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9987,'2019-12-04T12:11:16.553Z',NULL,97,2,112.41825444654248,6.75,85.2198573177001,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9988,'2017-05-01T17:31:13.593Z',NULL,55,5,63.84752383956291,3.83,54.266140930707614,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9989,'2018-05-21T09:12:04.530Z',NULL,28,4,68.12471180754113,4.09,71.73465825148118,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9990,'2019-03-20T22:50:50.274Z',NULL,137,1,67.77247956807186,4.07,111.9768704966973,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9991,'2019-12-10T23:34:50.715Z',NULL,125,2,80.39699207990944,4.82,133.50610039770217,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9992,'2019-05-18T20:31:29.020Z',NULL,36,4,130.93687730741433,7.86,192.64564573133202,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9993,'2017-12-06T05:35:32.821Z',NULL,12,2,77.34285054412217,4.64,115.37609822267775,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9994,'2019-04-11T23:09:05.861Z',2.266051551919344,110,3,55.526746186906664,3.33,46.42042299153212,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9995,'2017-04-13T08:02:57.549Z',NULL,105,3,35.149014295079674,2.11,41.29995025954657,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9996,'2020-03-28T10:09:23.345Z',2.266051551919344,46,1,118.0495173798411,7.08,165.51729626407038,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9997,'2018-09-28T16:03:31.692Z',NULL,121,4,40.44528328808107,2.43,25.692144907467966,1319); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9998,'2020-01-02T13:06:57.209Z',NULL,153,2,66.79892314178237,4.01,100.44252774946584,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (9999,'2019-02-05T19:21:16.600Z',NULL,58,1,78.14578007078882,4.69,52.304073409497654,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10000,'2017-01-27T18:06:46.697Z',NULL,15,2,25.09876359271891,1.51,31.108614338975485,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10001,'2019-07-28T11:18:03.668Z',NULL,141,5,126.20312547576883,7.57,187.68768026042525,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10002,'2019-05-09T19:23:41.667Z',1.9621519150529392,37,5,80.10774204020768,4.81,99.31864708721358,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10003,'2019-06-21T17:23:01.814Z',NULL,159,5,35.53017445377361,2.13,40.32436504602386,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10004,'2018-12-05T01:14:55.399Z',NULL,150,2,128.55415037577922,7.71,91.37257882782889,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10005,'2016-12-03T22:43:27.297Z',1.9621519150529392,79,2,27.74461152277315,1.66,32.451386428842525,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10006,'2020-03-14T14:32:25.053Z',NULL,165,1,38.30449564120193,2.3,34.32295141287048,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10007,'2019-01-13T15:07:08.598Z',NULL,157,2,139.8942352373801,8.39,173.21368832411383,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10008,'2017-10-19T07:54:45.852Z',NULL,15,5,25.09876359271891,1.51,29.350159535744538,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10009,'2018-09-17T09:44:47.931Z',NULL,63,3,133.5202262591817,8.01,126.42659327141367,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10010,'2020-04-03T02:23:00.812Z',NULL,129,2,148.1672972165937,8.89,91.48591193570918,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10011,'2018-06-01T11:19:56.833Z',NULL,145,5,61.1983004605443,3.67,69.71962583197761,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10012,'2018-02-28T10:59:57.901Z',NULL,92,1,124.89242686579996,7.49,194.9188687661717,1322); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10013,'2019-10-13T15:28:47.792Z',NULL,142,6,70.34853057210945,2.04,98.66038651149306,1323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10014,'2018-07-04T12:49:43.741Z',NULL,45,5,118.0495173798411,3.42,74.0130603831591,1323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10015,'2020-02-17T18:00:56.729Z',NULL,193,2,50.38077396807232,1.46,80.20725173056039,1323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10016,'2018-07-07T20:19:19.673Z',NULL,133,4,68.4819702983371,1.99,103.61934843066459,1323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10017,'2017-12-27T15:56:33.010Z',NULL,176,2,38.616539622351056,1.12,37.021922375476976,1323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10018,'2019-02-06T05:19:19.844Z',NULL,197,2,70.14610686710009,2.03,45.64408840889142,1323); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10019,'2018-11-13T09:57:37.471Z',NULL,124,2,110.93145648834248,4.44,166.0293255186552,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10020,'2019-09-20T13:16:46.111Z',NULL,165,4,38.30449564120193,1.53,52.61182072289701,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10021,'2017-06-01T10:49:28.466Z',NULL,145,5,40.7988669736962,1.63,59.6203954097411,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10022,'2018-01-13T04:53:42.303Z',NULL,178,2,117.32963250370614,4.69,129.9980579535649,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10023,'2019-10-17T07:45:34.868Z',NULL,142,6,70.34853057210945,2.81,78.90813538837267,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10024,'2019-12-15T11:28:55.817Z',NULL,193,2,50.38077396807232,2.02,56.66064148012488,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10025,'2019-02-10T12:40:50.312Z',NULL,92,1,124.89242686579996,5,82.9453804232711,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10026,'2017-10-17T18:52:22.398Z',NULL,29,5,82.3829881204479,3.3,71.09795109419322,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10027,'2018-10-18T07:10:23.051Z',NULL,55,5,95.77128575934437,3.83,133.49396721735053,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10028,'2017-10-16T15:41:33.981Z',NULL,60,3,19.86809834572766,0.79,11.992782002660507,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10029,'2017-09-27T09:30:34.069Z',NULL,180,4,45.549391048892794,1.82,46.310504257504476,1324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10030,'2019-06-10T01:33:54.549Z',NULL,50,7,53.64019616819762,3.22,55.140721063911634,1326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10031,'2019-04-11T06:30:13.223Z',NULL,188,3,33.87738254731509,2.03,41.52715604825966,1326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10032,'2019-10-07T18:13:12.476Z',NULL,25,6,68.62263967182464,4.12,64.17530596283085,1326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10033,'2017-09-10T05:16:18.192Z',NULL,85,4,36.6006982295235,2.2,45.211484205300025,1326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10034,'2018-04-21T08:38:16.316Z',NULL,168,2,118.93172693453273,7.14,128.12986448467186,1326); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10035,'2019-02-04T01:27:41.696Z',NULL,88,1,105.41292031622555,6.32,164.2413544830255,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10036,'2019-07-30T15:30:02.079Z',2.1153952908039386,152,3,48.89568729900663,2.93,77.46860619661686,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10037,'2018-04-30T03:01:50.622Z',NULL,143,2,61.1983004605443,3.67,99.74697894659384,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10038,'2019-10-09T11:35:11.744Z',NULL,154,6,81.87529553312261,4.91,118.92767726210009,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10039,'2019-04-26T00:12:08.560Z',2.1153952908039386,62,2,133.5202262591817,8.01,120.11034924641147,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10040,'2019-05-12T09:27:56.113Z',NULL,190,4,128.5841852057933,7.72,165.50469102212446,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10041,'2019-09-17T06:22:28.826Z',NULL,23,5,116.86672609493307,7.01,190.86149304485218,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10042,'2019-08-02T07:13:21.141Z',2.1153952908039386,58,8,78.14578007078882,4.69,48.81433918386796,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10043,'2017-07-22T05:55:07.134Z',NULL,90,5,82.07974183693327,4.92,48.52053731472929,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10044,'2019-11-09T17:37:50.948Z',NULL,182,3,84.48940370476112,5.07,61.441603968002624,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10045,'2019-02-18T18:28:34.539Z',NULL,15,2,37.648145389078365,2.26,57.36459504353864,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10046,'2019-05-14T09:10:44.770Z',NULL,19,5,64.00675097561322,3.84,50.77563615437687,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10047,'2019-12-20T07:51:06.651Z',NULL,153,2,66.79892314178237,4.01,56.159051364329656,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10048,'2019-11-10T03:08:03.534Z',NULL,181,2,143.88940370476112,8.63,212.71501417466595,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10049,'2020-01-12T23:10:46.388Z',NULL,170,1,105.07665741496471,6.3,95.24892986041779,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10050,'2017-09-11T19:06:15.081Z',NULL,161,4,31.727470408648482,1.9,38.32472892282771,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10051,'2018-02-11T01:28:17.335Z',NULL,155,2,43.77574310182776,2.63,38.5722186490271,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10052,'2019-01-24T22:35:43.647Z',6.615395290803939,79,2,41.616917284159726,2.5,44.34103113383021,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10053,'2018-07-02T01:06:07.252Z',6.615395290803939,121,4,40.44528328808107,2.43,44.85535263085342,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10054,'2019-10-31T04:44:14.190Z',NULL,57,6,122.4223933583994,7.35,128.83422695357513,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10055,'2018-11-17T00:05:47.266Z',NULL,51,2,75.65058751905018,4.54,54.66109092533944,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10056,'2019-08-05T09:20:32.446Z',6.615395290803939,66,6,136.16126271106958,8.17,139.88814796238407,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10057,'2019-09-29T04:27:08.748Z',NULL,43,4,76.35255205175756,4.58,99.05744234217998,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10058,'2020-04-03T08:40:44.898Z',NULL,108,2,50.094887884945365,3.01,63.86683343012796,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10059,'2018-04-25T12:08:17.111Z',NULL,105,3,52.723521442619514,3.16,77.66244242586406,1328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10060,'2017-06-02T01:09:17.473Z',NULL,133,6,45.654646865558064,3.14,75.75879049483146,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10061,'2018-02-28T16:43:42.574Z',NULL,156,2,30.615804149046195,2.1,19.959958756799406,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10062,'2017-05-08T13:43:22.607Z',NULL,131,5,75.41148135558485,5.18,103.03647137611345,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10063,'2017-03-04T23:15:37.053Z',NULL,44,1,50.90170136783837,3.5,83.12101704160986,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10064,'2019-10-26T06:25:02.987Z',NULL,146,4,126.04727121216614,8.67,157.96998325162804,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10065,'2019-04-07T22:44:26.634Z',NULL,49,2,131.42865839323724,9.04,118.80390352044643,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10066,'2018-03-08T16:33:06.221Z',NULL,22,1,32.136779940663494,2.21,33.87967703205152,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10067,'2019-09-23T16:36:13.691Z',NULL,103,6,47.04215255778118,3.23,76.83668187688538,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10068,'2019-04-24T15:35:50.294Z',NULL,55,3,95.77128575934437,6.58,92.59617081687975,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10069,'2016-09-03T20:10:05.233Z',NULL,168,5,79.28781795635516,5.45,54.244864162559026,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10070,'2017-07-12T11:04:04.978Z',NULL,19,6,42.67116731707548,2.93,48.02404560676626,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10071,'2019-01-10T12:30:48.859Z',NULL,29,2,123.57448218067185,8.5,84.56108041834695,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10072,'2020-02-05T22:25:16.215Z',NULL,35,2,71.53687730741436,4.92,84.18238595343134,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10073,'2019-02-15T05:52:58.256Z',NULL,163,1,33.56789820016516,2.31,36.91466322869337,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10074,'2018-04-30T18:08:46.296Z',NULL,174,3,111.61430894181083,7.67,115.01038668295384,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10075,'2020-04-04T03:43:51.621Z',NULL,20,4,37.32649625046575,2.57,40.56783615452145,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10076,'2019-07-29T14:49:17.602Z',NULL,168,6,118.93172693453273,8.18,92.89855373495422,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10077,'2018-05-15T10:01:04.819Z',NULL,109,5,119.04991068193098,8.18,125.53571538825159,1329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10078,'2018-02-03T22:25:39.304Z',NULL,22,2,32.136779940663494,2.01,51.583423270953936,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10079,'2017-03-15T17:24:40.813Z',NULL,109,1,79.36660712128732,4.96,60.48945124022012,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10080,'2019-08-10T00:31:51.717Z',NULL,198,7,70.14610686710009,4.38,39.1194535501643,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10081,'2018-02-15T00:41:56.655Z',NULL,88,2,105.41292031622555,6.59,108.90018144610552,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10082,'2017-12-26T19:36:32.957Z',7.791159694131714,57,2,81.6149289055996,5.1,82.30842001850017,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10083,'2017-07-21T01:58:54.808Z',NULL,65,3,45.4851315098001,2.84,31.1445250180414,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10084,'2019-03-28T06:42:25.481Z',NULL,174,1,111.61430894181083,6.98,175.53391036599672,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10085,'2017-11-20T21:37:08.243Z',NULL,185,29,26.384667225677738,1.65,40.73187753973306,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10086,'2019-11-04T15:37:55.931Z',NULL,158,3,139.8942352373801,8.74,235.39512798366798,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10087,'2019-03-06T11:54:48.618Z',NULL,102,1,47.04215255778118,2.94,56.31391745967306,1330); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10088,'2019-03-09T01:32:46.678Z',NULL,118,1,57.627613096978735,3.6,72.44967480861486,1331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10089,'2018-11-05T01:46:20.452Z',NULL,158,2,139.8942352373801,8.74,224.78979671279927,1331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10090,'2018-04-24T10:35:08.696Z',NULL,19,2,64.00675097561322,4,81.98713696634279,1331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10091,'2018-02-16T10:24:15.241Z',NULL,140,1,66.80312547576881,4.18,89.25621362255741,1331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10092,'2020-03-28T15:03:09.307Z',NULL,29,1,123.57448218067185,7.72,182.6667750462929,1331); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10093,'2018-03-01T09:13:36.288Z',NULL,139,1,76.77768319177018,4.61,51.39471430966993,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10094,'2018-05-12T21:18:15.055Z',NULL,49,4,131.42865839323724,7.89,121.15373354099947,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10095,'2019-05-10T18:06:44.771Z',NULL,14,4,37.648145389078365,2.26,33.16110986096169,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10096,'2017-06-18T11:50:50.311Z',NULL,21,5,40.38334406304544,2.42,33.01525400606922,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10097,'2019-09-25T12:44:19.008Z',NULL,89,4,63.719612755399886,3.82,47.385373984409775,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10098,'2019-05-02T22:11:03.851Z',NULL,33,5,47.7448636959614,2.86,49.022126326230364,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10099,'2017-09-18T14:29:44.246Z',NULL,143,4,40.7988669736962,2.45,36.515834930341555,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10100,'2017-10-07T22:34:21.324Z',NULL,115,3,51.94130981241432,3.12,40.4035028913177,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10101,'2018-05-26T13:08:31.671Z',NULL,200,4,73.20395711799151,4.39,51.529981625902195,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10102,'2018-08-09T17:26:44.836Z',NULL,68,6,115.24343882309758,6.91,87.38776812887848,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10103,'2019-12-20T03:17:07.531Z',NULL,90,1,123.1196127553999,7.39,114.97533697081695,1332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10104,'2016-08-09T07:13:05.719Z',NULL,111,6,37.01783079127111,2.22,38.88515633110965,1333); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10105,'2018-10-22T00:24:08.471Z',NULL,193,5,50.38077396807232,2.02,45.59935531470128,1334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10106,'2019-08-25T10:55:21.986Z',NULL,186,6,98.9770008385166,3.96,78.36026106561422,1334); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10107,'2020-03-28T04:54:39.011Z',NULL,24,1,112.30643674729413,7.72,161.83905727075143,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10108,'2019-01-24T03:04:38.809Z',NULL,2,2,105.11984419607644,7.23,60.44972334844422,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10109,'2019-01-05T02:14:27.002Z',6.563253952612829,176,2,57.92480943352658,3.98,71.63787317230991,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10110,'2017-11-15T12:43:59.241Z',NULL,183,2,37.7982748679465,2.6,55.28839389040407,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10111,'2019-04-04T05:01:38.184Z',6.563253952612829,67,3,41.24480890795779,2.84,46.51575181576657,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10112,'2019-10-07T20:40:32.950Z',NULL,195,6,109.78077396807234,7.55,91.30875782710359,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10113,'2018-05-24T18:22:02.555Z',NULL,22,4,32.136779940663494,2.21,29.558181727680054,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10114,'2019-03-24T16:53:24.649Z',6.563253952612829,74,1,51.12804227386549,3.52,64.7580375682167,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10115,'2019-05-31T07:56:26.412Z',NULL,189,2,93.27738254731509,6.41,56.298140085299174,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10116,'2018-12-25T14:24:59.874Z',NULL,76,1,63.82421061366486,4.39,98.87877789738158,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10117,'2019-03-29T14:21:10.792Z',NULL,96,1,104.82144858590365,7.21,138.8657314028077,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10118,'2018-10-18T04:09:05.351Z',NULL,50,5,53.64019616819762,3.69,51.90837393569167,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10119,'2018-01-14T01:12:46.756Z',NULL,141,2,126.20312547576883,8.68,75.56656155229301,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10120,'2017-09-19T06:51:58.907Z',NULL,30,4,42.7829881204479,2.94,42.217445342584284,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10121,'2018-05-21T10:46:15.228Z',NULL,113,37,110.47725376186015,7.6,138.32483938423331,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10122,'2020-03-27T07:30:14.739Z',NULL,164,1,92.96789820016517,6.39,79.87332815431076,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10123,'2019-06-30T03:31:12.065Z',NULL,33,4,47.7448636959614,3.28,36.22250070742732,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10124,'2017-10-11T21:31:42.527Z',NULL,194,5,33.587182645381546,2.31,39.24331148600383,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10125,'2019-09-19T09:19:50.045Z',NULL,46,6,118.0495173798411,8.12,135.6007035791659,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10126,'2019-12-15T06:38:47.581Z',NULL,84,2,81.87627832636537,5.63,76.63540116993316,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10127,'2018-02-07T03:25:52.388Z',NULL,47,1,84.0766209826718,5.78,104.95031684175501,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10128,'2018-11-01T12:48:22.424Z',NULL,122,3,99.84528328808108,6.86,148.77201665961363,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10129,'2019-11-25T01:19:19.692Z',NULL,144,3,61.1983004605443,4.21,34.45545644436179,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10130,'2019-11-06T06:11:26.411Z',6.882051420663907,40,3,99.66240044231697,6.85,151.0309212038124,1335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10131,'2017-05-19T04:44:42.919Z',NULL,122,5,66.56352219205405,3.33,64.4278786620091,1338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10132,'2016-09-18T05:29:15.283Z',NULL,100,4,45.22324323588729,2.26,73.82673068334411,1338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10133,'2017-05-28T06:39:29.272Z',NULL,89,3,42.47974183693326,2.12,37.45083677294468,1338); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10134,'2018-07-09T15:57:06.207Z',NULL,133,3,68.4819702983371,4.79,89.31674014415908,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10135,'2018-08-20T15:38:29.745Z',NULL,150,4,128.55415037577922,9,84.81674165094032,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10136,'2018-11-22T16:45:00.006Z',NULL,198,2,70.14610686710009,4.91,68.65174668698994,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10137,'2019-05-26T18:51:53.810Z',NULL,115,3,77.91196471862148,5.45,118.28392673068755,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10138,'2017-05-15T14:12:21.901Z',NULL,61,3,15.691943673970439,1.1,21.053038943232693,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10139,'2017-08-25T17:25:03.926Z',NULL,100,4,45.22324323588729,3.17,74.46431711774298,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10140,'2020-03-02T09:51:27.880Z',NULL,198,1,70.14610686710009,4.91,82.33954716594535,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10141,'2017-09-30T16:50:36.280Z',NULL,197,4,46.76407124473339,3.27,42.01204284759237,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10142,'2018-07-05T19:37:24.620Z',NULL,4,3,110.98767151282252,7.77,80.77956315602911,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10143,'2019-05-10T00:59:20.142Z',NULL,26,3,68.12471180754113,4.77,77.46011853303641,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10144,'2020-02-07T08:23:05.002Z',NULL,151,1,91.61302306843446,6.41,109.06913795638282,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10145,'2017-06-01T21:10:27.440Z',NULL,16,6,44.07353303251545,3.09,69.02651042480088,1341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10146,'2020-02-27T05:53:20.029Z',NULL,157,2,139.8942352373801,5.91,158.469381214495,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10147,'2018-05-13T05:55:45.319Z',NULL,93,6,49.81864156655383,2.1,44.51494437383451,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10148,'2019-04-20T23:49:45.737Z',NULL,78,4,41.616917284159726,1.76,25.51091003448361,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10149,'2020-02-08T10:31:55.023Z',NULL,111,2,55.526746186906664,2.35,76.28045668977249,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10150,'2018-06-20T20:12:00.742Z',NULL,86,8,92.31436670850246,3.9,90.04870070104015,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10151,'2017-12-14T04:24:36.096Z',NULL,37,3,53.40516136013846,2.26,84.95855064723088,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10152,'2018-08-07T11:37:36.471Z',NULL,151,7,91.61302306843446,3.87,49.99609058226035,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10153,'2018-03-11T23:27:51.934Z',NULL,88,1,105.41292031622555,4.45,61.396046402654264,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10154,'2017-08-14T00:21:44.035Z',NULL,79,9,27.74461152277315,1.17,32.25109642750551,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10155,'2017-11-01T11:26:59.881Z',NULL,157,3,93.26282349158673,3.94,91.6486596521878,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10156,'2018-03-24T23:23:28.206Z',NULL,35,1,71.53687730741436,3.02,108.20135745240358,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10157,'2019-06-30T13:30:59.302Z',NULL,17,5,79.93608046792765,3.38,64.84037224999493,1342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10158,'2018-10-30T17:33:08.942Z',NULL,100,6,67.83486485383094,4.07,70.86354906189575,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10159,'2019-12-29T01:45:19.411Z',NULL,135,3,45.80402317157342,2.75,36.14615171138659,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10160,'2019-09-23T01:18:08.014Z',8.291944223143869,83,5,81.87627832636537,4.91,63.67346071918161,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10161,'2019-07-16T13:02:57.590Z',NULL,191,5,128.5841852057933,7.72,167.46965322777655,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10162,'2019-01-16T21:46:44.582Z',NULL,8,3,98.83823503993958,5.93,125.51752648750553,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10163,'2018-02-11T07:54:05.344Z',NULL,195,2,109.78077396807234,6.59,176.93605830520252,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10164,'2018-03-23T03:17:28.107Z',NULL,3,1,53.08311732230858,3.18,74.43166988310561,1343); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10165,'2017-01-14T01:09:19.442Z',NULL,15,3,25.09876359271891,1.51,15.151201935811331,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10166,'2018-07-06T18:09:24.342Z',NULL,157,6,139.8942352373801,8.39,157.59924956800523,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10167,'2019-08-28T06:01:46.886Z',NULL,109,9,119.04991068193098,7.14,191.61887981761865,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10168,'2019-01-23T05:13:55.354Z',NULL,103,2,47.04215255778118,2.82,37.6093856438569,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10169,'2020-01-14T19:18:40.908Z',NULL,28,2,68.12471180754113,4.09,96.55111185716409,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10170,'2019-06-04T06:40:24.177Z',NULL,2,6,105.11984419607644,6.31,129.21492121993984,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10171,'2019-06-08T06:48:40.185Z',NULL,9,8,87.46968147789205,5.25,114.471590542054,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10172,'2017-11-07T10:24:24.283Z',NULL,152,3,32.59712486600442,1.96,52.09619044756192,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10173,'2018-09-24T19:48:18.134Z',NULL,32,38,107.1448636959614,6.43,117.10121286107795,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10174,'2018-05-06T01:38:34.919Z',NULL,23,3,116.86672609493307,7.01,124.90934744970525,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10175,'2019-12-23T19:06:37.582Z',NULL,86,2,92.31436670850246,5.54,132.00369107918073,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10176,'2018-12-13T10:19:01.191Z',NULL,124,18,110.93145648834248,6.66,164.23339866881147,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10177,'2018-10-06T11:58:23.586Z',NULL,94,6,109.21864156655383,6.55,163.1826609441094,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10178,'2019-02-04T08:12:09.106Z',NULL,140,2,66.80312547576881,4.01,97.13813713997124,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10179,'2018-09-26T01:21:53.831Z',NULL,140,4,66.80312547576881,4.01,70.5234028105878,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10180,'2019-07-31T20:16:20.273Z',6.082497805197959,35,2,71.53687730741436,4.29,39.806580450026715,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10181,'2019-01-21T17:25:31.677Z',NULL,121,1,40.44528328808107,2.43,30.940595888922083,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10182,'2019-11-02T13:09:53.417Z',NULL,87,1,117.25536340498041,7.04,125.91435864571365,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10183,'2019-04-08T10:56:29.595Z',NULL,1,2,44.19489169601981,2.65,47.050248334604305,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10184,'2016-11-24T13:48:47.118Z',NULL,73,3,47.752514839713,2.87,29.00129888400927,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10185,'2019-01-13T03:35:17.955Z',NULL,20,2,37.32649625046575,2.24,56.89505185192199,1344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10186,'2017-08-01T22:52:34.626Z',NULL,39,5,76.38772120188973,3.28,66.33857612700052,1346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10187,'2017-02-21T02:38:41.652Z',NULL,135,1,30.536015447715613,0,34.14117854763416,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10188,'2019-03-19T22:28:49.816Z',NULL,23,1,116.86672609493307,0,160.35405371933751,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10189,'2018-08-29T19:39:05.049Z',NULL,61,7,23.537915510955656,0,19.336177091548777,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10190,'2017-07-24T18:17:01.401Z',NULL,26,4,45.41647453836076,0,46.17954871419482,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10191,'2017-04-12T00:06:38.609Z',NULL,6,2,64.95747510229587,0,79.0756968810584,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10192,'2017-04-07T03:31:28.916Z',NULL,77,2,67.34461152277315,0,53.8061065132617,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10193,'2018-06-23T11:07:39.541Z',NULL,69,3,73.38772304360626,0,93.3969260398118,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10194,'2017-10-01T00:27:46.505Z',NULL,152,3,32.59712486600442,0,35.52311373629871,1348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10195,'2018-07-09T01:36:19.273Z',NULL,21,4,60.57501609456816,4.54,101.19314964804518,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10196,'2019-03-06T09:11:04.363Z',NULL,94,1,109.21864156655383,8.19,92.4080573541832,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10197,'2017-11-19T04:54:56.353Z',NULL,1,2,29.463261130679875,2.21,24.769398130444216,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10198,'2017-11-01T04:58:38.814Z',6.610171587984836,88,2,70.27528021081703,5.27,55.076244448575174,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10199,'2019-02-24T06:03:40.300Z',NULL,8,1,98.83823503993958,7.41,135.51508080572876,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10200,'2018-02-25T22:45:36.055Z',NULL,160,2,47.59120561297272,3.57,28.919372243545,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10201,'2019-05-19T00:13:51.652Z',NULL,90,4,123.1196127553999,9.23,77.33872672365348,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10202,'2017-09-30T00:10:09.595Z',NULL,72,4,94.80254599192457,7.11,76.24492301761606,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10203,'2018-02-16T04:46:13.647Z',6.610171587984836,116,2,114.42485125407785,8.58,90.1294443333541,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10204,'2018-05-31T09:36:20.634Z',NULL,46,5,118.0495173798411,8.85,84.68581713725433,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10205,'2017-02-01T21:33:55.792Z',NULL,84,2,54.58418555091025,4.09,49.83192525833127,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10206,'2018-02-24T16:08:24.890Z',NULL,191,2,128.5841852057933,9.64,198.31798349674042,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10207,'2018-01-28T09:56:54.487Z',2.110171587984836,142,2,70.34853057210945,5.28,43.51109403700049,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10208,'2018-05-29T17:12:11.834Z',NULL,122,4,99.84528328808108,7.49,126.97970521882971,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10209,'2019-02-05T13:43:24.387Z',NULL,108,2,50.094887884945365,3.76,61.974068417669656,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10210,'2019-11-02T21:28:55.205Z',NULL,171,2,105.07665741496471,7.88,158.2922552210278,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10211,'2018-07-11T12:21:14.685Z',NULL,126,3,125.24398120308456,9.39,96.04357069525288,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10212,'2018-07-27T10:31:21.636Z',NULL,171,4,105.07665741496471,7.88,76.13082584034352,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10213,'2018-11-05T04:11:07.137Z',NULL,115,2,77.91196471862148,5.84,111.48893462332897,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10214,'2018-07-20T20:39:05.043Z',NULL,198,4,70.14610686710009,5.26,92.75869793193631,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10215,'2018-12-20T22:47:12.869Z',NULL,73,2,71.6287722595695,5.37,94.00434699771284,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10216,'2017-11-21T01:55:53.105Z',NULL,100,2,45.22324323588729,3.39,62.703883974822226,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10217,'2019-12-27T04:54:58.843Z',NULL,98,2,112.41825444654248,8.43,174.63731411171403,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10218,'2019-11-25T13:12:32.118Z',NULL,189,2,93.27738254731509,7,156.8450004157238,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10219,'2016-12-27T14:10:31.639Z',NULL,68,2,76.82895921539838,5.76,45.703653127485715,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10220,'2018-11-14T04:30:35.934Z',NULL,47,3,84.0766209826718,6.31,71.63323237980838,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10221,'2019-03-18T01:50:03.597Z',NULL,18,1,81.90307121097293,6.14,59.134021888882764,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10222,'2018-07-03T23:13:29.774Z',NULL,25,3,68.62263967182464,5.15,45.270242896001314,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10223,'2017-11-06T01:39:25.159Z',NULL,20,2,24.884330833643833,1.87,34.48203538153567,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10224,'2019-07-09T02:24:53.715Z',NULL,61,4,23.537915510955656,1.77,36.174413620556635,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10225,'2019-11-27T00:58:39.425Z',NULL,197,2,70.14610686710009,5.26,72.55765272968301,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10226,'2019-02-24T06:16:36.211Z',NULL,70,1,57.493003808959784,4.31,67.7930038625513,1349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10227,'2020-03-18T22:46:23.273Z',NULL,179,1,68.32408657333919,0,93.576539101295,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10228,'2019-08-16T14:20:45.942Z',NULL,43,4,76.35255205175756,0,42.285848004284595,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10229,'2017-12-27T17:26:53.745Z',NULL,129,2,98.7781981443958,0,120.84929854082263,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10230,'2017-12-06T00:18:39.851Z',NULL,9,3,58.31312098526137,0,49.049803447175485,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10231,'2019-03-19T09:49:49.022Z',NULL,155,1,43.77574310182776,0,57.39905218126214,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10232,'2019-07-31T22:28:20.382Z',NULL,97,7,112.41825444654248,0,132.27483915802503,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10233,'2019-11-25T16:15:49.507Z',NULL,128,3,75.08016314504417,0,116.89345970772325,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10234,'2018-04-08T18:46:58.200Z',NULL,145,3,61.1983004605443,0,51.59345415865296,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10235,'2017-10-01T04:43:05.455Z',NULL,22,6,21.42451996044233,0,25.074277213849886,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10236,'2017-05-11T12:48:31.530Z',NULL,200,5,48.802638078661005,0,70.64094444071438,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10237,'2017-01-08T19:22:45.521Z',NULL,110,2,37.01783079127111,0,51.22275848877974,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10238,'2018-03-28T18:53:28.097Z',NULL,58,1,78.14578007078882,0,41.74976253799188,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10239,'2019-10-21T09:31:47.012Z',NULL,9,8,87.46968147789205,0,95.83820067375044,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10240,'2019-05-29T21:40:47.393Z',NULL,78,6,41.616917284159726,0,38.14150199838661,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10241,'2019-10-28T09:55:19.000Z',NULL,23,8,116.86672609493307,0,105.59512712079169,1350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10242,'2018-02-16T03:25:47.939Z',NULL,130,2,75.02573869315137,4.13,74.08149951137635,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10243,'2018-07-22T15:18:57.217Z',NULL,80,6,54.91325681036414,3.02,78.03603010268797,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10244,'2020-01-17T14:42:21.694Z',4.799110905922265,1,3,44.19489169601981,2.43,37.79062972028057,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10245,'2017-07-01T08:03:18.820Z',NULL,137,6,45.18165304538124,2.48,45.264785886349806,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10246,'2018-04-28T16:19:55.774Z',NULL,152,3,48.89568729900663,2.69,36.54446320545088,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10247,'2018-11-19T11:36:45.059Z',NULL,61,3,23.537915510955656,1.29,31.66134309325246,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10248,'2020-01-01T13:22:36.045Z',NULL,150,2,128.55415037577922,7.07,144.75836919675888,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10249,'2019-10-26T02:15:11.097Z',NULL,88,5,105.41292031622555,5.8,82.60426807611519,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10250,'2019-01-13T15:35:51.674Z',NULL,100,2,67.83486485383094,3.73,109.46920550847749,1351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10251,'2019-07-12T07:12:24.294Z',NULL,142,4,70.34853057210945,4.22,91.56231546927425,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10252,'2017-04-17T12:18:40.212Z',9.299110905922266,17,3,53.290720311951766,3.2,36.463464230733116,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10253,'2018-05-15T06:56:10.197Z',4.799110905922265,197,5,70.14610686710009,4.21,80.89465529693904,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10254,'2019-12-02T21:13:51.381Z',4.799110905922265,182,3,84.48940370476112,5.07,125.07140970373035,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10255,'2020-01-14T13:42:24.158Z',NULL,141,2,126.20312547576883,7.57,185.09907597081067,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10256,'2018-04-02T04:23:46.720Z',NULL,42,3,38.00410713690931,2.28,20.831209704360248,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10257,'2017-07-06T10:31:16.100Z',NULL,185,6,26.384667225677738,1.58,14.340137621553126,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10258,'2020-03-23T07:32:25.972Z',NULL,187,1,98.9770008385166,5.94,131.69710171084105,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10259,'2018-10-28T00:11:00.879Z',NULL,140,8,66.80312547576881,4.01,68.55477791029617,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10260,'2017-07-25T08:35:42.586Z',NULL,84,6,54.58418555091025,3.28,32.19772746432786,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10261,'2018-07-26T04:52:55.923Z',NULL,114,4,77.91196471862148,4.67,103.28761386235124,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10262,'2018-06-15T05:49:53.043Z',NULL,68,5,115.24343882309758,6.91,68.45690024408701,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10263,'2018-07-31T11:12:17.485Z',NULL,191,52,128.5841852057933,7.72,95.26728274823611,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10264,'2018-06-01T05:30:14.487Z',NULL,89,7,63.719612755399886,3.82,47.235800665309,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10265,'2018-07-28T22:55:13.107Z',NULL,60,4,29.80214751859149,1.79,21.2015487344874,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10266,'2019-02-10T12:54:18.238Z',NULL,110,1,55.526746186906664,3.33,57.995121411752415,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10267,'2019-04-05T13:28:11.764Z',NULL,31,3,105.65346467128523,6.34,68.83561849393674,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10268,'2019-08-18T10:34:02.672Z',NULL,86,5,92.31436670850246,5.54,96.87894007632774,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10269,'2020-01-20T18:06:01.779Z',NULL,10,1,47.6793282102869,2.86,57.34279484172617,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10270,'2020-02-28T01:12:13.376Z',NULL,98,1,112.41825444654248,6.75,101.2569580966729,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10271,'2019-09-19T11:57:43.223Z',NULL,63,2,133.5202262591817,8.01,105.36255890255576,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10272,'2019-08-19T22:22:06.442Z',NULL,101,3,139.82488066180403,8.39,184.83648914827594,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10273,'2019-07-05T03:58:12.550Z',NULL,22,2,32.136779940663494,1.93,34.534013942321096,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10274,'2019-08-28T10:41:33.922Z',NULL,177,5,128.8192981944599,7.73,150.18740594171524,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10275,'2019-06-23T04:12:38.246Z',NULL,62,7,133.5202262591817,8.01,128.76077790988813,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10276,'2018-12-15T10:59:45.404Z',NULL,28,2,68.12471180754113,4.09,49.43494991902079,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10277,'2018-07-20T07:29:33.924Z',NULL,21,5,60.57501609456816,3.63,48.9860205140483,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10278,'2016-06-08T12:23:02.850Z',NULL,125,5,53.59799471993963,3.22,90.26970906205895,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10279,'2017-04-29T23:18:31.070Z',NULL,79,1,27.74461152277315,1.66,27.520054055341603,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10280,'2019-06-26T01:09:08.896Z',NULL,131,5,113.11722203337729,6.79,89.05581239328303,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10281,'2018-01-25T16:31:20.225Z',NULL,58,2,78.14578007078882,4.69,116.0856612513243,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10282,'2019-06-15T00:09:19.080Z',NULL,116,5,114.42485125407785,6.87,178.13900822147755,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10283,'2020-01-11T04:41:04.462Z',NULL,76,2,63.82421061366486,3.83,50.222412242787634,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10284,'2017-09-07T01:29:12.505Z',NULL,93,4,33.212427711035886,1.99,31.92785077945471,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10285,'2020-04-15T22:22:45.890Z',NULL,123,2,110.93145648834248,6.66,91.3384700507923,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10286,'2019-12-13T09:19:47.295Z',NULL,75,1,125.81276373452337,7.55,87.39058717224005,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10287,'2017-10-07T06:24:17.279Z',NULL,159,4,23.686782969182406,1.42,25.433392998442912,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10288,'2020-01-08T11:20:04.769Z',NULL,99,2,67.83486485383094,4.07,78.33487097498598,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10289,'2018-01-26T23:56:13.519Z',NULL,36,2,130.93687730741433,7.86,77.30508573967866,1352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10290,'2019-08-28T03:24:21.866Z',NULL,111,5,55.526746186906664,3.47,31.683812083008274,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10291,'2017-12-17T13:42:59.766Z',NULL,133,1,45.654646865558064,2.85,32.02833477761508,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10292,'2018-08-15T12:42:35.028Z',NULL,53,5,44.27587240151534,2.77,41.64515917769341,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10293,'2019-06-26T00:40:07.285Z',NULL,91,7,65.09432810381134,4.07,63.34840689357437,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10294,'2018-05-19T19:47:43.421Z',NULL,152,3,48.89568729900663,3.06,32.011115308141804,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10295,'2019-11-29T01:39:09.185Z',NULL,67,2,41.24480890795779,2.58,53.01361444822785,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10296,'2019-08-01T03:06:41.708Z',NULL,46,7,118.0495173798411,7.38,140.70549088534602,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10297,'2017-05-04T06:59:32.817Z',NULL,163,5,22.378598800110105,1.4,21.87477215504134,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10298,'2018-12-18T21:28:25.779Z',NULL,58,2,78.14578007078882,4.88,93.78273474712691,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10299,'2018-06-17T02:49:50.960Z',6.339501511984306,173,5,122.3651993029456,7.65,173.17586572122568,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10300,'2018-09-10T13:32:35.528Z',NULL,94,3,109.21864156655383,6.83,99.96603150598551,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10301,'2017-10-29T10:05:41.973Z',NULL,71,3,55.202545991924566,3.45,89.39547161698196,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10302,'2018-04-07T11:00:30.047Z',NULL,178,2,117.32963250370614,7.33,68.21396674041544,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10303,'2019-03-28T17:51:13.248Z',NULL,104,1,106.44215255778118,6.65,137.7956039870867,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10304,'2016-12-13T11:05:50.473Z',NULL,5,2,82.7450976850356,5.17,132.47939267559488,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10305,'2017-12-07T08:59:26.572Z',NULL,52,1,69.1172482676769,4.32,110.4953255037266,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10306,'2019-08-28T21:44:43.389Z',NULL,63,6,133.5202262591817,8.35,176.75864340484412,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10307,'2020-03-30T08:06:13.169Z',NULL,48,1,123.20884248534108,7.7,187.21028305853838,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10308,'2019-01-08T18:56:30.479Z',NULL,29,2,123.57448218067185,7.72,131.29548199472185,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10309,'2020-02-25T11:19:40.317Z',NULL,91,1,65.09432810381134,4.07,77.91313396594383,1354); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10310,'2020-01-13T23:27:43.971Z',NULL,165,2,38.30449564120193,2.11,51.8712539775054,1355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10311,'2018-08-27T15:59:39.966Z',NULL,34,6,74.30391386913199,4.09,116.39266908016359,1355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10312,'2018-02-27T08:41:15.760Z',NULL,34,1,74.30391386913199,5.2,42.002706442080466,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10313,'2018-04-14T21:09:58.893Z',NULL,105,3,52.723521442619514,3.69,87.26253732940127,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10314,'2019-03-04T17:07:27.236Z',NULL,52,1,103.67587240151535,7.26,115.19772411463674,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10315,'2019-07-13T03:44:53.152Z',1.8395015119843061,79,4,41.616917284159726,2.91,36.35043507625322,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10316,'2017-04-15T10:06:44.987Z',NULL,115,2,51.94130981241432,3.64,60.04596835591251,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10317,'2017-02-17T00:03:12.362Z',NULL,14,1,25.09876359271891,1.76,25.714526297161086,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10318,'2019-01-24T00:31:31.291Z',NULL,192,2,69.18418520579327,4.84,44.21527771037466,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10319,'2019-04-13T13:41:33.948Z',NULL,86,2,92.31436670850246,6.46,75.41372041685752,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10320,'2017-05-08T00:12:57.562Z',NULL,146,3,84.03151414144409,5.88,107.60477420321992,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10321,'2018-04-16T11:24:13.957Z',NULL,165,2,38.30449564120193,2.68,30.074467228859408,1356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10322,'2019-07-23T06:32:07.961Z',NULL,178,4,117.32963250370614,7.33,188.49168970841842,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10323,'2017-05-03T05:18:37.212Z',NULL,20,4,24.884330833643833,1.56,24.04127210939891,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10324,'2018-05-25T17:14:54.248Z',NULL,20,3,37.32649625046575,2.33,28.06440528793076,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10325,'2018-03-26T02:21:11.895Z',NULL,157,1,139.8942352373801,8.74,184.97692406725764,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10326,'2018-05-05T10:33:20.514Z',NULL,98,3,112.41825444654248,7.03,139.03597436709853,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10327,'2020-02-12T12:15:37.315Z',1.6162655143790627,115,1,77.91196471862148,4.87,51.43942719349595,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10328,'2018-10-05T09:23:37.313Z',NULL,10,6,47.6793282102869,2.98,50.21699748651265,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10329,'2016-12-05T22:05:47.220Z',NULL,179,2,45.549391048892794,2.85,34.69780830149452,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10330,'2018-12-27T19:15:53.055Z',6.116265514379062,72,2,142.20381898788685,8.89,218.2948476990149,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10331,'2019-01-04T05:23:07.775Z',1.6162655143790627,157,2,139.8942352373801,8.74,141.16406628565073,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10332,'2019-07-23T12:03:47.194Z',NULL,169,2,59.53172693453274,3.72,72.81396607784863,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10333,'2018-08-16T09:09:42.996Z',NULL,124,3,110.93145648834248,6.93,78.95306842373057,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10334,'2018-10-15T11:55:39.688Z',6.116265514379062,189,4,93.27738254731509,5.83,60.6941132208314,1357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10335,'2019-06-20T15:35:34.860Z',NULL,69,5,73.38772304360626,4.77,114.71498838829118,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10336,'2017-03-16T01:08:15.518Z',NULL,13,0,75.0861692740371,4.88,50.97574357691699,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10337,'2017-12-09T17:56:40.151Z',NULL,167,2,65.13633042746795,4.23,54.83639537485216,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10338,'2018-05-17T18:11:01.012Z',1.6162655143790627,104,3,106.44215255778118,6.92,175.19183337334053,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10339,'2018-07-09T09:41:58.362Z',NULL,3,4,53.08311732230858,3.45,72.06558052677757,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10340,'2019-03-01T19:11:48.027Z',NULL,54,1,62.09360840402396,4.04,91.34681882474848,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10341,'2019-09-26T01:45:49.587Z',NULL,168,2,118.93172693453273,7.73,108.4315037665353,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10342,'2020-03-08T05:48:55.462Z',6.116265514379062,60,1,29.80214751859149,1.94,44.30174157478592,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10343,'2018-01-26T14:46:23.317Z',NULL,125,2,80.39699207990944,5.23,114.73116151814362,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10344,'2019-03-03T05:36:07.903Z',NULL,29,0,123.57448218067185,8.03,206.70938081152067,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10345,'2019-02-14T23:45:04.622Z',NULL,126,1,125.24398120308456,8.14,93.58544309738927,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10346,'2019-05-01T05:13:19.608Z',NULL,21,2,60.57501609456816,3.94,60.33766432453024,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10347,'2017-12-13T15:36:51.830Z',NULL,183,1,37.7982748679465,2.46,31.366911907166784,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10348,'2018-10-31T02:34:33.546Z',NULL,116,3,114.42485125407785,7.44,117.65902423141777,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10349,'2020-04-04T21:28:35.144Z',NULL,86,1,92.31436670850246,6,143.90197556166558,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10350,'2020-01-19T23:05:15.038Z',NULL,75,1,125.81276373452337,8.18,200.34477800964342,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10351,'2019-06-15T14:14:24.235Z',NULL,34,5,74.30391386913199,4.83,102.03112165430913,1358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10352,'2018-09-29T11:31:12.239Z',NULL,181,5,143.88940370476112,10.07,237.64860178408045,1359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10353,'2018-07-10T16:20:19.668Z',NULL,23,5,116.86672609493307,8.18,91.89545233518379,1359); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10354,'2018-06-26T00:54:03.866Z',NULL,186,5,98.9770008385166,5.94,107.31017654968714,1363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10355,'2019-03-18T14:15:24.778Z',NULL,145,0,61.1983004605443,3.67,87.00777343242069,1363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10356,'2019-09-03T08:24:46.101Z',NULL,82,4,60.89545738030947,3.65,48.83481588035045,1363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10357,'2018-01-31T21:55:07.588Z',NULL,36,2,130.93687730741433,7.86,205.8286294316917,1363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10358,'2016-10-26T13:31:17.654Z',NULL,132,4,85.25464686555807,3.41,87.30123838362341,1364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10359,'2019-06-22T11:53:35.290Z',NULL,129,5,148.1672972165937,5.93,82.33750585915146,1364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10360,'2017-08-16T17:14:14.730Z',NULL,79,3,27.74461152277315,1.11,42.922259601232255,1364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10361,'2018-05-01T06:46:26.474Z',NULL,38,2,66.06937283839378,2.64,108.74994000639488,1364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10362,'2018-12-14T05:40:03.567Z',NULL,47,1,84.0766209826718,3.55,112.47266321019677,1365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10363,'2019-10-11T16:42:49.182Z',NULL,39,3,114.58158180283459,4.84,167.662181330342,1365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10364,'2018-02-09T08:17:35.439Z',NULL,154,1,81.87529553312261,3.46,116.4659914787611,1365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10365,'2019-09-10T22:18:16.351Z',NULL,67,4,41.24480890795779,1.74,24.785438026959913,1365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10366,'2018-11-07T15:13:49.284Z',NULL,70,2,57.493003808959784,2.43,84.36435196509352,1365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10367,'2016-07-29T06:00:40.370Z',NULL,109,2,79.36660712128732,4.37,99.24691886034434,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10368,'2019-06-25T14:17:31.638Z',NULL,12,5,116.01427581618326,6.38,76.06164013306756,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10369,'2019-03-06T10:58:33.343Z',NULL,97,1,112.41825444654248,6.18,151.14231305846542,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10370,'2018-06-21T17:32:23.439Z',NULL,132,3,127.88197029833711,7.03,200.00094560000335,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10371,'2019-03-18T23:54:46.023Z',NULL,75,0,125.81276373452337,6.92,115.64744050392676,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10372,'2016-10-13T18:32:40.526Z',NULL,78,3,27.74461152277315,1.53,23.103476364842287,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10373,'2020-03-14T19:43:25.943Z',NULL,74,0,51.12804227386549,2.81,64.97345218261566,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10374,'2018-08-09T11:21:46.913Z',NULL,184,3,116.09741230191975,6.39,195.92962576405526,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10375,'2019-10-13T05:49:07.865Z',NULL,141,4,126.20312547576883,6.94,96.08327660915363,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10376,'2018-03-05T04:13:31.247Z',NULL,178,1,117.32963250370614,6.45,145.90511008698786,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10377,'2017-11-26T01:35:15.774Z',NULL,61,4,15.691943673970439,0.86,17.850218601168358,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10378,'2019-09-21T08:40:45.243Z',NULL,155,6,43.77574310182776,2.41,41.86491112924215,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10379,'2019-01-17T16:39:11.756Z',NULL,128,2,75.08016314504417,4.13,92.84289512333413,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10380,'2019-03-30T10:57:44.298Z',NULL,9,1,87.46968147789205,4.81,56.56662688453643,1366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10381,'2017-08-06T13:01:42.299Z',NULL,194,6,33.587182645381546,2.02,52.53713458948349,1367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10382,'2016-09-18T15:46:05.949Z',2.772358586136227,161,6,31.727470408648482,1.9,17.358798186282733,1367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10383,'2017-09-24T17:37:12.919Z',NULL,166,6,25.536330427467956,0.74,38.23775219573103,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10384,'2018-07-03T20:55:56.801Z',NULL,48,6,123.20884248534108,3.57,172.71293417033857,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10385,'2020-04-09T05:41:55.546Z',NULL,47,4,84.0766209826718,2.44,46.70330838473007,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10386,'2018-09-02T22:42:24.769Z',NULL,124,5,110.93145648834248,3.22,101.75067180951346,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10387,'2019-05-16T00:34:58.828Z',NULL,104,4,106.44215255778118,3.09,123.1974324117887,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10388,'2020-02-24T15:24:00.531Z',NULL,114,2,77.91196471862148,2.26,48.43320372630466,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10389,'2019-12-05T21:00:13.380Z',NULL,80,1,54.91325681036414,1.59,56.579708243271895,1368); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10390,'2017-10-04T07:47:43.171Z',NULL,15,5,25.09876359271891,1.25,36.215604034740046,1369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10391,'2018-05-01T23:30:37.955Z',NULL,165,4,38.30449564120193,1.92,52.98493476213678,1369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10392,'2018-10-10T10:23:45.638Z',NULL,157,4,139.8942352373801,6.99,102.923048074978,1369); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10393,'2016-12-26T13:38:20.828Z',NULL,192,1,46.122790137195516,1.34,35.24368028588453,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10394,'2019-02-15T01:26:20.880Z',NULL,45,1,118.0495173798411,3.42,75.87445927574379,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10395,'2018-12-16T16:37:42.100Z',NULL,141,1,126.20312547576883,3.66,78.07884374775684,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10396,'2019-04-23T16:50:29.946Z',NULL,87,3,117.25536340498041,3.4,60.61076339828628,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10397,'2019-09-14T04:38:03.313Z',NULL,197,5,70.14610686710009,2.03,103.9214330453669,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10398,'2017-11-03T04:01:53.150Z',NULL,47,3,56.05108065511453,1.63,31.808251575710745,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10399,'2019-07-29T16:17:42.889Z',NULL,50,6,53.64019616819762,1.56,72.47408507149288,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10400,'2020-04-08T09:27:08.310Z',NULL,192,3,69.18418520579327,2.01,98.6834622357171,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10401,'2018-05-09T01:09:15.441Z',NULL,13,4,112.62925391105566,3.27,105.85861828078332,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10402,'2019-04-02T08:03:16.987Z',NULL,74,3,51.12804227386549,1.48,42.848168188381834,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10403,'2019-08-06T00:29:37.446Z',NULL,132,4,127.88197029833711,3.71,138.382454434765,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10404,'2019-04-15T09:37:18.864Z',NULL,186,2,98.9770008385166,2.87,157.8577866455091,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10405,'2017-08-10T10:55:06.609Z',NULL,161,6,31.727470408648482,0.92,42.99686168464088,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10406,'2016-08-11T16:42:34.072Z',NULL,173,82,81.57679953529707,2.37,121.6330137416232,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10407,'2019-06-07T09:32:56.558Z',NULL,88,8,105.41292031622555,3.06,123.15123168008292,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10408,'2017-08-11T13:21:53.974Z',NULL,118,7,38.418408731319154,1.11,61.45514561437809,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10409,'2018-07-15T07:59:55.812Z',NULL,168,4,118.93172693453273,3.45,172.22594374769596,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10410,'2017-10-28T22:08:04.897Z',NULL,71,6,55.202545991924566,1.6,75.65238480707056,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10411,'2019-10-21T18:23:05.270Z',NULL,64,7,143.4221774571866,4.16,153.15364774305453,1370); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10412,'2019-05-30T01:36:55.664Z',NULL,65,4,68.22769726470014,4.09,40.09030762453262,1374); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10413,'2019-03-14T07:02:33.199Z',NULL,153,1,66.79892314178237,4.01,38.350424409752115,1374); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10414,'2019-05-13T15:06:10.379Z',3.7448938977184327,80,3,54.91325681036414,3.29,46.524781447126244,1374); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10415,'2020-03-27T08:53:16.105Z',NULL,160,1,47.59120561297272,3.33,59.23259102455098,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10416,'2018-12-12T09:32:11.502Z',NULL,17,1,79.93608046792765,5.6,98.40067436674613,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10417,'2019-11-18T00:59:50.673Z',NULL,194,2,50.38077396807232,3.53,50.33171081361957,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10418,'2019-12-10T05:42:58.644Z',NULL,137,2,67.77247956807186,4.74,96.7568666365653,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10419,'2019-10-08T19:57:41.190Z',NULL,30,6,64.17448218067184,4.49,50.91517417953448,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10420,'2020-04-04T09:48:57.490Z',NULL,4,3,110.98767151282252,7.77,71.98933719802879,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10421,'2019-06-04T06:54:49.720Z',3.7448938977184327,187,65,98.9770008385166,6.93,159.8945532545788,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10422,'2019-01-20T05:10:53.849Z',NULL,90,2,123.1196127553999,8.62,197.4629781572775,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10423,'2017-08-02T04:53:03.740Z',NULL,77,7,67.34461152277315,4.71,41.07878066045945,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10424,'2018-10-25T09:56:04.431Z',NULL,162,4,33.56789820016516,2.35,50.82517127661029,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10425,'2018-03-10T11:03:55.425Z',NULL,130,1,75.02573869315137,5.25,42.74572961275924,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10426,'2020-01-11T17:39:22.693Z',NULL,52,2,103.67587240151535,7.26,78.64778264025176,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10427,'2018-01-30T05:01:20.272Z',NULL,164,1,92.96789820016517,6.51,87.17232262443862,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10428,'2018-03-22T12:10:57.287Z',NULL,84,1,81.87627832636537,5.73,65.83009304850273,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10429,'2018-07-31T06:00:59.369Z',NULL,80,6,54.91325681036414,3.84,33.35102024755936,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10430,'2018-10-15T17:24:16.093Z',NULL,148,7,138.9817182254566,9.73,154.6648604010071,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10431,'2019-03-14T20:12:12.909Z',NULL,143,1,61.1983004605443,4.28,98.1988641435467,1375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10432,'2020-04-15T00:05:14.531Z',NULL,38,3,66.06937283839378,4.62,102.50556493140112,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10433,'2020-03-09T17:00:09.797Z',NULL,130,1,75.02573869315137,5.25,127.45162581958337,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10434,'2018-09-28T18:22:35.533Z',NULL,40,6,99.66240044231697,6.98,88.40532410974583,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10435,'2018-10-05T03:45:43.334Z',NULL,76,6,63.82421061366486,4.47,36.22366297501237,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10436,'2018-02-03T05:09:03.749Z',NULL,17,1,79.93608046792765,5.6,128.2015105609489,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10437,'2018-01-22T06:55:09.701Z',NULL,99,2,67.83486485383094,4.75,40.23113472964935,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10438,'2018-11-18T01:54:00.450Z',NULL,53,3,44.27587240151534,3.1,65.59279465771397,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10439,'2019-12-16T22:05:47.634Z',NULL,21,1,60.57501609456816,4.24,43.520285325319556,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10440,'2018-07-03T01:08:20.212Z',NULL,34,5,74.30391386913199,5.2,92.14385578053216,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10441,'2018-09-26T15:13:50.632Z',NULL,136,6,105.20402317157343,7.36,106.18990285606118,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10442,'2019-07-23T19:27:05.985Z',NULL,108,5,50.094887884945365,3.51,35.41236581481791,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10443,'2018-03-31T01:07:58.241Z',NULL,139,1,76.77768319177018,5.37,82.3422967734851,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10444,'2020-02-29T20:11:23.691Z',NULL,105,2,52.723521442619514,3.69,67.79492413953484,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10445,'2018-02-27T10:44:10.756Z',NULL,97,2,112.41825444654248,7.87,121.96068635583549,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10446,'2019-06-20T10:11:47.903Z',NULL,178,6,117.32963250370614,8.21,117.4141223592334,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10447,'2017-12-11T17:47:52.165Z',NULL,147,2,44.4315141414441,3.11,55.62748903230807,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10448,'2018-07-31T18:13:41.691Z',NULL,12,5,116.01427581618326,8.12,159.0404821810808,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10449,'2019-02-09T18:35:18.565Z',NULL,115,2,77.91196471862148,5.45,80.90169101990023,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10450,'2019-09-04T11:45:05.784Z',NULL,188,6,33.87738254731509,2.37,44.13295124871579,1377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10451,'2019-10-09T10:40:39.538Z',NULL,40,6,99.66240044231697,5.98,77.07439231628649,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10452,'2018-01-25T19:30:35.393Z',NULL,149,2,69.15415037577924,4.15,60.03078562786622,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10453,'2018-11-03T02:22:14.844Z',NULL,87,4,117.25536340498041,7.04,84.44871324565692,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10454,'2018-11-07T09:28:28.509Z',NULL,35,3,71.53687730741436,4.29,47.307881186229004,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10455,'2020-01-01T18:57:14.148Z',NULL,159,1,35.53017445377361,2.13,28.380338137660885,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10456,'2018-11-23T15:16:47.971Z',NULL,153,3,66.79892314178237,4.01,104.92895077049894,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10457,'2018-04-15T01:10:35.352Z',3.7214215085411344,159,4,35.53017445377361,2.13,57.961487949761256,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10458,'2019-01-21T03:58:24.421Z',NULL,71,3,82.80381898788684,4.97,44.45999074468702,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10459,'2019-01-24T19:15:20.091Z',8.221421508541134,93,3,49.81864156655383,2.99,61.31222611129675,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10460,'2018-08-28T20:58:24.452Z',8.221421508541134,28,9,68.12471180754113,4.09,107.73658680888276,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10461,'2019-09-08T15:48:56.613Z',NULL,133,6,68.4819702983371,4.11,116.02993589613526,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10462,'2019-09-22T08:00:31.426Z',NULL,88,6,105.41292031622555,6.32,94.23552919961465,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10463,'2019-08-12T20:45:05.077Z',NULL,53,9,44.27587240151534,2.66,53.35283598127613,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10464,'2017-11-25T18:08:03.350Z',NULL,134,4,28.328223666657742,1.7,32.80017768837039,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10465,'2019-12-21T23:40:20.009Z',NULL,80,3,54.91325681036414,3.29,68.11959520652476,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10466,'2019-04-22T11:09:13.301Z',8.754191091456459,102,4,47.04215255778118,2.82,71.77620128380593,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10467,'2019-04-30T22:02:07.007Z',NULL,50,3,53.64019616819762,3.22,81.10227461976645,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10468,'2019-02-02T23:04:51.472Z',4.25419109145646,95,2,49.81864156655383,2.99,40.360608062336524,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10469,'2018-08-24T21:21:24.376Z',NULL,135,9,45.80402317157342,2.75,55.33583087531182,1378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10470,'2020-02-09T05:02:18.554Z',NULL,139,2,76.77768319177018,5.37,56.786028661145934,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10471,'2017-11-17T20:30:58.522Z',NULL,48,4,82.13922832356072,5.75,58.0318200068639,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10472,'2019-11-28T13:50:47.479Z',4.25419109145646,125,4,80.39699207990944,5.63,60.737757336332244,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10473,'2020-01-23T01:41:20.859Z',NULL,143,2,61.1983004605443,4.28,104.4987188260424,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10474,'2019-04-12T06:50:26.987Z',NULL,4,3,110.98767151282252,7.77,106.34900630101227,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10475,'2019-01-20T09:37:50.359Z',NULL,165,3,38.30449564120193,2.68,45.57347583562441,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10476,'2016-11-05T07:20:51.447Z',NULL,15,3,25.09876359271891,1.76,37.570076621835256,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10477,'2018-04-08T17:35:03.371Z',NULL,132,3,127.88197029833711,8.95,103.05552998317835,1380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10478,'2018-04-24T11:57:42.038Z',NULL,8,4,98.83823503993958,6.8,135.7138738705395,1381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10479,'2018-08-06T06:18:34.246Z',NULL,174,8,111.61430894181083,7.67,112.81387352498147,1381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10480,'2016-09-28T20:59:56.467Z',NULL,65,4,45.4851315098001,3.13,42.22324348405243,1381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10481,'2020-01-23T03:05:02.403Z',8.754191091456459,23,2,116.86672609493307,8.03,156.92937078293645,1381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10482,'2016-08-01T23:44:34.714Z',NULL,173,8,81.57679953529707,5.61,72.34153027487717,1381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10483,'2018-09-17T23:07:16.847Z',8.754191091456459,185,5,39.57700083851661,1.58,28.025035086704985,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10484,'2020-01-15T16:32:12.829Z',NULL,90,2,123.1196127553999,4.92,165.4190919819101,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10485,'2018-09-11T11:35:39.268Z',NULL,167,4,97.70449564120193,3.91,159.87983623408755,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10486,'2018-10-03T14:14:51.487Z',NULL,25,5,68.62263967182464,2.74,47.7373824128369,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10487,'2018-09-29T14:23:37.693Z',NULL,186,4,98.9770008385166,3.96,163.46478341189567,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10488,'2020-03-01T00:00:03.927Z',NULL,14,1,37.648145389078365,1.51,41.67200570012997,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10489,'2019-10-26T18:18:37.771Z',4.25419109145646,75,6,125.81276373452337,5.03,193.7921253302639,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10490,'2017-07-16T10:27:12.387Z',NULL,36,7,87.29125153827623,3.49,111.2529959558221,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10491,'2018-01-14T07:15:53.736Z',NULL,64,3,143.4221774571866,5.74,237.15883355490342,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10492,'2020-04-08T18:43:28.933Z',NULL,112,3,41.329386510090345,1.65,55.79361626430922,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10493,'2019-09-14T23:05:02.053Z',NULL,163,5,33.56789820016516,1.34,23.679567945587053,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10494,'2018-03-17T16:22:58.278Z',NULL,198,1,70.14610686710009,2.81,116.89763493386037,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10495,'2019-12-02T17:29:12.309Z',NULL,65,2,68.22769726470014,2.73,49.09089466771339,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10496,'2019-11-10T18:53:06.696Z',7.845906718733245,4,4,110.98767151282252,4.44,159.74119197977487,1382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10497,'2018-01-29T09:43:53.070Z',NULL,90,2,123.1196127553999,7.69,182.58207303100139,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10498,'2019-04-25T01:05:32.531Z',NULL,84,4,81.87627832636537,5.12,64.87320959075038,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10499,'2018-08-27T20:05:34.232Z',NULL,158,7,139.8942352373801,8.74,91.47871924083985,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10500,'2019-10-12T08:29:01.437Z',NULL,44,4,76.35255205175756,4.77,91.07141696120382,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10501,'2020-03-31T08:07:25.632Z',3.345906718733245,65,1,68.22769726470014,4.26,76.75802251782531,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10502,'2017-02-18T03:40:18.913Z',NULL,118,2,38.418408731319154,2.4,52.853515331703456,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10503,'2019-06-21T06:44:56.662Z',NULL,60,8,29.80214751859149,1.86,48.53268306512575,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10504,'2017-01-10T22:01:02.946Z',NULL,33,2,31.829909130640935,1.99,20.06539323160374,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10505,'2020-01-03T08:08:42.799Z',NULL,129,2,148.1672972165937,9.26,223.11115990825976,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10506,'2016-10-27T20:19:15.873Z',NULL,30,6,42.7829881204479,2.67,51.767744842076496,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10507,'2017-06-24T01:17:20.187Z',NULL,156,4,20.41053609936413,1.28,24.903835158897166,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10508,'2019-10-10T06:10:38.037Z',NULL,150,40,128.55415037577922,8.03,79.9743462050183,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10509,'2019-06-19T06:10:16.520Z',NULL,97,4,112.41825444654248,7.03,64.9999089894574,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10510,'2018-06-11T23:55:08.552Z',NULL,197,4,70.14610686710009,4.38,45.51369946744714,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10511,'2017-11-28T21:03:55.357Z',NULL,10,3,31.78621880685793,1.99,42.374561415079995,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10512,'2019-02-19T12:01:42.215Z',NULL,35,2,71.53687730741436,4.47,104.34060410288637,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10513,'2018-12-05T13:24:32.506Z',NULL,83,19,81.87627832636537,5.12,73.8351043456463,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10514,'2018-01-05T07:18:59.683Z',NULL,80,2,54.91325681036414,3.43,29.44407375384034,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10515,'2019-12-28T06:30:08.988Z',NULL,130,2,75.02573869315137,4.69,59.224363540906836,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10516,'2018-10-06T10:52:44.460Z',NULL,157,6,139.8942352373801,8.74,226.85900169745568,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10517,'2019-12-29T14:44:55.253Z',NULL,169,2,59.53172693453274,3.72,77.81856548097214,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10518,'2019-04-28T15:01:26.886Z',7.845906718733245,164,4,92.96789820016517,5.81,122.30836059024287,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10519,'2018-11-23T12:58:25.424Z',NULL,112,4,41.329386510090345,2.58,68.62012390093206,1383); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10520,'2017-09-17T04:20:53.476Z',NULL,21,5,40.38334406304544,2.62,56.94930123214096,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10521,'2018-08-15T20:12:21.422Z',NULL,167,5,97.70449564120193,6.35,112.51478047962837,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10522,'2019-01-10T10:16:10.878Z',NULL,93,1,49.81864156655383,3.24,57.82386433503001,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10523,'2019-10-25T05:48:26.085Z',NULL,171,6,105.07665741496471,6.83,69.2747654662156,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10524,'2019-03-08T13:44:58.633Z',NULL,99,1,67.83486485383094,4.41,99.79484906751058,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10525,'2018-03-28T16:57:02.077Z',NULL,167,1,97.70449564120193,6.35,74.32660947790383,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10526,'2020-01-27T01:16:02.528Z',NULL,55,2,95.77128575934437,6.23,95.53611756509369,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10527,'2019-07-11T23:12:14.250Z',NULL,194,5,50.38077396807232,3.27,59.27821777995287,1387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10528,'2019-11-26T22:12:40.535Z',NULL,30,3,64.17448218067184,4.08,84.48017424422736,1388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10529,'2019-07-15T10:10:57.028Z',NULL,10,6,47.6793282102869,3.03,79.23629665819887,1388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10530,'2020-01-11T11:09:45.067Z',NULL,35,2,71.53687730741436,4.54,121.84811122905084,1388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10531,'2019-06-02T17:53:00.241Z',NULL,23,6,116.86672609493307,7.42,175.61521153018182,1388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10532,'2019-08-09T10:24:02.435Z',NULL,137,5,67.77247956807186,4.3,81.4219959726566,1388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10533,'2019-01-20T23:46:05.307Z',NULL,180,1,68.32408657333919,4.34,42.42688773853833,1388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10534,'2016-12-26T00:33:25.401Z',NULL,164,1,61.978598800110106,3.72,44.649842298031515,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10535,'2019-02-25T21:33:01.505Z',NULL,196,2,70.14610686710009,4.21,84.19306518555923,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10536,'2018-07-21T07:22:23.330Z',NULL,13,6,112.62925391105566,6.76,96.66226204322919,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10537,'2018-03-01T15:49:27.924Z',NULL,154,1,81.87529553312261,4.91,52.79645263274861,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10538,'2017-06-11T18:29:16.502Z',NULL,27,6,85.01647453836077,5.1,127.15081442410421,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10539,'2018-01-13T17:50:08.942Z',NULL,182,2,84.48940370476112,5.07,110.22453648698969,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10540,'2020-01-16T01:16:47.200Z',NULL,149,2,69.15415037577924,4.15,94.12635032128485,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10541,'2018-10-15T22:11:07.263Z',NULL,128,5,75.08016314504417,4.5,55.05267988118831,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10542,'2019-07-13T05:13:42.262Z',NULL,16,6,66.11029954877317,3.97,55.80764161317421,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10543,'2018-01-31T21:15:31.433Z',NULL,34,2,74.30391386913199,4.46,113.84841833709254,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10544,'2018-07-28T14:25:30.021Z',NULL,20,5,37.32649625046575,2.24,61.82086577975648,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10545,'2020-02-06T20:22:52.666Z',NULL,38,2,66.06937283839378,3.96,78.66443571916459,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10546,'2018-07-16T16:49:20.442Z',NULL,175,6,117.3248094335266,7.04,77.46518468614637,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10547,'2017-03-08T22:21:12.391Z',NULL,193,1,33.587182645381546,2.02,42.01975203854212,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10548,'2020-03-31T19:24:23.802Z',7.432124618858421,128,1,75.08016314504417,4.5,105.69540993319363,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10549,'2018-03-27T18:55:50.192Z',NULL,110,1,55.526746186906664,3.33,40.31867103738588,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10550,'2020-04-14T04:04:20.772Z',NULL,99,3,67.83486485383094,4.07,114.28497281601751,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10551,'2019-07-27T18:14:40.591Z',NULL,34,5,74.30391386913199,4.46,69.31176446876957,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10552,'2016-12-08T12:35:03.663Z',NULL,197,2,46.76407124473339,2.81,55.42975670927028,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10553,'2019-03-14T20:37:01.927Z',NULL,56,1,36.37128575934436,2.18,51.17500831033978,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10554,'2017-09-07T22:04:45.313Z',NULL,118,6,38.418408731319154,2.31,63.2421527463359,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10555,'2019-12-23T01:31:54.654Z',NULL,92,2,124.89242686579996,7.49,181.93922419776666,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10556,'2019-05-15T00:42:22.494Z',NULL,20,4,37.32649625046575,2.24,59.30852860238536,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10557,'2019-09-07T15:34:42.013Z',NULL,38,5,66.06937283839378,3.96,98.83409349673254,1389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10558,'2019-10-31T14:26:15.083Z',NULL,144,6,61.1983004605443,3.52,42.084861085010935,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10559,'2016-12-26T08:34:37.879Z',NULL,46,2,78.6996782532274,4.53,100.01767271354477,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10560,'2019-03-17T09:07:51.827Z',NULL,29,1,123.57448218067185,7.11,188.12030544231746,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10561,'2018-04-21T06:17:50.429Z',NULL,173,2,122.3651993029456,7.04,182.29277917023325,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10562,'2019-07-14T01:21:18.679Z',NULL,14,4,37.648145389078365,2.16,22.73253669201989,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10563,'2019-08-07T05:30:18.539Z',NULL,75,7,125.81276373452337,7.23,130.22433356650495,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10564,'2017-10-07T19:41:10.230Z',NULL,147,6,44.4315141414441,2.55,74.24209019064604,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10565,'2019-08-11T19:53:35.446Z',NULL,58,7,78.14578007078882,4.49,108.63941930152829,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10566,'2018-08-10T03:44:10.099Z',NULL,25,7,68.62263967182464,3.95,52.75929286662748,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10567,'2019-04-30T03:02:22.745Z',NULL,58,3,78.14578007078882,4.49,95.99008996985982,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10568,'2017-11-27T18:49:08.781Z',NULL,167,3,65.13633042746795,3.75,77.40949166896317,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10569,'2019-05-16T08:56:28.892Z',NULL,173,4,122.3651993029456,7.04,149.74369317766218,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10570,'2017-09-25T12:47:26.693Z',NULL,171,6,70.05110494330981,4.03,87.83990488412292,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10571,'2018-08-25T14:52:05.583Z',NULL,12,7,116.01427581618326,6.67,194.63294305510746,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10572,'2018-09-21T01:48:19.403Z',NULL,141,5,126.20312547576883,7.26,85.60989473259411,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10573,'2018-09-07T19:07:08.915Z',NULL,185,5,39.57700083851661,2.28,50.94337568338211,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10574,'2019-06-09T06:43:22.261Z',NULL,125,6,80.39699207990944,4.62,55.98950246097065,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10575,'2019-07-03T01:49:57.731Z',NULL,96,6,104.82144858590365,6.03,164.43547826828723,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10576,'2020-01-21T13:43:39.494Z',NULL,175,3,117.3248094335266,6.75,69.08713923587592,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10577,'2019-10-28T18:38:31.679Z',3.586859098029933,71,7,82.80381898788684,4.76,85.44532125940188,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10578,'2018-01-01T23:30:22.134Z',NULL,83,2,81.87627832636537,4.71,66.47085702410808,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10579,'2019-02-12T13:40:03.983Z',NULL,198,1,70.14610686710009,4.03,80.23387224645722,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10580,'2019-01-12T21:23:10.202Z',NULL,165,2,38.30449564120193,2.2,33.71077343534155,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10581,'2020-04-08T04:53:50.356Z',NULL,29,3,123.57448218067185,7.11,103.56710383700154,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10582,'2020-03-25T05:47:37.741Z',NULL,119,1,43.43814329652384,2.5,30.539681307784058,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10583,'2018-07-21T18:44:34.230Z',NULL,76,6,63.82421061366486,3.67,91.09631432975165,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10584,'2019-05-31T17:18:07.246Z',NULL,132,6,127.88197029833711,7.35,92.08408687869931,1390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10585,'2018-10-19T22:36:56.486Z',NULL,98,7,112.41825444654248,6.75,115.00372693063721,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10586,'2017-02-24T15:52:06.639Z',NULL,50,2,35.76013077879841,2.15,56.62373682009634,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10587,'2017-12-23T18:44:22.254Z',NULL,34,2,49.535942579421324,2.97,77.18055810457082,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10588,'2018-03-23T12:04:27.439Z',NULL,78,1,41.616917284159726,2.5,25.860627180698273,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10589,'2018-05-05T15:00:20.489Z',NULL,114,6,77.91196471862148,4.67,57.59894221073556,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10590,'2019-08-26T16:57:54.960Z',NULL,11,7,132.45679913492563,7.95,97.3227042763698,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10591,'2019-11-24T04:37:02.763Z',4.114055261743573,58,3,78.14578007078882,4.69,81.86129938347244,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10592,'2018-09-21T12:45:20.770Z',NULL,141,7,126.20312547576883,7.57,151.35814594472876,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10593,'2018-02-09T23:49:52.515Z',NULL,72,2,142.20381898788685,8.53,140.8125061754824,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10594,'2020-02-16T03:47:50.456Z',NULL,165,2,38.30449564120193,2.3,27.554910695781523,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10595,'2017-05-10T08:38:20.521Z',4.114055261743573,192,3,46.122790137195516,2.77,72.97490614340575,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10596,'2019-10-02T01:15:01.495Z',NULL,143,4,61.1983004605443,3.67,76.78864493367614,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10597,'2019-04-20T04:06:19.818Z',NULL,31,2,105.65346467128523,6.34,108.34076627617527,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10598,'2017-09-18T21:53:17.521Z',NULL,38,5,44.04624855892918,2.64,55.16516320752692,1391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10599,'2019-11-09T14:36:59.732Z',NULL,150,3,128.55415037577922,9.64,221.5149572869347,1392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10600,'2019-12-01T09:52:37.162Z',NULL,86,2,92.31436670850246,6.92,154.66247886221086,1392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10601,'2020-04-12T13:22:12.560Z',NULL,146,2,126.04727121216614,9.45,149.23097234167335,1392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10602,'2017-12-13T04:57:25.640Z',NULL,61,2,15.691943673970439,1.18,26.554946479316317,1392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10603,'2018-11-28T07:37:44.687Z',NULL,121,2,40.44528328808107,3.03,63.70759979151383,1392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10604,'2017-09-13T07:20:27.959Z',NULL,159,4,23.686782969182406,0,31.203211795851686,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10605,'2019-10-01T13:08:41.506Z',NULL,22,4,32.136779940663494,0,38.86464661593795,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10606,'2020-04-06T14:25:36.047Z',NULL,71,3,82.80381898788684,0,102.48258324597606,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10607,'2019-06-05T15:32:29.536Z',NULL,114,8,77.91196471862148,0,70.81173992794237,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10608,'2016-11-27T05:31:33.895Z',NULL,117,4,36.683234169385244,0,44.288511809519775,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10609,'2018-02-06T03:40:52.813Z',NULL,92,2,124.89242686579996,0,157.8716455251071,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10610,'2018-05-10T14:43:09.957Z',NULL,120,5,83.5020135028928,0,117.79253093783532,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10611,'2017-08-30T06:21:52.656Z',NULL,152,6,32.59712486600442,0,23.541988450450646,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10612,'2018-02-13T08:24:17.776Z',NULL,166,2,38.30449564120193,0,30.96822867528381,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10613,'2019-09-01T15:04:18.524Z',NULL,190,67,128.5841852057933,0,66.85766872399721,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10614,'2019-05-24T06:33:38.396Z',NULL,37,5,80.10774204020768,0,64.12448388382582,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10615,'2018-03-30T18:45:01.824Z',NULL,127,1,134.48016314504417,0,122.05568261912656,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10616,'2018-12-20T17:17:46.824Z',NULL,150,2,128.55415037577922,0,146.1304621895028,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10617,'2020-01-03T18:21:13.254Z',4.114055261743573,35,3,71.53687730741436,0,72.82206276251642,1394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10618,'2018-11-04T10:34:40.056Z',NULL,128,3,75.08016314504417,3.23,50.57124026247985,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10619,'2020-03-07T14:56:24.175Z',NULL,56,1,36.37128575934436,1.56,39.251015852643214,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10620,'2019-12-07T12:08:13.039Z',NULL,72,2,142.20381898788685,6.11,159.94293217860638,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10621,'2018-03-17T12:57:17.893Z',NULL,124,1,110.93145648834248,4.77,114.2160372089467,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10622,'2020-03-01T16:04:39.822Z',NULL,11,1,132.45679913492563,5.7,168.7542602825926,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10623,'2019-08-20T22:37:37.243Z',NULL,41,7,63.50890855689462,2.73,50.241062850595064,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10624,'2019-12-18T06:05:07.985Z',NULL,116,2,114.42485125407785,4.92,156.3214982429745,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10625,'2018-08-09T19:08:43.258Z',NULL,130,10,75.02573869315137,3.23,39.394467568725254,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10626,'2017-11-05T07:29:54.247Z',NULL,109,4,79.36660712128732,3.41,73.6699373553173,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10627,'2019-06-26T06:16:36.845Z',NULL,20,6,37.32649625046575,1.61,55.47996581895989,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10628,'2019-10-06T05:57:41.441Z',NULL,156,5,30.615804149046195,1.32,48.175874030843886,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10629,'2019-01-17T01:44:01.834Z',9.87588300163717,41,2,63.50890855689462,2.73,53.90513133756842,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10630,'2020-02-21T12:24:51.388Z',NULL,4,2,110.98767151282252,4.77,140.46250264777586,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10631,'2020-04-05T07:06:13.268Z',NULL,131,4,113.11722203337729,4.86,116.1668482849795,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10632,'2017-10-27T10:18:54.105Z',NULL,155,8,29.183828734551838,1.25,27.121501375853363,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10633,'2017-07-21T15:04:55.879Z',NULL,192,6,46.122790137195516,1.98,69.20325645684532,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10634,'2020-04-14T14:44:47.746Z',NULL,4,3,110.98767151282252,4.77,118.87060906468017,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10635,'2019-12-19T22:27:21.298Z',NULL,46,2,118.0495173798411,5.08,72.49083541475719,1395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10636,'2018-10-20T04:58:31.404Z',NULL,174,5,111.61430894181083,4.46,152.2089853697361,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10637,'2019-01-11T10:44:23.959Z',NULL,144,2,61.1983004605443,2.45,45.686186333952435,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10638,'2019-08-01T17:42:28.173Z',5.375883001637171,64,10,143.4221774571866,5.74,188.02450502633573,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10639,'2018-04-30T11:45:09.430Z',NULL,8,4,98.83823503993958,3.95,150.48185826403932,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10640,'2018-02-13T20:07:12.442Z',NULL,162,2,33.56789820016516,1.34,47.02907057426443,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10641,'2019-05-23T11:35:00.242Z',NULL,71,6,82.80381898788684,3.31,46.593319218121884,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10642,'2018-01-27T14:11:18.083Z',NULL,81,3,43.9329842322118,1.76,62.77262772848069,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10643,'2019-03-25T20:21:43.815Z',NULL,121,1,40.44528328808107,1.62,35.544179158824996,1396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10644,'2019-07-11T16:07:34.340Z',NULL,166,6,38.30449564120193,0,37.85174642050491,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10645,'2018-12-11T22:45:11.355Z',NULL,175,2,117.3248094335266,0,136.7948725749855,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10646,'2018-10-29T05:06:08.269Z',NULL,77,5,101.01691728415972,0,158.8344472097562,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10647,'2018-03-18T04:45:33.095Z',NULL,165,1,38.30449564120193,0,30.717318833776645,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10648,'2020-01-13T23:49:28.906Z',NULL,43,3,76.35255205175756,0,66.94945910522786,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10649,'2017-11-19T06:56:52.695Z',NULL,130,4,50.01715912876758,0,29.697593297043568,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10650,'2018-01-25T08:30:04.998Z',NULL,89,3,63.719612755399886,0,70.16032597173026,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10651,'2020-04-10T09:57:13.285Z',NULL,69,3,73.38772304360626,0,69.83138314253526,1398); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10652,'2020-04-06T16:36:00.653Z',NULL,135,3,45.80402317157342,2.75,53.6751542445629,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10653,'2019-01-27T14:56:32.453Z',NULL,116,2,114.42485125407785,6.87,130.892738982298,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10654,'2018-05-02T15:12:22.145Z',NULL,65,3,68.22769726470014,4.09,113.74446348097334,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10655,'2020-04-08T00:52:17.485Z',2.978696376593735,132,2,127.88197029833711,7.67,217.66193531814883,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10656,'2017-11-08T07:10:37.364Z',NULL,55,3,63.84752383956291,3.83,48.633381896020175,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10657,'2018-06-27T12:01:27.968Z',NULL,65,8,68.22769726470014,4.09,89.1991935450188,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10658,'2018-09-21T21:32:57.271Z',7.478696376593735,61,5,23.537915510955656,1.41,39.664001941825624,1401); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10659,'2018-02-25T15:51:40.896Z',7.478696376593735,131,1,113.11722203337729,8.48,69.18458037365265,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10660,'2017-07-03T00:30:35.384Z',NULL,183,5,37.7982748679465,2.83,38.013970219479546,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10661,'2018-01-27T06:33:51.328Z',NULL,134,2,42.49233549998661,3.19,47.49719594904643,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10662,'2019-03-22T14:18:48.557Z',NULL,107,1,50.094887884945365,3.76,69.60812944912102,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10663,'2018-10-29T04:52:44.298Z',7.478696376593735,22,5,32.136779940663494,2.41,51.28675911227461,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10664,'2019-08-15T01:16:26.910Z',NULL,139,6,76.77768319177018,5.76,90.23728137178209,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10665,'2019-10-11T06:52:57.770Z',NULL,180,5,68.32408657333919,5.12,69.13929039118977,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10666,'2020-03-13T06:29:06.863Z',NULL,87,1,117.25536340498041,8.79,186.55034584915347,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10667,'2019-03-09T02:46:50.369Z',NULL,171,1,105.07665741496471,7.88,102.48617034858043,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10668,'2020-04-02T04:46:42.931Z',NULL,16,3,66.11029954877317,4.96,67.36015198748836,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10669,'2017-11-11T18:17:27.748Z',NULL,68,3,76.82895921539838,5.76,56.75775620783778,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10670,'2019-10-26T01:39:23.760Z',7.478696376593735,91,7,65.09432810381134,4.88,53.74232948399921,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10671,'2018-06-23T22:18:03.770Z',NULL,190,8,128.5841852057933,9.64,131.37306770446338,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10672,'2018-07-19T21:27:31.119Z',NULL,74,5,51.12804227386549,3.83,60.10137531235019,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10673,'2018-08-12T03:25:21.234Z',7.478696376593735,12,5,116.01427581618326,8.7,153.9462850379571,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10674,'2019-02-21T21:42:27.254Z',NULL,33,2,47.7448636959614,3.58,62.5773098783657,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10675,'2018-02-16T14:23:41.541Z',7.478696376593735,171,2,105.07665741496471,7.88,121.84478088651215,1402); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10676,'2017-11-09T03:01:02.349Z',7.478696376593735,54,3,41.395738936015974,2.28,40.227025329134996,1405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10677,'2018-11-23T07:19:46.297Z',NULL,57,3,122.4223933583994,6.73,90.0147902852298,1405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10678,'2018-07-30T11:01:37.494Z',NULL,196,5,70.14610686710009,3.86,47.71398361121734,1405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10679,'2019-02-12T09:41:59.126Z',NULL,105,2,52.723521442619514,2.9,37.433025201921154,1405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10680,'2018-03-25T20:48:34.877Z',3.0416317567052387,128,1,75.08016314504417,4.13,100.25507819497032,1405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10681,'2017-07-13T14:04:03.626Z',NULL,175,6,78.21653962235106,3.13,70.5725775479272,1407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10682,'2018-05-15T14:17:59.603Z',NULL,103,4,47.04215255778118,1.88,56.49185606461877,1407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10683,'2019-11-23T04:41:12.855Z',NULL,154,2,81.87529553312261,3.28,114.74835469296669,1407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10684,'2019-11-16T14:55:04.211Z',NULL,162,3,33.56789820016516,1.34,17.311699903435034,1407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10685,'2017-10-09T00:07:03.244Z',NULL,34,5,49.535942579421324,1.98,37.15355614382629,1407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10686,'2017-06-01T06:21:43.062Z',NULL,55,6,63.84752383956291,2.55,42.93284947280729,1407); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10687,'2019-09-22T07:20:41.077Z',NULL,29,6,123.57448218067185,0,65.69700575789804,1408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10688,'2019-01-15T23:36:31.873Z',NULL,111,2,55.526746186906664,0,59.315684402475405,1408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10689,'2017-10-17T15:22:43.946Z',NULL,95,5,33.212427711035886,0,37.07129291279962,1408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10690,'2019-01-24T10:13:44.909Z',NULL,62,2,133.5202262591817,0,177.37650738814133,1408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10691,'2017-01-24T00:36:17.932Z',NULL,10,2,31.78621880685793,0,28.2792478685814,1408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10692,'2018-10-25T10:36:08.742Z',NULL,52,5,103.67587240151535,6.22,145.733358222229,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10693,'2017-07-05T07:05:19.413Z',NULL,106,5,35.149014295079674,2.11,32.16007867327365,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10694,'2020-01-02T20:31:05.872Z',NULL,157,2,139.8942352373801,8.39,122.06167437899022,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10695,'2020-02-29T06:40:24.992Z',NULL,123,2,110.93145648834248,6.66,85.74924186470243,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10696,'2020-02-08T09:38:21.224Z',NULL,157,1,139.8942352373801,8.39,109.05808412094903,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10697,'2019-03-03T02:26:49.623Z',NULL,133,1,68.4819702983371,4.11,103.41711186808729,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10698,'2018-08-08T01:27:53.849Z',NULL,114,8,77.91196471862148,4.67,99.71846991136754,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10699,'2017-10-06T04:30:10.263Z',NULL,120,7,55.668009001928525,3.34,40.88426307017234,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10700,'2017-01-08T23:21:22.595Z',3.0416317567052387,161,2,31.727470408648482,1.9,38.602042042957414,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10701,'2018-01-26T07:26:04.133Z',NULL,54,2,62.09360840402396,3.73,58.99115674323362,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10702,'2020-03-24T13:07:59.162Z',NULL,98,1,112.41825444654248,6.75,63.13575651343461,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10703,'2018-07-26T16:02:35.895Z',NULL,94,6,109.21864156655383,6.55,110.28653145810306,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10704,'2019-11-29T19:12:55.092Z',NULL,4,3,110.98767151282252,6.66,169.27285853098732,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10705,'2020-02-20T11:10:37.077Z',NULL,132,2,127.88197029833711,7.67,188.10806710225026,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10706,'2020-01-05T08:38:30.495Z',NULL,80,2,54.91325681036414,3.29,74.47204308763507,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10707,'2018-01-29T14:37:46.350Z',3.0416317567052387,176,2,57.92480943352658,3.48,54.88012250534815,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10708,'2019-09-12T09:46:29.549Z',NULL,143,5,61.1983004605443,3.67,73.47542620885324,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10709,'2019-02-14T23:36:48.215Z',NULL,160,2,47.59120561297272,2.86,41.586017741830936,1410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10710,'2017-06-12T08:42:19.998Z',NULL,69,5,48.925148695737505,2.94,32.60264099335898,1411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10711,'2018-10-29T19:33:53.724Z',NULL,9,3,87.46968147789205,5.25,63.0341002181614,1411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10712,'2018-09-26T12:25:40.154Z',NULL,98,2,112.41825444654248,6.75,156.83735527864812,1411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10713,'2017-10-28T17:59:18.269Z',NULL,185,3,26.384667225677738,1.72,40.17943346354952,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10714,'2016-10-10T12:03:36.579Z',NULL,182,4,56.326269136507406,3.66,44.72381969992364,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10715,'2020-03-29T03:16:42.509Z',NULL,136,1,105.20402317157343,6.84,166.52516774703346,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10716,'2016-10-25T00:41:59.495Z',1.1992976104579562,16,6,44.07353303251545,2.86,68.72599559283057,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10717,'2020-01-26T18:47:24.411Z',NULL,129,20,148.1672972165937,9.63,153.68346757450013,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10718,'2016-09-25T14:42:14.913Z',NULL,127,5,89.65344209669612,5.83,95.91019492914097,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10719,'2020-04-05T05:12:59.840Z',NULL,138,3,113.95078476718615,7.41,73.67293520368747,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10720,'2018-08-03T16:08:40.132Z',NULL,34,5,74.30391386913199,4.83,95.51230146613862,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10721,'2019-01-07T06:13:12.409Z',NULL,161,1,47.59120561297272,3.09,25.30857507678908,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10722,'2017-09-14T17:35:15.949Z',NULL,33,5,31.829909130640935,2.07,22.11934319688356,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10723,'2019-06-01T04:38:23.818Z',1.1992976104579562,12,5,116.01427581618326,7.54,100.71106294964082,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10724,'2020-03-21T11:35:08.356Z',NULL,17,1,79.93608046792765,5.2,117.13246146657308,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10725,'2017-01-28T03:51:46.777Z',NULL,166,1,25.536330427467956,1.66,33.37461436821329,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10726,'2019-01-14T16:43:15.116Z',NULL,64,1,143.4221774571866,9.32,90.77290039135609,1414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10727,'2018-05-25T13:03:50.196Z',NULL,101,2,139.82488066180403,9.79,132.18944607921915,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10728,'2019-02-21T14:51:14.580Z',NULL,67,1,41.24480890795779,2.89,50.19876902555559,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10729,'2019-10-20T22:12:59.649Z',NULL,160,6,47.59120561297272,3.33,41.48366482703012,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10730,'2019-01-25T10:36:28.892Z',NULL,125,1,80.39699207990944,5.63,134.18449191290483,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10731,'2020-01-28T21:23:56.893Z',NULL,131,1,113.11722203337729,7.92,168.50246421519546,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10732,'2018-04-12T21:53:56.927Z',NULL,167,2,97.70449564120193,6.84,84.87664309139929,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10733,'2017-01-09T15:35:53.993Z',NULL,179,1,45.549391048892794,3.19,76.82243233579092,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10734,'2018-05-29T15:44:58.011Z',NULL,133,2,68.4819702983371,4.79,43.25514433883264,1415); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10735,'2020-02-25T12:27:38.972Z',NULL,56,1,36.37128575934436,1.45,47.454216140409436,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10736,'2018-04-20T06:20:39.217Z',1.1992976104579562,93,1,49.81864156655383,1.99,42.154493044772224,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10737,'2019-02-24T21:41:47.644Z',NULL,164,1,92.96789820016517,3.72,137.1677795464093,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10738,'2019-01-28T07:50:33.890Z',NULL,4,1,110.98767151282252,4.44,124.98029545710916,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10739,'2018-09-23T10:29:23.757Z',NULL,60,4,29.80214751859149,1.19,26.718199033319532,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10740,'2019-09-18T13:05:44.148Z',NULL,23,6,116.86672609493307,4.67,140.35986581847732,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10741,'2018-02-05T15:01:14.834Z',NULL,33,2,47.7448636959614,1.91,37.49146737509461,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10742,'2019-02-23T11:54:32.792Z',NULL,199,2,115.4300138092855,4.62,175.69407458850654,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10743,'2019-03-17T08:55:13.059Z',NULL,64,1,143.4221774571866,5.74,76.99362707161056,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10744,'2019-04-05T10:50:50.583Z',NULL,135,3,45.80402317157342,1.83,27.25351628477784,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10745,'2017-11-29T13:11:31.388Z',NULL,84,3,54.58418555091025,2.18,81.44719094921324,1416); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10746,'2017-10-13T10:29:59.401Z',NULL,139,4,51.18512212784679,0,79.52250067196124,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10747,'2018-05-30T14:02:25.240Z',3.969567465902873,29,5,123.57448218067185,0,134.59878140899932,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10748,'2019-06-01T03:12:27.871Z',NULL,37,8,80.10774204020768,0,126.304978907243,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10749,'2017-12-25T01:13:14.769Z',NULL,136,2,70.13601544771562,0,100.25055162595497,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10750,'2019-08-30T03:14:10.680Z',NULL,50,5,53.64019616819762,0,38.93505875709331,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10751,'2017-06-02T20:17:13.010Z',NULL,43,7,50.90170136783837,0,49.56666416384883,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10752,'2019-06-22T04:42:43.099Z',NULL,78,83,41.616917284159726,0,26.75032859767868,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10753,'2020-04-19T11:06:17.953Z',NULL,141,4,126.20312547576883,0,135.7118297654619,1417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10754,'2018-01-19T09:25:26.470Z',NULL,37,3,80.10774204020768,4.81,47.56736099719851,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10755,'2019-02-01T22:26:03.631Z',NULL,130,2,75.02573869315137,4.5,93.58683435412956,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10756,'2017-04-24T03:22:37.252Z',3.969567465902873,156,2,20.41053609936413,1.22,34.68614819866108,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10757,'2018-05-22T18:42:00.889Z',NULL,16,5,66.11029954877317,3.97,66.43557065153864,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10758,'2018-08-04T02:09:21.639Z',NULL,32,9,107.1448636959614,6.43,110.58310603820443,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10759,'2019-09-21T06:55:20.260Z',NULL,76,5,63.82421061366486,3.83,66.79820101442915,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10760,'2020-01-05T22:15:12.618Z',NULL,139,2,76.77768319177018,4.61,117.67649743723223,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10761,'2019-07-08T11:38:15.003Z',NULL,70,7,57.493003808959784,3.45,78.72873495432046,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10762,'2018-04-17T19:20:32.245Z',NULL,138,4,113.95078476718615,6.84,179.96169939456604,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10763,'2019-08-16T17:42:01.690Z',8.469567465902873,200,9,73.20395711799151,4.39,87.16421622293807,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10764,'2018-04-01T21:13:59.559Z',NULL,52,3,103.67587240151535,6.22,145.67727140481253,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10765,'2019-12-07T16:08:21.465Z',NULL,189,2,93.27738254731509,5.6,74.83929674255026,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10766,'2020-03-06T00:01:25.069Z',NULL,184,1,116.09741230191975,6.97,168.70969073485617,1419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10767,'2018-11-01T18:36:15.141Z',NULL,51,3,75.65058751905018,0,100.58845191728666,1420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10768,'2018-03-03T04:23:34.467Z',NULL,55,1,95.77128575934437,0,101.35732202875214,1420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10769,'2019-04-01T22:19:32.764Z',NULL,71,4,82.80381898788684,0,78.98326457019151,1420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10770,'2019-05-08T17:16:07.856Z',NULL,59,5,89.20214751859149,0,120.50644948156776,1420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10771,'2020-03-12T11:27:34.420Z',NULL,106,1,52.723521442619514,0,41.23774905751309,1420); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10772,'2018-01-24T10:27:03.441Z',NULL,181,3,143.88940370476112,9.35,191.867670306882,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10773,'2017-09-10T01:00:29.611Z',NULL,153,6,44.532615427854914,2.89,68.91862661176921,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10774,'2020-04-18T18:34:58.129Z',NULL,154,3,81.87529553312261,5.32,86.19318505352445,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10775,'2019-06-09T12:49:04.326Z',NULL,177,5,128.8192981944599,8.37,136.1872645509172,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10776,'2018-01-17T03:07:31.299Z',NULL,145,2,61.1983004605443,3.98,77.0649918351114,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10777,'2018-07-04T02:00:50.865Z',NULL,112,6,41.329386510090345,2.69,46.67193309206931,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10778,'2018-06-22T03:29:35.510Z',NULL,194,7,50.38077396807232,3.27,26.430015782421087,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10779,'2019-03-06T21:38:36.199Z',NULL,102,1,47.04215255778118,3.06,41.06909142078407,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10780,'2017-07-04T06:55:56.794Z',NULL,67,4,27.496539271971862,1.79,19.52411968361405,1421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10781,'2018-10-19T11:09:06.963Z',NULL,47,5,84.0766209826718,5.25,99.59934174428118,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10782,'2020-02-06T01:57:12.998Z',NULL,37,1,80.10774204020768,5.01,127.25840171967714,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10783,'2020-01-12T21:13:43.785Z',NULL,7,2,148.22900526552291,9.26,117.61306492988241,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10784,'2019-05-31T18:39:01.330Z',NULL,151,4,91.61302306843446,5.73,108.75063820357751,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10785,'2018-07-04T22:30:05.017Z',NULL,35,4,71.53687730741436,4.47,41.04642268687627,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10786,'2019-11-08T05:32:27.958Z',NULL,2,3,105.11984419607644,6.57,135.74387728194648,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10787,'2020-02-10T08:49:51.482Z',4.665543058007186,108,2,50.094887884945365,3.13,63.61666152683956,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10788,'2019-06-23T12:33:48.659Z',9.165543058007186,152,5,48.89568729900663,3.06,26.813921081789477,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10789,'2018-10-21T21:05:01.097Z',NULL,59,6,89.20214751859149,5.58,107.28098793141766,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10790,'2019-07-26T23:20:18.259Z',NULL,69,6,73.38772304360626,4.59,117.5277201199828,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10791,'2018-07-23T21:19:07.637Z',NULL,4,6,110.98767151282252,6.94,111.41517507961011,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10792,'2018-08-01T23:12:15.867Z',NULL,198,8,70.14610686710009,4.38,60.69153005454702,1422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10793,'2019-05-08T09:42:14.127Z',NULL,50,5,53.64019616819762,3.35,34.73842272936285,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10794,'2019-01-19T19:00:40.703Z',NULL,23,3,116.86672609493307,7.3,182.99403404716372,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10795,'2018-01-04T10:22:21.494Z',NULL,162,3,33.56789820016516,2.1,35.71741292802683,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10796,'2018-07-01T15:43:11.652Z',NULL,142,6,70.34853057210945,4.4,80.62960106727593,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10797,'2019-09-13T16:29:55.596Z',NULL,125,4,80.39699207990944,5.02,90.49036389274545,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10798,'2018-10-21T04:13:36.795Z',NULL,198,5,70.14610686710009,4.38,121.16443545722315,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10799,'2016-11-20T04:16:32.514Z',NULL,73,3,47.752514839713,2.98,50.35816568079984,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10800,'2019-11-05T07:43:46.846Z',4.665543058007186,41,3,63.50890855689462,3.97,75.88141134058287,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10801,'2017-04-30T12:35:49.513Z',NULL,44,3,50.90170136783837,3.18,27.059500163113807,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10802,'2018-12-21T11:54:26.479Z',NULL,135,2,45.80402317157342,2.86,27.462412406427237,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10803,'2019-12-16T20:50:31.877Z',NULL,140,2,66.80312547576881,4.18,107.37349995081908,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10804,'2017-04-26T20:24:21.021Z',NULL,140,3,44.53541698384588,2.78,47.88010108182573,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10805,'2018-04-07T05:09:41.036Z',NULL,143,3,61.1983004605443,3.82,68.3390172152125,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10806,'2017-03-30T10:53:48.794Z',NULL,68,1,76.82895921539838,4.8,128.29452700219338,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10807,'2018-06-01T01:25:02.870Z',NULL,185,7,39.57700083851661,2.47,55.83291250698742,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10808,'2017-12-06T11:22:36.723Z',NULL,65,2,45.4851315098001,2.84,52.23649897655957,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10809,'2019-04-05T18:28:17.870Z',4.375166821900136,81,2,43.9329842322118,2.75,45.40488973631343,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10810,'2018-10-11T15:38:34.399Z',NULL,116,6,114.42485125407785,7.15,80.16346915860944,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10811,'2017-07-26T09:59:26.421Z',NULL,157,7,93.26282349158673,5.83,75.15131150219308,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10812,'2017-03-14T23:59:39.249Z',NULL,44,1,50.90170136783837,3.18,67.54341372261054,1423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10813,'2017-03-16T06:03:17.469Z',NULL,129,1,98.7781981443958,6.42,89.92985057730152,1424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10814,'2016-05-28T07:22:15.153Z',NULL,169,4,39.68781795635516,2.58,41.55878416264588,1424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10815,'2019-07-15T09:36:59.898Z',NULL,186,4,98.9770008385166,6.19,101.98885418613587,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10816,'2020-03-19T02:42:51.360Z',4.375166821900136,199,1,115.4300138092855,7.21,193.4466985763912,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10817,'2018-08-04T07:21:14.861Z',4.375166821900136,42,10,38.00410713690931,2.38,51.76135317943859,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10818,'2019-08-10T14:40:30.956Z',NULL,149,8,69.15415037577924,4.32,68.12719145619232,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10819,'2018-04-18T00:52:19.007Z',NULL,60,3,29.80214751859149,1.86,50.70718972238764,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10820,'2019-01-10T18:25:59.164Z',NULL,174,2,111.61430894181083,6.98,162.90475160285692,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10821,'2019-09-30T11:47:24.881Z',NULL,67,5,41.24480890795779,2.58,32.059976093383455,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10822,'2019-04-05T03:35:39.319Z',NULL,200,4,73.20395711799151,4.58,62.205027543399694,1426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10823,'2019-11-29T00:50:41.718Z',NULL,150,3,128.55415037577922,7.39,171.14101099432915,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10824,'2019-02-15T20:16:15.717Z',NULL,162,1,33.56789820016516,1.93,32.315715344402555,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10825,'2020-03-21T07:19:11.743Z',NULL,2,1,105.11984419607644,6.04,95.0594883452664,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10826,'2020-02-11T01:38:58.800Z',NULL,183,2,56.697412301919755,3.26,51.91329651608128,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10827,'2019-09-10T18:31:26.945Z',8.875166821900136,104,4,106.44215255778118,6.12,166.37436724371477,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10828,'2020-01-01T20:39:58.874Z',NULL,130,2,75.02573869315137,4.31,44.495844006715366,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10829,'2019-10-23T00:34:19.419Z',NULL,172,5,122.3651993029456,7.04,95.52212395474402,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10830,'2018-08-25T00:00:00.234Z',NULL,188,8,33.87738254731509,1.95,45.46926659693738,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10831,'2019-03-29T19:35:08.253Z',NULL,156,1,30.615804149046195,1.76,43.84416850380727,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10832,'2019-05-10T04:58:55.333Z',NULL,29,4,123.57448218067185,7.11,175.8347734298234,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10833,'2018-08-17T00:05:44.898Z',NULL,62,8,133.5202262591817,7.68,158.9915560059298,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10834,'2019-01-06T12:03:19.109Z',NULL,157,3,139.8942352373801,8.04,146.83183935954523,1428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10835,'2018-01-31T09:59:55.539Z',NULL,43,3,76.35255205175756,4.58,109.5115997940763,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10836,'2020-01-23T08:33:49.103Z',NULL,107,3,50.094887884945365,3.01,27.056151875355834,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10837,'2019-01-06T18:55:32.155Z',NULL,195,2,109.78077396807234,6.59,100.47375946175465,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10838,'2018-09-07T00:47:54.129Z',NULL,2,4,105.11984419607644,6.31,108.32557596460956,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10839,'2017-09-09T04:12:25.100Z',NULL,115,5,51.94130981241432,3.12,71.62382891960235,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10840,'2019-07-16T01:24:44.163Z',NULL,143,7,61.1983004605443,3.67,77.98889331780629,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10841,'2020-03-22T08:48:15.213Z',8.471951734883403,163,10,33.56789820016516,2.01,32.699945751371864,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10842,'2018-07-21T23:20:48.990Z',NULL,65,4,68.22769726470014,4.09,58.461346451517635,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10843,'2017-12-18T12:59:38.556Z',8.471951734883403,109,2,79.36660712128732,4.76,122.16962979927968,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10844,'2019-12-05T12:03:10.558Z',NULL,144,2,61.1983004605443,3.67,73.72342598862626,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10845,'2018-06-02T18:02:39.168Z',NULL,93,7,49.81864156655383,2.99,70.63437171333703,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10846,'2018-03-10T13:45:10.725Z',NULL,34,1,74.30391386913199,4.46,123.60350447816349,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10847,'2018-02-25T02:38:12.920Z',NULL,136,2,105.20402317157343,6.31,124.07874523649345,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10848,'2020-02-03T11:41:15.059Z',NULL,35,2,71.53687730741436,4.29,109.34695651881772,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10849,'2019-01-09T16:09:58.961Z',8.471951734883403,74,2,51.12804227386549,3.07,54.75354271674809,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10850,'2020-02-18T16:09:19.291Z',3.9719517348834037,7,2,148.22900526552291,8.89,186.01575786173063,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10851,'2018-06-17T03:36:44.666Z',NULL,116,8,114.42485125407785,6.87,141.14743291146755,1429); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10852,'2018-05-15T00:05:50.347Z',NULL,131,5,113.11722203337729,7.07,102.88914413654494,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10853,'2019-08-29T22:21:58.839Z',8.471951734883403,119,5,43.43814329652384,2.71,72.35440960039963,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10854,'2018-05-02T14:22:57.818Z',NULL,20,5,37.32649625046575,2.33,51.99538076136864,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10855,'2019-03-02T00:36:08.916Z',NULL,49,1,131.42865839323724,8.21,102.85290873426335,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10856,'2017-07-10T23:10:04.227Z',NULL,7,5,98.81933684368194,6.18,68.85590876202029,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10857,'2017-12-02T10:38:10.471Z',NULL,162,3,22.378598800110105,1.4,34.57266609181332,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10858,'2018-03-26T03:37:55.347Z',NULL,73,1,71.6287722595695,4.48,97.6541797185143,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10859,'2019-02-18T04:30:19.972Z',NULL,190,2,128.5841852057933,8.04,166.77672803490566,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10860,'2017-12-14T23:34:16.498Z',NULL,94,2,72.81242771103588,4.55,69.09211132140872,1430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10861,'2018-12-24T20:31:40.381Z',NULL,113,2,110.47725376186015,8.29,126.05337559710904,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10862,'2020-04-01T14:23:44.285Z',NULL,42,2,38.00410713690931,2.85,43.60299392022811,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10863,'2018-04-19T18:43:40.246Z',NULL,171,2,105.07665741496471,7.88,163.59246090794758,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10864,'2019-04-09T00:19:29.772Z',NULL,29,3,123.57448218067185,9.27,149.24638768294437,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10865,'2018-06-22T12:38:44.924Z',NULL,163,8,33.56789820016516,2.52,34.24760311652817,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10866,'2017-11-14T14:37:18.125Z',NULL,71,3,55.202545991924566,4.14,72.568632225661,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10867,'2018-04-25T07:56:47.234Z',NULL,145,3,61.1983004605443,4.59,49.886263028073266,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10868,'2018-05-16T12:08:17.809Z',NULL,71,5,82.80381898788684,6.21,55.48236775020028,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10869,'2019-12-13T18:51:37.056Z',NULL,104,2,106.44215255778118,7.98,157.0272261871446,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10870,'2017-12-16T20:55:31.421Z',NULL,33,2,31.829909130640935,2.39,24.289794957005906,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10871,'2019-12-22T01:28:38.857Z',NULL,23,2,116.86672609493307,8.77,177.7378967697503,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10872,'2017-04-23T00:50:04.490Z',NULL,146,3,84.03151414144409,6.3,137.73802653527045,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10873,'2018-03-18T20:24:33.040Z',NULL,196,1,70.14610686710009,5.26,67.94425496100129,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10874,'2019-05-28T11:30:08.310Z',7.249720968727492,7,4,148.22900526552291,11.12,184.32948099714642,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10875,'2019-06-30T22:58:21.165Z',NULL,109,6,119.04991068193098,8.93,81.23581836377912,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10876,'2019-03-18T12:19:21.214Z',NULL,169,1,59.53172693453274,4.46,82.4588684391091,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10877,'2018-01-31T06:52:38.882Z',7.249720968727492,189,2,93.27738254731509,7,144.33943402307082,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10878,'2019-11-13T23:13:06.003Z',NULL,81,4,43.9329842322118,3.29,45.01825074353923,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10879,'2019-12-29T00:24:36.448Z',NULL,176,2,57.92480943352658,4.34,99.33881338317055,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10880,'2019-07-09T12:38:03.759Z',7.249720968727492,14,3,37.648145389078365,2.82,29.82042252894509,1431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10881,'2020-03-25T19:10:54.389Z',NULL,93,1,49.81864156655383,3.11,48.04781646208056,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10882,'2019-04-13T04:07:20.865Z',NULL,124,3,110.93145648834248,6.93,191.62857279591717,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10883,'2017-02-03T22:15:21.424Z',NULL,192,1,46.122790137195516,2.88,76.55080721269287,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10884,'2019-07-01T08:46:28.562Z',7.249720968727492,158,4,139.8942352373801,8.74,151.91048268398407,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10885,'2017-09-23T18:52:14.423Z',NULL,29,4,82.3829881204479,5.15,84.65708201917813,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10886,'2018-11-26T03:56:20.136Z',NULL,64,3,143.4221774571866,8.96,91.82322422691448,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10887,'2019-08-27T20:54:01.607Z',NULL,19,8,64.00675097561322,4,95.60181087946488,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10888,'2018-10-21T14:07:47.948Z',NULL,141,5,126.20312547576883,7.89,215.8669122109045,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10889,'2018-05-13T04:45:22.066Z',NULL,4,3,110.98767151282252,6.94,191.56529600093924,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10890,'2019-02-09T10:50:36.168Z',NULL,58,1,78.14578007078882,4.88,87.44336689670615,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10891,'2019-07-01T09:59:19.382Z',NULL,181,6,143.88940370476112,8.99,138.42692079066893,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10892,'2019-02-06T03:59:01.162Z',NULL,25,2,68.62263967182464,4.29,106.55185587112584,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10893,'2018-11-04T15:40:49.319Z',NULL,139,4,76.77768319177018,4.8,109.30762448851696,1433); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10894,'2017-02-12T12:13:16.795Z',NULL,121,1,26.96352219205405,1.89,41.99047780955904,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10895,'2017-04-15T11:13:15.122Z',NULL,78,2,27.74461152277315,1.94,26.626352677432294,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10896,'2019-11-03T11:53:27.059Z',NULL,158,3,139.8942352373801,9.79,226.36367937913178,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10897,'2017-05-18T15:22:08.133Z',NULL,138,4,75.96718984479077,5.32,93.35590643615842,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10898,'2019-07-19T15:31:10.572Z',NULL,167,3,97.70449564120193,6.84,169.88085599936528,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10899,'2017-05-08T01:17:37.447Z',NULL,182,3,56.326269136507406,3.94,97.50849617570016,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10900,'2016-11-19T16:54:30.506Z',NULL,65,2,45.4851315098001,3.18,64.41704936591543,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10901,'2019-09-09T18:52:41.056Z',NULL,6,5,97.43621265344382,6.82,78.62659910811921,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10902,'2018-07-06T21:00:58.015Z',NULL,129,6,148.1672972165937,10.37,147.2708176058038,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10903,'2017-06-16T15:02:15.112Z',NULL,37,8,53.40516136013846,3.74,58.807786819333856,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10904,'2017-08-01T14:41:04.157Z',NULL,130,8,50.01715912876758,3.5,43.98278120600669,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10905,'2017-03-07T14:21:00.016Z',NULL,183,1,37.7982748679465,2.65,60.53816884246153,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10906,'2017-02-05T08:40:51.893Z',NULL,44,2,50.90170136783837,3.56,78.70345943762173,1435); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10907,'2019-07-22T06:59:44.177Z',7.511946518655994,198,6,70.14610686710009,4.21,47.844699187164835,1436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10908,'2018-05-09T21:13:07.356Z',NULL,77,5,101.01691728415972,5.56,138.32134450499126,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10909,'2018-05-15T18:14:13.486Z',7.511946518655994,149,4,69.15415037577924,3.8,106.54056430458107,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10910,'2019-01-07T22:04:00.474Z',NULL,35,1,71.53687730741436,3.93,113.29855949057298,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10911,'2019-01-31T20:35:56.598Z',NULL,69,2,73.38772304360626,4.04,64.40119234961014,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10912,'2020-02-09T00:31:17.964Z',NULL,9,2,87.46968147789205,4.81,48.205290783425646,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10913,'2019-08-17T00:01:21.268Z',NULL,83,7,81.87627832636537,4.5,122.5639072522128,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10914,'2019-08-08T20:23:07.220Z',3.011946518655994,66,5,136.16126271106958,7.49,149.0451496346461,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10915,'2017-12-31T05:49:14.519Z',NULL,36,1,87.29125153827623,4.8,92.7594479052399,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10916,'2018-01-10T13:40:27.002Z',NULL,99,2,67.83486485383094,3.73,59.11074370968318,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10917,'2019-06-21T21:08:33.692Z',NULL,189,8,93.27738254731509,5.13,83.77803316087521,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10918,'2017-12-30T07:57:51.893Z',3.011946518655994,70,2,38.32866920597319,2.11,54.174581035835274,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10919,'2019-10-10T08:25:49.529Z',NULL,65,5,68.22769726470014,3.75,72.53488129829759,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10920,'2019-05-25T10:49:33.562Z',NULL,102,4,47.04215255778118,2.59,46.34167987972124,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10921,'2018-12-05T08:58:29.179Z',NULL,70,2,57.493003808959784,3.16,50.978331419103846,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10922,'2019-11-15T13:07:42.650Z',NULL,92,4,124.89242686579996,6.87,197.35822543228716,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10923,'2020-01-03T15:06:07.121Z',NULL,159,2,35.53017445377361,1.95,57.98922087970399,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10924,'2019-02-09T11:23:43.163Z',NULL,53,1,44.27587240151534,2.44,60.40813298904664,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10925,'2018-07-29T06:30:48.872Z',NULL,42,5,38.00410713690931,2.09,45.99429190736073,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10926,'2019-12-27T23:13:59.855Z',7.511946518655994,53,2,44.27587240151534,2.44,75.816362975702,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10927,'2019-12-06T18:34:42.729Z',NULL,115,1,77.91196471862148,4.29,48.10233336204436,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10928,'2017-03-29T11:27:31.744Z',NULL,196,1,46.76407124473339,2.57,56.60552532386427,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10929,'2018-12-21T13:15:25.552Z',NULL,104,2,106.44215255778118,5.85,81.15368313786541,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10930,'2017-10-28T16:16:01.945Z',NULL,19,5,42.67116731707548,2.35,39.75205009671552,1437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10931,'2019-03-29T16:51:05.341Z',NULL,88,1,105.41292031622555,7.38,111.51162342382669,1438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10932,'2019-02-22T03:36:18.660Z',NULL,173,1,122.3651993029456,8.57,181.62969279968573,1438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10933,'2017-10-06T23:11:31.712Z',2.2116110443781674,111,5,37.01783079127111,2.59,26.322701614988233,1438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10934,'2018-10-11T22:36:31.241Z',NULL,103,5,47.04215255778118,3.29,64.8949367001564,1438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10935,'2020-01-22T01:15:48.025Z',6.711611044378167,39,2,114.58158180283459,6.42,170.99093342544063,1444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10936,'2019-10-15T02:18:16.600Z',NULL,174,5,111.61430894181083,6.25,160.61474514663993,1444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10937,'2018-10-19T23:47:42.858Z',NULL,141,5,126.20312547576883,7.07,131.06236119642548,1444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10938,'2017-01-11T06:04:29.695Z',NULL,110,2,37.01783079127111,1.76,61.56430521678376,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10939,'2019-01-01T15:50:54.648Z',NULL,172,2,122.3651993029456,5.81,141.03487628285197,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10940,'2019-07-07T18:01:56.083Z',NULL,122,6,99.84528328808108,4.74,96.25837327564439,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10941,'2018-08-06T22:35:31.312Z',NULL,138,8,113.95078476718615,5.41,104.73593833150906,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10942,'2018-09-27T04:10:18.655Z',NULL,124,6,110.93145648834248,5.27,160.92076051635354,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10943,'2019-08-01T11:18:39.919Z',NULL,73,6,71.6287722595695,3.4,50.87176750714018,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10944,'2020-01-05T15:24:55.946Z',NULL,59,2,89.20214751859149,4.24,120.3573308745606,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10945,'2018-05-23T01:10:23.540Z',NULL,144,5,61.1983004605443,2.91,37.89434349203688,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10946,'2020-03-19T22:46:11.652Z',NULL,189,1,93.27738254731509,4.43,95.98563694567977,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10947,'2020-02-27T09:50:29.606Z',NULL,196,1,70.14610686710009,3.33,64.03959693663232,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10948,'2019-08-21T19:13:59.152Z',NULL,20,4,37.32649625046575,1.77,24.004855899080855,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10949,'2017-08-01T03:42:50.301Z',NULL,192,6,46.122790137195516,2.19,45.45523423123888,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10950,'2017-12-06T12:27:24.425Z',NULL,196,2,46.76407124473339,2.22,36.93783230967872,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10951,'2017-10-11T09:23:08.321Z',NULL,95,6,33.212427711035886,1.58,28.661479346728044,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10952,'2017-05-31T03:01:39.132Z',NULL,134,5,28.328223666657742,1.35,25.74656875737817,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10953,'2019-03-18T13:30:02.055Z',NULL,22,1,32.136779940663494,1.53,25.621199157570477,1445); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10954,'2018-08-17T06:25:37.106Z',NULL,41,4,63.50890855689462,4.37,52.569735888824574,1446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10955,'2017-07-24T08:05:16.847Z',NULL,96,4,69.88096572393577,4.8,56.42900517552376,1446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10956,'2018-07-03T17:54:27.316Z',NULL,194,4,50.38077396807232,0,37.80236073840142,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10957,'2017-11-05T09:51:55.280Z',NULL,131,2,75.41148135558485,0,40.24144792496038,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10958,'2016-07-23T12:39:01.771Z',NULL,11,4,88.30453275661709,0,107.13152505601158,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10959,'2017-12-21T14:34:04.874Z',2.2116110443781674,86,2,61.54291113900164,0,80.1236647496874,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10960,'2020-02-24T23:18:34.562Z',NULL,99,2,67.83486485383094,0,38.97152679494685,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10961,'2019-06-25T01:14:52.608Z',NULL,174,7,111.61430894181083,0,88.6470745714549,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10962,'2017-05-30T08:20:13.532Z',NULL,47,4,56.05108065511453,0,52.5922473718123,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10963,'2019-03-08T16:30:31.213Z',NULL,87,1,117.25536340498041,0,160.4039945494624,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10964,'2019-05-21T22:34:48.499Z',NULL,85,4,54.90104734428525,0,40.40947647420652,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10965,'2018-03-17T05:00:35.780Z',NULL,58,1,78.14578007078882,0,57.04400481830257,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10966,'2016-09-17T17:27:47.041Z',NULL,191,4,85.72279013719552,0,85.46538552619371,1447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10967,'2018-12-20T05:37:38.864Z',NULL,142,2,70.34853057210945,2.04,69.59387215095558,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10968,'2018-10-13T12:40:25.750Z',1.8088176864014802,70,6,57.493003808959784,1.67,66.73904125002386,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10969,'2020-03-30T11:43:46.090Z',NULL,59,1,89.20214751859149,2.59,81.3934737977822,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10970,'2019-10-03T19:20:46.443Z',NULL,183,4,56.697412301919755,1.64,84.96486364873569,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10971,'2017-11-20T21:46:29.039Z',6.30881768640148,46,2,78.6996782532274,2.28,90.01065120225633,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10972,'2019-12-26T22:51:50.970Z',6.30881768640148,95,1,49.81864156655383,1.44,38.719753800523875,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10973,'2018-11-07T15:37:37.281Z',NULL,51,2,75.65058751905018,2.19,80.14537132785658,1448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10974,'2019-08-12T15:30:37.668Z',NULL,102,6,47.04215255778118,2.94,53.19191728012947,1450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10975,'2017-01-31T02:29:10.672Z',NULL,54,2,41.395738936015974,2.59,25.129646004511564,1450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10976,'2017-09-11T22:05:58.093Z',NULL,138,5,75.96718984479077,4.75,129.98088697709719,1450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10977,'2019-04-01T13:56:44.725Z',NULL,54,2,62.09360840402396,3.73,57.2154812468461,1451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10978,'2018-04-14T08:34:44.876Z',NULL,111,2,55.526746186906664,2.39,92.82034560238122,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10979,'2018-08-08T11:28:06.777Z',NULL,169,4,59.53172693453274,2.56,63.89001711342475,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10980,'2019-08-26T03:58:03.245Z',NULL,160,6,47.59120561297272,2.05,56.575219901492744,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10981,'2018-03-08T03:19:02.052Z',NULL,110,1,55.526746186906664,2.39,86.53452694966066,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10982,'2019-08-04T15:32:59.732Z',NULL,177,6,128.8192981944599,5.54,172.49690107363202,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10983,'2019-05-23T12:11:38.772Z',NULL,135,5,45.80402317157342,1.97,50.379728631194986,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10984,'2019-04-11T20:04:40.750Z',NULL,23,2,116.86672609493307,5.03,134.56146873313835,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10985,'2018-08-07T05:32:48.545Z',NULL,86,4,92.31436670850246,3.97,157.0573186992604,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10986,'2017-04-16T12:05:21.194Z',NULL,168,2,79.28781795635516,3.41,64.88529054535644,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10987,'2017-03-12T00:57:53.293Z',NULL,10,1,31.78621880685793,1.37,30.8602660684516,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10988,'2019-01-03T10:06:36.540Z',NULL,69,2,73.38772304360626,3.16,92.06948339079267,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10989,'2017-08-31T09:28:00.167Z',1.8088176864014802,77,7,67.34461152277315,2.9,37.84121544626035,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10990,'2018-11-02T12:02:56.169Z',NULL,15,3,37.648145389078365,1.62,46.03771620132113,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10991,'2019-11-30T06:20:50.209Z',NULL,103,2,47.04215255778118,2.02,72.56958871249783,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10992,'2019-05-13T22:21:11.240Z',NULL,19,3,64.00675097561322,2.75,72.67948337699877,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10993,'2017-07-05T12:26:33.529Z',NULL,55,5,63.84752383956291,2.75,71.97745666094262,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10994,'2020-01-20T21:47:16.736Z',NULL,65,2,68.22769726470014,2.93,42.177619509702474,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10995,'2020-03-12T07:22:38.500Z',NULL,65,1,68.22769726470014,2.93,108.04678728496847,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10996,'2018-09-06T18:45:46.701Z',NULL,67,3,41.24480890795779,1.77,33.02249238004758,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10997,'2019-10-05T11:47:23.827Z',NULL,145,5,61.1983004605443,2.63,91.92025495741288,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10998,'2018-09-01T17:01:01.253Z',NULL,13,7,112.62925391105566,4.84,173.05075044261662,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (10999,'2018-02-17T11:26:07.367Z',NULL,129,2,148.1672972165937,6.37,180.9812167147912,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11000,'2017-02-28T22:29:26.673Z',NULL,42,2,25.336071424606207,1.09,37.655059489051744,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11001,'2019-11-03T11:42:01.539Z',NULL,66,3,136.16126271106958,5.85,193.93501458459562,1452); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11002,'2019-08-14T13:25:12.255Z',NULL,47,6,84.0766209826718,3.55,83.73646489811185,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11003,'2017-11-13T04:01:13.055Z',NULL,197,3,46.76407124473339,1.98,30.53003274236449,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11004,'2017-09-10T16:13:37.798Z',NULL,44,7,50.90170136783837,2.15,46.9002975970995,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11005,'2019-12-17T15:42:23.201Z',NULL,184,3,116.09741230191975,4.91,133.6159049606935,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11006,'2019-11-13T17:40:04.482Z',NULL,195,4,109.78077396807234,4.64,90.78609883908663,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11007,'2017-12-10T03:01:37.323Z',NULL,117,3,36.683234169385244,1.55,47.56870732852614,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11008,'2019-10-31T01:26:38.601Z',NULL,26,8,68.12471180754113,2.88,42.6805868496786,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11009,'2019-08-13T01:25:11.875Z',NULL,35,9,71.53687730741436,3.02,78.0986933001313,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11010,'2018-12-22T18:01:47.949Z',NULL,24,3,112.30643674729413,4.74,135.71654467033716,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11011,'2018-02-11T09:17:44.609Z',NULL,10,2,47.6793282102869,2.01,63.26680344842568,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11012,'2020-04-18T04:24:10.837Z',NULL,55,4,95.77128575934437,4.05,50.714184841070946,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11013,'2019-12-18T19:32:51.256Z',NULL,21,3,60.57501609456816,2.56,32.782664319930994,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11014,'2017-11-21T12:33:59.834Z',NULL,85,4,36.6006982295235,1.55,21.40300297713132,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11015,'2017-10-12T01:19:13.910Z',NULL,158,8,93.26282349158673,3.94,107.69059041591244,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11016,'2019-01-13T16:06:38.406Z',NULL,153,2,66.79892314178237,2.82,49.76735511181807,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11017,'2018-03-31T17:29:01.007Z',NULL,110,1,55.526746186906664,2.35,73.07308923756882,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11018,'2017-05-19T09:09:28.626Z',NULL,176,6,38.616539622351056,1.63,63.48507599365317,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11019,'2017-06-05T00:03:53.199Z',NULL,144,8,40.7988669736962,1.72,61.71945985985478,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11020,'2017-10-02T21:12:38.416Z',NULL,22,6,21.42451996044233,0.91,32.70374332163028,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11021,'2016-09-01T07:45:19.997Z',NULL,49,4,87.61910559549149,3.7,43.84696254253007,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11022,'2017-08-26T12:38:57.675Z',NULL,149,56,46.10276691718616,1.95,66.48256835843617,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11023,'2019-05-08T17:01:13.007Z',NULL,154,5,81.87529553312261,3.46,90.44634742022394,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11024,'2017-01-08T22:48:45.879Z',NULL,144,3,40.7988669736962,1.72,63.62835777923958,1453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11025,'2018-12-22T15:11:39.176Z',NULL,179,3,68.32408657333919,4.7,94.85797827206464,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11026,'2018-06-03T11:50:27.671Z',NULL,140,7,66.80312547576881,4.59,74.72018694119922,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11027,'2017-08-10T03:07:22.615Z',8.63866348165875,136,7,70.13601544771562,4.82,114.57740133826572,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11028,'2017-01-02T16:08:37.923Z',NULL,54,2,41.395738936015974,2.85,64.45444653376018,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11029,'2018-06-09T04:31:32.173Z',NULL,167,5,97.70449564120193,6.72,157.42261371406065,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11030,'2017-10-05T01:19:03.051Z',NULL,35,5,47.691251538276234,3.28,57.77351966612326,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11031,'2019-01-27T17:18:33.640Z',NULL,90,2,123.1196127553999,8.46,165.70454415851896,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11032,'2019-07-05T18:14:10.117Z',NULL,153,3,66.79892314178237,4.59,58.373319853059755,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11033,'2018-11-16T04:24:54.451Z',NULL,181,2,143.88940370476112,9.89,233.0327621706795,1454); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11034,'2019-10-03T14:41:58.254Z',NULL,177,5,128.8192981944599,7.73,213.8931958892289,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11035,'2018-06-15T06:57:42.627Z',NULL,4,4,110.98767151282252,6.66,110.33771145079184,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11036,'2019-04-10T15:20:53.614Z',NULL,110,1,55.526746186906664,3.33,56.20801146427687,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11037,'2018-04-21T06:51:47.406Z',NULL,185,1,39.57700083851661,2.37,59.00365059197482,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11038,'2017-10-04T07:05:48.463Z',NULL,133,2,45.654646865558064,2.74,35.262063253869385,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11039,'2018-10-07T17:46:32.109Z',5.106763281682934,76,4,63.82421061366486,3.83,38.00294367985552,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11040,'2018-04-01T22:09:39.862Z',NULL,161,2,47.59120561297272,2.86,34.98568276126905,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11041,'2020-03-06T21:21:36.668Z',NULL,187,1,98.9770008385166,5.94,138.5150915108241,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11042,'2019-12-01T20:53:38.459Z',NULL,32,2,107.1448636959614,6.43,64.502471534431,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11043,'2018-09-22T13:03:13.631Z',NULL,70,5,57.493003808959784,3.45,42.784470104943345,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11044,'2018-10-24T22:13:33.324Z',NULL,59,4,89.20214751859149,5.35,73.62695622705277,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11045,'2018-05-15T23:16:37.784Z',5.106763281682934,124,2,110.93145648834248,6.66,76.48756396705686,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11046,'2019-08-17T04:53:47.770Z',NULL,92,4,124.89242686579996,7.49,203.244145480943,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11047,'2018-11-15T22:25:12.041Z',NULL,100,2,67.83486485383094,4.07,98.09171845769605,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11048,'2017-08-29T06:43:42.634Z',NULL,164,3,61.978598800110106,3.72,104.14442046773244,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11049,'2018-12-19T05:01:02.852Z',NULL,190,1,128.5841852057933,7.72,185.0171699733023,1456); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11050,'2017-09-04T07:58:28.580Z',5.106763281682934,96,2,69.88096572393577,4.19,48.958213346296525,1457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11051,'2020-02-23T10:20:40.077Z',NULL,76,1,63.82421061366486,3.83,109.858721712181,1457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11052,'2019-02-17T11:35:00.515Z',NULL,99,1,67.83486485383094,4.07,110.04210438887701,1457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11053,'2019-08-26T08:51:44.182Z',NULL,188,4,33.87738254731509,2.03,49.62245538648205,1457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11054,'2018-08-07T05:22:27.123Z',NULL,140,6,66.80312547576881,3.01,63.51416375937814,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11055,'2017-07-15T03:01:15.883Z',NULL,37,3,53.40516136013846,2.4,56.662246671131406,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11056,'2018-04-11T01:21:52.845Z',NULL,83,2,81.87627832636537,3.68,86.27075044051006,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11057,'2019-10-17T01:01:06.178Z',NULL,85,5,54.90104734428525,2.47,30.417259040721,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11058,'2017-07-14T08:28:17.144Z',NULL,66,5,90.77417514071306,4.08,115.69822971348287,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11059,'2016-12-14T05:00:41.787Z',NULL,183,1,37.7982748679465,1.7,46.8248488873391,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11060,'2019-11-10T03:51:08.428Z',NULL,66,2,136.16126271106958,6.13,150.6670422877407,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11061,'2018-09-02T00:34:29.823Z',NULL,154,5,81.87529553312261,3.68,117.27745091476802,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11062,'2017-08-12T22:51:22.759Z',NULL,170,4,70.05110494330981,3.15,71.98133892184083,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11063,'2019-08-16T10:36:45.372Z',NULL,155,3,43.77574310182776,1.97,56.52800465358852,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11064,'2019-02-28T11:54:59.970Z',NULL,58,1,78.14578007078882,3.52,85.06188734059948,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11065,'2017-08-24T01:30:52.577Z',1.5732345613738734,176,7,38.616539622351056,1.74,46.4080219550575,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11066,'2018-11-02T10:28:24.193Z',NULL,25,3,68.62263967182464,3.09,81.52693950319745,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11067,'2017-09-13T22:15:57.743Z',NULL,15,4,25.09876359271891,1.13,20.14664846104041,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11068,'2017-08-11T00:38:47.578Z',NULL,9,5,58.31312098526137,2.62,34.503230749138,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11069,'2019-04-24T17:11:13.352Z',NULL,143,2,61.1983004605443,2.75,69.2157816093416,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11070,'2018-10-25T21:14:25.068Z',NULL,191,3,128.5841852057933,5.79,179.17157379408562,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11071,'2018-02-15T23:13:18.508Z',NULL,89,1,63.719612755399886,2.87,92.07464329315621,1459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11072,'2020-02-29T11:30:59.795Z',NULL,15,2,37.648145389078365,1.79,52.40383414721013,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11073,'2016-12-31T16:25:24.258Z',NULL,176,2,38.616539622351056,1.83,66.10342684249635,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11074,'2018-08-24T23:25:26.354Z',NULL,164,7,92.96789820016517,4.42,119.12450201879815,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11075,'2017-05-29T22:01:01.842Z',NULL,87,4,78.17024226998694,3.71,75.8886080890612,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11076,'2018-05-31T07:29:57.877Z',NULL,118,3,57.627613096978735,2.74,48.97142208487004,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11077,'2019-02-09T19:58:54.923Z',NULL,132,1,127.88197029833711,6.07,145.90988539799545,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11078,'2019-05-17T00:20:00.793Z',1.5732345613738734,74,3,51.12804227386549,2.43,33.88870133244767,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11079,'2018-10-27T04:08:50.491Z',NULL,96,4,104.82144858590365,4.98,59.675235958612845,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11080,'2018-12-31T23:54:14.764Z',NULL,109,2,119.04991068193098,5.65,195.8682775243791,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11081,'2018-10-09T00:36:55.509Z',NULL,83,4,81.87627832636537,3.89,106.76907998470594,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11082,'2018-03-31T17:13:25.175Z',NULL,49,0,131.42865839323724,6.24,119.35079027446162,1463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11083,'2019-06-29T18:55:22.977Z',NULL,36,3,130.93687730741433,7.86,223.81242607698294,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11084,'2019-12-09T18:34:39.426Z',NULL,142,1,70.34853057210945,4.22,57.35308449736043,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11085,'2018-11-14T08:05:44.111Z',NULL,21,1,60.57501609456816,3.63,95.40991224723304,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11086,'2019-02-28T15:29:57.184Z',NULL,182,1,84.48940370476112,5.07,80.70887189514318,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11087,'2020-02-23T02:58:52.401Z',NULL,7,1,148.22900526552291,8.89,123.29635975360519,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11088,'2019-01-06T15:44:15.862Z',NULL,177,2,128.8192981944599,7.73,177.00896897389342,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11089,'2020-02-21T22:50:13.678Z',6.073234561373873,149,2,69.15415037577924,4.15,117.21556328703268,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11090,'2020-01-02T05:07:18.050Z',NULL,57,2,122.4223933583994,7.35,202.6608587162291,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11091,'2019-08-04T19:27:58.448Z',NULL,170,7,105.07665741496471,6.3,108.91651978312575,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11092,'2020-03-24T18:44:12.602Z',NULL,111,1,55.526746186906664,3.33,49.16367369130089,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11093,'2018-10-02T02:28:29.206Z',NULL,8,6,98.83823503993958,5.93,119.67202791917965,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11094,'2018-03-15T02:11:42.555Z',NULL,76,1,63.82421061366486,3.83,77.53529979877291,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11095,'2019-12-02T09:50:43.428Z',NULL,113,2,110.47725376186015,6.63,69.53440331058893,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11096,'2018-10-26T10:16:14.627Z',NULL,29,4,123.57448218067185,7.41,194.7744604159049,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11097,'2019-07-07T22:08:52.756Z',NULL,104,3,106.44215255778118,6.39,61.5938762037283,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11098,'2018-11-27T18:36:09.406Z',7.3429657874552925,84,2,81.87627832636537,4.91,61.30779869618645,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11099,'2019-09-21T04:45:20.603Z',NULL,37,5,80.10774204020768,4.81,73.25593912411182,1464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11100,'2020-02-08T09:01:03.850Z',NULL,49,2,131.42865839323724,8.21,158.2187488214716,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11101,'2019-04-20T00:36:15.038Z',NULL,157,4,139.8942352373801,8.74,123.1638949888964,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11102,'2019-07-07T18:08:53.305Z',NULL,86,5,92.31436670850246,5.77,52.625023706749424,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11103,'2019-02-14T02:58:03.874Z',NULL,133,1,68.4819702983371,4.28,66.66888996997397,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11104,'2020-04-11T05:31:17.092Z',NULL,3,3,53.08311732230858,3.32,62.89180175361379,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11105,'2018-02-16T10:54:29.653Z',NULL,127,2,134.48016314504417,8.41,213.29392887364182,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11106,'2018-08-27T01:01:16.323Z',NULL,112,6,41.329386510090345,2.58,31.49233512535642,1466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11107,'2017-08-05T16:07:42.451Z',NULL,24,8,74.87095783152942,4.49,106.88281655423928,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11108,'2016-11-17T05:35:22.644Z',NULL,160,3,31.727470408648482,1.9,37.75748188269326,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11109,'2018-06-24T15:47:23.686Z',NULL,40,4,99.66240044231697,5.98,163.02548815362468,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11110,'2019-10-26T09:33:11.109Z',2.842965787455293,123,4,110.93145648834248,6.66,102.89100096173705,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11111,'2017-06-17T17:23:55.871Z',NULL,43,6,50.90170136783837,3.05,87.08413319281982,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11112,'2017-08-28T20:28:07.491Z',NULL,55,8,63.84752383956291,3.83,58.433097132327255,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11113,'2019-04-24T20:32:39.586Z',NULL,41,4,63.50890855689462,3.81,86.27333413971714,1468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11114,'2019-10-25T06:38:41.533Z',NULL,4,7,110.98767151282252,4.44,101.21925973230032,1470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11115,'2019-05-12T03:20:31.158Z',NULL,17,5,79.93608046792765,5,111.86402651751065,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11116,'2018-09-05T01:57:31.164Z',NULL,100,5,67.83486485383094,4.24,80.4493264221137,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11117,'2016-07-25T05:30:12.711Z',NULL,51,3,50.433725012700116,3.15,78.36451626215408,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11118,'2017-05-29T20:14:04.755Z',NULL,178,3,78.21975500247076,4.89,61.27431823707188,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11119,'2019-03-06T22:56:36.138Z',NULL,46,1,118.0495173798411,7.38,88.81040146280493,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11120,'2018-07-15T01:57:59.005Z',NULL,23,5,116.86672609493307,7.3,72.63087827451488,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11121,'2019-04-23T20:21:59.223Z',NULL,62,3,133.5202262591817,8.35,226.79157663574264,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11122,'2019-07-27T19:39:10.780Z',NULL,173,5,122.3651993029456,7.65,144.4293539718276,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11123,'2017-11-17T18:15:06.169Z',NULL,193,3,33.587182645381546,2.1,37.205703796724194,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11124,'2019-12-18T07:11:10.679Z',NULL,180,2,68.32408657333919,4.27,48.59046007039232,1471); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11125,'2019-12-28T19:50:11.953Z',NULL,49,2,131.42865839323724,5.55,162.75729897254075,1472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11126,'2019-10-09T07:44:42.402Z',NULL,59,5,89.20214751859149,3.77,110.1228575655343,1472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11127,'2019-10-29T07:37:58.023Z',NULL,11,5,132.45679913492563,5.6,115.23025741527096,1472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11128,'2019-04-10T11:53:48.361Z',3.251916815109223,90,4,123.1196127553999,5.2,128.50538245898764,1472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11129,'2017-12-11T16:13:37.807Z',NULL,28,2,45.41647453836076,1.92,22.620625554377014,1472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11130,'2017-08-04T07:53:07.513Z',NULL,66,7,90.77417514071306,4.99,102.31902085129083,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11131,'2017-02-17T17:52:58.027Z',NULL,92,2,83.2616179105333,4.58,57.6458965053839,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11132,'2016-12-11T07:11:29.983Z',NULL,150,2,85.70276691718615,4.71,87.22017802119801,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11133,'2019-12-25T22:41:15.999Z',NULL,167,2,97.70449564120193,5.37,123.97234641752833,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11134,'2017-05-28T19:05:25.628Z',NULL,107,5,33.39659192329691,1.84,22.29250443691681,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11135,'2020-04-19T02:35:30.769Z',NULL,12,4,116.01427581618326,6.38,190.42669371029487,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11136,'2018-09-15T15:24:47.507Z',NULL,2,5,105.11984419607644,5.78,167.17016421437032,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11137,'2018-09-20T01:45:00.916Z',NULL,3,5,53.08311732230858,2.92,69.34346266797124,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11138,'2017-04-28T10:47:58.299Z',NULL,12,3,77.34285054412217,4.25,53.08173852297705,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11139,'2018-11-11T06:36:54.046Z',NULL,30,3,64.17448218067184,3.53,38.88395337920065,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11140,'2020-04-16T21:58:31.304Z',NULL,43,3,76.35255205175756,4.2,65.63075808034935,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11141,'2018-10-16T01:23:04.598Z',NULL,169,4,59.53172693453274,3.27,37.17358162374815,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11142,'2017-07-04T13:32:35.065Z',NULL,148,3,92.65447881697106,5.1,56.788047213280024,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11143,'2017-09-28T07:04:47.296Z',NULL,98,3,74.94550296436165,4.12,116.29343095062202,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11144,'2018-07-25T14:08:08.459Z',NULL,145,3,61.1983004605443,3.37,105.67838299474337,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11145,'2016-12-26T09:49:45.876Z',NULL,79,1,27.74461152277315,1.53,19.53993021286726,1473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11146,'2018-03-19T17:00:01.684Z',NULL,90,1,123.1196127553999,5.29,170.3837909401592,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11147,'2018-06-23T00:29:46.088Z',NULL,197,4,70.14610686710009,3.02,52.08957005411568,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11148,'2020-02-09T14:18:26.518Z',NULL,102,1,47.04215255778118,2.02,54.73023889129695,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11149,'2017-11-21T12:08:04.774Z',NULL,158,2,93.26282349158673,4.01,48.629348015614745,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11150,'2019-07-12T12:10:03.751Z',NULL,87,5,117.25536340498041,5.04,187.25510383219094,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11151,'2019-06-12T16:40:01.286Z',NULL,42,6,38.00410713690931,1.63,48.84724923108099,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11152,'2018-02-16T09:08:07.126Z',3.251916815109223,175,2,117.3248094335266,5.04,124.11758943385452,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11153,'2018-11-10T13:37:58.863Z',NULL,45,3,118.0495173798411,5.08,193.38476871744484,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11154,'2018-06-17T17:34:44.277Z',NULL,42,5,38.00410713690931,1.63,29.546614373649945,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11155,'2018-07-25T02:01:50.348Z',NULL,111,6,55.526746186906664,2.39,91.39564932144947,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11156,'2019-07-07T19:42:37.796Z',4.546937959110842,169,7,59.53172693453274,2.56,52.76690145677504,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11157,'2020-02-08T03:47:19.157Z',NULL,174,2,111.61430894181083,4.8,74.21842918759158,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11158,'2018-07-26T20:27:53.952Z',NULL,122,7,99.84528328808108,4.29,75.60895061696252,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11159,'2019-09-20T06:17:29.240Z',NULL,35,7,71.53687730741436,3.08,89.11332876498457,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11160,'2018-12-23T19:20:46.250Z',NULL,104,2,106.44215255778118,4.58,134.37635498642467,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11161,'2019-05-11T10:07:33.415Z',NULL,155,4,43.77574310182776,1.88,62.20927858253193,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11162,'2017-01-24T22:20:59.786Z',NULL,81,2,29.288656154807867,1.26,23.205653907559807,1474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11163,'2019-11-26T18:19:51.470Z',NULL,7,4,148.22900526552291,7.04,175.07436879065483,1475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11164,'2017-03-05T23:01:04.754Z',NULL,108,1,33.39659192329691,1.59,44.22593464311657,1475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11165,'2019-03-10T01:44:36.631Z',NULL,48,1,123.20884248534108,6.31,155.23113637306335,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11166,'2018-11-14T06:12:48.751Z',NULL,87,3,117.25536340498041,6.01,162.225799529524,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11167,'2018-06-12T11:25:23.422Z',NULL,25,5,68.62263967182464,3.52,55.690476382602526,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11168,'2019-12-17T06:35:06.301Z',NULL,179,2,68.32408657333919,3.5,95.20843358074036,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11169,'2020-01-28T12:21:32.609Z',NULL,165,2,38.30449564120193,1.96,51.39026116891611,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11170,'2017-07-23T03:55:24.508Z',NULL,89,6,42.47974183693326,2.18,26.315240292275053,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11171,'2018-12-05T19:47:33.404Z',NULL,129,2,148.1672972165937,7.59,87.98860730621156,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11172,'2018-05-03T07:45:47.099Z',NULL,135,5,45.80402317157342,2.35,33.6101951250328,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11173,'2017-04-29T14:12:35.073Z',NULL,82,4,40.59697158687298,2.08,62.71456964487231,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11174,'2017-12-14T03:34:42.866Z',NULL,56,2,24.24752383956291,1.24,31.313040296574354,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11175,'2016-12-10T17:05:51.001Z',NULL,55,2,63.84752383956291,3.27,66.00074975468229,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11176,'2019-06-26T23:20:12.095Z',NULL,190,5,128.5841852057933,6.59,112.71215982660729,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11177,'2019-05-22T13:58:05.069Z',NULL,42,5,38.00410713690931,1.95,59.12642632802184,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11178,'2019-01-13T03:40:02.918Z',9.046937959110842,66,2,136.16126271106958,6.98,84.70788764527651,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11179,'2017-07-27T08:31:04.019Z',NULL,18,4,54.60204747398195,2.8,28.217354523332585,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11180,'2018-05-07T17:06:19.695Z',NULL,172,5,122.3651993029456,6.27,113.30303723457867,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11181,'2019-06-08T20:33:58.590Z',4.546937959110842,37,7,80.10774204020768,4.11,81.61436892571461,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11182,'2018-01-07T16:00:30.728Z',NULL,168,2,118.93172693453273,6.1,206.1108569371806,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11183,'2019-11-08T02:19:57.031Z',NULL,25,4,68.62263967182464,3.52,87.32830071845268,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11184,'2019-09-19T19:33:03.430Z',NULL,150,6,128.55415037577922,6.59,125.6139479010018,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11185,'2018-12-06T19:01:58.743Z',NULL,56,2,36.37128575934436,1.86,44.03076126326411,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11186,'2018-07-23T22:18:06.402Z',NULL,91,5,65.09432810381134,3.34,56.53516630055981,1476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11187,'2018-01-18T19:41:29.418Z',NULL,193,2,50.38077396807232,2.52,62.38853511459041,1479); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11188,'2019-10-29T21:36:35.738Z',NULL,21,7,60.57501609456816,3.79,39.0066162197811,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11189,'2017-04-11T06:22:37.991Z',NULL,118,3,38.418408731319154,2.4,38.132885992100306,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11190,'2017-11-16T02:05:48.691Z',NULL,122,2,66.56352219205405,4.16,112.43955898966375,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11191,'2018-04-06T00:59:07.827Z',7.569409100055827,112,2,41.329386510090345,2.58,24.57377123166407,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11192,'2019-09-28T21:47:13.518Z',3.069409100055827,121,3,40.44528328808107,2.53,27.884839115445228,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11193,'2018-02-09T02:51:00.118Z',NULL,4,1,110.98767151282252,6.94,176.04154094058302,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11194,'2020-01-10T01:09:45.012Z',NULL,115,2,77.91196471862148,4.87,121.94397267787328,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11195,'2018-06-28T02:13:04.292Z',NULL,156,8,30.615804149046195,1.91,27.37393241314635,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11196,'2018-11-24T08:52:06.796Z',NULL,80,3,54.91325681036414,3.43,34.7095898270973,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11197,'2019-05-10T06:31:30.312Z',NULL,70,3,57.493003808959784,3.59,41.38061785933878,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11198,'2018-11-12T13:36:59.884Z',NULL,145,3,61.1983004605443,3.82,81.17047890030007,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11199,'2020-01-31T01:43:05.969Z',NULL,78,2,41.616917284159726,2.6,62.91422568632587,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11200,'2018-03-15T22:12:38.192Z',NULL,51,1,75.65058751905018,4.73,82.50780219554161,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11201,'2018-02-15T18:07:12.919Z',3.069409100055827,111,2,55.526746186906664,3.47,93.37844056462832,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11202,'2018-07-30T10:08:05.640Z',NULL,124,6,110.93145648834248,6.93,67.63709339176413,1481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11203,'2019-11-17T13:57:45.428Z',NULL,165,4,38.30449564120193,0,59.868646777720095,1482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11204,'2017-04-06T01:36:03.966Z',NULL,46,3,78.6996782532274,0,62.92201262549022,1482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11205,'2019-06-25T03:36:13.677Z',NULL,172,6,122.3651993029456,0,186.26942683565875,1482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11206,'2018-07-14T00:21:16.796Z',NULL,76,5,63.82421061366486,0,90.42985791485367,1482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11207,'2020-03-25T02:58:36.427Z',NULL,150,1,128.55415037577922,0,151.8824554581684,1482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11208,'2018-04-26T22:20:30.539Z',NULL,150,3,128.55415037577922,5.14,140.6649188069016,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11209,'2017-11-25T11:22:39.648Z',NULL,79,4,27.74461152277315,1.11,32.498627752786156,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11210,'2019-01-12T23:02:15.209Z',NULL,119,2,43.43814329652384,1.74,70.05461650276392,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11211,'2018-01-19T20:03:46.781Z',NULL,117,2,55.024851254077866,2.2,36.30435117243754,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11212,'2018-05-21T22:21:12.780Z',NULL,87,4,117.25536340498041,4.69,178.72793157505026,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11213,'2018-07-17T00:07:51.223Z',NULL,157,5,139.8942352373801,5.6,220.0565480134457,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11214,'2019-07-23T02:37:38.995Z',NULL,69,5,73.38772304360626,2.94,62.24422360801349,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11215,'2016-11-29T07:20:45.621Z',NULL,185,4,26.384667225677738,1.06,34.309939529871855,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11216,'2019-07-12T07:57:27.056Z',NULL,177,6,128.8192981944599,5.15,65.31657341772379,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11217,'2019-09-19T08:36:18.810Z',NULL,113,4,110.47725376186015,4.42,68.96994314567924,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11218,'2017-03-13T13:16:16.248Z',NULL,13,0,75.0861692740371,3,116.2257597123066,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11219,'2019-02-07T15:09:22.352Z',NULL,165,1,38.30449564120193,1.53,56.65019174440115,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11220,'2019-02-15T08:07:25.485Z',NULL,186,1,98.9770008385166,3.96,51.92284991220425,1483); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11221,'2018-07-20T04:14:42.066Z',NULL,159,4,35.53017445377361,2.44,52.26923326191352,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11222,'2017-07-14T01:18:09.006Z',NULL,117,4,36.683234169385244,2.52,26.60775684713275,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11223,'2018-10-14T07:33:54.192Z',NULL,96,4,104.82144858590365,7.21,102.41165965750056,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11224,'2019-07-22T10:09:16.326Z',NULL,159,4,35.53017445377361,2.44,40.10031387906762,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11225,'2019-09-13T04:45:01.016Z',NULL,81,5,43.9329842322118,3.02,71.52887434035041,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11226,'2019-05-08T16:33:05.146Z',NULL,97,3,112.41825444654248,7.73,84.13700450124614,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11227,'2020-01-23T23:52:07.733Z',NULL,78,1,41.616917284159726,2.86,26.71253144528047,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11228,'2019-08-26T00:02:09.548Z',NULL,152,7,48.89568729900663,3.36,79.5005050193222,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11229,'2018-06-14T20:37:17.518Z',NULL,53,6,44.27587240151534,3.04,35.350292951099405,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11230,'2018-06-10T20:54:01.214Z',NULL,52,5,103.67587240151535,7.13,127.44732132428342,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11231,'2019-02-28T15:45:39.235Z',NULL,82,1,60.89545738030947,4.19,64.61018392088864,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11232,'2018-02-22T06:33:49.468Z',NULL,192,12,69.18418520579327,4.76,100.7943723323997,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11233,'2019-04-26T19:33:14.520Z',NULL,83,2,81.87627832636537,5.63,131.4389521569045,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11234,'2019-08-06T15:08:37.862Z',NULL,161,5,47.59120561297272,3.27,80.20231447323634,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11235,'2019-05-24T02:34:55.271Z',NULL,58,2,78.14578007078882,5.37,71.19526683254855,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11236,'2016-07-17T16:52:36.721Z',NULL,139,4,51.18512212784679,3.52,28.493661138960373,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11237,'2018-12-15T09:07:27.429Z',NULL,195,1,109.78077396807234,7.55,111.47141226220027,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11238,'2018-01-28T18:33:16.348Z',NULL,147,15,66.64727121216615,4.58,43.20962891872046,1484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11239,'2019-05-01T04:21:27.099Z',NULL,22,4,32.136779940663494,1.45,29.275785321422564,1485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11240,'2019-05-30T21:21:55.068Z',NULL,169,3,59.53172693453274,2.68,96.14160659857835,1485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11241,'2020-02-22T18:30:51.225Z',NULL,56,1,36.37128575934436,1.64,20.722298807052915,1485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11242,'2018-05-28T14:56:25.590Z',NULL,200,4,73.20395711799151,3.29,60.56602004856578,1485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11243,'2016-12-05T06:34:13.733Z',5.8344339030185814,44,2,50.90170136783837,2.29,87.19121371757521,1485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11244,'2019-04-19T18:44:25.762Z',NULL,103,2,47.04215255778118,2.12,45.54659049263791,1485); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11245,'2018-07-20T16:40:56.653Z',NULL,188,4,33.87738254731509,2.37,39.990709495695086,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11246,'2018-06-27T04:41:59.302Z',3.9724415079270967,181,8,143.88940370476112,10.07,154.23612065240178,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11247,'2019-07-27T12:27:26.956Z',8.472441507927098,38,7,66.06937283839378,4.62,100.92082482365939,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11248,'2019-04-07T01:37:31.046Z',NULL,29,4,123.57448218067185,8.65,61.78356283684363,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11249,'2019-10-14T07:46:28.145Z',NULL,176,6,57.92480943352658,4.05,47.07571895835987,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11250,'2018-10-14T20:08:16.824Z',NULL,102,4,47.04215255778118,3.29,42.38597329185563,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11251,'2018-08-08T22:37:16.120Z',NULL,101,5,139.82488066180403,9.79,154.3721331797328,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11252,'2017-12-30T22:24:00.334Z',NULL,162,2,22.378598800110105,1.57,38.034305128279506,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11253,'2017-10-04T22:55:55.315Z',NULL,135,6,30.536015447715613,2.14,28.68405478908378,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11254,'2019-08-01T23:52:35.615Z',NULL,1,5,44.19489169601981,3.09,49.40082714657631,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11255,'2018-05-01T13:47:47.880Z',3.9724415079270967,128,3,75.08016314504417,5.26,123.99417745306924,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11256,'2019-01-14T22:53:07.027Z',3.9724415079270967,185,2,39.57700083851661,2.77,37.230402214251356,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11257,'2017-05-10T10:12:02.366Z',NULL,46,3,78.6996782532274,5.51,78.70848358517881,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11258,'2019-06-12T14:01:41.058Z',NULL,190,7,128.5841852057933,9,185.46115280050776,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11259,'2018-07-16T14:55:57.428Z',NULL,118,7,57.627613096978735,4.03,78.530590904389,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11260,'2020-01-20T06:57:00.012Z',NULL,155,2,43.77574310182776,3.06,40.16945975137815,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11261,'2017-06-14T12:44:11.989Z',NULL,34,7,49.535942579421324,3.47,44.77604224167993,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11262,'2019-09-07T16:02:00.764Z',NULL,179,7,68.32408657333919,4.78,90.84778813737748,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11263,'2019-03-11T13:25:22.292Z',NULL,93,1,49.81864156655383,3.49,72.24514920801255,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11264,'2018-12-13T08:27:44.675Z',NULL,172,2,122.3651993029456,8.57,146.63668334084213,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11265,'2018-04-22T02:58:29.280Z',NULL,181,4,143.88940370476112,10.07,160.67419430368236,1486); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11266,'2018-05-04T04:52:16.011Z',3.9724415079270967,115,5,77.91196471862148,5.06,121.44514255428716,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11267,'2017-12-12T02:15:22.759Z',NULL,150,2,85.70276691718615,5.57,127.3758836275933,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11268,'2020-03-19T03:48:12.425Z',NULL,151,1,91.61302306843446,5.95,146.50664891858185,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11269,'2019-11-04T15:04:25.565Z',NULL,16,3,66.11029954877317,4.3,83.62977793307296,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11270,'2017-11-08T07:57:43.903Z',NULL,170,3,70.05110494330981,4.55,61.453304198384316,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11271,'2019-05-26T09:58:42.076Z',3.9724415079270967,46,5,118.0495173798411,7.67,65.45299564627233,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11272,'2018-05-03T07:44:27.303Z',NULL,39,5,114.58158180283459,7.45,169.31661828690653,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11273,'2017-10-15T11:18:17.818Z',NULL,108,6,33.39659192329691,2.17,29.54998180133502,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11274,'2019-01-29T18:47:29.862Z',NULL,104,2,106.44215255778118,6.92,87.00546949103193,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11275,'2018-03-12T12:18:24.690Z',NULL,120,1,83.5020135028928,5.43,113.40053993208124,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11276,'2017-12-10T00:04:59.653Z',NULL,73,2,47.752514839713,3.1,73.05894982547329,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11277,'2019-09-28T09:00:52.208Z',NULL,179,5,68.32408657333919,4.44,77.90219711229263,1487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11278,'2019-11-10T17:53:18.585Z',NULL,171,4,105.07665741496471,0,168.8405804912714,1489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11279,'2018-10-16T16:40:59.943Z',NULL,172,6,122.3651993029456,0,56.75916098422515,1489); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11280,'2020-01-18T04:01:29.392Z',NULL,192,2,69.18418520579327,3.46,98.67449018088475,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11281,'2017-10-03T07:14:46.605Z',NULL,193,6,33.587182645381546,1.68,32.29949953258259,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11282,'2018-11-01T12:45:25.550Z',NULL,124,3,110.93145648834248,5.55,76.4117719941768,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11283,'2018-06-01T16:46:48.682Z',NULL,134,7,42.49233549998661,2.12,48.078741488270076,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11284,'2019-05-16T15:56:18.420Z',8.327460576054039,18,4,81.90307121097293,4.1,102.66352381605908,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11285,'2018-12-30T08:13:49.926Z',NULL,97,2,112.41825444654248,5.62,148.78809956448438,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11286,'2019-02-08T01:55:26.367Z',NULL,173,2,122.3651993029456,6.12,75.36450132990662,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11287,'2018-01-13T17:02:14.593Z',NULL,54,3,62.09360840402396,3.1,43.12737236374302,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11288,'2018-07-04T15:32:16.074Z',NULL,125,5,80.39699207990944,4.02,84.35851839768102,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11289,'2018-05-12T21:35:59.050Z',NULL,153,3,66.79892314178237,3.34,52.77217780701563,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11290,'2018-04-06T19:09:17.202Z',NULL,33,3,47.7448636959614,2.39,68.24264689401079,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11291,'2019-10-10T00:42:17.240Z',3.8274605760540377,65,7,68.22769726470014,3.41,49.17102260724637,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11292,'2017-07-30T09:53:09.330Z',NULL,10,5,31.78621880685793,1.59,17.179836086408017,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11293,'2019-06-10T08:14:22.831Z',NULL,59,5,89.20214751859149,4.46,83.07755494573733,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11294,'2017-12-07T10:29:47.616Z',NULL,16,2,44.07353303251545,2.2,62.7065178092485,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11295,'2019-07-13T17:20:29.848Z',NULL,6,4,97.43621265344382,4.87,96.73592538962251,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11296,'2017-08-02T00:31:17.149Z',NULL,74,5,34.08536151591033,1.7,40.469756532622334,1490); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11297,'2020-03-14T06:00:22.650Z',NULL,196,1,70.14610686710009,4.03,96.2203995027686,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11298,'2017-03-28T00:52:57.100Z',NULL,141,1,84.13541698384589,4.84,73.03586147379336,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11299,'2017-05-06T06:42:33.617Z',NULL,95,3,33.212427711035886,1.91,57.895882268058436,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11300,'2018-04-20T10:09:57.286Z',NULL,40,2,99.66240044231697,5.73,126.16055856359839,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11301,'2018-05-18T06:03:36.872Z',3.8274605760540377,5,3,124.1176465275534,7.14,150.87929909927007,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11302,'2016-12-17T10:47:15.131Z',NULL,126,2,83.49598746872304,4.8,129.2107315889803,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11303,'2018-01-28T08:19:03.519Z',NULL,102,26,47.04215255778118,2.7,23.99489216531123,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11304,'2017-08-22T09:10:16.750Z',NULL,130,9,50.01715912876758,2.88,30.7877773441213,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11305,'2017-01-23T16:12:46.394Z',NULL,130,3,50.01715912876758,2.88,69.125581725588,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11306,'2017-07-25T05:30:02.691Z',NULL,24,5,74.87095783152942,4.31,60.533449028087695,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11307,'2019-11-06T07:06:04.021Z',NULL,76,2,63.82421061366486,3.67,82.39621581379303,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11308,'2019-09-25T06:46:24.447Z',NULL,103,4,47.04215255778118,2.7,57.37456203677272,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11309,'2019-11-24T03:47:16.516Z',NULL,73,2,71.6287722595695,4.12,108.54624238652939,1492); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11310,'2018-09-10T05:15:33.260Z',3.8274605760540377,91,4,65.09432810381134,3.09,60.933660307687994,1495); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11311,'2020-03-14T01:02:34.216Z',NULL,127,1,134.48016314504417,8.07,173.43918561234545,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11312,'2017-12-19T19:48:44.237Z',NULL,79,2,27.74461152277315,1.66,45.01035890869311,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11313,'2018-11-26T06:57:53.186Z',NULL,108,2,50.094887884945365,3.01,28.622076619883472,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11314,'2017-11-05T07:48:55.528Z',NULL,90,2,82.07974183693327,4.92,138.06722590265247,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11315,'2017-12-31T20:25:59.537Z',NULL,99,2,45.22324323588729,2.71,43.557735886487144,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11316,'2019-06-23T12:33:17.326Z',NULL,99,7,67.83486485383094,4.07,76.2592561690625,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11317,'2017-12-06T18:18:51.499Z',NULL,186,2,65.98466722567774,3.96,87.97487354164394,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11318,'2017-06-19T15:08:40.687Z',NULL,49,5,87.61910559549149,5.26,126.780576005656,1497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11319,'2020-01-12T08:32:32.689Z',NULL,153,1,66.79892314178237,2.67,68.59815916419277,1498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11320,'2019-05-18T08:43:46.367Z',6.115655122778639,39,3,114.58158180283459,4.58,143.49608767559326,1498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11321,'2017-10-19T11:30:21.160Z',1.615655122778639,138,6,75.96718984479077,3.04,46.014208782298624,1498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11322,'2020-01-13T22:47:14.841Z',6.115655122778639,1,2,44.19489169601981,1.77,72.34695017590144,1498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11323,'2019-04-25T02:16:39.265Z',NULL,87,2,117.25536340498041,4.69,197.85489681407353,1498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11324,'2019-02-15T03:11:00.004Z',NULL,193,1,50.38077396807232,2.02,38.11545617975835,1498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11325,'2018-08-30T05:05:24.849Z',NULL,45,3,118.0495173798411,3.42,163.26548159185774,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11326,'2020-01-03T08:55:47.138Z',NULL,72,1,142.20381898788685,4.12,195.32279332367102,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11327,'2018-05-30T09:06:39.781Z',NULL,92,2,124.89242686579996,3.62,204.2343758902298,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11328,'2020-02-08T16:23:33.894Z',NULL,38,1,66.06937283839378,1.92,96.76904419483661,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11329,'2018-03-11T22:58:50.305Z',NULL,70,1,57.493003808959784,1.67,90.74694164154943,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11330,'2019-04-09T09:13:28.240Z',NULL,140,2,66.80312547576881,1.94,50.29279747498037,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11331,'2017-07-17T01:39:11.650Z',NULL,101,4,93.21658710786936,2.7,115.80849343945813,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11332,'2019-02-25T03:32:59.300Z',1.615655122778639,59,1,89.20214751859149,2.59,104.9301591684443,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11333,'2019-07-14T04:31:56.136Z',NULL,119,4,43.43814329652384,1.26,42.9109285253034,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11334,'2018-01-06T10:46:10.636Z',NULL,83,2,81.87627832636537,2.37,131.15419258362454,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11335,'2019-05-07T13:45:24.204Z',NULL,14,2,37.648145389078365,1.09,27.31089007693578,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11336,'2017-02-21T02:54:09.759Z',NULL,174,1,74.40953929454055,2.16,114.31921747948273,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11337,'2017-12-08T04:18:31.225Z',NULL,200,1,48.802638078661005,1.42,75.02060340196243,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11338,'2018-06-10T17:42:47.718Z',NULL,166,5,38.30449564120193,1.11,51.89606360930628,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11339,'2019-02-03T12:36:46.345Z',NULL,176,1,57.92480943352658,1.68,49.00317974442284,1499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11340,'2018-03-26T03:51:39.287Z',1.615655122778639,189,1,93.27738254731509,4.66,73.7999093959308,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11341,'2018-03-03T00:42:13.372Z',NULL,148,1,138.9817182254566,6.95,160.2083208445392,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11342,'2016-10-26T03:19:34.766Z',NULL,24,3,74.87095783152942,3.74,108.261865461218,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11343,'2017-10-07T03:05:04.291Z',2.541196662246296,87,5,78.17024226998694,3.91,69.82086174253733,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11344,'2018-09-24T06:48:32.613Z',NULL,68,6,115.24343882309758,5.76,62.008862078957605,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11345,'2016-11-04T23:15:29.454Z',NULL,183,3,37.7982748679465,1.89,53.80475581962479,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11346,'2018-05-30T18:09:59.851Z',NULL,188,3,33.87738254731509,1.69,37.30023478862052,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11347,'2018-06-23T23:29:44.360Z',NULL,98,6,112.41825444654248,5.62,186.3955624472776,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11348,'2019-07-28T20:33:08.456Z',NULL,27,6,127.52471180754115,6.38,182.84084626221656,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11349,'2018-06-21T19:50:56.703Z',NULL,196,6,70.14610686710009,3.51,118.05976435560605,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11350,'2017-09-10T22:46:52.168Z',NULL,46,3,78.6996782532274,3.93,101.79601346032247,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11351,'2018-12-07T08:31:22.963Z',NULL,56,1,36.37128575934436,1.82,45.74863940575526,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11352,'2019-04-15T13:59:55.515Z',7.041196662246296,114,3,77.91196471862148,3.9,43.600741291844336,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11353,'2017-09-15T18:47:01.574Z',NULL,160,6,31.727470408648482,1.59,24.57969880533973,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11354,'2018-09-25T15:07:46.203Z',NULL,197,6,70.14610686710009,3.51,50.347940021833,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11355,'2017-01-12T17:33:51.849Z',NULL,64,2,95.61478497145774,4.78,90.0882568263197,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11356,'2016-08-08T01:47:29.465Z',NULL,132,8,85.25464686555807,4.26,65.4658090510342,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11357,'2019-02-10T09:34:10.667Z',NULL,109,2,119.04991068193098,5.95,149.54092741270517,1500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11358,'2020-02-26T04:47:55.981Z',NULL,111,2,55.526746186906664,2.78,32.49656735827651,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11359,'2019-09-17T21:44:03.449Z',NULL,10,4,47.6793282102869,2.38,61.07422191492175,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11360,'2020-04-04T16:03:25.594Z',7.041196662246296,77,3,101.01691728415972,5.05,109.97954642460867,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11361,'2020-01-02T16:41:44.255Z',NULL,163,2,33.56789820016516,1.68,49.51627277942292,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11362,'2017-08-12T11:57:43.805Z',NULL,147,6,44.4315141414441,2.22,38.05459350484663,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11363,'2017-09-02T15:01:51.329Z',NULL,152,3,32.59712486600442,1.63,27.318763925760848,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11364,'2019-06-21T19:16:35.070Z',NULL,91,4,65.09432810381134,3.25,77.19219972765795,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11365,'2018-12-23T23:04:25.013Z',NULL,96,1,104.82144858590365,5.24,132.77820576472084,1502); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11366,'2019-08-20T04:53:43.375Z',NULL,82,6,60.89545738030947,3.65,75.41883395963578,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11367,'2019-10-28T07:53:39.385Z',NULL,125,6,80.39699207990944,4.82,62.68399852875756,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11368,'2019-05-15T11:21:57.820Z',NULL,169,4,59.53172693453274,3.57,57.274105848477575,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11369,'2019-12-02T13:29:26.789Z',7.041196662246296,172,2,122.3651993029456,7.34,128.49982479999218,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11370,'2018-11-10T01:22:36.107Z',NULL,107,3,50.094887884945365,3.01,27.19956980361854,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11371,'2020-02-27T12:08:41.976Z',7.041196662246296,80,1,54.91325681036414,3.29,43.32859009681185,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11372,'2019-01-27T05:09:37.411Z',NULL,15,1,37.648145389078365,2.26,27.382047879414145,1503); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11373,'2016-10-08T14:34:25.463Z',NULL,104,5,70.96143503852079,4.26,59.636538761500624,1505); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11374,'2018-11-02T06:31:46.247Z',NULL,46,3,118.0495173798411,7.08,132.29558319531526,1505); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11375,'2019-09-12T08:00:58.302Z',NULL,98,4,112.41825444654248,6.75,64.70256797628323,1505); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11376,'2018-01-31T03:25:14.282Z',5.855717510275933,163,1,33.56789820016516,0,47.456051820812235,1507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11377,'2017-04-05T00:19:19.868Z',NULL,159,2,23.686782969182406,0,30.112307976374368,1507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11378,'2019-07-09T05:40:38.786Z',NULL,85,5,54.90104734428525,0,57.686978510685506,1507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11379,'2019-11-02T13:26:44.769Z',NULL,112,3,41.329386510090345,0,47.32470225522666,1507); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11380,'2019-02-25T22:59:02.546Z',5.855717510275933,71,2,82.80381898788684,5.18,90.05910295575352,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11381,'2017-03-02T02:02:19.014Z',NULL,17,1,53.290720311951766,3.33,45.45595412719032,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11382,'2018-01-14T22:47:16.986Z',NULL,30,1,64.17448218067184,4.01,94.98218709338646,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11383,'2016-11-01T17:40:49.383Z',NULL,119,2,28.95876219768256,1.81,27.261039224353986,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11384,'2018-01-13T23:05:05.436Z',NULL,70,1,57.493003808959784,3.59,95.94849549998314,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11385,'2017-03-12T04:07:13.327Z',NULL,4,1,73.99178100854834,4.62,83.69592140245899,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11386,'2017-09-03T23:20:35.069Z',NULL,2,5,70.07989613071763,4.38,101.70441943996816,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11387,'2019-05-21T21:50:46.214Z',NULL,91,4,65.09432810381134,4.07,111.51752720523135,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11388,'2019-11-05T06:57:45.891Z',NULL,137,2,67.77247956807186,4.24,69.82306682584719,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11389,'2019-01-28T08:51:09.822Z',NULL,89,1,63.719612755399886,3.98,68.7709464179666,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11390,'2018-06-22T11:43:35.821Z',NULL,192,6,69.18418520579327,4.32,100.9410412137007,1508); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11391,'2020-03-16T18:15:55.243Z',NULL,31,1,105.65346467128523,4.75,148.94000536559014,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11392,'2016-11-17T19:27:22.788Z',NULL,118,1,38.418408731319154,1.73,23.00130467149163,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11393,'2018-03-08T09:00:07.782Z',NULL,151,1,91.61302306843446,4.12,100.75308892935983,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11394,'2017-10-12T03:01:45.478Z',NULL,144,4,40.7988669736962,1.84,50.47064135766481,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11395,'2019-07-19T03:38:33.718Z',NULL,73,4,71.6287722595695,3.22,101.29415281371094,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11396,'2017-02-06T12:35:25.607Z',NULL,138,1,75.96718984479077,3.42,68.656784500322,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11397,'2019-07-17T04:22:20.933Z',1.355717510275933,26,4,68.12471180754113,3.07,90.11237358578116,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11398,'2020-01-24T17:43:58.919Z',NULL,122,2,99.84528328808108,4.49,72.04167631754335,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11399,'2018-01-28T17:00:58.815Z',NULL,137,2,67.77247956807186,3.05,88.11081623474035,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11400,'2018-01-19T23:24:13.532Z',NULL,169,1,59.53172693453274,2.68,30.930341029736237,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11401,'2019-10-08T18:34:41.436Z',NULL,148,3,138.9817182254566,6.25,126.78025119590707,1509); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11402,'2019-07-23T18:52:12.301Z',NULL,188,2,33.87738254731509,1.36,52.1773692572371,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11403,'2017-02-06T06:02:01.643Z',NULL,47,1,56.05108065511453,2.24,53.18058762665074,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11404,'2019-12-22T19:05:18.322Z',NULL,91,2,65.09432810381134,2.6,75.38047811543063,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11405,'2018-05-28T16:40:05.598Z',NULL,131,3,113.11722203337729,4.52,174.98492237793613,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11406,'2017-11-02T01:35:56.297Z',NULL,118,26,38.418408731319154,1.54,24.507060630600833,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11407,'2018-04-04T08:02:29.826Z',NULL,83,4,81.87627832636537,3.28,90.88414638108357,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11408,'2020-01-14T01:28:43.075Z',NULL,45,2,118.0495173798411,4.72,188.43605804909257,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11409,'2019-01-28T04:52:28.803Z',NULL,100,2,67.83486485383094,2.71,46.158069315906275,1510); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11410,'2020-03-11T05:54:38.778Z',NULL,192,1,69.18418520579327,5.19,49.29369511901856,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11411,'2019-01-04T04:26:33.043Z',NULL,35,2,71.53687730741436,5.37,87.15481360691561,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11412,'2019-06-11T20:54:14.138Z',3.3648374798320657,75,6,125.81276373452337,9.44,99.04173498515345,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11413,'2019-09-28T16:02:23.367Z',NULL,198,5,70.14610686710009,5.26,66.19946239329208,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11414,'2017-10-15T05:32:18.857Z',NULL,147,7,44.4315141414441,3.33,48.66558188056311,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11415,'2018-11-02T22:58:34.789Z',NULL,23,4,116.86672609493307,8.77,130.8704921928409,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11416,'2019-01-13T07:01:10.737Z',NULL,57,2,122.4223933583994,9.18,68.13415275424468,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11417,'2019-06-14T17:59:04.250Z',NULL,97,8,112.41825444654248,8.43,153.48554439281457,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11418,'2018-06-20T00:34:05.835Z',NULL,121,8,40.44528328808107,3.03,42.43108590467259,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11419,'2019-07-15T14:46:48.430Z',NULL,155,6,43.77574310182776,3.28,74.17588799577666,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11420,'2017-12-21T20:12:15.904Z',NULL,9,2,58.31312098526137,4.37,48.330505138633725,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11421,'2019-10-05T04:52:15.776Z',NULL,114,4,77.91196471862148,5.84,128.55262894807115,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11422,'2017-08-23T02:04:56.120Z',NULL,82,7,40.59697158687298,3.04,32.414330483806545,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11423,'2018-10-14T18:10:25.527Z',NULL,101,6,139.82488066180403,10.49,236.0061717062036,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11424,'2019-08-18T22:47:36.991Z',NULL,173,5,122.3651993029456,9.18,189.0490866037662,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11425,'2020-01-16T21:07:15.895Z',NULL,168,1,118.93172693453273,8.92,195.30636528558276,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11426,'2018-09-29T17:45:03.930Z',NULL,143,5,61.1983004605443,4.59,70.6906461567825,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11427,'2017-04-06T14:21:45.226Z',NULL,155,3,29.183828734551838,2.19,29.570245586370444,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11428,'2018-10-27T12:39:47.916Z',NULL,96,6,104.82144858590365,7.86,85.3844250527866,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11429,'2019-12-07T13:48:58.653Z',NULL,51,2,75.65058751905018,5.67,127.18631704263869,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11430,'2019-12-15T07:00:31.153Z',3.3648374798320657,20,1,37.32649625046575,2.8,66.12797855726382,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11431,'2020-02-18T01:12:54.164Z',NULL,103,1,47.04215255778118,3.53,50.76072251592736,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11432,'2019-08-09T07:22:33.084Z',NULL,190,5,128.5841852057933,9.64,96.56734164165582,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11433,'2017-12-16T17:34:04.766Z',NULL,145,1,40.7988669736962,3.06,23.835414231584995,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11434,'2018-10-23T09:14:59.187Z',NULL,59,4,89.20214751859149,6.69,77.71195535377105,1511); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11435,'2019-06-26T11:23:37.012Z',NULL,41,4,63.50890855689462,0,73.51889684089969,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11436,'2018-11-07T23:41:23.129Z',NULL,82,3,60.89545738030947,0,57.05808137543013,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11437,'2018-08-06T18:26:05.758Z',3.3648374798320657,77,9,101.01691728415972,0,66.12176765499602,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11438,'2017-06-27T08:16:56.118Z',NULL,149,8,46.10276691718616,0,58.619193235072416,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11439,'2019-05-30T04:27:10.792Z',3.78881406185399,9,4,87.46968147789205,0,91.45828389024005,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11440,'2019-08-13T10:27:33.355Z',NULL,169,7,59.53172693453274,0,84.10532471710351,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11441,'2018-07-29T06:04:19.533Z',NULL,34,6,74.30391386913199,0,36.830154435322044,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11442,'2019-03-15T08:21:06.066Z',NULL,112,1,41.329386510090345,0,35.26504994040347,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11443,'2019-06-14T10:46:16.180Z',NULL,72,5,142.20381898788685,0,174.2980828915566,1512); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11444,'2019-01-23T08:13:47.164Z',NULL,120,2,83.5020135028928,5.43,132.63844396979184,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11445,'2018-09-17T18:57:22.314Z',NULL,11,5,132.45679913492563,8.61,183.731855786908,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11446,'2019-12-21T12:55:25.901Z',NULL,172,2,122.3651993029456,7.95,79.69509460212655,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11447,'2018-09-24T17:16:07.467Z',8.288814061853989,116,5,114.42485125407785,7.44,144.2383222845842,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11448,'2016-07-03T18:18:40.387Z',NULL,33,5,31.829909130640935,2.07,19.69051437501115,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11449,'2019-05-23T07:04:43.174Z',NULL,27,6,127.52471180754115,8.29,211.80197946619708,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11450,'2017-12-25T12:07:31.419Z',NULL,21,3,40.38334406304544,2.62,30.30351565030525,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11451,'2019-02-21T06:04:46.802Z',3.78881406185399,5,2,124.1176465275534,8.07,180.6643545836571,1513); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11452,'2018-03-07T07:10:16.711Z',NULL,131,1,113.11722203337729,6.79,141.25940690179343,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11453,'2020-01-09T15:56:44.465Z',NULL,4,3,110.98767151282252,6.66,149.94466997738576,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11454,'2019-08-07T14:17:50.065Z',NULL,73,7,71.6287722595695,4.3,119.17879167971871,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11455,'2018-04-05T18:52:01.038Z',8.288814061853989,101,2,139.82488066180403,8.39,237.73038483905543,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11456,'2017-12-25T14:58:36.064Z',NULL,117,2,36.683234169385244,2.2,19.068674427178596,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11457,'2020-02-21T09:48:05.163Z',NULL,67,2,41.24480890795779,2.47,27.706874460567523,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11458,'2018-09-18T16:26:50.923Z',NULL,189,4,93.27738254731509,5.6,142.41886980173882,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11459,'2019-10-11T08:26:12.389Z',NULL,162,4,33.56789820016516,2.01,18.04104859324042,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11460,'2018-04-03T04:38:00.203Z',NULL,24,2,112.30643674729413,6.74,68.1187003199802,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11461,'2019-06-24T16:04:45.117Z',NULL,26,6,68.12471180754113,4.09,93.29822253323319,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11462,'2018-07-19T13:33:27.714Z',NULL,111,6,55.526746186906664,3.33,28.97503769747909,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11463,'2019-12-05T16:27:17.127Z',NULL,49,20,131.42865839323724,7.89,203.00563506327285,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11464,'2018-10-14T14:41:28.188Z',3.78881406185399,127,6,134.48016314504417,8.07,129.50633914743787,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11465,'2019-12-11T12:45:13.846Z',NULL,107,3,50.094887884945365,3.01,50.306170764065214,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11466,'2019-11-11T05:04:54.750Z',NULL,161,3,47.59120561297272,2.86,76.68205739453842,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11467,'2019-05-10T20:05:55.369Z',NULL,63,4,133.5202262591817,8.01,136.0573789913026,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11468,'2018-07-25T17:08:29.784Z',8.288814061853989,140,6,66.80312547576881,4.01,55.16018140559639,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11469,'2018-09-23T00:09:07.291Z',NULL,82,6,60.89545738030947,3.65,64.53326413519245,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11470,'2019-03-23T06:30:47.712Z',NULL,80,1,54.91325681036414,3.29,28.855999050844463,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11471,'2018-11-24T22:35:38.228Z',NULL,61,2,23.537915510955656,1.41,39.6889478077117,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11472,'2019-02-22T18:13:26.884Z',NULL,150,13,128.55415037577922,7.71,119.12361463499543,1516); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11473,'2019-04-27T10:57:46.663Z',NULL,165,2,38.30449564120193,0,32.244830497449705,1517); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11474,'2018-09-05T09:53:17.738Z',NULL,91,2,65.09432810381134,0,75.0959647602425,1517); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11475,'2019-11-27T14:17:58.584Z',NULL,80,1,54.91325681036414,0,82.35838197923843,1517); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11476,'2018-06-04T16:20:48.599Z',NULL,60,5,29.80214751859149,1.94,30.412870482552417,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11477,'2018-09-28T09:08:27.389Z',NULL,87,5,117.25536340498041,7.62,61.174321742915254,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11478,'2018-07-14T07:05:30.602Z',NULL,46,5,118.0495173798411,7.67,105.4175476766543,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11479,'2018-10-24T17:01:53.395Z',NULL,160,6,47.59120561297272,3.09,83.31099273318719,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11480,'2018-02-27T00:11:30.836Z',NULL,60,1,29.80214751859149,1.94,45.18262127927825,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11481,'2019-10-14T12:10:30.657Z',NULL,56,3,36.37128575934436,2.36,44.318588970943765,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11482,'2019-06-27T08:42:01.203Z',NULL,103,3,47.04215255778118,3.06,25.476298451998662,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11483,'2019-04-01T22:53:46.525Z',NULL,108,1,50.094887884945365,3.26,31.60345629022418,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11484,'2019-02-02T01:21:09.478Z',NULL,72,1,142.20381898788685,9.24,118.56493041687219,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11485,'2019-11-17T03:59:28.967Z',NULL,100,2,67.83486485383094,4.41,40.474230605327236,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11486,'2019-08-19T00:17:28.131Z',1.5030327089601887,15,53,37.648145389078365,2.45,50.857210612252025,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11487,'2019-02-17T16:28:51.415Z',NULL,198,2,70.14610686710009,4.56,92.23402104151745,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11488,'2020-02-11T08:31:38.217Z',NULL,100,1,67.83486485383094,4.41,60.35864882999858,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11489,'2019-02-08T11:01:55.231Z',NULL,37,1,80.10774204020768,5.21,107.08634468779435,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11490,'2017-12-17T18:31:49.770Z',NULL,140,2,44.53541698384588,2.89,25.21076485847466,1518); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11491,'2019-02-14T06:45:11.072Z',NULL,172,1,122.3651993029456,7.34,184.57709608506937,1519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11492,'2019-04-08T23:12:07.635Z',NULL,170,3,105.07665741496471,6.3,91.01038903360003,1519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11493,'2019-04-01T04:25:33.986Z',NULL,67,3,41.24480890795779,2.47,56.34473492615799,1519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11494,'2018-05-02T12:57:25.940Z',NULL,53,3,44.27587240151534,2.66,45.77016634406309,1519); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11495,'2019-01-10T09:31:13.848Z',NULL,47,1,84.0766209826718,3.36,55.77763721845811,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11496,'2020-02-27T19:27:56.153Z',NULL,90,1,123.1196127553999,4.92,155.16416028352833,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11497,'2018-12-20T08:11:34.963Z',NULL,1,2,44.19489169601981,1.77,36.46132472508018,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11498,'2017-09-08T12:03:41.284Z',NULL,13,5,75.0861692740371,3,63.76532646951999,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11499,'2018-11-05T18:17:26.913Z',NULL,110,2,55.526746186906664,2.22,41.79402530845358,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11500,'2019-07-01T06:03:04.583Z',1.5030327089601887,113,2,110.47725376186015,4.42,163.01586804490083,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11501,'2017-01-22T16:40:04.613Z',1.5030327089601887,133,2,45.654646865558064,1.83,59.615766686429346,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11502,'2019-07-23T21:23:29.545Z',NULL,136,4,105.20402317157343,4.21,153.24679062530134,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11503,'2018-06-20T10:08:02.609Z',NULL,20,5,37.32649625046575,1.49,59.17005153685922,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11504,'2016-07-03T12:22:57.772Z',NULL,40,46,66.44160029487797,2.66,100.92330901005714,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11505,'2018-07-24T21:58:07.372Z',NULL,193,5,50.38077396807232,2.02,38.498696769816846,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11506,'2018-01-24T19:57:26.640Z',NULL,146,2,126.04727121216614,5.04,193.90147264109964,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11507,'2016-09-14T20:05:51.546Z',NULL,154,46,54.58353035541507,2.18,75.66797323127815,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11508,'2019-08-07T12:18:30.145Z',NULL,104,6,106.44215255778118,4.26,120.34428747244542,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11509,'2016-07-09T03:35:57.508Z',NULL,95,3,33.212427711035886,1.33,44.58023999114651,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11510,'2018-05-11T15:45:06.043Z',2.870519681260927,137,3,67.77247956807186,2.71,116.62756382356915,1522); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11511,'2017-03-01T08:53:06.277Z',NULL,41,1,42.33927237126308,2.01,57.170448296641496,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11512,'2018-03-10T14:14:38.326Z',NULL,129,1,148.1672972165937,7.04,157.46987779931473,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11513,'2019-02-07T03:42:48.753Z',NULL,134,2,42.49233549998661,2.02,31.696447914628596,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11514,'2017-12-25T06:20:33.940Z',NULL,84,1,54.58418555091025,2.59,92.90059682546115,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11515,'2018-08-26T13:20:02.978Z',NULL,161,5,47.59120561297272,2.26,26.786961754242082,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11516,'2019-11-29T13:34:42.244Z',NULL,80,2,54.91325681036414,2.61,93.26631039980964,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11517,'2018-12-22T12:31:49.209Z',NULL,52,1,103.67587240151535,4.92,108.83703383677403,1523); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11518,'2018-11-04T01:57:56.163Z',NULL,140,2,66.80312547576881,3.67,93.00082802352632,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11519,'2019-09-04T13:06:31.165Z',NULL,165,5,38.30449564120193,2.11,22.270948446815176,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11520,'2018-02-07T21:33:52.291Z',NULL,10,2,47.6793282102869,2.62,49.67829280065249,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11521,'2020-01-07T02:31:58.993Z',NULL,172,2,122.3651993029456,6.73,62.06831901575711,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11522,'2018-10-11T13:23:46.084Z',NULL,94,4,109.21864156655383,6.01,88.63391197655487,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11523,'2020-03-29T22:14:29.804Z',2.870519681260927,196,1,70.14610686710009,3.86,64.61272504501153,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11524,'2018-06-12T03:59:42.159Z',7.370519681260927,163,8,33.56789820016516,1.85,27.661965846013526,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11525,'2019-04-25T00:27:20.965Z',NULL,41,4,63.50890855689462,3.49,76.36371025262505,1526); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11526,'2018-12-04T10:03:31.797Z',NULL,45,2,118.0495173798411,8.12,155.92643209399463,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11527,'2019-06-22T13:16:29.543Z',NULL,198,4,70.14610686710009,4.82,60.99528871366763,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11528,'2017-06-07T12:03:35.132Z',NULL,122,6,66.56352219205405,4.58,54.14410668522971,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11529,'2019-03-15T02:59:41.073Z',NULL,114,1,77.91196471862148,5.36,135.07555800031201,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11530,'2018-08-16T19:01:03.184Z',NULL,137,8,67.77247956807186,4.66,94.78515416279365,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11531,'2019-06-04T15:43:12.286Z',NULL,108,6,50.094887884945365,3.44,48.42531210669362,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11532,'2017-09-29T19:40:11.421Z',NULL,197,5,46.76407124473339,3.22,63.965954111273135,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11533,'2018-09-23T07:26:35.262Z',NULL,82,6,60.89545738030947,4.19,42.279413246173675,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11534,'2018-08-23T22:28:31.889Z',NULL,162,8,33.56789820016516,2.31,17.843445787208644,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11535,'2019-03-07T00:08:36.952Z',NULL,148,1,138.9817182254566,9.55,212.04502833851262,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11536,'2020-02-24T05:20:58.110Z',NULL,185,2,39.57700083851661,2.72,25.046740673247754,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11537,'2017-06-13T09:13:22.739Z',3.426627950543455,38,8,44.04624855892918,3.03,43.22666425232154,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11538,'2017-07-19T16:54:10.464Z',NULL,82,6,40.59697158687298,2.79,25.949867743027408,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11539,'2019-08-01T03:39:28.999Z',NULL,160,9,47.59120561297272,3.27,53.759172422170934,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11540,'2018-03-02T04:05:27.056Z',3.426627950543455,19,1,64.00675097561322,4.4,98.89570470016055,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11541,'2018-08-03T16:49:35.391Z',NULL,61,5,23.537915510955656,1.62,22.531917152362723,1527); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11542,'2018-04-28T21:53:31.089Z',NULL,183,2,56.697412301919755,2.27,28.680440454224282,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11543,'2019-12-16T07:56:00.614Z',NULL,115,2,77.91196471862148,3.12,134.8507711308018,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11544,'2018-05-07T18:14:20.972Z',NULL,140,5,66.80312547576881,2.67,104.89937366968029,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11545,'2016-10-20T18:08:02.122Z',NULL,140,6,44.53541698384588,1.78,72.00867256203173,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11546,'2019-11-24T10:11:04.361Z',NULL,144,2,61.1983004605443,2.45,52.308227375158594,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11547,'2020-03-02T14:33:36.018Z',NULL,189,1,93.27738254731509,3.73,97.28131874284271,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11548,'2018-10-29T12:23:22.942Z',NULL,128,6,75.08016314504417,3,54.7592920986096,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11549,'2019-06-27T04:18:28.387Z',NULL,175,5,117.3248094335266,4.69,192.824902393414,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11550,'2019-09-29T13:41:27.315Z',NULL,75,4,125.81276373452337,5.03,168.49706199415826,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11551,'2019-03-08T01:55:46.463Z',NULL,131,1,113.11722203337729,4.52,58.949051095836936,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11552,'2019-12-23T23:42:42.337Z',NULL,62,1,133.5202262591817,5.34,196.01799726483623,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11553,'2018-04-13T01:06:43.926Z',NULL,10,2,47.6793282102869,1.91,50.73179122053759,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11554,'2018-07-27T18:44:34.601Z',NULL,160,4,47.59120561297272,1.9,62.371752008310516,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11555,'2019-05-25T18:28:18.464Z',NULL,199,3,115.4300138092855,4.62,119.88535795096091,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11556,'2018-04-29T08:26:43.275Z',NULL,10,2,47.6793282102869,1.91,26.630009402592417,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11557,'2017-01-06T15:20:22.540Z',NULL,159,2,23.686782969182406,0.95,35.94336910167107,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11558,'2019-08-29T15:49:54.341Z',NULL,107,7,50.094887884945365,2,36.09311278599603,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11559,'2020-01-31T11:55:00.006Z',NULL,85,2,54.90104734428525,2.2,31.199920438916646,1528); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11560,'2017-07-09T06:57:33.630Z',7.926627950543455,112,6,27.55292434006023,1.93,40.235494248952584,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11561,'2020-03-07T19:16:44.572Z',NULL,169,1,59.53172693453274,4.17,60.135613021571785,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11562,'2019-09-27T07:11:50.226Z',NULL,46,5,118.0495173798411,8.26,66.703141926905,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11563,'2018-08-08T11:22:50.892Z',NULL,100,5,67.83486485383094,4.75,105.73262921962014,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11564,'2018-12-23T09:06:38.119Z',NULL,97,2,112.41825444654248,7.87,189.87906032702026,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11565,'2017-10-06T14:47:17.147Z',NULL,121,7,26.96352219205405,1.89,37.31670661448792,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11566,'2018-03-15T19:12:56.073Z',NULL,182,1,84.48940370476112,5.91,129.75968068685992,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11567,'2019-11-02T12:49:28.938Z',NULL,131,2,113.11722203337729,7.92,81.38240907688184,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11568,'2019-07-09T18:47:59.165Z',7.926627950543455,26,5,68.12471180754113,4.77,54.090834887213234,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11569,'2018-09-19T21:11:39.223Z',NULL,131,5,113.11722203337729,7.92,88.5725759167397,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11570,'2018-07-01T18:49:18.234Z',NULL,94,3,109.21864156655383,7.65,122.76314874411837,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11571,'2019-07-16T21:57:27.396Z',NULL,161,2,47.59120561297272,3.33,75.37706539251745,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11572,'2019-05-26T13:59:53.308Z',NULL,140,2,66.80312547576881,4.68,97.18484499651441,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11573,'2019-11-26T04:26:19.519Z',NULL,145,1,61.1983004605443,4.28,40.520374988084306,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11574,'2018-04-10T19:37:21.520Z',NULL,125,1,80.39699207990944,5.63,48.517127758380845,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11575,'2018-10-13T17:57:34.571Z',NULL,187,4,98.9770008385166,6.93,173.8615255377786,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11576,'2019-06-14T13:42:49.716Z',NULL,94,4,109.21864156655383,7.65,85.4279481966806,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11577,'2017-12-09T17:03:42.543Z',5.321484074301163,79,1,27.74461152277315,1.94,38.206582256360335,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11578,'2017-08-12T09:59:47.514Z',NULL,134,5,28.328223666657742,1.98,27.429685245734557,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11579,'2017-05-06T18:31:07.065Z',NULL,6,2,64.95747510229587,4.55,76.93256589905505,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11580,'2017-11-29T10:25:00.344Z',NULL,45,2,78.6996782532274,5.51,121.9995085453411,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11581,'2018-03-03T15:33:00.399Z',NULL,181,1,143.88940370476112,10.07,176.3262765037854,1529); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11582,'2020-01-27T14:22:27.113Z',NULL,183,2,56.697412301919755,3.4,27.265872832917868,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11583,'2018-04-08T18:07:34.000Z',NULL,83,3,81.87627832636537,4.91,112.26410780827577,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11584,'2019-01-06T15:25:07.685Z',NULL,133,2,68.4819702983371,4.11,115.98382213025114,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11585,'2020-03-07T17:38:37.596Z',NULL,53,1,44.27587240151534,2.66,42.51024388901101,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11586,'2019-06-20T19:39:28.555Z',NULL,40,6,99.66240044231697,5.98,170.34192364300858,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11587,'2018-02-18T00:28:10.693Z',NULL,149,2,69.15415037577924,4.15,89.53990661181349,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11588,'2017-08-24T22:41:30.021Z',NULL,64,5,95.61478497145774,5.74,83.12146932724676,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11589,'2019-11-01T02:12:20.796Z',NULL,99,1,67.83486485383094,4.07,113.59573395882427,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11590,'2019-04-12T15:51:21.664Z',NULL,51,1,75.65058751905018,4.54,94.84134007375025,1531); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11591,'2019-09-01T11:04:45.418Z',5.321484074301163,5,2,124.1176465275534,6.21,67.93184756630414,1532); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11592,'2017-12-26T04:17:55.265Z',NULL,63,1,89.0134841727878,4.45,145.75584403357155,1532); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11593,'2018-10-09T19:39:03.294Z',NULL,17,4,79.93608046792765,5,138.93466200108068,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11594,'2017-08-20T21:53:43.738Z',NULL,33,5,31.829909130640935,1.99,54.07606821482796,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11595,'2020-03-07T12:17:49.265Z',NULL,137,1,67.77247956807186,4.24,112.3139110407681,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11596,'2018-10-22T23:40:19.185Z',NULL,165,4,38.30449564120193,2.39,30.32192185404825,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11597,'2018-11-07T15:03:08.730Z',NULL,87,2,117.25536340498041,7.33,127.91361060005437,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11598,'2018-07-31T12:14:47.807Z',NULL,33,3,47.7448636959614,2.98,42.92145084233024,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11599,'2018-09-30T02:32:19.491Z',NULL,22,5,32.136779940663494,2.01,30.464220752412952,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11600,'2017-08-15T03:54:26.490Z',0.8214840743011633,47,7,56.05108065511453,3.5,31.11030672228606,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11601,'2019-10-14T00:54:44.688Z',NULL,172,4,122.3651993029456,7.65,187.803162244675,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11602,'2017-05-04T21:51:09.761Z',NULL,92,3,83.2616179105333,5.2,75.48093700562605,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11603,'2020-03-05T02:16:25.348Z',NULL,194,1,50.38077396807232,3.15,66.32831588522627,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11604,'2019-09-27T10:10:24.309Z',NULL,94,6,109.21864156655383,6.83,135.40978927445235,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11605,'2019-02-01T10:08:27.831Z',NULL,195,2,109.78077396807234,6.86,152.42752619444,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11606,'2019-10-13T14:48:31.836Z',NULL,198,5,70.14610686710009,4.38,85.33036085974491,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11607,'2019-03-30T19:42:55.273Z',NULL,48,1,123.20884248534108,7.7,124.74829728332382,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11608,'2019-03-27T11:46:56.428Z',6.887862756370274,193,1,50.38077396807232,3.15,60.77611619072732,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11609,'2019-08-09T16:24:22.616Z',NULL,39,8,114.58158180283459,7.16,114.67612860198435,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11610,'2018-07-02T05:41:20.343Z',NULL,15,5,37.648145389078365,2.35,26.789363054754748,1533); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11611,'2018-10-30T05:51:02.839Z',NULL,71,5,82.80381898788684,4.97,144.41233344950385,1534); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11612,'2018-03-01T10:55:25.131Z',NULL,43,1,76.35255205175756,4.58,72.63783655448769,1534); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11613,'2018-08-01T04:51:34.131Z',NULL,194,7,50.38077396807232,1.46,65.9005307866029,1535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11614,'2020-01-28T19:29:19.686Z',NULL,108,2,50.094887884945365,1.45,52.77608803456576,1535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11615,'2019-02-13T00:46:01.665Z',NULL,64,2,143.4221774571866,4.16,159.8615244462132,1535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11616,'2020-02-03T11:34:50.167Z',NULL,107,2,50.094887884945365,1.45,57.41772066325335,1535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11617,'2017-09-22T15:05:58.725Z',6.887862756370274,166,5,25.536330427467956,0.74,16.483738448256577,1535); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11618,'2019-06-26T12:43:19.535Z',NULL,89,6,63.719612755399886,3.19,78.16604071193495,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11619,'2019-07-04T07:53:49.146Z',6.887862756370274,100,5,67.83486485383094,3.39,46.66492865360523,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11620,'2018-09-30T22:41:29.753Z',5.5743229188542625,44,5,76.35255205175756,3.82,58.86324416530141,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11621,'2018-09-20T19:05:46.463Z',NULL,133,5,68.4819702983371,3.42,88.5800413021185,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11622,'2017-09-15T20:34:45.823Z',NULL,194,6,33.587182645381546,1.68,35.04926550704285,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11623,'2019-04-16T13:21:02.127Z',NULL,153,3,66.79892314178237,3.34,77.74901000543001,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11624,'2018-04-20T13:33:08.175Z',NULL,93,3,49.81864156655383,2.49,42.16836056382402,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11625,'2018-07-11T01:30:17.720Z',NULL,107,5,50.094887884945365,2.5,38.78358430293648,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11626,'2019-08-26T08:19:22.355Z',NULL,113,7,110.47725376186015,5.52,97.97259806859904,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11627,'2018-10-14T00:26:05.244Z',NULL,165,6,38.30449564120193,1.92,36.12283652451816,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11628,'2017-11-07T02:57:17.594Z',NULL,173,3,81.57679953529707,4.08,124.57453624004252,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11629,'2019-11-21T13:44:14.397Z',NULL,186,3,98.9770008385166,4.95,138.3700710028689,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11630,'2017-09-28T18:53:29.351Z',NULL,136,5,70.13601544771562,3.51,113.07762208368456,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11631,'2017-05-03T02:15:18.488Z',NULL,93,4,33.212427711035886,1.66,39.83849513275612,1536); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11632,'2018-10-24T07:49:03.515Z',NULL,153,5,66.79892314178237,4.01,57.572965825351986,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11633,'2019-09-26T21:32:51.452Z',NULL,113,5,110.47725376186015,6.63,149.22839019642143,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11634,'2020-03-07T03:27:47.245Z',NULL,118,1,57.627613096978735,3.46,91.65662042629664,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11635,'2020-01-10T15:01:52.877Z',NULL,174,2,111.61430894181083,6.7,72.76632717139975,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11636,'2019-07-17T07:51:43.705Z',NULL,164,4,92.96789820016517,5.58,130.34689142175145,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11637,'2018-08-09T23:34:16.302Z',NULL,46,8,118.0495173798411,7.08,183.05283915143428,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11638,'2018-04-06T13:20:10.179Z',NULL,176,4,57.92480943352658,3.48,93.98646127236549,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11639,'2019-10-06T09:49:44.813Z',NULL,195,6,109.78077396807234,6.59,187.01049738893133,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11640,'2018-06-05T00:59:47.629Z',NULL,167,5,97.70449564120193,5.86,65.68025259797085,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11641,'2016-09-18T16:57:52.106Z',NULL,34,4,49.535942579421324,2.97,69.58285545927582,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11642,'2019-06-29T23:18:04.623Z',4.180621032112769,184,5,116.09741230191975,6.97,138.9851241537323,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11643,'2019-09-29T06:29:03.877Z',NULL,195,4,109.78077396807234,6.59,185.80480576018692,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11644,'2017-08-08T03:42:29.332Z',NULL,120,8,55.668009001928525,3.34,33.03429136803063,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11645,'2019-04-05T22:11:58.137Z',NULL,167,4,97.70449564120193,5.86,80.41468956513876,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11646,'2019-01-14T02:21:15.853Z',NULL,199,3,115.4300138092855,6.93,64.74463911488617,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11647,'2018-10-28T12:55:28.658Z',NULL,130,8,75.02573869315137,4.5,91.64597245857388,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11648,'2017-08-14T20:33:11.379Z',NULL,74,8,34.08536151591033,2.05,35.60956642475252,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11649,'2019-03-28T17:48:39.296Z',NULL,42,1,38.00410713690931,2.28,33.02558403349284,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11650,'2019-11-20T00:43:04.798Z',NULL,161,3,47.59120561297272,2.86,51.49352789724886,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11651,'2018-06-15T11:36:56.298Z',NULL,64,7,143.4221774571866,8.61,131.88291854942673,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11652,'2018-06-28T17:01:27.584Z',NULL,20,7,37.32649625046575,2.24,27.70534337871463,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11653,'2019-03-25T20:37:17.026Z',NULL,53,1,44.27587240151534,2.66,61.69813127817884,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11654,'2019-03-07T23:07:54.133Z',NULL,68,1,115.24343882309758,6.91,187.47736037634274,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11655,'2020-03-15T10:53:43.057Z',NULL,66,1,136.16126271106958,8.17,207.61830530714468,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11656,'2020-02-02T08:48:13.304Z',NULL,117,2,55.024851254077866,3.3,92.20700067206269,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11657,'2018-03-01T18:34:33.161Z',NULL,46,1,118.0495173798411,7.08,92.7288831251237,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11658,'2018-01-26T20:39:49.915Z',NULL,172,3,122.3651993029456,7.34,207.34404462194098,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11659,'2019-10-02T16:02:21.060Z',NULL,146,8,126.04727121216614,7.56,169.92688438115943,1537); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11660,'2020-03-14T09:20:39.964Z',8.680621032112768,143,1,61.1983004605443,0,41.86011368769434,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11661,'2018-07-26T19:46:41.968Z',NULL,84,7,81.87627832636537,0,62.93819966683858,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11662,'2018-04-05T15:31:57.914Z',8.680621032112768,21,4,60.57501609456816,0,81.33331207800025,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11663,'2018-12-29T08:26:36.767Z',NULL,43,2,76.35255205175756,0,57.329548430431124,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11664,'2020-01-08T15:48:41.840Z',NULL,172,2,122.3651993029456,0,165.82924661896638,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11665,'2018-11-09T02:02:07.351Z',NULL,29,3,123.57448218067185,0,72.09743306579273,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11666,'2017-08-23T19:15:05.620Z',NULL,184,8,77.3982748679465,0,114.77359550967014,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11667,'2018-11-16T12:57:10.178Z',NULL,124,3,110.93145648834248,0,83.51572714619059,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11668,'2019-08-08T09:40:33.343Z',8.680621032112768,101,8,139.82488066180403,0,77.68432848872655,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11669,'2016-12-30T02:57:04.258Z',NULL,133,2,45.654646865558064,0,28.6354547294944,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11670,'2017-10-25T11:11:43.575Z',NULL,43,4,50.90170136783837,0,24.66979466732981,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11671,'2017-11-16T13:12:25.538Z',NULL,29,2,82.3829881204479,0,76.98055184468046,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11672,'2017-10-19T05:59:41.404Z',NULL,190,6,85.72279013719552,0,84.64948633437682,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11673,'2018-11-05T17:43:51.022Z',NULL,11,2,132.45679913492563,0,114.60654451538555,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11674,'2019-05-18T23:05:01.560Z',NULL,156,3,30.615804149046195,0,29.32872906969101,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11675,'2019-03-18T00:02:09.659Z',NULL,178,1,117.32963250370614,0,129.36318026061792,1538); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11676,'2018-06-12T19:43:23.447Z',NULL,166,3,38.30449564120193,2.3,65.29802795113049,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11677,'2020-03-20T03:46:34.651Z',NULL,80,1,54.91325681036414,3.29,97.04868784224577,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11678,'2020-02-06T14:58:12.289Z',NULL,94,2,109.21864156655383,6.55,68.5375356395286,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11679,'2017-10-17T05:39:46.919Z',NULL,105,4,35.149014295079674,2.11,57.01122866586467,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11680,'2019-08-25T17:58:22.107Z',NULL,67,5,41.24480890795779,2.47,73.15668030746463,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11681,'2019-01-05T23:50:33.103Z',NULL,134,1,42.49233549998661,2.55,64.16864587855032,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11682,'2019-03-16T04:21:47.168Z',NULL,17,0,79.93608046792765,4.8,117.98119735116818,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11683,'2018-12-17T19:40:35.385Z',NULL,19,1,64.00675097561322,3.84,103.61904971324971,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11684,'2019-07-24T11:57:36.530Z',NULL,115,4,77.91196471862148,4.67,64.60810599437993,1541); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11685,'2017-11-05T09:32:20.718Z',NULL,36,2,87.29125153827623,5.46,116.57400038884633,1542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11686,'2017-06-02T13:27:56.341Z',NULL,115,6,51.94130981241432,3.25,39.832996260118755,1542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11687,'2018-08-20T07:37:24.566Z',NULL,176,5,57.92480943352658,3.62,77.79816916141932,1542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11688,'2018-05-04T12:59:42.337Z',NULL,51,3,75.65058751905018,4.73,48.175993779488095,1542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11689,'2019-12-11T10:07:09.471Z',NULL,130,1,75.02573869315137,4.69,114.9062479647115,1542); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11690,'2019-06-17T08:23:58.983Z',NULL,199,4,115.4300138092855,3.35,135.37867889583063,1543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11691,'2017-02-02T10:28:55.059Z',NULL,117,2,36.683234169385244,1.06,40.282713890340354,1543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11692,'2019-04-07T11:45:41.763Z',NULL,66,2,136.16126271106958,3.95,155.23412653667953,1543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11693,'2017-07-29T21:46:03.300Z',NULL,127,2,89.65344209669612,2.6,100.11219095784249,1543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11694,'2017-06-28T00:41:02.082Z',NULL,197,4,46.76407124473339,1.36,39.752312354768975,1543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11695,'2018-09-01T20:12:50.909Z',1.166124481530461,22,4,32.136779940663494,0.93,42.33467966088792,1543); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11696,'2019-11-16T02:18:38.661Z',NULL,70,2,57.493003808959784,1.67,79.32156677773303,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11697,'2020-03-26T21:08:49.670Z',NULL,31,1,105.65346467128523,3.06,134.48500235375212,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11698,'2020-01-27T10:25:27.433Z',NULL,23,1,116.86672609493307,3.39,148.7282508370562,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11699,'2019-03-27T01:02:26.531Z',NULL,132,1,127.88197029833711,3.71,89.77604442442573,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11700,'2018-02-28T06:04:44.799Z',NULL,196,1,70.14610686710009,2.03,39.08643523553761,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11701,'2019-01-26T17:27:32.439Z',NULL,122,1,99.84528328808108,2.9,64.71195191147032,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11702,'2018-12-24T23:26:03.550Z',NULL,165,1,38.30449564120193,1.11,37.21932313644804,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11703,'2020-01-03T08:18:25.998Z',NULL,11,2,132.45679913492563,3.84,142.60865164774586,1545); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11704,'2018-09-17T05:18:12.514Z',NULL,99,5,67.83486485383094,4.41,121.26216665039064,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11705,'2020-01-20T18:47:06.347Z',NULL,124,2,110.93145648834248,7.21,144.77591043618696,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11706,'2018-10-09T12:13:09.496Z',NULL,40,6,99.66240044231697,6.48,96.08883008217012,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11707,'2018-12-25T06:17:00.698Z',6.257514456699708,194,2,50.38077396807232,3.27,57.17795532113237,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11708,'2019-07-19T00:25:06.143Z',6.257514456699708,50,6,53.64019616819762,3.49,87.79297788185956,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11709,'2016-09-06T14:14:03.060Z',NULL,125,5,53.59799471993963,3.48,29.36316612682649,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11710,'2018-05-17T02:51:03.309Z',NULL,6,5,97.43621265344382,6.33,121.63926865548066,1547); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11711,'2019-05-26T15:01:19.262Z',NULL,93,5,49.81864156655383,3.11,31.512223250232072,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11712,'2017-11-05T09:50:02.567Z',6.257514456699708,53,3,29.517248267676894,1.84,41.77931234724255,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11713,'2017-12-18T04:55:33.231Z',6.257514456699708,1,2,29.463261130679875,1.84,36.54224475010091,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11714,'2018-12-29T00:44:00.482Z',NULL,32,2,107.1448636959614,6.7,60.5637665558376,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11715,'2020-02-23T06:43:59.325Z',7.031444290934965,77,2,101.01691728415972,6.31,138.11811226633847,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11716,'2018-11-30T02:10:59.553Z',NULL,83,3,81.87627832636537,5.12,47.65324719095972,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11717,'2018-06-22T16:45:08.516Z',NULL,180,7,68.32408657333919,4.27,119.33729176966158,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11718,'2019-07-09T22:58:57.836Z',NULL,162,5,33.56789820016516,2.1,55.591706628254585,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11719,'2017-01-07T20:39:46.056Z',NULL,146,2,84.03151414144409,5.25,59.65171110416071,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11720,'2018-04-30T20:35:18.190Z',7.031444290934965,165,3,38.30449564120193,2.39,58.86574090548363,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11721,'2017-07-06T18:59:25.250Z',NULL,55,5,63.84752383956291,3.99,48.164622716910564,1548); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11722,'2018-05-09T16:48:37.829Z',NULL,14,5,37.648145389078365,2.07,58.22404516354679,1549); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11723,'2018-02-09T16:10:48.406Z',NULL,61,2,23.537915510955656,1.47,29.904688473767592,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11724,'2020-01-21T16:50:00.534Z',NULL,2,2,105.11984419607644,6.57,55.1617643483951,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11725,'2019-03-31T17:37:11.954Z',NULL,82,1,60.89545738030947,3.81,79.78165208380099,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11726,'2018-03-25T07:50:44.652Z',NULL,65,1,68.22769726470014,4.26,100.52602981351212,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11727,'2018-09-09T11:08:41.333Z',NULL,54,5,62.09360840402396,3.88,88.09953051342733,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11728,'2017-01-07T23:26:17.333Z',NULL,176,2,38.616539622351056,2.41,64.59457952622635,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11729,'2020-02-11T04:30:31.439Z',NULL,133,2,68.4819702983371,4.28,91.847393546029,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11730,'2019-05-19T22:41:28.474Z',NULL,94,5,109.21864156655383,6.83,114.06198932508147,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11731,'2019-09-01T11:29:41.111Z',NULL,100,5,67.83486485383094,4.24,61.68433904878682,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11732,'2019-12-04T08:15:23.067Z',NULL,47,2,84.0766209826718,5.25,85.9957057754302,1555); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11733,'2018-03-11T18:29:30.301Z',NULL,11,1,132.45679913492563,3.84,125.8482600878532,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11734,'2017-03-12T12:45:38.654Z',2.367390497509208,196,1,46.76407124473339,1.36,65.53142894475862,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11735,'2017-09-19T13:13:12.029Z',NULL,22,3,21.42451996044233,0.62,27.536367312743696,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11736,'2017-10-09T19:18:44.993Z',NULL,97,3,74.94550296436165,2.17,116.14753491073635,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11737,'2017-10-27T02:52:31.283Z',NULL,115,3,51.94130981241432,1.51,43.341074067171675,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11738,'2019-07-23T18:51:00.010Z',NULL,167,3,97.70449564120193,2.83,109.48588504991534,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11739,'2018-11-08T22:56:25.040Z',NULL,169,2,59.53172693453274,1.73,33.78245788741187,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11740,'2019-08-15T16:46:30.204Z',NULL,145,5,61.1983004605443,1.77,68.8461717925582,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11741,'2017-08-22T14:44:51.816Z',NULL,147,5,44.4315141414441,1.29,58.34028330037916,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11742,'2017-08-22T22:37:30.921Z',NULL,71,5,55.202545991924566,1.6,73.16422836582944,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11743,'2019-08-26T00:19:48.328Z',NULL,174,5,111.61430894181083,3.24,143.15768637506054,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11744,'2018-01-23T13:27:07.136Z',NULL,122,2,99.84528328808108,2.9,62.74256242950374,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11745,'2017-08-14T11:58:32.558Z',NULL,9,5,58.31312098526137,1.69,65.5873636434358,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11746,'2018-08-04T03:45:37.908Z',3.8627758117283264,172,5,122.3651993029456,3.55,178.65632302492068,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11747,'2018-11-30T17:09:34.945Z',NULL,157,2,139.8942352373801,4.06,215.49488226115994,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11748,'2019-02-13T03:05:11.057Z',NULL,72,1,142.20381898788685,4.12,71.62123782466779,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11749,'2019-05-25T00:07:57.331Z',NULL,145,3,61.1983004605443,1.77,58.9307646824294,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11750,'2017-07-29T11:37:26.284Z',NULL,158,3,93.26282349158673,2.7,108.50378861644863,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11751,'2017-11-12T06:25:12.359Z',NULL,84,2,54.58418555091025,1.58,74.78571250907801,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11752,'2019-06-05T10:14:40.346Z',NULL,163,4,33.56789820016516,0.97,49.066868324168546,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11753,'2019-11-11T07:23:48.977Z',NULL,151,2,91.61302306843446,2.66,57.22578414870837,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11754,'2018-07-14T01:48:05.154Z',NULL,68,3,115.24343882309758,3.34,60.56574761566335,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11755,'2019-01-18T15:38:33.274Z',NULL,191,1,128.5841852057933,3.73,187.84637529138598,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11756,'2019-09-23T00:44:32.842Z',3.8627758117283264,167,3,97.70449564120193,2.83,129.78398883040404,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11757,'2019-01-29T01:30:20.792Z',NULL,149,1,69.15415037577924,2.01,116.06967206530113,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11758,'2016-11-11T01:11:19.023Z',NULL,33,2,31.829909130640935,0.92,38.299342395958675,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11759,'2018-08-15T17:04:17.462Z',NULL,183,4,56.697412301919755,1.64,94.83234670698917,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11760,'2017-07-17T23:26:09.775Z',2.367390497509208,194,3,33.587182645381546,0.97,24.7747786548708,1556); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11761,'2018-09-07T15:47:56.992Z',NULL,57,3,122.4223933583994,9.18,133.7780379749855,1557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11762,'2019-02-25T15:26:39.719Z',NULL,128,1,75.08016314504417,5.63,109.13181856947686,1557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11763,'2018-10-29T17:28:13.896Z',NULL,113,3,110.47725376186015,8.29,93.78526537937756,1557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11764,'2018-07-07T14:37:31.327Z',NULL,180,3,68.32408657333919,5.12,78.4643850958178,1557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11765,'2017-09-06T20:47:43.329Z',NULL,194,3,33.587182645381546,2.52,60.55167507122023,1557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11766,'2017-08-21T06:18:10.597Z',NULL,61,4,15.691943673970439,1.18,17.099512332978822,1557); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11767,'2018-10-13T03:01:10.807Z',NULL,130,3,75.02573869315137,3.75,53.771342866358715,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11768,'2018-11-07T10:20:25.169Z',NULL,25,2,68.62263967182464,3.43,37.28863056981705,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11769,'2018-12-15T07:43:57.016Z',NULL,56,1,36.37128575934436,1.82,39.21584112367036,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11770,'2018-04-29T13:29:24.371Z',NULL,54,2,62.09360840402396,3.1,69.49288911067192,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11771,'2018-11-22T13:12:16.688Z',NULL,45,3,118.0495173798411,5.9,90.9389123829319,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11772,'2016-10-30T06:25:26.044Z',NULL,139,6,51.18512212784679,2.56,85.98465353512881,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11773,'2020-01-11T21:02:10.292Z',NULL,128,2,75.08016314504417,3.75,81.7441429980161,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11774,'2018-11-02T01:13:50.440Z',NULL,106,2,52.723521442619514,2.64,73.01092250739896,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11775,'2019-01-27T03:21:35.262Z',NULL,143,2,61.1983004605443,3.06,75.01125108776952,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11776,'2018-04-25T22:52:01.036Z',NULL,55,3,95.77128575934437,4.79,157.75940960554405,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11777,'2019-07-11T04:55:14.689Z',NULL,87,4,117.25536340498041,5.86,115.83147921270253,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11778,'2019-12-24T13:20:41.465Z',NULL,102,2,47.04215255778118,2.35,64.8774987584581,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11779,'2018-05-20T18:38:09.286Z',NULL,87,4,117.25536340498041,5.86,185.45404878019477,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11780,'2020-03-19T18:33:42.333Z',6.624788791944302,174,1,111.61430894181083,5.58,149.42483201264187,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11781,'2019-05-24T23:35:03.632Z',NULL,83,4,81.87627832636537,4.09,106.511211335126,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11782,'2019-09-21T04:13:21.166Z',NULL,17,4,79.93608046792765,4,90.89572469056854,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11783,'2019-07-12T09:46:25.804Z',NULL,53,5,44.27587240151534,2.21,27.88546126484993,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11784,'2019-04-06T16:59:40.588Z',NULL,135,3,45.80402317157342,2.29,52.203689065706946,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11785,'2019-05-05T16:12:22.412Z',NULL,78,4,41.616917284159726,2.08,58.78558165124985,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11786,'2019-11-09T17:08:46.906Z',NULL,147,2,66.64727121216615,3.33,78.340039667754,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11787,'2018-09-03T01:58:19.449Z',NULL,51,3,75.65058751905018,3.78,55.65958260278372,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11788,'2016-10-13T07:41:36.706Z',NULL,161,5,31.727470408648482,1.59,19.42457900510784,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11789,'2018-10-12T07:00:43.177Z',NULL,93,5,49.81864156655383,2.49,66.44517079742401,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11790,'2019-04-10T00:18:26.127Z',NULL,98,2,112.41825444654248,5.62,149.09778238282706,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11791,'2018-12-07T02:21:21.525Z',NULL,175,2,117.3248094335266,5.87,200.4363709573093,1559); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11792,'2019-09-12T04:36:42.545Z',NULL,179,4,68.32408657333919,2.94,41.26807143033388,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11793,'2017-08-26T06:49:20.795Z',NULL,33,6,31.829909130640935,1.37,32.25373548600961,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11794,'2017-08-28T22:27:20.491Z',NULL,10,6,31.78621880685793,1.37,18.679219842320126,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11795,'2017-07-17T19:44:56.361Z',2.124788791944302,174,4,74.40953929454055,3.2,58.26599496324367,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11796,'2019-09-13T07:26:10.438Z',NULL,80,4,54.91325681036414,2.36,90.26750185047777,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11797,'2017-10-07T11:50:22.521Z',NULL,196,6,46.76407124473339,2.01,46.25713349168448,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11798,'2019-07-01T14:15:04.179Z',NULL,156,4,30.615804149046195,1.32,21.762638468756336,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11799,'2019-08-25T16:06:11.474Z',NULL,175,4,117.3248094335266,5.04,161.00938055799207,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11800,'2016-10-03T14:55:27.364Z',1.9574988845404833,34,5,49.535942579421324,2.13,53.14029468155457,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11801,'2019-02-05T10:56:56.018Z',NULL,86,2,92.31436670850246,3.97,157.26957810448982,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11802,'2016-07-24T22:35:21.518Z',NULL,173,4,81.57679953529707,3.51,125.63552927831738,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11803,'2019-12-24T03:08:55.749Z',NULL,18,1,81.90307121097293,3.52,142.79392041688706,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11804,'2019-01-25T02:19:53.399Z',NULL,187,2,98.9770008385166,4.26,132.5951388369072,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11805,'2020-04-19T13:22:16.141Z',NULL,176,2,57.92480943352658,2.49,60.17025985739391,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11806,'2017-09-05T20:57:03.894Z',NULL,62,3,89.0134841727878,3.83,58.081772603076786,1561); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11807,'2019-05-27T10:42:48.061Z',NULL,110,2,55.526746186906664,3.33,51.21203137174523,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11808,'2019-09-24T03:07:57.663Z',NULL,58,3,78.14578007078882,4.69,49.632233889983034,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11809,'2019-06-10T15:42:29.390Z',NULL,179,5,68.32408657333919,4.1,58.58307221869831,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11810,'2017-09-22T19:45:59.007Z',NULL,30,5,42.7829881204479,2.57,72.34525839512638,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11811,'2019-08-19T05:21:51.085Z',NULL,86,8,92.31436670850246,5.54,48.44612338361506,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11812,'2016-12-18T23:52:08.254Z',NULL,5,2,82.7450976850356,4.96,68.33474229704608,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11813,'2018-09-16T17:08:19.640Z',NULL,41,4,63.50890855689462,3.81,42.64644696167958,1562); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11814,'2018-11-06T02:09:51.035Z',NULL,192,2,69.18418520579327,3.11,68.93626829092187,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11815,'2018-06-09T20:12:34.552Z',NULL,175,3,117.3248094335266,5.28,108.04480687711572,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11816,'2019-08-04T22:26:10.715Z',NULL,65,4,68.22769726470014,3.07,31.287065857222693,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11817,'2019-01-07T15:36:18.912Z',NULL,75,1,125.81276373452337,5.66,66.80857875865671,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11818,'2017-11-25T03:46:07.817Z',NULL,23,2,77.91115072995538,3.51,129.47515087462648,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11819,'2018-12-03T00:20:04.967Z',NULL,151,2,91.61302306843446,4.12,157.91119064080354,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11820,'2019-11-17T03:00:54.904Z',NULL,168,3,118.93172693453273,5.35,200.46851339581204,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11821,'2017-05-01T21:55:51.416Z',NULL,18,3,54.60204747398195,2.46,79.16999478340121,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11822,'2017-12-14T22:42:08.322Z',NULL,187,2,65.98466722567774,2.97,67.4298339061273,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11823,'2018-02-17T03:57:55.530Z',NULL,101,2,139.82488066180403,6.29,225.86894823927688,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11824,'2019-07-31T23:42:05.923Z',NULL,3,4,53.08311732230858,2.39,26.34015321414059,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11825,'2018-03-07T23:26:28.211Z',1.9574988845404833,142,1,70.34853057210945,3.17,76.20390247260606,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11826,'2017-12-05T17:48:48.562Z',NULL,87,1,78.17024226998694,3.52,56.77836016785716,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11827,'2017-10-12T13:39:37.748Z',NULL,18,5,54.60204747398195,2.46,72.26703573798028,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11828,'2019-11-10T08:32:18.361Z',NULL,164,2,92.96789820016517,4.18,59.74292669124118,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11829,'2020-04-08T01:08:40.411Z',NULL,61,2,23.537915510955656,1.06,23.39479733647018,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11830,'2019-05-28T04:55:10.191Z',NULL,31,3,105.65346467128523,4.75,125.58200737079108,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11831,'2018-10-06T06:23:56.283Z',NULL,167,5,97.70449564120193,4.4,124.36215402648523,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11832,'2019-12-05T16:42:59.875Z',NULL,175,2,117.3248094335266,5.28,172.70596107927864,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11833,'2019-08-04T20:28:00.658Z',NULL,42,8,38.00410713690931,1.71,54.97103933222985,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11834,'2018-11-22T00:40:54.507Z',7.585849012668228,67,3,41.24480890795779,1.86,42.514444253921305,1563); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11835,'2018-01-05T15:39:15.739Z',NULL,79,1,41.616917284159726,3.12,27.29231716096047,1569); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11836,'2020-03-03T03:23:18.142Z',NULL,1,1,44.19489169601981,3.31,33.31614236798552,1569); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11837,'2018-10-22T15:22:07.202Z',NULL,155,4,43.77574310182776,3.28,72.66990592487919,1569); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11838,'2019-06-18T09:09:53.376Z',NULL,151,4,91.61302306843446,6.87,48.915742974350565,1569); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11839,'2017-11-20T02:10:23.401Z',NULL,105,3,35.149014295079674,1.41,30.19801426666513,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11840,'2018-07-10T12:03:43.829Z',NULL,115,61,77.91196471862148,3.12,38.80173751777944,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11841,'2018-11-24T12:16:32.445Z',NULL,173,4,122.3651993029456,4.89,81.19358391869177,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11842,'2020-04-09T10:35:52.436Z',3.0858490126682274,136,4,105.20402317157343,4.21,182.1801969858128,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11843,'2018-05-14T13:39:56.042Z',NULL,34,5,74.30391386913199,2.97,70.76057856106299,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11844,'2018-07-21T15:56:16.326Z',NULL,94,5,109.21864156655383,4.37,168.6188799544983,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11845,'2018-10-25T07:19:32.780Z',NULL,116,5,114.42485125407785,4.58,100.46900316147071,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11846,'2019-02-25T07:00:29.063Z',NULL,84,2,81.87627832636537,3.28,47.16618431872785,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11847,'2019-10-22T00:44:08.321Z',NULL,193,7,50.38077396807232,2.02,29.897178980876273,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11848,'2019-11-17T11:12:19.402Z',NULL,107,3,50.094887884945365,2,85.93416784945667,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11849,'2017-12-18T10:09:17.168Z',NULL,17,13,53.290720311951766,2.13,78.29529013692357,1570); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11850,'2020-02-28T17:28:21.699Z',NULL,149,2,69.15415037577924,4.75,113.36869443965124,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11851,'2018-04-08T10:19:50.062Z',NULL,184,3,116.09741230191975,7.98,181.94796797124363,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11852,'2018-09-16T10:04:28.252Z',NULL,189,5,93.27738254731509,6.41,54.0929082320061,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11853,'2018-02-12T11:19:10.375Z',NULL,124,2,110.93145648834248,7.63,79.39591825259609,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11854,'2019-08-09T13:05:50.669Z',NULL,97,5,112.41825444654248,7.73,113.0907797316113,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11855,'2019-10-19T23:26:20.434Z',7.585849012668228,37,4,80.10774204020768,5.51,71.82331473199828,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11856,'2019-11-29T01:06:36.360Z',NULL,168,3,118.93172693453273,8.18,81.85490907008332,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11857,'2017-11-15T06:45:30.337Z',NULL,35,4,47.691251538276234,3.28,73.9420444192433,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11858,'2019-01-03T22:56:27.058Z',NULL,139,2,76.77768319177018,5.28,38.618412357425456,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11859,'2019-10-25T08:42:26.481Z',NULL,122,5,99.84528328808108,6.86,178.96917881034602,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11860,'2019-12-21T20:07:34.355Z',NULL,119,2,43.43814329652384,2.99,60.222800860359044,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11861,'2018-08-18T08:51:14.377Z',NULL,145,7,61.1983004605443,4.21,54.432714339629804,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11862,'2017-05-13T01:37:29.694Z',NULL,131,41,75.41148135558485,5.18,52.788471552274984,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11863,'2019-01-21T07:23:10.800Z',NULL,44,2,76.35255205175756,5.25,55.603196543834834,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11864,'2018-02-02T20:30:47.363Z',NULL,6,1,97.43621265344382,6.7,152.30933580720992,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11865,'2018-06-17T07:28:41.596Z',NULL,119,4,43.43814329652384,2.99,70.6634750828548,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11866,'2019-12-03T12:54:24.668Z',NULL,132,2,127.88197029833711,8.79,147.94276429087776,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11867,'2019-08-31T02:41:25.300Z',NULL,172,9,122.3651993029456,8.41,90.13101255406932,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11868,'2016-09-05T16:37:00.537Z',NULL,92,5,83.2616179105333,5.72,85.91166123562526,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11869,'2018-08-02T13:46:50.919Z',NULL,32,5,107.1448636959614,7.37,157.6525837429714,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11870,'2019-07-17T18:51:02.693Z',NULL,181,4,143.88940370476112,9.89,173.73572111723178,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11871,'2018-11-10T13:27:18.398Z',NULL,104,2,106.44215255778118,7.32,158.9181349678143,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11872,'2020-03-14T20:23:23.509Z',NULL,111,1,55.526746186906664,3.82,84.31129503369051,1571); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11873,'2017-02-06T04:15:16.820Z',NULL,33,1,31.829909130640935,1.27,41.997594105448755,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11874,'2020-01-29T11:14:54.989Z',NULL,177,1,128.8192981944599,5.15,88.59109967595299,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11875,'2018-04-29T23:51:07.018Z',NULL,41,2,63.50890855689462,2.54,60.355306265524234,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11876,'2017-11-30T19:55:52.398Z',NULL,103,3,31.361435038520785,1.25,19.41722103915746,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11877,'2018-08-28T10:25:34.470Z',NULL,113,9,110.47725376186015,4.42,163.81662771439642,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11878,'2017-06-24T04:47:36.872Z',NULL,140,8,44.53541698384588,1.78,66.56612055666358,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11879,'2017-11-22T22:27:46.700Z',NULL,90,4,82.07974183693327,3.28,136.8986992479565,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11880,'2019-09-05T02:02:27.612Z',NULL,121,6,40.44528328808107,1.62,31.85259140988715,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11881,'2019-06-21T15:36:27.359Z',NULL,163,8,33.56789820016516,1.34,58.00843376051569,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11882,'2018-02-13T06:27:35.390Z',NULL,180,2,68.32408657333919,2.73,38.993171043785836,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11883,'2019-01-16T02:00:48.026Z',NULL,101,2,139.82488066180403,5.59,114.320256541506,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11884,'2017-07-30T12:15:53.062Z',NULL,92,4,83.2616179105333,3.33,102.48007356205098,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11885,'2018-12-13T11:50:27.174Z',NULL,24,1,112.30643674729413,4.49,97.31700824526105,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11886,'2018-12-16T09:53:25.668Z',NULL,83,2,81.87627832636537,3.28,127.22435196401449,1572); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11887,'2020-04-15T19:03:24.883Z',NULL,149,3,69.15415037577924,2.77,59.549613438795596,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11888,'2017-07-24T18:38:30.360Z',NULL,147,4,44.4315141414441,1.78,45.24149777764574,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11889,'2017-10-30T19:39:14.516Z',NULL,19,4,42.67116731707548,1.71,65.30722183317738,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11890,'2018-08-31T02:36:08.395Z',NULL,12,7,116.01427581618326,4.64,110.7455801041777,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11891,'2017-06-30T19:22:32.886Z',NULL,147,6,44.4315141414441,1.78,70.15457636285888,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11892,'2018-12-23T01:45:54.547Z',NULL,115,1,77.91196471862148,3.12,57.847428319761626,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11893,'2019-04-25T08:04:00.540Z',NULL,78,3,41.616917284159726,1.66,45.84631762935609,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11894,'2016-10-02T23:28:34.972Z',NULL,11,6,88.30453275661709,3.53,153.60139415191802,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11895,'2017-03-22T04:56:41.661Z',NULL,107,1,33.39659192329691,1.34,40.06145246927471,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11896,'2018-01-12T21:17:18.766Z',NULL,76,3,63.82421061366486,2.55,40.3955544383664,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11897,'2019-03-07T07:22:55.343Z',NULL,152,1,48.89568729900663,1.96,39.1927747675585,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11898,'2016-08-15T08:36:41.515Z',NULL,36,5,87.29125153827623,3.49,101.63676837138797,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11899,'2019-05-22T04:58:23.175Z',NULL,126,4,125.24398120308456,5.01,141.48657579630887,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11900,'2016-07-15T17:13:17.394Z',NULL,80,5,36.60883787357609,1.46,38.2851506363845,1573); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11901,'2017-01-29T01:14:18.037Z',8.145514228295285,6,1,64.95747510229587,4.22,49.126242209930474,1574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11902,'2018-12-03T02:07:26.226Z',NULL,171,2,105.07665741496471,6.83,158.92949601046087,1574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11903,'2020-02-22T04:43:41.268Z',NULL,100,2,67.83486485383094,4.41,39.39067130327567,1574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11904,'2017-03-19T16:09:20.158Z',NULL,81,1,29.288656154807867,1.9,36.748201292659004,1574); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11905,'2017-08-14T09:17:07.373Z',NULL,164,7,61.978598800110106,2.48,48.77264652507746,1575); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11906,'2018-03-10T20:04:57.042Z',NULL,68,1,115.24343882309758,7.2,96.50157476494246,1577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11907,'2018-05-04T14:34:27.750Z',NULL,77,4,101.01691728415972,6.31,97.11653621529166,1577); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11908,'2017-08-04T09:48:38.504Z',NULL,182,7,56.326269136507406,3.38,36.95874727657382,1579); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11909,'2017-10-21T01:26:42.857Z',NULL,138,6,75.96718984479077,4.56,41.6810462436574,1579); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11910,'2018-10-21T14:39:18.691Z',NULL,130,6,75.02573869315137,4.5,86.79880590454967,1579); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11911,'2018-11-11T08:21:16.404Z',NULL,182,3,84.48940370476112,5.07,84.77329982783851,1579); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11912,'2018-02-17T15:46:40.204Z',NULL,69,2,73.38772304360626,4.4,88.82287093917942,1579); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11913,'2017-12-12T12:00:14.868Z',3.6455142282952853,154,3,54.58353035541507,2.18,49.68623543746347,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11914,'2018-04-13T00:24:48.689Z',NULL,123,4,110.93145648834248,4.44,115.18630428998345,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11915,'2017-09-20T10:08:47.303Z',NULL,84,5,54.58418555091025,2.18,88.12660405142503,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11916,'2019-11-08T18:58:24.833Z',NULL,182,2,84.48940370476112,3.38,93.99057638788851,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11917,'2018-11-12T23:21:02.853Z',NULL,42,3,38.00410713690931,1.52,46.538249477703715,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11918,'2019-03-31T09:43:06.340Z',NULL,172,1,122.3651993029456,4.89,175.25881901730685,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11919,'2019-05-11T02:16:59.834Z',3.6455142282952853,33,4,47.7448636959614,1.91,65.62165864189895,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11920,'2018-07-22T17:37:58.793Z',NULL,199,6,115.4300138092855,4.62,158.41230466593726,1580); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11921,'2019-10-09T06:20:12.785Z',NULL,88,7,105.41292031622555,4.22,98.89507124508255,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11922,'2018-02-09T08:27:47.315Z',NULL,152,2,48.89568729900663,1.96,64.63215437765766,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11923,'2018-11-30T15:12:51.845Z',NULL,78,2,41.616917284159726,1.66,41.96154612159863,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11924,'2017-08-26T19:17:04.776Z',NULL,21,7,40.38334406304544,1.62,28.558756895033003,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11925,'2020-01-07T15:02:49.661Z',NULL,113,2,110.47725376186015,4.42,65.46135740345417,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11926,'2016-11-23T04:49:46.407Z',8.145514228295285,192,3,46.122790137195516,1.84,65.04807562662438,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11927,'2018-12-15T23:15:15.990Z',NULL,78,3,41.616917284159726,1.66,28.29030707309319,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11928,'2019-12-10T05:08:23.114Z',NULL,37,3,80.10774204020768,3.2,119.18593456397443,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11929,'2018-04-08T21:57:06.693Z',NULL,123,3,110.93145648834248,4.44,84.96115914206027,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11930,'2019-03-14T09:32:59.445Z',NULL,77,1,101.01691728415972,4.04,129.50307556261558,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11931,'2020-04-17T07:41:06.288Z',NULL,181,4,143.88940370476112,5.76,195.30266509289066,1581); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11932,'2019-04-10T06:10:28.377Z',2.4630132450748836,144,3,61.1983004605443,2.45,92.38836162686839,1582); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11933,'2018-04-02T11:07:23.085Z',NULL,87,2,117.25536340498041,4.69,128.98952035007557,1582); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11934,'2018-02-10T17:44:43.687Z',NULL,94,1,109.21864156655383,4.37,182.6867702961692,1582); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11935,'2017-12-21T17:19:05.902Z',NULL,139,2,51.18512212784679,2.05,38.894060668363004,1582); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11936,'2019-09-27T10:09:44.141Z',NULL,180,6,68.32408657333919,4.78,41.019344592460264,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11937,'2019-06-22T01:05:17.811Z',NULL,19,5,64.00675097561322,4.48,77.08373750438382,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11938,'2019-10-08T22:50:20.209Z',NULL,99,3,67.83486485383094,4.75,60.72578143023117,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11939,'2020-03-13T21:04:31.836Z',NULL,24,1,112.30643674729413,7.86,200.38030401511907,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11940,'2018-07-31T10:21:16.240Z',NULL,32,3,107.1448636959614,7.5,154.02927536100896,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11941,'2017-09-11T03:13:07.246Z',NULL,56,4,24.24752383956291,1.7,26.52131214685028,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11942,'2018-06-11T18:12:46.183Z',NULL,75,5,125.81276373452337,8.81,182.93273494890448,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11943,'2018-09-14T04:16:11.430Z',NULL,72,3,142.20381898788685,9.95,206.90693003930852,1583); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11944,'2018-11-13T23:39:21.326Z',NULL,169,2,59.53172693453274,3.87,50.259242311810695,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11945,'2018-01-14T22:26:10.165Z',NULL,158,1,139.8942352373801,9.09,182.80924774333334,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11946,'2018-08-27T05:43:30.505Z',NULL,112,6,41.329386510090345,2.69,42.5904745851318,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11947,'2020-03-09T05:23:04.478Z',2.4630132450748836,20,1,37.32649625046575,2.43,53.895308535858504,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11948,'2020-03-18T15:32:28.675Z',NULL,199,1,115.4300138092855,7.5,67.41493477405886,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11949,'2019-08-08T14:30:51.018Z',NULL,58,8,78.14578007078882,5.08,84.16906683147329,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11950,'2020-01-12T14:48:43.014Z',NULL,94,2,109.21864156655383,7.1,62.63244523642204,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11951,'2017-02-04T02:40:17.310Z',NULL,176,1,38.616539622351056,2.51,54.3795385289709,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11952,'2019-01-21T21:18:49.671Z',NULL,8,2,98.83823503993958,6.42,83.76645621850005,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11953,'2019-06-10T18:31:44.293Z',6.963013245074883,102,5,47.04215255778118,3.06,34.404726422184076,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11954,'2019-09-28T17:45:39.180Z',NULL,36,4,130.93687730741433,8.51,208.5773862553782,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11955,'2018-09-20T04:11:24.686Z',6.963013245074883,162,4,33.56789820016516,2.18,58.418420666603026,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11956,'2019-02-21T22:39:06.803Z',NULL,41,1,63.50890855689462,4.13,76.22225621898833,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11957,'2018-02-24T12:20:58.741Z',NULL,189,1,93.27738254731509,6.06,56.07437244865357,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11958,'2018-04-03T18:28:58.061Z',NULL,51,2,75.65058751905018,4.92,116.71038087765078,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11959,'2017-07-09T02:27:01.694Z',NULL,126,4,83.49598746872304,5.43,81.04355311987048,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11960,'2017-07-15T23:12:43.979Z',NULL,146,6,84.03151414144409,5.46,76.7449640526134,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11961,'2018-03-09T11:51:55.048Z',NULL,71,1,82.80381898788684,5.38,133.61644468430492,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11962,'2019-05-22T18:13:13.775Z',NULL,39,4,114.58158180283459,7.45,62.98622128456161,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11963,'2018-06-23T20:01:51.943Z',NULL,199,5,115.4300138092855,7.5,92.64863136293408,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11964,'2018-10-25T16:06:25.692Z',NULL,136,5,105.20402317157343,6.84,140.0820018796951,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11965,'2018-05-06T06:22:49.181Z',NULL,176,4,57.92480943352658,3.77,91.95715140592597,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11966,'2018-11-21T12:14:36.085Z',NULL,153,4,66.79892314178237,4.34,84.38683368752433,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11967,'2019-05-18T04:23:09.568Z',NULL,129,5,148.1672972165937,9.63,146.60340442622348,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11968,'2018-11-06T19:12:57.292Z',NULL,163,2,33.56789820016516,2.18,15.266724179982067,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11969,'2017-04-15T19:27:41.667Z',NULL,13,2,75.0861692740371,4.88,121.13689547456615,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11970,'2019-01-01T01:29:32.503Z',NULL,34,2,74.30391386913199,4.83,111.03932764948553,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11971,'2018-10-20T13:33:40.310Z',NULL,170,8,105.07665741496471,6.83,162.07716147765072,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11972,'2020-03-20T08:15:18.446Z',8.750312637670183,76,1,63.82421061366486,4.15,63.86655875969954,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11973,'2019-09-13T10:19:23.381Z',NULL,14,7,37.648145389078365,2.45,24.40933918757156,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11974,'2017-05-28T14:00:46.960Z',NULL,6,5,64.95747510229587,4.22,49.661141409148485,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11975,'2019-12-31T13:55:14.584Z',NULL,104,2,106.44215255778118,6.92,108.58179272434563,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11976,'2018-05-24T11:35:23.049Z',NULL,59,5,89.20214751859149,5.8,132.30114871588998,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11977,'2020-02-14T14:11:25.216Z',NULL,44,2,76.35255205175756,4.96,52.59653547671538,1585); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11978,'2016-12-11T19:54:18.238Z',NULL,191,2,85.72279013719552,0,125.8006945566076,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11979,'2018-05-15T14:09:18.838Z',4.2503126376701825,58,5,78.14578007078882,0,59.96850277828067,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11980,'2018-08-18T06:42:36.883Z',NULL,189,8,93.27738254731509,0,78.72079365711738,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11981,'2016-10-14T08:24:24.382Z',NULL,15,6,25.09876359271891,0,29.152285030403856,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11982,'2018-06-15T22:02:02.090Z',NULL,73,7,71.6287722595695,0,53.58179112438496,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11983,'2017-04-15T17:42:26.392Z',NULL,105,3,35.149014295079674,0,47.18249416993394,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11984,'2018-06-21T19:30:02.197Z',NULL,102,9,47.04215255778118,0,61.79633633755979,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11985,'2016-10-30T00:59:26.300Z',NULL,16,8,44.07353303251545,0,56.4503202336585,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11986,'2020-03-04T22:30:43.901Z',NULL,41,1,63.50890855689462,0,85.31444400069346,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11987,'2018-06-10T12:42:16.790Z',8.456413657547916,63,5,133.5202262591817,0,167.6503948165052,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11988,'2018-08-13T15:38:17.134Z',NULL,105,7,52.723521442619514,0,72.61277863572116,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11989,'2017-12-19T16:24:12.690Z',NULL,12,3,77.34285054412217,0,78.57673306059665,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11990,'2019-08-21T18:21:09.412Z',NULL,103,7,47.04215255778118,0,33.062112539768755,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11991,'2016-09-22T15:06:32.727Z',NULL,189,5,62.18492169821006,0,54.33853023567325,1586); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11992,'2017-09-16T00:55:37.205Z',NULL,105,6,35.149014295079674,1.41,25.38682452890015,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11993,'2019-09-20T02:20:06.204Z',NULL,84,5,81.87627832636537,3.28,117.84688248628282,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11994,'2019-02-23T11:01:18.834Z',NULL,34,2,74.30391386913199,2.97,46.8930748925774,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11995,'2020-04-08T07:29:24.587Z',NULL,150,4,128.55415037577922,5.14,159.305814111474,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11996,'2019-08-30T10:07:29.551Z',3.4687105840213173,68,7,115.24343882309758,4.61,112.89283574969761,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11997,'2019-12-23T04:32:46.130Z',NULL,2,1,105.11984419607644,4.2,169.7812777241106,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11998,'2019-07-17T11:27:06.902Z',NULL,68,5,115.24343882309758,4.61,111.1461655867735,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (11999,'2020-02-20T18:19:01.626Z',3.4687105840213173,2,2,105.11984419607644,4.2,178.59832219156263,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12000,'2018-09-07T02:30:34.765Z',NULL,145,5,61.1983004605443,2.45,95.74316633272089,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12001,'2017-12-07T20:12:32.603Z',NULL,198,2,46.76407124473339,1.87,23.860034817256413,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12002,'2019-11-21T16:30:50.160Z',3.4687105840213173,113,2,110.47725376186015,4.42,178.8700463635336,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12003,'2020-01-31T11:24:02.913Z',NULL,187,2,98.9770008385166,3.96,104.70855845001446,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12004,'2019-10-25T23:03:58.495Z',NULL,112,7,41.329386510090345,1.65,53.216139396799186,1587); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12005,'2018-09-30T07:23:59.042Z',NULL,118,5,57.627613096978735,3.6,65.69784748046975,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12006,'2018-03-29T20:11:41.683Z',NULL,89,1,63.719612755399886,3.98,56.757948995728285,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12007,'2018-02-10T20:17:09.907Z',NULL,97,2,112.41825444654248,7.03,99.89926769470037,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12008,'2017-04-27T12:02:31.056Z',NULL,155,4,29.183828734551838,1.82,38.09095995320597,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12009,'2019-05-23T18:57:50.467Z',NULL,81,5,43.9329842322118,2.75,74.52568536942026,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12010,'2019-01-28T05:18:14.437Z',7.968710584021317,58,3,78.14578007078882,4.88,105.92364025103353,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12011,'2017-11-25T19:45:19.655Z',7.968710584021317,45,4,78.6996782532274,4.92,72.90762554288699,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12012,'2018-02-28T02:10:52.020Z',NULL,114,2,77.91196471862148,4.87,93.48597861449882,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12013,'2018-03-16T05:48:19.123Z',NULL,46,1,118.0495173798411,7.38,88.11093587325814,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12014,'2017-11-15T06:40:15.489Z',NULL,21,3,40.38334406304544,2.52,61.02644365395894,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12015,'2017-10-29T13:04:52.466Z',3.4687105840213173,131,6,75.41148135558485,4.71,76.43319755812354,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12016,'2019-12-07T15:49:13.571Z',NULL,127,1,134.48016314504417,8.41,166.9356205774032,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12017,'2018-10-02T11:42:49.572Z',NULL,164,6,92.96789820016517,5.81,129.83381446947288,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12018,'2018-09-27T20:23:13.551Z',NULL,132,6,127.88197029833711,7.99,134.29328085411953,1588); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12019,'2016-10-01T01:29:35.304Z',NULL,13,5,75.0861692740371,5.26,119.39930695258344,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12020,'2019-03-23T15:40:29.969Z',NULL,134,1,42.49233549998661,2.97,21.709884105408445,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12021,'2020-01-01T11:05:55.288Z',NULL,184,2,116.09741230191975,8.13,159.38912400614598,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12022,'2019-04-18T05:26:34.655Z',NULL,145,3,61.1983004605443,4.28,105.56438657067775,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12023,'2020-03-22T15:16:05.260Z',NULL,92,1,124.89242686579996,8.74,91.74979721590888,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12024,'2018-09-20T19:59:06.590Z',NULL,8,5,98.83823503993958,6.92,74.00536232283109,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12025,'2020-02-14T11:19:16.687Z',NULL,111,2,55.526746186906664,3.89,38.790615778951455,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12026,'2018-07-12T05:24:02.658Z',NULL,176,5,57.92480943352658,4.05,41.63174117916423,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12027,'2018-08-29T16:11:56.122Z',NULL,116,7,114.42485125407785,8.01,68.86416176744909,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12028,'2020-02-28T03:37:47.537Z',NULL,87,1,117.25536340498041,8.21,148.02748837630855,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12029,'2018-06-13T07:29:46.700Z',NULL,141,6,126.20312547576883,8.83,94.58595457802699,1589); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12030,'2019-10-12T03:20:46.341Z',NULL,109,7,119.04991068193098,7.44,179.8812289246437,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12031,'2019-06-10T19:25:00.200Z',NULL,146,6,126.04727121216614,7.88,171.3472017051209,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12032,'2019-07-27T01:42:30.622Z',NULL,31,5,105.65346467128523,6.6,76.65663235774807,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12033,'2019-08-31T10:57:25.704Z',7.565031177822224,105,7,52.723521442619514,3.3,71.72226526649028,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12034,'2018-02-15T06:55:12.201Z',NULL,114,2,77.91196471862148,4.87,74.85931863117717,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12035,'2020-04-16T15:26:28.275Z',NULL,176,3,57.92480943352658,3.62,87.85060387462927,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12036,'2018-03-24T14:06:59.624Z',NULL,32,1,107.1448636959614,6.7,66.49634944893985,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12037,'2018-05-12T22:37:24.908Z',NULL,148,3,138.9817182254566,8.69,219.46058990930894,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12038,'2019-08-31T08:39:42.657Z',NULL,141,7,126.20312547576883,7.89,97.97032932100494,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12039,'2017-05-27T11:50:16.852Z',NULL,41,4,42.33927237126308,2.65,71.75480878526076,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12040,'2017-03-28T20:59:07.976Z',NULL,105,1,35.149014295079674,2.2,42.72118055050214,1590); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12041,'2017-01-13T10:00:29.618Z',NULL,179,2,45.549391048892794,3.13,51.25965168514145,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12042,'2017-04-05T05:08:23.551Z',NULL,117,3,36.683234169385244,2.52,39.1628240331894,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12043,'2018-05-23T09:31:27.028Z',NULL,17,4,79.93608046792765,5.5,92.01923970949912,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12044,'2018-11-20T21:07:33.029Z',NULL,88,4,105.41292031622555,7.25,113.52478207990285,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12045,'2018-01-16T05:55:54.345Z',7.565031177822224,98,2,112.41825444654248,7.73,199.3406144036669,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12046,'2019-05-07T17:30:58.192Z',NULL,184,4,116.09741230191975,7.98,103.93819216754835,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12047,'2018-06-20T11:23:07.297Z',NULL,3,7,53.08311732230858,3.65,26.844362169139984,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12048,'2016-12-02T12:29:31.780Z',6.338185330856511,53,2,29.517248267676894,2.03,13.74458767038444,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12049,'2018-09-19T13:37:14.274Z',NULL,144,4,61.1983004605443,4.21,110.7401484038477,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12050,'2018-10-20T10:59:17.195Z',NULL,2,4,105.11984419607644,7.23,80.34470482891682,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12051,'2018-07-22T12:17:38.863Z',NULL,173,4,122.3651993029456,8.41,89.36504410978824,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12052,'2019-03-07T00:57:12.704Z',NULL,46,1,118.0495173798411,8.12,54.03194648781729,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12053,'2018-06-20T23:45:05.720Z',NULL,11,3,132.45679913492563,9.11,149.7640732396186,1591); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12054,'2016-11-07T10:32:44.691Z',NULL,5,2,82.7450976850356,4.55,75.41520023862827,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12055,'2019-04-13T03:58:55.352Z',NULL,172,2,122.3651993029456,6.73,118.41694519597736,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12056,'2018-06-11T04:26:35.309Z',6.338185330856511,77,5,101.01691728415972,5.56,92.585886756275,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12057,'2018-07-28T00:58:55.346Z',NULL,187,5,98.9770008385166,5.44,79.43408551957047,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12058,'2019-10-31T04:53:59.491Z',NULL,188,4,33.87738254731509,1.86,58.39286055366571,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12059,'2017-09-25T08:57:09.160Z',NULL,126,4,83.49598746872304,4.59,104.79599057347359,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12060,'2018-04-20T19:14:09.783Z',NULL,64,3,143.4221774571866,7.89,234.1972482145491,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12061,'2018-10-22T17:06:44.552Z',NULL,156,4,30.615804149046195,1.68,19.977055417510552,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12062,'2019-09-15T17:11:40.709Z',NULL,129,4,148.1672972165937,8.15,97.77118256998725,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12063,'2017-07-18T05:48:02.847Z',NULL,184,4,77.3982748679465,4.26,52.81961519151244,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12064,'2018-09-05T00:11:52.597Z',NULL,169,3,59.53172693453274,3.27,26.992564669706425,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12065,'2019-04-30T16:37:32.135Z',NULL,105,2,52.723521442619514,2.9,38.53739682662318,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12066,'2017-06-19T09:42:08.293Z',NULL,168,5,79.28781795635516,4.36,60.60501584909986,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12067,'2019-03-31T21:04:17.606Z',NULL,76,1,63.82421061366486,3.51,52.14360841683652,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12068,'2017-06-05T10:48:10.073Z',NULL,89,7,42.47974183693326,2.34,46.918672711054164,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12069,'2019-04-30T15:49:53.723Z',NULL,49,3,131.42865839323724,7.23,77.93604793003433,1592); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12070,'2019-12-10T06:50:03.794Z',NULL,177,2,128.8192981944599,7.09,192.3567116744521,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12071,'2019-05-06T07:40:46.479Z',6.338185330856511,193,2,50.38077396807232,2.77,75.00919106696797,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12072,'2018-10-16T11:57:03.977Z',NULL,126,3,125.24398120308456,6.89,80.86578031172587,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12073,'2018-03-21T10:44:05.985Z',NULL,49,1,131.42865839323724,7.23,172.78944014894896,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12074,'2020-01-16T11:36:04.547Z',NULL,3,2,53.08311732230858,2.92,60.906701974269744,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12075,'2017-11-15T04:25:04.114Z',1.8381853308565108,89,3,42.47974183693326,2.34,48.158388360097554,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12076,'2018-07-15T12:25:12.837Z',NULL,52,5,103.67587240151535,5.7,85.4089200536589,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12077,'2018-02-17T11:15:29.802Z',NULL,124,2,110.93145648834248,6.1,144.210536387858,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12078,'2019-06-26T04:30:12.819Z',NULL,12,7,116.01427581618326,6.38,189.42323931667602,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12079,'2019-02-06T15:25:52.155Z',NULL,123,1,110.93145648834248,6.1,199.6095552344003,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12080,'2018-10-11T12:49:22.030Z',NULL,132,4,127.88197029833711,7.03,218.73999242428047,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12081,'2019-08-13T03:04:34.856Z',NULL,5,6,124.1176465275534,6.83,140.37574646322017,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12082,'2020-03-23T01:38:41.523Z',NULL,170,1,105.07665741496471,5.78,102.00362384281937,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12083,'2019-09-23T22:45:12.557Z',NULL,66,7,136.16126271106958,7.49,155.6400517530196,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12084,'2018-12-19T11:05:43.351Z',NULL,134,3,42.49233549998661,2.34,34.50774499327368,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12085,'2020-03-04T22:54:51.868Z',NULL,42,1,38.00410713690931,2.09,66.15216249907334,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12086,'2019-12-28T03:30:24.216Z',NULL,163,2,33.56789820016516,1.85,20.421825365843354,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12087,'2018-09-15T18:46:33.674Z',NULL,84,7,81.87627832636537,4.5,69.18286256650482,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12088,'2019-08-05T06:38:15.400Z',NULL,160,10,47.59120561297272,2.62,75.20424440312061,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12089,'2019-02-11T12:08:01.067Z',NULL,75,2,125.81276373452337,6.92,145.88159939979505,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12090,'2018-12-22T10:53:50.661Z',NULL,67,2,41.24480890795779,2.27,20.807806784747445,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12091,'2020-01-24T23:34:10.852Z',NULL,191,2,128.5841852057933,7.07,226.48216084638622,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12092,'2019-12-08T21:52:39.554Z',NULL,113,2,110.47725376186015,6.08,113.07449208819463,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12093,'2018-09-26T05:05:02.076Z',4.617347001107425,84,4,81.87627832636537,4.5,125.94548846255516,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12094,'2019-05-17T22:47:33.149Z',NULL,193,5,50.38077396807232,2.77,37.87434994135427,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12095,'2019-08-24T14:32:16.473Z',NULL,49,10,131.42865839323724,7.23,168.20421607537457,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12096,'2018-11-02T23:40:44.564Z',NULL,11,3,132.45679913492563,7.29,87.16777801862193,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12097,'2018-07-29T10:26:12.984Z',NULL,21,4,60.57501609456816,3.33,89.2436942468209,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12098,'2016-10-05T09:06:35.802Z',NULL,179,5,45.549391048892794,2.51,75.62562530861744,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12099,'2020-02-21T07:40:50.473Z',9.117347001107426,89,2,63.719612755399886,3.5,103.75762652048293,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12100,'2017-12-03T22:11:01.390Z',NULL,187,3,65.98466722567774,3.63,41.157875849119705,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12101,'2018-07-13T06:36:02.950Z',NULL,7,7,148.22900526552291,8.15,105.5948441525734,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12102,'2019-03-14T21:06:41.283Z',NULL,5,1,124.1176465275534,6.83,87.80417862512168,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12103,'2019-03-06T00:18:39.531Z',NULL,176,1,57.92480943352658,3.19,52.46163831743221,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12104,'2019-05-29T06:14:23.651Z',NULL,172,5,122.3651993029456,6.73,67.45431002994829,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12105,'2018-11-05T03:39:10.590Z',NULL,186,4,98.9770008385166,5.44,160.06434690582532,1593); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12106,'2018-05-23T13:32:04.897Z',NULL,153,5,66.79892314178237,4.01,101.37983746821529,1595); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12107,'2018-07-02T02:44:20.599Z',NULL,5,4,124.1176465275534,7.45,75.31037263888753,1595); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12108,'2017-10-19T04:17:31.585Z',4.617347001107425,24,6,74.87095783152942,4.49,59.862785696610075,1595); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12109,'2017-09-16T10:21:54.394Z',NULL,64,7,95.61478497145774,5.74,101.69423094635683,1595); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12110,'2019-12-25T23:00:58.661Z',6.116739832501099,69,2,73.38772304360626,2.13,54.33780602378811,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12111,'2018-07-03T00:45:10.084Z',NULL,1,6,44.19489169601981,1.28,58.21742030719951,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12112,'2017-07-22T14:29:24.375Z',NULL,36,7,87.29125153827623,2.53,144.0667153399366,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12113,'2019-08-22T06:40:57.694Z',NULL,29,8,123.57448218067185,3.58,78.72173068776216,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12114,'2019-03-15T05:41:22.639Z',NULL,197,1,70.14610686710009,2.03,82.74376806079401,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12115,'2019-08-15T16:07:26.143Z',NULL,64,8,143.4221774571866,4.16,134.7160726554467,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12116,'2018-08-31T19:24:16.388Z',NULL,12,9,116.01427581618326,3.36,137.74060434422591,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12117,'2019-01-05T03:34:59.916Z',8.405282629827964,5,2,124.1176465275534,3.6,147.45386983085504,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12118,'2020-02-05T12:32:29.831Z',NULL,98,2,112.41825444654248,3.26,76.7672063791296,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12119,'2017-01-03T21:22:56.838Z',NULL,68,3,76.82895921539838,2.23,51.856680707252046,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12120,'2018-11-21T16:26:32.578Z',NULL,182,4,84.48940370476112,2.45,86.02593417673222,1596); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12121,'2018-06-05T03:50:06.950Z',NULL,130,8,75.02573869315137,3.75,100.65061195773056,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12122,'2018-01-09T07:01:22.690Z',NULL,35,2,71.53687730741436,3.58,119.25485199068052,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12123,'2019-11-26T07:44:21.546Z',6.116739832501099,162,4,33.56789820016516,1.68,20.74933075124107,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12124,'2019-07-14T12:40:55.145Z',NULL,189,6,93.27738254731509,4.66,101.50071723335759,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12125,'2017-10-02T09:41:38.018Z',NULL,112,6,27.55292434006023,1.38,26.522142485516788,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12126,'2020-02-24T21:00:58.011Z',NULL,54,2,62.09360840402396,3.1,74.82603533025585,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12127,'2017-08-31T03:54:57.650Z',NULL,105,9,35.149014295079674,1.76,44.7685910389656,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12128,'2016-09-17T00:20:51.610Z',NULL,166,6,25.536330427467956,1.28,24.831547725409777,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12129,'2018-05-27T15:57:45.691Z',NULL,198,4,70.14610686710009,3.51,106.18643861632532,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12130,'2017-11-07T07:17:20.068Z',NULL,179,3,45.549391048892794,2.28,56.208081457296785,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12131,'2020-03-23T06:25:13.842Z',NULL,143,1,61.1983004605443,3.06,102.00213225748273,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12132,'2017-12-31T20:02:41.686Z',NULL,108,3,33.39659192329691,1.67,33.864410780922135,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12133,'2020-02-18T07:58:46.518Z',NULL,172,2,122.3651993029456,6.12,80.30693451630854,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12134,'2018-01-19T19:17:43.412Z',NULL,144,2,61.1983004605443,3.06,61.22454870186296,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12135,'2020-03-17T05:28:49.293Z',NULL,117,1,55.024851254077866,2.75,95.59823199231907,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12136,'2019-04-27T03:44:36.041Z',NULL,112,4,41.329386510090345,2.07,50.302099437416295,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12137,'2019-05-19T05:53:15.919Z',NULL,184,6,116.09741230191975,5.8,99.61130268266815,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12138,'2018-11-19T08:50:31.646Z',NULL,94,4,109.21864156655383,5.46,146.1331558339684,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12139,'2018-09-17T05:27:01.897Z',NULL,129,5,148.1672972165937,7.41,99.83236123970438,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12140,'2018-09-11T13:23:56.464Z',NULL,4,4,110.98767151282252,5.55,99.49886728088096,1597); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12141,'2019-08-19T01:11:44.915Z',NULL,31,7,105.65346467128523,4.75,119.14491996977658,1598); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12142,'2019-12-03T13:03:00.894Z',7.787234655116876,129,2,148.1672972165937,6.67,208.85937916989283,1598); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12143,'2018-04-26T11:09:39.039Z',NULL,20,3,37.32649625046575,1.08,39.50067017565254,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12144,'2018-11-30T18:20:47.168Z',NULL,22,3,32.136779940663494,0.93,19.95429815822307,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12145,'2018-09-07T00:08:25.094Z',NULL,151,5,91.61302306843446,2.66,132.89368282678842,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12146,'2019-07-03T01:53:35.936Z',NULL,61,3,23.537915510955656,0.68,17.454740126347794,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12147,'2018-03-15T00:07:46.950Z',NULL,85,10,54.90104734428525,1.59,53.22837106329921,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12148,'2019-10-12T01:13:57.929Z',3.2872346551168765,141,5,126.20312547576883,3.66,219.60391809975908,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12149,'2019-01-09T10:16:05.866Z',NULL,17,2,79.93608046792765,2.32,125.4202036792881,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12150,'2019-12-14T08:42:48.184Z',NULL,195,2,109.78077396807234,3.18,52.4597334436361,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12151,'2016-11-24T16:30:22.952Z',NULL,34,3,49.535942579421324,1.44,39.57211434540742,1599); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12152,'2019-01-15T19:16:06.256Z',NULL,10,2,47.6793282102869,2.98,21.46060415163025,1600); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12153,'2019-11-04T03:51:41.710Z',3.2872346551168765,175,3,117.3248094335266,7.33,144.52427866012277,1600); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12154,'2017-10-02T20:09:06.078Z',NULL,14,5,25.09876359271891,1.57,36.70867880326958,1600); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12155,'2018-03-22T01:24:41.624Z',NULL,165,1,38.30449564120193,2.39,25.44286792311184,1600); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12156,'2018-03-01T20:32:39.362Z',NULL,58,1,78.14578007078882,4.88,52.45238896288233,1600); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12157,'2020-03-27T06:24:00.881Z',NULL,174,1,111.61430894181083,6.98,166.76906103724687,1600); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12158,'2019-11-19T02:10:25.712Z',NULL,195,2,109.78077396807234,5.21,119.50178690479194,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12159,'2019-02-09T15:46:40.021Z',NULL,174,1,111.61430894181083,5.3,121.01393145124986,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12160,'2018-09-29T12:09:13.519Z',NULL,154,3,81.87529553312261,3.89,78.9420381287229,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12161,'2019-08-10T16:12:19.059Z',NULL,165,7,38.30449564120193,1.82,31.868259665275758,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12162,'2018-06-10T00:32:37.298Z',NULL,18,8,81.90307121097293,3.89,143.88596577199465,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12163,'2019-05-09T12:13:36.997Z',NULL,161,4,47.59120561297272,2.26,41.96765084525068,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12164,'2019-06-15T18:53:34.881Z',NULL,33,4,47.7448636959614,2.27,24.01473555365097,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12165,'2019-01-23T10:20:21.464Z',3.2872346551168765,129,2,148.1672972165937,7.04,244.76830578360685,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12166,'2018-11-05T05:16:15.584Z',NULL,185,3,39.57700083851661,1.88,37.686957552527474,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12167,'2018-06-20T00:31:05.752Z',NULL,179,6,68.32408657333919,3.25,37.86560296565437,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12168,'2018-11-25T11:37:50.862Z',NULL,79,4,41.616917284159726,1.98,20.486098851636648,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12169,'2020-03-24T04:04:45.441Z',NULL,126,1,125.24398120308456,5.95,213.72063640216714,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12170,'2019-07-09T19:19:58.259Z',NULL,10,5,47.6793282102869,2.26,37.15030682508261,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12171,'2020-02-11T15:50:42.255Z',NULL,165,2,38.30449564120193,1.82,60.80187995278243,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12172,'2020-02-25T08:36:04.486Z',NULL,121,2,40.44528328808107,1.92,23.769537502194073,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12173,'2018-01-21T03:37:14.281Z',0.6011778347571006,15,2,37.648145389078365,1.79,37.67292948951157,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12174,'2018-01-06T15:59:49.717Z',NULL,125,2,80.39699207990944,3.82,52.01472981917063,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12175,'2019-09-27T06:43:41.838Z',NULL,98,5,112.41825444654248,5.34,80.46853699738247,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12176,'2018-03-15T11:57:20.355Z',NULL,185,1,39.57700083851661,1.88,51.13206218932299,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12177,'2018-09-05T07:15:22.007Z',NULL,169,3,59.53172693453274,2.83,50.25476350728691,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12178,'2019-01-19T20:09:11.000Z',NULL,102,1,47.04215255778118,2.23,50.45352341335906,1601); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12179,'2018-08-01T12:44:59.731Z',NULL,16,6,66.11029954877317,0,71.62990263695245,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12180,'2019-03-13T13:24:52.359Z',NULL,185,1,39.57700083851661,0,40.766514486293175,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12181,'2018-05-18T09:46:16.696Z',NULL,22,3,32.136779940663494,0,15.995633997708525,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12182,'2019-03-31T14:31:11.728Z',NULL,188,1,33.87738254731509,0,24.615273762985794,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12183,'2018-09-16T19:03:40.908Z',NULL,168,2,118.93172693453273,0,75.0693381743027,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12184,'2017-07-16T01:02:23.616Z',0.6011778347571006,180,2,45.549391048892794,0,33.35060705173666,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12185,'2017-09-02T05:05:59.963Z',NULL,151,3,61.07534871228964,0,74.49618779507432,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12186,'2018-03-17T17:28:39.413Z',NULL,69,1,73.38772304360626,0,116.12429412425837,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12187,'2019-01-13T14:49:12.153Z',NULL,109,1,119.04991068193098,0,160.39265071390602,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12188,'2016-07-14T02:22:43.093Z',NULL,139,2,51.18512212784679,0,61.477409510276445,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12189,'2020-02-20T23:35:00.765Z',NULL,94,1,109.21864156655383,0,83.80444830343352,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12190,'2018-09-25T12:38:45.290Z',NULL,47,5,84.0766209826718,0,46.846405964763505,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12191,'2018-09-21T08:59:10.444Z',NULL,136,3,105.20402317157343,0,129.54191919495273,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12192,'2017-01-30T02:50:00.909Z',NULL,89,1,42.47974183693326,0,24.686432512007386,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12193,'2017-02-24T22:23:33.819Z',NULL,195,2,73.18718264538155,0,36.5501487062798,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12194,'2019-02-22T10:18:18.256Z',NULL,11,2,132.45679913492563,0,59.53143538688195,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12195,'2018-04-14T05:46:08.249Z',NULL,32,2,107.1448636959614,0,72.33114202704209,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12196,'2017-03-19T10:49:22.618Z',NULL,183,0,37.7982748679465,0,48.94800244291631,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12197,'2018-11-02T06:54:15.225Z',NULL,158,1,139.8942352373801,0,59.03647783235574,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12198,'2017-12-07T04:54:43.909Z',NULL,60,1,19.86809834572766,0,27.45981210984508,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12199,'2019-03-17T16:54:02.248Z',NULL,184,0,116.09741230191975,0,176.57511396712476,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12200,'2018-10-18T16:41:57.937Z',NULL,40,4,99.66240044231697,0,43.80829607942669,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12201,'2020-01-23T13:29:25.886Z',NULL,78,1,41.616917284159726,0,66.08473208537174,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12202,'2020-03-30T19:18:14.972Z',NULL,79,4,41.616917284159726,0,59.818487404346826,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12203,'2017-10-17T03:06:57.564Z',NULL,138,2,75.96718984479077,0,51.511636384948744,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12204,'2017-11-05T06:02:32.108Z',NULL,77,2,67.34461152277315,0,31.95030061210139,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12205,'2018-11-04T17:01:27.648Z',0.6011778347571006,109,2,119.04991068193098,0,85.55684761217287,1602); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12206,'2018-08-29T20:49:03.241Z',NULL,28,4,68.12471180754113,0,34.91073886175211,1603); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12207,'2019-06-07T13:28:08.627Z',NULL,113,6,110.47725376186015,0,132.25893692189248,1603); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12208,'2019-07-31T18:06:27.265Z',NULL,9,6,87.46968147789205,0,118.54351599127925,1603); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12209,'2019-08-30T15:45:08.545Z',NULL,102,10,47.04215255778118,0,38.47577680707479,1603); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12210,'2019-11-10T12:32:19.003Z',NULL,198,3,70.14610686710009,0,113.26157181743544,1603); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12211,'2017-09-17T19:59:57.897Z',4.717935799963269,94,4,72.81242771103588,5.1,90.55084196486293,1606); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12212,'2019-05-26T17:30:55.814Z',NULL,172,5,122.3651993029456,4.89,158.0920291482765,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12213,'2019-01-19T15:01:28.319Z',NULL,82,3,60.89545738030947,2.44,40.76425046719903,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12214,'2019-09-22T11:19:44.165Z',NULL,159,6,35.53017445377361,1.42,27.236718461432822,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12215,'2019-01-12T10:59:45.845Z',NULL,172,2,122.3651993029456,4.89,124.88908810789266,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12216,'2020-04-13T12:24:54.824Z',NULL,177,3,128.8192981944599,5.15,195.26254259141064,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12217,'2020-03-24T16:48:01.632Z',NULL,49,1,131.42865839323724,5.26,86.57533391662014,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12218,'2018-06-28T04:22:47.276Z',NULL,200,7,73.20395711799151,2.93,72.56493404366526,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12219,'2018-10-23T09:58:27.317Z',NULL,100,5,67.83486485383094,2.71,94.55916049430651,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12220,'2019-05-29T20:11:17.011Z',NULL,26,5,68.12471180754113,2.72,49.44628124806003,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12221,'2017-05-15T06:59:14.417Z',NULL,92,6,83.2616179105333,3.33,121.29691285636747,1608); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12222,'2018-08-12T23:45:51.360Z',NULL,69,10,73.38772304360626,2.94,106.62239576487353,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12223,'2019-05-17T08:01:55.422Z',NULL,108,6,50.094887884945365,2,42.733324474312475,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12224,'2019-09-23T22:29:30.237Z',4.717935799963269,145,7,61.1983004605443,2.45,68.27277142204149,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12225,'2018-12-11T14:53:13.113Z',NULL,152,2,48.89568729900663,1.96,43.437696628036534,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12226,'2019-02-22T12:18:02.933Z',NULL,54,2,62.09360840402396,2.48,39.514620991950785,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12227,'2017-03-02T23:32:24.734Z',NULL,133,1,45.654646865558064,1.83,44.82610713131423,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12228,'2019-11-26T14:34:28.639Z',NULL,73,3,71.6287722595695,2.87,112.4639037448502,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12229,'2019-02-05T07:16:21.839Z',NULL,25,1,68.62263967182464,2.74,114.61970103862818,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12230,'2019-07-04T13:44:00.663Z',NULL,72,6,142.20381898788685,5.69,208.1355243116021,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12231,'2017-08-21T08:36:58.219Z',NULL,156,8,20.41053609936413,0.82,30.14123929245095,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12232,'2017-06-02T17:43:01.770Z',NULL,33,7,31.829909130640935,1.27,28.05785416621099,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12233,'2017-09-01T07:52:28.612Z',NULL,51,7,50.433725012700116,2.02,36.96947812934422,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12234,'2020-02-14T13:18:47.112Z',NULL,143,2,61.1983004605443,2.45,51.9208229006967,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12235,'2019-06-13T15:28:27.222Z',NULL,148,7,138.9817182254566,5.56,243.7502906228855,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12236,'2019-08-21T19:51:28.235Z',NULL,127,8,134.48016314504417,5.38,225.37466071234428,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12237,'2019-11-07T16:51:16.035Z',NULL,131,4,113.11722203337729,4.52,151.94884231852373,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12238,'2019-12-25T07:08:14.648Z',NULL,173,2,122.3651993029456,4.89,85.7169295988113,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12239,'2019-02-23T11:39:06.698Z',NULL,49,2,131.42865839323724,5.26,83.47138839172138,1610); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12240,'2018-09-03T21:17:42.687Z',NULL,51,7,75.65058751905018,3.59,118.82891715933022,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12241,'2017-09-13T15:13:08.578Z',NULL,49,7,87.61910559549149,4.16,116.09259654513255,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12242,'2020-02-17T22:53:58.858Z',NULL,87,2,117.25536340498041,5.57,65.390115331814,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12243,'2018-12-26T19:10:22.284Z',NULL,21,2,60.57501609456816,2.88,45.96585021763257,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12244,'2019-03-21T11:52:37.847Z',NULL,102,1,47.04215255778118,2.23,67.13253126371593,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12245,'2019-08-26T18:39:19.892Z',NULL,69,8,73.38772304360626,3.49,46.84107679280527,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12246,'2020-03-14T13:32:03.368Z',NULL,65,1,68.22769726470014,3.24,68.31183562985872,1611); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12247,'2017-09-29T19:47:46.963Z',NULL,200,6,48.802638078661005,2.5,58.15039544420686,1612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12248,'2020-01-08T05:17:56.003Z',NULL,80,2,54.91325681036414,2.81,64.81401961481116,1612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12249,'2017-10-05T16:13:31.928Z',NULL,61,7,15.691943673970439,0.8,14.50727180500644,1612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12250,'2019-07-28T11:44:51.755Z',NULL,142,6,70.34853057210945,3.61,110.45409744289437,1612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12251,'2019-09-21T00:38:57.620Z',NULL,10,6,47.6793282102869,2.44,34.87753584769906,1612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12252,'2018-11-08T13:20:31.884Z',NULL,200,4,73.20395711799151,3.75,63.53258452188454,1612); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12253,'2019-04-08T01:45:17.128Z',NULL,44,4,76.35255205175756,2.21,124.42073616520202,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12254,'2018-11-19T16:12:23.577Z',NULL,50,4,53.64019616819762,1.56,57.63684896326685,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12255,'2019-07-15T06:59:40.996Z',NULL,170,6,105.07665741496471,3.05,120.6663389877791,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12256,'2019-09-29T04:48:49.402Z',5.361498766854318,97,6,112.41825444654248,3.26,76.78950684945343,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12257,'2019-12-23T17:49:43.819Z',5.361498766854318,103,3,47.04215255778118,1.36,57.31705407750403,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12258,'2020-04-14T04:58:36.427Z',NULL,168,4,118.93172693453273,3.45,140.42151965845292,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12259,'2017-11-26T01:00:19.534Z',NULL,131,3,75.41148135558485,2.19,97.16092562315224,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12260,'2018-11-16T03:39:45.399Z',NULL,19,3,64.00675097561322,1.86,34.36528341557895,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12261,'2019-06-18T11:55:42.106Z',NULL,151,6,91.61302306843446,2.66,67.90044078172426,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12262,'2018-06-24T18:33:37.603Z',NULL,144,8,61.1983004605443,1.77,63.524867943948365,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12263,'2018-09-26T18:27:03.636Z',NULL,35,6,71.53687730741436,2.07,106.4459865904866,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12264,'2017-03-20T09:32:30.085Z',NULL,196,1,46.76407124473339,1.36,52.93577702288397,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12265,'2020-02-02T03:03:23.792Z',NULL,148,2,138.9817182254566,4.03,183.38538322810604,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12266,'2018-07-15T19:45:53.895Z',NULL,14,7,37.648145389078365,1.09,47.36759060227983,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12267,'2018-01-31T17:22:58.510Z',NULL,171,2,105.07665741496471,3.05,132.31201616501306,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12268,'2019-10-04T11:55:13.103Z',NULL,186,5,98.9770008385166,2.87,112.428366320231,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12269,'2019-05-22T18:34:38.578Z',NULL,62,4,133.5202262591817,3.87,148.6701846460059,1613); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12270,'2019-04-23T13:02:26.382Z',9.861498766854318,76,4,63.82421061366486,3.57,41.323040748495444,1614); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12271,'2020-01-14T20:18:20.509Z',5.361498766854318,19,3,64.00675097561322,3.58,43.82586769466958,1614); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12272,'2017-06-22T16:30:44.645Z',NULL,179,8,45.549391048892794,3.13,46.59907032728775,1615); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12273,'2018-04-06T16:17:45.258Z',NULL,68,3,115.24343882309758,7.92,123.71604252599921,1615); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12274,'2019-11-10T19:38:11.823Z',NULL,41,4,63.50890855689462,4.37,100.16857486492827,1615); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12275,'2018-10-22T02:45:05.010Z',NULL,69,7,73.38772304360626,3.67,36.63119398457146,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12276,'2018-10-27T17:47:24.594Z',NULL,147,6,66.64727121216615,3.33,113.58832799626525,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12277,'2020-04-10T03:24:52.414Z',NULL,91,3,65.09432810381134,3.25,64.73016442160991,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12278,'2018-01-06T13:26:00.544Z',5.84920285503996,178,1,117.32963250370614,5.87,96.42987962463837,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12279,'2019-08-26T19:15:00.577Z',NULL,129,5,148.1672972165937,7.41,266.6121788350334,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12280,'2017-07-23T16:41:38.582Z',NULL,30,5,42.7829881204479,2.14,24.900633250347553,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12281,'2018-09-27T12:26:56.690Z',NULL,86,5,92.31436670850246,4.62,55.074900274131316,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12282,'2018-03-22T01:51:51.882Z',NULL,85,1,54.90104734428525,2.75,42.36782531869004,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12283,'2018-12-21T15:48:40.936Z',NULL,148,1,138.9817182254566,6.95,181.9188114716516,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12284,'2020-01-29T21:53:02.099Z',5.84920285503996,180,1,68.32408657333919,3.42,116.53524437154002,1616); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12285,'2018-04-23T07:42:42.955Z',NULL,20,1,37.32649625046575,2.24,54.650637206689645,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12286,'2020-02-17T07:15:29.840Z',NULL,124,1,110.93145648834248,6.66,198.08373009244548,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12287,'2019-09-27T07:56:58.120Z',NULL,26,2,68.12471180754113,4.09,56.029650955998534,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12288,'2020-02-23T07:05:08.541Z',NULL,135,1,45.80402317157342,2.75,67.18931834506218,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12289,'2019-06-18T23:26:18.312Z',1.3492028550399597,19,5,64.00675097561322,3.84,85.16529971399187,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12290,'2018-10-16T09:46:38.962Z',1.3492028550399597,73,4,71.6287722595695,4.3,121.31284738929976,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12291,'2017-03-25T04:39:03.746Z',NULL,120,0,55.668009001928525,3.34,73.39584268750122,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12292,'2020-03-20T06:31:35.505Z',NULL,47,0,84.0766209826718,5.04,77.35827425341867,1617); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12293,'2016-09-16T14:22:53.276Z',NULL,46,2,78.6996782532274,4.03,76.01618693449191,1619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12294,'2019-03-29T06:59:56.886Z',NULL,5,0,124.1176465275534,6.36,56.83570480901255,1619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12295,'2020-04-17T21:51:45.894Z',NULL,178,2,117.32963250370614,6.01,135.23220592145694,1619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12296,'2017-10-02T17:44:54.225Z',NULL,13,4,75.0861692740371,3.85,87.26762543605426,1619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12297,'2019-10-26T09:12:34.269Z',NULL,93,3,49.81864156655383,2.55,83.06579773298381,1619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12298,'2018-01-04T21:51:19.874Z',NULL,82,1,60.89545738030947,3.12,65.22957590175088,1619); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12299,'2017-11-25T22:17:47.829Z',NULL,138,2,75.96718984479077,4.56,95.86292757700087,1620); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12300,'2018-03-16T15:10:30.327Z',NULL,150,1,128.55415037577922,7.39,172.0137752583383,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12301,'2019-06-10T10:24:31.664Z',1.3492028550399597,78,6,41.616917284159726,2.39,34.19004515214126,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12302,'2019-08-01T08:46:38.889Z',NULL,135,5,45.80402317157342,2.63,47.722992155898474,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12303,'2017-06-04T11:38:49.828Z',NULL,119,5,28.95876219768256,1.67,19.327660778569197,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12304,'2017-07-21T06:23:35.579Z',NULL,157,5,93.26282349158673,5.36,68.55827693335641,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12305,'2019-04-20T11:22:00.588Z',NULL,82,3,60.89545738030947,3.5,52.90677862806212,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12306,'2020-03-11T14:18:28.322Z',NULL,198,1,70.14610686710009,4.03,31.973727322727505,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12307,'2019-05-09T00:45:32.179Z',NULL,30,3,64.17448218067184,3.69,98.11066488855167,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12308,'2017-02-04T19:25:57.816Z',NULL,143,1,40.7988669736962,2.35,65.7888739779315,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12309,'2020-01-12T19:24:46.098Z',0.3172895481988114,44,1,76.35255205175756,4.39,95.16984032483997,1622); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12310,'2019-10-01T14:16:53.422Z',NULL,75,3,125.81276373452337,6.29,73.2585293979636,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12311,'2018-07-04T03:18:12.558Z',0.3172895481988114,160,2,47.59120561297272,2.38,62.56088441014518,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12312,'2019-09-27T19:46:37.959Z',NULL,2,3,105.11984419607644,5.26,147.17653555196458,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12313,'2017-10-12T19:18:32.139Z',NULL,46,3,78.6996782532274,3.93,83.58950745654651,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12314,'2019-04-16T20:29:22.111Z',NULL,148,1,138.9817182254566,6.95,186.44921866779927,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12315,'2017-06-21T03:07:35.941Z',NULL,109,4,79.36660712128732,3.97,47.55631421785588,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12316,'2018-09-13T04:49:51.643Z',NULL,97,3,112.41825444654248,5.62,183.37495421300972,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12317,'2020-02-04T14:24:47.380Z',NULL,53,1,44.27587240151534,2.21,51.226191088929994,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12318,'2018-10-30T02:02:33.358Z',NULL,59,2,89.20214751859149,4.46,112.16867631070271,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12319,'2019-03-07T13:41:29.465Z',4.817289548198811,5,0,124.1176465275534,6.21,209.1994297394114,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12320,'2017-02-05T01:03:36.216Z',NULL,13,1,75.0861692740371,3.75,131.23642692492723,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12321,'2019-01-15T09:41:57.920Z',NULL,154,1,81.87529553312261,4.09,147.9773251845921,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12322,'2018-02-16T03:52:11.259Z',NULL,29,1,123.57448218067185,6.18,77.17092373190775,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12323,'2017-10-18T18:49:38.856Z',NULL,79,3,27.74461152277315,1.39,35.92725101730324,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12324,'2020-02-14T03:03:03.269Z',NULL,167,1,97.70449564120193,4.89,125.73462879437476,1623); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12325,'2019-10-21T01:46:21.960Z',NULL,115,5,77.91196471862148,0,79.58039867185171,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12326,'2019-12-19T04:06:27.709Z',NULL,86,2,92.31436670850246,0,94.89314819218284,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12327,'2020-02-19T04:55:07.898Z',NULL,66,1,136.16126271106958,0,192.8526521968314,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12328,'2017-04-23T02:25:48.177Z',NULL,155,2,29.183828734551838,0,34.49244800567949,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12329,'2018-10-26T08:56:19.711Z',NULL,153,2,66.79892314178237,0,105.16999819558795,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12330,'2018-12-12T17:20:36.186Z',NULL,135,1,45.80402317157342,0,76.85488296294447,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12331,'2019-08-05T01:35:19.310Z',4.817289548198811,157,2,139.8942352373801,0,223.16870833806533,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12332,'2018-12-31T07:14:17.462Z',NULL,196,1,70.14610686710009,0,50.83897196772048,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12333,'2020-01-08T11:54:51.809Z',NULL,149,1,69.15415037577924,0,45.05690753733412,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12334,'2018-12-02T23:52:39.563Z',NULL,198,2,70.14610686710009,0,88.41427410294472,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12335,'2017-08-26T22:35:04.331Z',NULL,30,4,42.7829881204479,0,35.27585156242006,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12336,'2018-01-24T12:20:55.573Z',NULL,99,1,67.83486485383094,0,94.03904167323735,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12337,'2017-08-01T13:09:09.423Z',NULL,19,6,42.67116731707548,0,61.062640375893025,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12338,'2018-02-21T23:22:41.840Z',NULL,107,1,50.094887884945365,0,67.94343334240953,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12339,'2018-05-20T09:01:53.142Z',NULL,145,1,61.1983004605443,0,32.20494664199034,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12340,'2018-10-18T14:08:13.497Z',NULL,25,2,68.62263967182464,0,57.19450404374245,1624); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12341,'2020-03-18T05:13:00.238Z',NULL,191,1,128.5841852057933,7.72,148.28160088250118,1625); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12342,'2019-04-30T20:08:48.177Z',NULL,192,2,69.18418520579327,4.15,93.19474340268016,1625); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12343,'2018-06-21T11:57:36.566Z',NULL,125,6,80.39699207990944,4.82,79.72921986459684,1625); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12344,'2018-12-14T16:07:26.135Z',NULL,161,3,47.59120561297272,2.86,30.57338780721291,1625); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12345,'2019-02-09T01:50:00.601Z',NULL,33,2,47.7448636959614,1.91,83.78413964377376,1627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12346,'2018-09-01T19:45:44.337Z',NULL,162,6,33.56789820016516,1.34,37.335999051943645,1627); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12347,'2020-02-01T15:30:16.903Z',NULL,42,2,38.00410713690931,2.19,28.47271458925665,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12348,'2019-03-20T08:56:24.210Z',NULL,69,1,73.38772304360626,4.22,41.67042334170854,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12349,'2018-06-08T17:37:48.515Z',NULL,178,6,117.32963250370614,6.75,170.5407580737888,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12350,'2019-02-21T15:00:36.377Z',NULL,39,2,114.58158180283459,6.59,176.14864038193534,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12351,'2018-09-06T10:04:01.956Z',NULL,132,5,127.88197029833711,7.35,218.36637857864932,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12352,'2019-01-24T15:13:22.451Z',NULL,30,1,64.17448218067184,3.69,71.13891010534606,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12353,'2017-04-03T12:21:04.756Z',NULL,199,2,76.95334253952366,4.42,78.01108197132046,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12354,'2020-04-16T01:45:38.822Z',NULL,65,2,68.22769726470014,3.92,92.51750177346001,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12355,'2019-03-28T09:03:55.334Z',NULL,46,1,118.0495173798411,6.79,66.88842177933586,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12356,'2018-02-15T02:31:37.277Z',NULL,151,2,91.61302306843446,5.27,144.05906698982042,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12357,'2016-12-12T19:29:38.320Z',NULL,73,2,47.752514839713,2.75,44.45956192981273,1628); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12358,'2019-05-01T23:31:29.956Z',8.06864276915602,26,4,68.12471180754113,1.98,81.1339703007588,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12359,'2017-10-25T03:07:09.310Z',NULL,120,4,55.668009001928525,1.61,43.03195248980676,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12360,'2018-06-21T00:52:03.935Z',NULL,20,6,37.32649625046575,1.08,37.27660033165545,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12361,'2019-06-13T15:50:35.314Z',NULL,26,6,68.12471180754113,1.98,79.91570373118478,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12362,'2019-04-30T07:05:10.231Z',NULL,143,2,61.1983004605443,1.77,52.088424323579375,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12363,'2017-04-24T10:58:24.213Z',NULL,127,30,89.65344209669612,2.6,144.95968823651054,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12364,'2018-08-10T01:01:20.497Z',NULL,121,9,40.44528328808107,1.17,65.22093218408696,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12365,'2018-04-26T22:41:42.523Z',NULL,192,4,69.18418520579327,2.01,57.13261217936685,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12366,'2019-08-19T18:22:02.138Z',NULL,131,7,113.11722203337729,3.28,191.70936754664828,1629); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12367,'2019-04-06T20:21:16.162Z',NULL,137,2,67.77247956807186,4.24,64.73770886203155,1630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12368,'2017-11-11T09:35:18.514Z',NULL,90,2,82.07974183693327,5.13,36.63412494654645,1630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12369,'2019-09-21T13:45:23.169Z',NULL,108,5,50.094887884945365,3.13,24.448011909322606,1630); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12370,'2017-08-21T05:42:55.225Z',8.06864276915602,47,7,56.05108065511453,2.66,46.47828148797354,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12371,'2017-11-17T07:02:08.768Z',NULL,157,3,93.26282349158673,4.43,75.24190474508013,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12372,'2020-04-08T15:39:17.384Z',3.5686427691560203,2,3,105.11984419607644,4.99,102.04213540898046,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12373,'2019-03-07T14:45:01.750Z',NULL,151,1,91.61302306843446,4.35,100.28833296689145,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12374,'2019-11-25T05:02:23.047Z',NULL,106,2,52.723521442619514,2.5,37.959566563420246,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12375,'2018-10-08T04:56:51.600Z',NULL,173,3,122.3651993029456,5.81,68.36599644674705,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12376,'2019-05-21T13:06:16.924Z',NULL,104,4,106.44215255778118,5.06,72.80490015231875,1632); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12377,'2018-09-08T13:21:56.606Z',NULL,63,5,133.5202262591817,7.68,174.38807981278333,1633); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12378,'2017-01-13T00:07:02.529Z',NULL,90,2,82.07974183693327,6.16,89.69043841479197,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12379,'2018-05-23T01:21:51.501Z',NULL,128,4,75.08016314504417,5.63,121.89757076110163,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12380,'2017-04-04T05:36:28.322Z',NULL,189,2,62.18492169821006,4.66,49.87186738012511,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12381,'2017-03-20T06:06:53.166Z',NULL,162,1,22.378598800110105,1.68,22.011993564842022,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12382,'2019-09-15T10:18:45.335Z',NULL,139,5,76.77768319177018,5.76,101.6310400533344,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12383,'2018-04-09T05:47:09.877Z',NULL,9,2,87.46968147789205,6.56,141.14518130532247,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12384,'2017-12-03T05:48:20.717Z',NULL,154,1,54.58353035541507,4.09,78.41789913218186,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12385,'2017-02-14T03:41:50.725Z',NULL,55,1,63.84752383956291,4.79,97.60109020547038,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12386,'2018-04-06T22:52:09.131Z',NULL,9,2,87.46968147789205,6.56,123.03400176926485,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12387,'2017-05-08T06:57:56.566Z',NULL,59,4,59.46809834572766,4.46,88.75377088829325,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12388,'2017-02-19T22:39:35.688Z',NULL,154,1,54.58353035541507,4.09,96.40155574733036,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12389,'2017-05-14T21:58:34.469Z',NULL,122,4,66.56352219205405,4.99,40.07358242531177,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12390,'2020-01-22T15:41:31.071Z',NULL,123,2,110.93145648834248,8.32,200.1738119082111,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12391,'2016-11-14T19:11:50.660Z',NULL,101,2,93.21658710786936,6.99,132.98041062971907,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12392,'2018-08-01T21:02:25.719Z',NULL,134,6,42.49233549998661,3.19,59.74713132665593,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12393,'2017-05-28T15:48:15.876Z',NULL,191,4,85.72279013719552,6.43,119.60082448434022,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12394,'2019-02-01T07:52:56.976Z',NULL,46,1,118.0495173798411,8.85,173.3250366269364,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12395,'2020-01-24T17:55:23.072Z',NULL,58,1,78.14578007078882,5.86,62.099152651303015,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12396,'2018-12-27T16:19:33.866Z',NULL,71,1,82.80381898788684,6.21,94.27876380346764,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12397,'2019-05-08T11:00:20.472Z',NULL,146,2,126.04727121216614,9.45,232.27120405848834,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12398,'2019-02-06T16:05:25.476Z',NULL,109,1,119.04991068193098,8.93,180.37510189336604,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12399,'2018-06-15T17:37:20.623Z',NULL,63,4,133.5202262591817,10.01,191.84179605739138,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12400,'2019-12-09T04:12:48.319Z',NULL,4,1,110.98767151282252,8.32,130.43838737449198,1636); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12401,'2017-03-12T07:49:56.139Z',NULL,147,1,44.4315141414441,1.88,74.48551486998471,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12402,'2020-03-13T00:39:47.073Z',2.165994291233913,80,1,54.91325681036414,2.32,94.21847617275279,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12403,'2017-04-08T19:33:39.377Z',NULL,195,2,73.18718264538155,3.09,78.65844606419952,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12404,'2018-03-12T21:59:32.105Z',NULL,69,1,73.38772304360626,3.1,91.7012316698861,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12405,'2017-09-30T16:49:46.348Z',NULL,46,4,78.6996782532274,3.33,110.29250186251504,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12406,'2019-01-14T23:20:45.127Z',6.665994291233913,177,2,128.8192981944599,5.44,212.48683388245706,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12407,'2017-01-18T06:10:38.252Z',NULL,44,2,50.90170136783837,2.15,63.6039504645435,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12408,'2018-03-04T05:47:51.525Z',NULL,184,1,116.09741230191975,4.91,51.09027843658218,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12409,'2018-03-09T06:35:33.997Z',6.357615627019553,47,1,84.0766209826718,3.55,126.78437969345264,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12410,'2017-06-01T11:17:20.616Z',NULL,151,3,61.07534871228964,2.58,72.29831610620185,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12411,'2019-02-08T23:25:54.685Z',6.357615627019553,9,1,87.46968147789205,3.7,75.39205158371547,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12412,'2019-07-14T22:47:07.462Z',6.357615627019553,132,4,127.88197029833711,5.4,148.03192756989623,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12413,'2018-03-11T12:09:44.454Z',NULL,140,1,66.80312547576881,2.82,84.08225896076236,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12414,'2019-09-29T05:27:54.143Z',NULL,158,4,139.8942352373801,5.91,184.39944040947157,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12415,'2018-10-07T08:17:52.774Z',NULL,176,4,57.92480943352658,2.45,58.59978988648523,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12416,'2020-04-18T04:49:25.691Z',NULL,89,3,63.719612755399886,2.69,97.79916286633187,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12417,'2018-01-25T08:18:21.970Z',1.8576156270195527,67,2,41.24480890795779,1.74,23.506907956215542,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12418,'2018-06-03T21:32:36.795Z',NULL,123,7,110.93145648834248,4.69,176.33295554319727,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12419,'2017-01-11T22:39:21.307Z',NULL,129,21,98.7781981443958,4.17,138.35018897691873,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12420,'2019-01-24T08:41:54.251Z',NULL,163,2,33.56789820016516,1.42,34.23282493538619,1637); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12421,'2018-05-21T11:20:52.497Z',NULL,116,5,114.42485125407785,4.58,137.83469571769945,1638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12422,'2017-08-24T02:59:44.024Z',NULL,72,6,94.80254599192457,3.79,118.76591055354115,1638); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12423,'2018-02-26T10:04:21.480Z',NULL,172,1,122.3651993029456,4.89,215.98774664149744,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12424,'2017-10-25T22:35:13.593Z',NULL,108,4,33.39659192329691,1.34,40.2338256771944,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12425,'2016-10-25T09:16:15.610Z',NULL,87,6,78.17024226998694,3.13,34.49889558316318,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12426,'2020-03-08T16:46:46.524Z',NULL,71,1,82.80381898788684,3.31,102.05165980410827,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12427,'2020-03-16T11:06:55.935Z',NULL,146,1,126.04727121216614,5.04,120.91895629551456,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12428,'2020-04-04T16:51:55.403Z',NULL,158,2,139.8942352373801,5.6,116.22399319910849,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12429,'2020-02-19T23:07:35.092Z',NULL,84,2,81.87627832636537,3.28,101.42755110611145,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12430,'2017-09-03T15:53:12.109Z',NULL,26,4,45.41647453836076,1.82,69.21913445965183,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12431,'2017-07-01T17:02:54.052Z',NULL,161,4,31.727470408648482,1.27,40.18231076008373,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12432,'2019-05-29T08:21:26.557Z',NULL,94,3,109.21864156655383,4.37,121.68574960344858,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12433,'2019-10-15T02:32:49.884Z',NULL,26,4,68.12471180754113,2.72,30.852347101962078,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12434,'2019-05-14T10:07:48.768Z',NULL,197,5,70.14610686710009,2.81,74.5087892196312,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12435,'2017-02-28T12:48:43.955Z',NULL,95,1,33.212427711035886,1.33,57.98381089725155,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12436,'2020-04-06T02:54:13.162Z',NULL,131,2,113.11722203337729,4.52,123.09205087776857,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12437,'2018-07-01T00:25:29.757Z',NULL,2,3,105.11984419607644,4.2,58.71358281833603,1640); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12438,'2019-12-27T08:13:21.799Z',NULL,72,1,142.20381898788685,5.69,88.0349799129946,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12439,'2019-02-04T19:14:41.311Z',NULL,160,1,47.59120561297272,1.9,34.32259964510414,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12440,'2019-03-29T19:35:07.827Z',NULL,135,1,45.80402317157342,1.83,24.87277418763539,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12441,'2018-04-10T12:23:30.515Z',NULL,82,3,60.89545738030947,2.44,65.93000053940926,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12442,'2019-04-12T17:46:26.006Z',NULL,143,2,61.1983004605443,2.45,61.16107033349092,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12443,'2018-03-23T22:39:29.026Z',NULL,193,1,50.38077396807232,2.02,87.28287742816045,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12444,'2019-04-20T16:25:19.260Z',NULL,175,35,117.3248094335266,4.69,166.07051009083906,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12445,'2018-10-29T10:21:01.102Z',NULL,101,7,139.82488066180403,5.59,141.97094898142666,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12446,'2019-03-22T09:10:38.234Z',7.1992950400977245,65,1,68.22769726470014,2.73,29.42659180785679,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12447,'2020-04-03T03:02:40.102Z',NULL,25,3,68.62263967182464,2.74,46.09925637733025,1641); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12448,'2018-12-21T01:09:46.325Z',NULL,65,2,68.22769726470014,4.43,46.22329359276625,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12449,'2020-01-22T11:15:04.976Z',NULL,199,2,115.4300138092855,7.5,51.81028067823696,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12450,'2017-05-27T13:26:02.239Z',NULL,6,5,64.95747510229587,4.22,38.49347676090657,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12451,'2019-06-24T23:50:00.184Z',NULL,103,7,47.04215255778118,3.06,24.13587013310368,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12452,'2019-02-12T17:40:20.645Z',NULL,34,2,74.30391386913199,4.83,124.16007990616322,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12453,'2020-04-09T06:14:15.833Z',NULL,192,3,69.18418520579327,4.5,48.75095769648858,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12454,'2017-07-03T09:53:08.563Z',NULL,81,6,29.288656154807867,1.9,29.091879522596997,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12455,'2019-10-14T22:35:56.597Z',NULL,154,7,81.87529553312261,5.32,118.09148205944811,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12456,'2020-03-26T12:54:33.486Z',NULL,177,1,128.8192981944599,8.37,201.81961575625155,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12457,'2018-08-20T10:15:37.671Z',NULL,37,6,80.10774204020768,5.21,118.81462880288538,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12458,'2017-10-22T01:00:51.281Z',NULL,24,5,74.87095783152942,4.87,131.90881943691923,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12459,'2018-06-21T19:59:28.336Z',NULL,6,7,97.43621265344382,6.33,163.98147332368143,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12460,'2019-02-28T04:15:59.015Z',NULL,39,1,114.58158180283459,7.45,49.11782234782038,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12461,'2018-07-22T15:46:32.727Z',NULL,135,4,45.80402317157342,2.98,42.562762660391684,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12462,'2020-02-19T14:13:27.588Z',NULL,99,15,67.83486485383094,4.41,51.59609970781856,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12463,'2019-12-12T12:38:50.625Z',2.6992950400977245,72,1,142.20381898788685,9.24,245.17957420940692,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12464,'2019-05-14T22:07:09.499Z',NULL,182,3,84.48940370476112,5.49,83.85012405449487,1642); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12465,'2019-11-19T12:42:30.329Z',NULL,91,3,65.09432810381134,3.91,55.73323835252609,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12466,'2019-07-14T08:12:07.978Z',NULL,89,6,63.719612755399886,3.82,51.83929752551725,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12467,'2020-01-26T15:46:58.419Z',NULL,29,2,123.57448218067185,7.41,187.4066679711052,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12468,'2019-03-25T08:25:59.541Z',NULL,114,1,77.91196471862148,4.67,73.21018167462682,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12469,'2019-10-04T11:22:43.623Z',NULL,103,5,47.04215255778118,2.82,35.66631960972693,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12470,'2019-02-12T09:35:21.020Z',NULL,50,1,53.64019616819762,3.22,65.29062107341856,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12471,'2019-06-04T19:26:06.574Z',NULL,85,4,54.90104734428525,3.29,48.4219275230394,1644); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12472,'2018-06-27T07:18:48.083Z',NULL,124,4,110.93145648834248,6.38,75.97413636251116,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12473,'2019-02-03T23:58:55.530Z',NULL,11,1,132.45679913492563,7.62,229.38299684401724,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12474,'2017-05-24T11:58:55.009Z',NULL,81,3,29.288656154807867,1.68,49.980177310949266,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12475,'2018-05-20T14:47:41.210Z',NULL,55,3,95.77128575934437,5.51,118.8231421747801,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12476,'2020-02-19T14:52:28.545Z',NULL,176,1,57.92480943352658,3.33,70.22934371007985,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12477,'2018-11-09T18:42:40.066Z',NULL,154,2,81.87529553312261,4.71,133.55601072421766,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12478,'2018-04-21T00:58:51.684Z',NULL,160,2,47.59120561297272,2.74,71.66326141707076,1649); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12479,'2020-03-26T06:43:26.037Z',NULL,107,1,50.094887884945365,3.01,88.88916938886149,1650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12480,'2018-09-30T19:18:18.583Z',NULL,36,3,130.93687730741433,7.86,238.55478948185532,1650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12481,'2018-01-11T19:24:04.113Z',NULL,132,1,127.88197029833711,7.67,87.36028570332896,1650); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12482,'2018-05-10T13:10:41.556Z',NULL,184,3,116.09741230191975,6.97,195.78402786165978,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12483,'2019-08-07T06:55:39.806Z',NULL,124,5,110.93145648834248,6.66,126.71898684365834,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12484,'2018-05-12T18:49:49.424Z',2.5378176190384196,107,3,50.094887884945365,3.01,80.68853088510852,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12485,'2020-01-16T02:57:52.141Z',NULL,167,1,97.70449564120193,5.86,74.33437372606433,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12486,'2019-05-17T13:48:44.659Z',3.4718048062054176,35,3,71.53687730741436,4.29,42.59372186640319,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12487,'2020-01-13T15:29:51.168Z',NULL,67,1,41.24480890795779,2.47,18.386555004253825,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12488,'2018-06-04T01:12:44.071Z',NULL,62,5,133.5202262591817,8.01,204.20356345857215,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12489,'2017-12-09T17:59:39.236Z',NULL,54,1,41.395738936015974,2.48,22.52495037513208,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12490,'2019-05-01T13:17:31.893Z',NULL,61,3,23.537915510955656,1.41,14.806379868977302,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12491,'2019-05-10T17:57:54.888Z',2.5378176190384196,93,3,49.81864156655383,2.99,43.8031396701267,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12492,'2017-07-16T10:55:12.292Z',NULL,51,3,50.433725012700116,3.03,39.922004757615085,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12493,'2018-11-29T01:44:41.792Z',NULL,68,2,115.24343882309758,6.91,146.08321426872016,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12494,'2019-05-22T23:58:50.908Z',NULL,95,3,49.81864156655383,2.99,33.358652467146875,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12495,'2018-09-17T20:43:04.347Z',NULL,166,4,38.30449564120193,2.3,57.03687651632488,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12496,'2019-01-04T08:54:07.545Z',NULL,115,1,77.91196471862148,4.67,97.97841528853432,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12497,'2018-04-11T11:05:46.443Z',NULL,110,2,55.526746186906664,3.33,76.68383073608356,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12498,'2017-04-14T16:11:49.593Z',NULL,43,2,50.90170136783837,3.05,65.78586594367728,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12499,'2019-09-10T08:49:55.445Z',NULL,171,4,105.07665741496471,6.3,126.35773409166664,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12500,'2017-03-13T04:42:09.634Z',NULL,46,1,78.6996782532274,4.72,71.78197229026756,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12501,'2018-12-21T09:49:43.180Z',NULL,140,1,66.80312547576881,4.01,86.40683597339543,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12502,'2019-05-18T11:46:45.916Z',NULL,65,3,68.22769726470014,4.09,114.63510896814157,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12503,'2017-10-08T11:58:34.109Z',NULL,52,3,69.1172482676769,4.15,52.496216157623245,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12504,'2018-03-08T07:45:21.415Z',NULL,52,1,103.67587240151535,6.22,142.64529797757285,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12505,'2018-02-28T07:27:02.082Z',NULL,23,1,116.86672609493307,7.01,102.86418248228924,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12506,'2017-06-25T10:56:14.765Z',NULL,52,4,69.1172482676769,4.15,115.59336132188764,1651); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12507,'2017-12-01T21:21:14.653Z',NULL,185,1,26.384667225677738,1.06,30.537547752901464,1652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12508,'2019-10-12T04:49:23.265Z',NULL,142,4,70.34853057210945,2.81,58.98170703167497,1652); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12509,'2019-02-21T09:44:23.726Z',NULL,129,2,148.1672972165937,7.41,93.2672649861189,1653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12510,'2019-03-03T03:12:29.845Z',NULL,55,1,95.77128575934437,4.79,109.67393847491752,1653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12511,'2017-03-21T12:56:55.647Z',NULL,147,1,44.4315141414441,2.22,77.38026737710446,1653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12512,'2019-01-24T15:04:54.988Z',NULL,19,2,64.00675097561322,3.2,34.63174206266476,1653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12513,'2018-09-12T09:01:23.014Z',NULL,194,7,50.38077396807232,2.52,39.32054975922313,1653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12514,'2018-08-16T01:03:41.286Z',NULL,131,7,113.11722203337729,5.66,111.0546736139707,1653); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12515,'2019-07-07T03:06:58.456Z',NULL,143,4,61.1983004605443,3.82,60.55140718538074,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12516,'2019-02-12T22:38:21.595Z',NULL,103,2,47.04215255778118,2.94,21.88765685746377,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12517,'2019-12-08T12:01:03.364Z',NULL,158,3,139.8942352373801,8.74,74.57774540497512,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12518,'2019-12-30T15:37:27.263Z',4.158767001816869,184,3,116.09741230191975,7.26,141.953412386303,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12519,'2019-04-04T23:12:42.111Z',8.65876700181687,27,3,127.52471180754115,7.97,135.88271056715269,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12520,'2019-02-28T14:10:57.299Z',NULL,50,1,53.64019616819762,3.35,98.47243105611864,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12521,'2018-07-07T11:37:42.431Z',8.65876700181687,66,4,136.16126271106958,8.51,96.01442727238586,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12522,'2019-03-04T12:07:48.867Z',8.65876700181687,162,1,33.56789820016516,2.1,53.15687991260837,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12523,'2019-12-03T13:33:32.664Z',NULL,182,2,84.48940370476112,5.28,73.61740546603755,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12524,'2019-06-17T23:58:31.556Z',NULL,114,5,77.91196471862148,4.87,76.0986962245152,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12525,'2019-11-23T11:31:37.123Z',8.65876700181687,73,3,71.6287722595695,4.48,47.27593159038877,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12526,'2019-02-12T14:47:29.745Z',NULL,169,2,59.53172693453274,3.72,58.40731640269126,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12527,'2018-07-10T03:03:09.644Z',NULL,12,5,116.01427581618326,7.25,160.28070765437474,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12528,'2018-12-31T01:29:21.867Z',NULL,106,3,52.723521442619514,3.3,51.75619638720746,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12529,'2019-09-14T20:20:18.934Z',NULL,44,7,76.35255205175756,4.77,35.1643557221724,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12530,'2019-07-30T12:37:21.049Z',NULL,79,7,41.616917284159726,2.6,22.484602327978166,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12531,'2018-08-22T17:15:39.719Z',8.65876700181687,98,9,112.41825444654248,7.03,150.2776764070929,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12532,'2020-03-30T20:49:23.204Z',NULL,93,1,49.81864156655383,3.11,62.76271455683635,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12533,'2019-02-03T11:37:38.998Z',NULL,121,1,40.44528328808107,2.53,25.81286428815685,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12534,'2019-11-03T07:59:11.410Z',NULL,142,2,70.34853057210945,4.4,61.74174178889295,1654); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12535,'2018-06-05T06:05:39.751Z',NULL,64,7,143.4221774571866,0,127.33260675438544,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12536,'2018-06-05T12:34:43.423Z',NULL,50,8,53.64019616819762,0,27.39356014923923,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12537,'2017-03-31T13:30:02.548Z',4.158767001816869,70,1,38.32866920597319,0,58.36749990232465,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12538,'2018-09-16T23:12:46.510Z',NULL,166,5,38.30449564120193,0,28.993538416648402,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12539,'2017-11-15T04:10:48.046Z',NULL,112,4,27.55292434006023,0,40.242397010912335,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12540,'2019-07-05T09:06:14.269Z',NULL,66,7,136.16126271106958,0,156.56153484407912,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12541,'2020-02-02T06:19:50.308Z',NULL,99,2,67.83486485383094,0,63.08461660094757,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12542,'2017-03-09T06:40:05.809Z',NULL,19,1,42.67116731707548,0,29.083642634233232,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12543,'2018-09-10T04:16:39.922Z',NULL,179,5,68.32408657333919,0,106.95832377441562,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12544,'2017-03-08T05:50:17.043Z',NULL,164,1,61.978598800110106,0,30.36012268469704,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12545,'2019-09-08T04:35:45.375Z',NULL,41,4,63.50890855689462,0,103.3045494254321,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12546,'2016-11-06T23:25:42.904Z',NULL,45,2,78.6996782532274,0,62.90167203721189,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12547,'2017-04-25T10:09:02.368Z',NULL,27,2,85.01647453836077,0,139.30084043638487,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12548,'2017-02-14T20:35:23.098Z',NULL,108,2,33.39659192329691,0,43.986001796193534,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12549,'2018-10-03T22:12:12.513Z',NULL,117,8,55.024851254077866,0,83.89254895206018,1656); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12550,'2019-09-28T03:21:23.387Z',NULL,54,7,62.09360840402396,3.73,109.82282978915995,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12551,'2019-03-31T05:03:34.296Z',NULL,37,1,80.10774204020768,4.81,74.22790310350469,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12552,'2018-10-29T05:55:57.578Z',NULL,186,8,98.9770008385166,5.94,140.97390876462978,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12553,'2019-02-09T17:41:24.858Z',NULL,26,2,68.12471180754113,4.09,62.52788834387763,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12554,'2018-02-12T05:32:44.637Z',NULL,93,2,49.81864156655383,2.99,23.317690404901324,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12555,'2018-12-09T09:33:28.896Z',NULL,57,2,122.4223933583994,7.35,192.55414182628846,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12556,'2017-09-05T17:03:12.826Z',NULL,118,4,38.418408731319154,2.31,33.06451590245672,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12557,'2018-10-28T07:16:52.699Z',NULL,157,5,139.8942352373801,8.39,78.8839486204955,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12558,'2019-01-04T16:10:26.148Z',NULL,60,2,29.80214751859149,1.79,25.27018605264589,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12559,'2018-02-28T13:18:10.890Z',NULL,124,1,110.93145648834248,6.66,196.18889208502534,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12560,'2019-02-12T02:05:40.702Z',NULL,37,2,80.10774204020768,4.81,66.67352585746308,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12561,'2020-01-24T06:52:20.981Z',4.303740956553047,182,2,84.48940370476112,5.07,84.75005856213669,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12562,'2016-08-18T23:47:46.731Z',NULL,45,8,78.6996782532274,4.72,74.93115630727766,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12563,'2018-08-16T11:27:21.202Z',NULL,101,8,139.82488066180403,8.39,151.03088617629757,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12564,'2020-03-07T23:53:22.822Z',NULL,52,1,103.67587240151535,6.22,165.92080726891513,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12565,'2017-08-29T01:30:57.728Z',NULL,179,6,45.549391048892794,2.73,78.06734794975054,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12566,'2018-03-26T09:30:58.735Z',8.803740956553046,56,1,36.37128575934436,2.18,16.479513650199625,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12567,'2020-01-23T00:14:42.288Z',NULL,152,3,48.89568729900663,2.93,61.150750018824574,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12568,'2020-02-25T18:35:18.842Z',NULL,113,2,110.47725376186015,6.63,187.06088899196104,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12569,'2019-03-03T08:51:30.369Z',NULL,45,1,118.0495173798411,7.08,205.79720167397156,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12570,'2019-09-09T08:23:41.756Z',NULL,93,7,49.81864156655383,2.99,48.38222309343892,1657); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12571,'2018-04-15T07:16:24.593Z',NULL,151,3,91.61302306843446,3.66,89.50787891588939,1658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12572,'2017-12-08T09:21:13.161Z',NULL,17,2,53.290720311951766,2.13,49.26731909854167,1658); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12573,'2019-06-11T19:53:14.773Z',8.803740956553046,60,69,29.80214751859149,1.19,25.677524775836336,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12574,'2018-09-02T15:21:09.902Z',NULL,198,4,70.14610686710009,2.81,55.00790396440909,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12575,'2019-10-26T23:41:11.783Z',NULL,20,6,37.32649625046575,1.49,38.773213809716175,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12576,'2018-04-04T14:59:51.917Z',NULL,40,3,99.66240044231697,3.99,133.83968198068445,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12577,'2019-06-12T00:17:37.789Z',NULL,176,4,57.92480943352658,2.32,41.63024288190092,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12578,'2017-03-18T10:53:15.714Z',NULL,18,1,54.60204747398195,2.18,66.01046757505871,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12579,'2018-04-22T02:04:25.001Z',NULL,97,3,112.41825444654248,4.5,144.32894176408763,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12580,'2017-11-22T15:13:50.388Z',NULL,29,2,82.3829881204479,3.3,60.76987189718591,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12581,'2020-03-28T20:02:40.191Z',NULL,150,1,128.55415037577922,5.14,104.36951339959909,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12582,'2019-10-10T16:52:12.058Z',NULL,196,4,70.14610686710009,2.81,86.7215662283728,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12583,'2018-05-10T22:18:33.281Z',NULL,171,3,105.07665741496471,4.2,88.22427818810975,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12584,'2018-05-26T18:52:13.066Z',NULL,98,4,112.41825444654248,4.5,183.61862839453195,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12585,'2017-12-25T06:36:51.168Z',NULL,185,2,26.384667225677738,1.06,21.920527058206147,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12586,'2018-08-22T01:10:13.605Z',NULL,70,5,57.493003808959784,2.3,84.04216478777484,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12587,'2017-10-22T01:51:29.943Z',NULL,62,5,89.0134841727878,3.56,113.8555799086069,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12588,'2018-10-24T00:38:27.507Z',NULL,49,7,131.42865839323724,5.26,191.93341808692315,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12589,'2019-03-27T06:45:22.411Z',NULL,17,1,79.93608046792765,3.2,95.9691740924904,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12590,'2020-01-23T05:51:47.331Z',NULL,64,2,143.4221774571866,5.74,90.60473220124906,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12591,'2019-01-15T06:40:27.220Z',NULL,93,2,49.81864156655383,1.99,30.387752330536753,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12592,'2019-06-19T15:58:43.019Z',NULL,147,6,66.64727121216615,2.67,65.88475100263368,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12593,'2018-10-04T09:11:27.578Z',NULL,200,5,73.20395711799151,2.93,83.74646990269407,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12594,'2018-05-19T06:47:56.273Z',NULL,70,3,57.493003808959784,2.3,46.767989419623746,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12595,'2020-01-31T19:30:35.776Z',NULL,159,1,35.53017445377361,1.42,19.19909047212727,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12596,'2017-11-01T22:47:42.390Z',NULL,172,2,81.57679953529707,3.26,49.972479966972266,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12597,'2018-07-14T23:30:06.755Z',NULL,49,5,131.42865839323724,5.26,74.21908139531939,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12598,'2019-02-19T03:38:33.601Z',NULL,193,2,50.38077396807232,2.02,85.84687909022432,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12599,'2019-05-21T04:37:44.341Z',NULL,165,4,38.30449564120193,1.53,62.20465866297683,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12600,'2018-08-08T19:44:21.371Z',NULL,75,9,125.81276373452337,5.03,155.30759594447278,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12601,'2017-06-22T06:10:54.732Z',NULL,16,8,44.07353303251545,1.76,69.17789058894826,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12602,'2018-10-19T05:53:10.210Z',7.768475884950793,146,7,126.04727121216614,5.04,142.51340377404424,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12603,'2018-02-08T21:05:06.423Z',NULL,153,2,66.79892314178237,2.67,40.507449774385705,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12604,'2019-04-01T15:06:07.154Z',NULL,70,37,57.493003808959784,2.3,64.78428024820681,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12605,'2018-11-23T21:53:08.855Z',3.2684758849507927,194,4,50.38077396807232,2.02,43.88845848955227,1660); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12606,'2017-10-13T21:13:56.914Z',NULL,19,5,42.67116731707548,1.71,71.45132128499644,1662); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12607,'2019-08-21T15:51:39.789Z',NULL,153,7,66.79892314178237,2.67,32.35627897632307,1662); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12608,'2018-04-26T15:31:16.902Z',NULL,159,3,35.53017445377361,1.42,32.09451267442273,1662); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12609,'2019-09-25T18:51:08.165Z',3.2684758849507927,108,3,50.094887884945365,2,32.80966953717277,1662); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12610,'2019-09-15T07:36:52.657Z',NULL,22,5,32.136779940663494,1.29,42.01203184555891,1662); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12611,'2019-10-15T23:55:36.586Z',NULL,63,5,133.5202262591817,8.01,71.27903105855425,1664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12612,'2019-04-15T23:42:58.494Z',NULL,168,2,118.93172693453273,7.14,75.44779902305629,1664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12613,'2018-01-20T23:08:39.125Z',NULL,14,1,37.648145389078365,2.26,64.05616921182491,1664); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12614,'2017-09-29T04:04:08.529Z',NULL,152,4,32.59712486600442,2.44,51.03861629618015,1665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12615,'2018-05-20T15:03:51.039Z',NULL,49,5,131.42865839323724,9.86,226.06972510599115,1665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12616,'2018-11-09T03:23:20.648Z',NULL,133,3,68.4819702983371,5.14,61.354491730732676,1665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12617,'2018-09-26T10:06:16.805Z',NULL,10,3,47.6793282102869,3.58,86.0822705840755,1665); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12618,'2019-08-06T12:49:18.360Z',NULL,55,4,95.77128575934437,0,104.16719632395095,1669); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12619,'2018-10-31T22:55:28.359Z',NULL,13,3,112.62925391105566,7.32,81.4615917966471,1670); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12620,'2017-08-08T07:28:07.558Z',NULL,181,4,95.92626913650741,6.24,138.2272190154553,1670); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12621,'2017-08-23T13:34:37.683Z',NULL,94,4,72.81242771103588,4.73,34.07169934732269,1670); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12622,'2017-05-22T07:13:11.219Z',NULL,99,4,45.22324323588729,2.94,54.3823632182976,1670); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12623,'2017-03-04T11:31:32.035Z',NULL,41,1,42.33927237126308,2.54,74.11598308501148,1671); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12624,'2017-08-07T11:06:25.385Z',NULL,66,6,90.77417514071306,0,70.50977140763912,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12625,'2019-07-22T19:27:48.866Z',NULL,122,4,99.84528328808108,0,94.75308184619021,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12626,'2017-04-24T16:05:04.324Z',NULL,191,3,85.72279013719552,0,145.93012387986911,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12627,'2018-07-30T20:28:14.534Z',NULL,13,4,112.62925391105566,0,63.075556243189226,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12628,'2018-11-21T06:05:11.960Z',6.746253812260385,7,3,148.22900526552291,0,249.76273658318254,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12629,'2018-02-22T11:20:22.311Z',NULL,137,1,67.77247956807186,0,59.163732001401875,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12630,'2016-08-02T13:37:33.149Z',NULL,98,4,74.94550296436165,0,104.86513136392126,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12631,'2019-11-15T12:10:39.380Z',NULL,12,3,116.01427581618326,0,73.68338324323018,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12632,'2017-01-31T11:53:06.653Z',NULL,103,2,31.361435038520785,0,52.092202105542874,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12633,'2017-11-19T22:47:12.757Z',NULL,127,3,89.65344209669612,0,75.94492581111648,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12634,'2020-03-16T00:34:26.019Z',NULL,4,1,110.98767151282252,0,146.82933804997595,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12635,'2018-04-18T16:32:41.351Z',NULL,29,3,123.57448218067185,0,118.27250145391656,1672); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12636,'2019-01-23T15:51:56.151Z',NULL,86,1,92.31436670850246,4.62,54.60601667431205,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12637,'2017-01-29T00:52:51.557Z',NULL,139,2,51.18512212784679,2.56,80.27545375666033,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12638,'2020-02-14T03:15:51.694Z',NULL,72,1,142.20381898788685,7.11,209.01546746134198,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12639,'2018-04-03T00:01:43.600Z',2.2462538122603846,6,3,97.43621265344382,4.87,134.43824778355193,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12640,'2016-10-23T06:51:10.193Z',NULL,22,6,21.42451996044233,1.07,14.652246317837665,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12641,'2016-12-01T02:00:16.904Z',NULL,112,22,27.55292434006023,1.38,34.59037236838494,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12642,'2020-01-26T11:41:13.477Z',NULL,115,2,77.91196471862148,3.9,115.5508417055494,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12643,'2016-09-29T20:46:52.577Z',6.746253812260385,22,42,21.42451996044233,1.07,36.82623251517541,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12644,'2018-05-27T16:43:00.259Z',NULL,130,2,75.02573869315137,3.75,45.181045968460175,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12645,'2017-08-22T19:32:13.914Z',NULL,97,6,74.94550296436165,3.75,60.71523620212958,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12646,'2017-04-09T14:24:27.009Z',NULL,65,2,45.4851315098001,2.27,18.846022671214612,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12647,'2018-08-20T02:03:03.772Z',NULL,78,4,41.616917284159726,2.08,60.735314998726096,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12648,'2017-04-26T22:05:52.739Z',NULL,23,2,77.91115072995538,3.9,51.46157010388092,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12649,'2018-02-06T01:23:59.701Z',NULL,138,1,113.95078476718615,5.7,90.15814244764424,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12650,'2017-03-28T01:10:26.855Z',NULL,55,1,63.84752383956291,3.19,60.41967157818767,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12651,'2019-09-01T23:15:19.204Z',NULL,3,5,53.08311732230858,2.65,77.8759795929795,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12652,'2017-09-07T03:44:12.515Z',NULL,109,5,79.36660712128732,3.97,50.77998336512942,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12653,'2018-04-17T04:17:40.829Z',NULL,10,3,47.6793282102869,2.38,68.04908136680716,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12654,'2016-11-24T04:56:36.848Z',NULL,117,2,36.683234169385244,1.83,19.81347066475189,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12655,'2018-06-20T17:20:37.600Z',1.9560213052952085,146,3,126.04727121216614,6.3,86.6853567129313,1673); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12656,'2017-05-14T11:59:02.393Z',NULL,44,2,50.90170136783837,2.04,77.60715728095172,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12657,'2020-04-03T18:27:09.383Z',NULL,163,2,33.56789820016516,1.34,33.72052145053043,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12658,'2017-02-15T14:19:09.582Z',NULL,175,2,78.21653962235106,3.13,78.84816187301274,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12659,'2019-05-10T17:59:53.905Z',NULL,41,3,63.50890855689462,2.54,94.84261983449707,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12660,'2017-04-03T00:27:29.980Z',NULL,153,2,44.532615427854914,1.78,38.66403755626068,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12661,'2017-05-16T19:09:20.155Z',NULL,95,3,33.212427711035886,1.33,20.13020676590629,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12662,'2018-04-08T23:01:18.117Z',NULL,145,2,61.1983004605443,2.45,48.89243299204814,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12663,'2019-11-19T06:01:42.285Z',NULL,55,2,95.77128575934437,3.83,119.46597003107365,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12664,'2019-04-30T00:34:12.448Z',NULL,95,2,49.81864156655383,1.99,60.42273931189383,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12665,'2017-03-15T17:37:34.091Z',NULL,82,1,40.59697158687298,1.62,64.63249452787025,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12666,'2018-02-08T02:20:34.699Z',NULL,22,1,32.136779940663494,1.29,48.35059884240814,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12667,'2019-04-03T05:47:45.945Z',NULL,58,2,78.14578007078882,3.13,83.36986256709008,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12668,'2018-09-20T05:40:08.428Z',NULL,57,4,122.4223933583994,4.9,136.39090965285038,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12669,'2019-11-23T03:53:11.937Z',NULL,119,2,43.43814329652384,1.74,62.19464011515176,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12670,'2018-03-06T14:12:51.486Z',NULL,48,1,123.20884248534108,4.93,165.0288823921729,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12671,'2019-03-17T10:45:08.990Z',1.9560213052952085,103,1,47.04215255778118,1.88,29.632989310352773,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12672,'2020-04-12T05:14:11.751Z',NULL,133,2,68.4819702983371,2.74,120.37993397661985,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12673,'2019-12-19T05:21:47.756Z',NULL,133,2,68.4819702983371,2.74,44.92829913864827,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12674,'2020-04-05T23:52:36.407Z',NULL,154,3,81.87529553312261,3.28,103.47317501744533,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12675,'2018-09-04T21:36:52.709Z',NULL,10,5,47.6793282102869,1.91,22.342322792735416,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12676,'2020-01-10T01:00:05.573Z',NULL,45,2,118.0495173798411,4.72,126.3611046594008,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12677,'2018-01-23T20:16:14.432Z',6.4560213052952085,101,2,139.82488066180403,5.59,204.49451883583606,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12678,'2020-01-07T08:41:23.718Z',NULL,175,2,117.3248094335266,4.69,86.90608878879097,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12679,'2019-12-27T20:15:42.755Z',1.9560213052952085,75,2,125.81276373452337,5.03,180.20191906368655,1674); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12680,'2018-07-20T07:26:19.253Z',NULL,103,5,47.04215255778118,2.82,53.231006918483935,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12681,'2018-06-24T00:10:47.312Z',NULL,183,5,56.697412301919755,3.4,54.68153580520404,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12682,'2019-05-03T12:01:55.894Z',NULL,14,3,37.648145389078365,2.26,20.872980952135492,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12683,'2017-10-23T12:04:41.510Z',3.6330495851414857,20,4,24.884330833643833,1.49,23.504193747328152,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12684,'2018-09-30T02:55:28.562Z',NULL,23,4,116.86672609493307,7.01,213.74063941118348,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12685,'2017-09-24T07:33:07.034Z',NULL,161,5,31.727470408648482,1.9,24.273396923696218,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12686,'2018-09-02T09:55:22.212Z',NULL,154,5,81.87529553312261,4.91,83.88938878772785,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12687,'2019-06-04T23:14:38.679Z',NULL,75,6,125.81276373452337,7.55,106.21827617895651,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12688,'2019-12-22T05:52:13.591Z',NULL,104,2,106.44215255778118,6.39,112.41008299425718,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12689,'2018-06-01T21:18:28.913Z',3.6330495851414857,7,6,148.22900526552291,8.89,154.14254668559482,1675); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12690,'2018-02-10T23:19:51.644Z',NULL,42,2,38.00410713690931,2.66,30.120912162144336,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12691,'2019-06-19T17:42:42.737Z',NULL,150,8,128.55415037577922,9,96.72701717080618,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12692,'2018-11-30T07:20:02.496Z',NULL,141,3,126.20312547576883,8.83,133.51486114450594,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12693,'2018-04-04T18:48:33.659Z',NULL,23,3,116.86672609493307,8.18,147.99082052616592,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12694,'2019-06-10T22:25:35.702Z',NULL,169,8,59.53172693453274,4.17,104.02947938643752,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12695,'2020-03-14T16:54:40.039Z',NULL,96,1,104.82144858590365,7.34,151.34723830496088,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12696,'2017-03-14T14:25:42.119Z',8.133049585141485,44,1,50.90170136783837,3.56,76.67537914788755,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12697,'2018-08-08T05:42:26.760Z',NULL,178,7,117.32963250370614,8.21,151.59363031949874,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12698,'2019-11-07T03:24:06.727Z',NULL,149,3,69.15415037577924,4.84,108.92373155244667,1676); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12699,'2019-02-15T19:31:40.411Z',8.133049585141485,175,2,117.3248094335266,6.75,173.83069103982737,1678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12700,'2020-04-17T21:57:13.376Z',NULL,175,3,117.3248094335266,6.75,79.08599386122323,1678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12701,'2018-05-08T07:06:57.797Z',NULL,126,4,125.24398120308456,7.2,117.05386076181682,1678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12702,'2019-07-01T04:21:17.642Z',NULL,103,6,47.04215255778118,2.7,77.4275991880973,1678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12703,'2018-10-11T13:04:51.012Z',NULL,87,6,117.25536340498041,6.74,142.0566359342885,1678); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12704,'2018-11-02T10:55:30.849Z',NULL,6,2,97.43621265344382,2.83,108.00206846914367,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12705,'2017-08-08T21:21:07.652Z',NULL,90,5,82.07974183693327,2.38,128.63894334180932,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12706,'2019-12-02T07:55:32.017Z',NULL,69,2,73.38772304360626,2.13,51.629536141461195,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12707,'2018-04-23T19:05:55.510Z',NULL,103,4,47.04215255778118,1.36,24.011756443180353,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12708,'2019-07-07T05:36:39.850Z',3.6330495851414857,99,6,67.83486485383094,1.97,93.27878543439151,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12709,'2019-05-22T13:14:51.073Z',NULL,115,6,77.91196471862148,2.26,55.900328416180216,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12710,'2019-02-06T00:03:47.306Z',NULL,42,2,38.00410713690931,1.1,53.720958343543394,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12711,'2017-06-10T21:05:39.800Z',NULL,160,6,31.727470408648482,0.92,36.99527249643417,1680); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12712,'2019-08-22T09:52:49.452Z',NULL,136,7,105.20402317157343,6.31,83.66322856586467,1681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12713,'2017-11-13T18:15:51.963Z',NULL,38,4,44.04624855892918,2.64,21.06118578387975,1681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12714,'2018-09-24T19:54:42.876Z',NULL,130,5,75.02573869315137,4.5,93.49165331742992,1681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12715,'2019-01-07T04:53:42.586Z',NULL,58,2,78.14578007078882,4.69,117.76928179590854,1681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12716,'2019-10-09T07:43:32.817Z',2.2081126890009584,121,6,40.44528328808107,2.43,28.945605504625647,1681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12717,'2019-11-26T17:08:01.460Z',NULL,153,3,66.79892314178237,4.01,84.85009280567186,1681); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12718,'2018-08-27T14:53:37.772Z',NULL,28,4,68.12471180754113,0,65.21691220983043,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12719,'2018-11-03T22:06:51.465Z',NULL,18,2,81.90307121097293,0,110.44423926719406,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12720,'2019-05-23T21:21:20.784Z',2.2081126890009584,8,4,98.83823503993958,0,150.21734077055197,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12721,'2018-11-25T22:14:48.033Z',NULL,20,3,37.32649625046575,0,29.861266969279594,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12722,'2018-03-02T06:35:03.537Z',NULL,175,1,117.3248094335266,0,152.93693823766128,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12723,'2018-09-08T16:02:15.402Z',NULL,112,6,41.329386510090345,0,30.66249337400243,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12724,'2019-06-04T12:16:48.468Z',NULL,7,5,148.22900526552291,0,137.79000468063836,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12725,'2018-12-27T17:28:16.541Z',NULL,99,2,67.83486485383094,0,66.11434256111129,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12726,'2017-03-15T18:52:34.980Z',NULL,10,1,31.78621880685793,0,31.80007981620974,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12727,'2017-05-24T14:18:45.431Z',NULL,27,4,85.01647453836077,0,59.7489381022247,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12728,'2020-03-24T22:07:02.163Z',NULL,13,1,112.62925391105566,0,109.85082766728006,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12729,'2016-08-24T06:37:08.604Z',NULL,51,6,50.433725012700116,0,37.310400380507964,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12730,'2017-02-20T13:21:19.403Z',2.2081126890009584,105,2,35.149014295079674,0,35.69086172502432,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12731,'2019-06-21T13:33:59.322Z',NULL,143,7,61.1983004605443,0,73.09341191634901,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12732,'2017-10-04T23:01:51.137Z',NULL,131,5,75.41148135558485,0,57.734328377901164,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12733,'2019-07-06T06:46:18.386Z',6.708112689000958,40,4,99.66240044231697,0,96.75334947598051,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12734,'2019-04-12T16:13:03.126Z',NULL,79,3,41.616917284159726,0,29.376173492066584,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12735,'2018-01-08T07:03:33.423Z',NULL,163,2,33.56789820016516,0,55.03055651225764,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12736,'2019-12-03T05:21:10.793Z',NULL,95,2,49.81864156655383,0,43.361925402171984,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12737,'2017-11-13T04:35:54.520Z',NULL,165,3,25.536330427467956,0,20.279258749162334,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12738,'2019-12-14T07:37:07.423Z',NULL,200,2,73.20395711799151,0,32.65720541146942,1682); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12739,'2020-02-17T17:08:03.668Z',NULL,200,1,73.20395711799151,4.39,44.10876136861046,1683); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12740,'2017-12-01T06:12:40.101Z',NULL,122,1,66.56352219205405,2.66,71.93538368989365,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12741,'2017-11-05T19:37:15.785Z',NULL,33,3,31.829909130640935,1.27,27.964729918914447,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12742,'2017-06-02T19:34:11.354Z',2.2081126890009584,33,7,31.829909130640935,1.27,49.6291782663301,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12743,'2020-02-17T18:52:19.376Z',NULL,195,1,109.78077396807234,4.39,110.54882065922575,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12744,'2018-02-16T18:08:09.240Z',NULL,140,1,66.80312547576881,2.67,73.70599781436101,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12745,'2017-10-08T16:42:22.076Z',NULL,24,5,74.87095783152942,2.99,55.38071071328774,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12746,'2018-04-10T23:42:35.031Z',NULL,132,3,127.88197029833711,5.12,152.66593556515085,1684); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12747,'2017-08-05T03:50:23.062Z',NULL,172,6,81.57679953529707,5.71,141.91292306367444,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12748,'2019-07-29T03:54:01.190Z',NULL,67,4,41.24480890795779,2.89,43.14250352009765,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12749,'2016-10-06T02:54:55.947Z',NULL,9,5,58.31312098526137,4.08,48.13420189458316,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12750,'2018-08-31T14:44:06.734Z',NULL,161,6,47.59120561297272,3.33,63.882368993451976,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12751,'2019-02-18T14:44:30.656Z',NULL,44,1,76.35255205175756,5.34,117.79887992645199,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12752,'2018-09-23T12:11:06.056Z',NULL,126,4,125.24398120308456,8.77,120.4697021274999,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12753,'2017-09-10T19:14:50.450Z',NULL,170,6,70.05110494330981,4.9,87.8315523366233,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12754,'2020-01-25T15:30:44.249Z',NULL,191,2,128.5841852057933,9,191.39827182315778,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12755,'2019-08-18T20:29:54.188Z',NULL,150,4,128.55415037577922,9,63.107464809715054,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12756,'2018-09-29T16:58:39.850Z',6.720475761463053,192,4,69.18418520579327,4.84,50.482682880797775,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12757,'2020-01-03T03:02:20.293Z',NULL,174,2,111.61430894181083,7.81,92.42025893704647,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12758,'2017-09-12T19:15:02.240Z',NULL,139,3,51.18512212784679,3.58,27.254601609123284,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12759,'2017-05-31T05:48:13.447Z',NULL,156,2,20.41053609936413,1.43,35.42767079063419,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12760,'2017-06-01T06:06:31.724Z',NULL,143,4,40.7988669736962,2.86,50.16853419617699,1686); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12761,'2018-09-30T07:58:02.427Z',NULL,195,3,109.78077396807234,4.94,139.98525928911505,1687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12762,'2016-12-06T03:40:16.223Z',NULL,51,1,50.433725012700116,2.27,20.833607401143627,1687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12763,'2017-09-20T19:14:29.708Z',NULL,43,4,50.90170136783837,2.29,32.104178250589925,1687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12764,'2017-10-02T20:56:46.796Z',NULL,164,5,61.978598800110106,2.79,29.892773628349275,1687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12765,'2018-09-18T00:29:02.658Z',NULL,110,3,55.526746186906664,2.5,49.51770881938243,1687); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12766,'2018-11-29T10:13:35.144Z',NULL,83,2,81.87627832636537,5.12,146.4696652203574,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12767,'2018-10-27T06:24:49.936Z',2.2204757614630535,86,5,92.31436670850246,5.77,63.83561262720886,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12768,'2017-05-28T03:10:03.191Z',NULL,74,4,34.08536151591033,2.13,42.06479414741844,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12769,'2017-04-01T12:08:24.710Z',NULL,15,3,25.09876359271891,1.57,44.202102416522685,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12770,'2019-07-15T09:55:52.703Z',NULL,23,4,116.86672609493307,7.3,111.49696959923618,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12771,'2020-01-07T02:47:26.659Z',NULL,22,1,32.136779940663494,2.01,48.52745577352814,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12772,'2018-06-15T15:31:04.051Z',NULL,140,4,66.80312547576881,4.18,100.29586952173075,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12773,'2017-08-06T07:51:45.457Z',NULL,192,6,46.122790137195516,2.88,71.39420650078355,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12774,'2019-06-09T15:37:12.653Z',NULL,51,7,75.65058751905018,4.73,46.719237458404116,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12775,'2019-04-01T11:02:51.670Z',NULL,149,3,69.15415037577924,4.32,43.493709767833394,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12776,'2019-07-07T00:27:58.665Z',6.720475761463053,89,4,63.719612755399886,3.98,89.99107774247253,1688); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12777,'2020-03-15T07:39:21.698Z',NULL,141,1,126.20312547576883,5.99,67.26819982569488,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12778,'2019-10-14T08:29:31.485Z',NULL,84,3,81.87627832636537,3.89,96.2660896958654,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12779,'2018-05-01T16:15:46.922Z',NULL,87,2,117.25536340498041,5.57,75.15144617607403,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12780,'2019-03-16T12:09:42.616Z',6.720475761463053,57,1,122.4223933583994,5.82,144.63777198033287,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12781,'2018-10-07T08:29:59.339Z',NULL,103,5,47.04215255778118,2.23,70.83666877966863,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12782,'2017-06-12T10:44:48.241Z',2.2204757614630535,197,4,46.76407124473339,2.22,23.611655658347836,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12783,'2018-04-10T09:54:47.818Z',NULL,170,3,105.07665741496471,4.99,167.78924579697363,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12784,'2018-12-27T19:38:05.565Z',8.754989436987753,94,2,109.21864156655383,5.19,92.54795172897137,1689); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12785,'2019-06-10T04:53:05.862Z',NULL,124,7,110.93145648834248,5.55,119.16313974659967,1690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12786,'2018-02-17T20:48:09.118Z',NULL,94,1,109.21864156655383,5.46,180.36841976546725,1690); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12787,'2017-09-16T20:55:13.050Z',4.254989436987754,36,5,87.29125153827623,6.11,78.03040417830687,1692); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12788,'2020-04-11T15:46:33.968Z',8.754989436987753,3,3,53.08311732230858,3.72,30.013194203406858,1692); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12789,'2018-02-28T15:31:49.534Z',NULL,73,2,71.6287722595695,4.01,40.17828334059875,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12790,'2018-08-12T12:53:31.521Z',NULL,127,8,134.48016314504417,7.53,193.4837261580941,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12791,'2019-09-02T05:04:24.888Z',NULL,13,4,112.62925391105566,6.31,148.65886353012573,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12792,'2017-02-25T23:40:14.905Z',NULL,110,2,37.01783079127111,2.07,47.96382017932927,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12793,'2018-12-16T07:51:44.657Z',NULL,123,3,110.93145648834248,6.21,149.87488887098993,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12794,'2018-06-22T11:51:30.694Z',NULL,52,9,103.67587240151535,5.81,79.8117707130862,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12795,'2019-01-13T19:52:11.517Z',NULL,33,3,47.7448636959614,2.67,58.04463671449112,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12796,'2019-06-02T05:46:43.237Z',NULL,129,9,148.1672972165937,8.3,222.91613185006833,1693); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12797,'2020-04-15T00:12:11.216Z',NULL,94,4,109.21864156655383,5.46,168.7493321660208,1694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12798,'2019-02-15T19:18:46.620Z',NULL,107,2,50.094887884945365,2.5,42.88803676494123,1694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12799,'2019-03-12T15:59:52.260Z',NULL,20,1,37.32649625046575,1.87,37.69901000524585,1694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12800,'2017-08-09T05:32:15.044Z',NULL,61,8,15.691943673970439,0.78,25.78950610237772,1694); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12801,'2016-08-07T12:11:06.348Z',NULL,87,8,78.17024226998694,5.08,127.7495286705486,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12802,'2018-05-22T17:56:24.361Z',NULL,101,4,139.82488066180403,9.09,251.49319369300426,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12803,'2016-09-23T11:32:36.150Z',NULL,95,4,33.212427711035886,2.16,22.723049945955196,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12804,'2017-01-15T15:29:49.125Z',NULL,134,2,28.328223666657742,1.84,16.88257980742858,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12805,'2018-01-01T13:44:05.035Z',NULL,149,2,69.15415037577924,4.5,127.04407735314544,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12806,'2018-02-24T05:13:17.146Z',8.754989436987753,151,2,91.61302306843446,5.95,39.950721043164336,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12807,'2016-08-20T19:11:48.995Z',NULL,176,9,38.616539622351056,2.51,33.86717004417788,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12808,'2017-07-18T18:22:04.509Z',8.754989436987753,123,7,73.95430432556165,4.81,85.76603183863485,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12809,'2018-08-05T17:18:02.346Z',NULL,74,8,51.12804227386549,3.32,22.627941621485796,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12810,'2018-01-26T15:18:19.401Z',4.254989436987754,80,2,54.91325681036414,3.57,101.31583549803256,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12811,'2017-12-05T00:01:49.107Z',NULL,181,2,95.92626913650741,6.24,111.68615091049709,1695); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12812,'2019-03-23T23:37:29.017Z',NULL,130,1,75.02573869315137,5.25,104.37680513448629,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12813,'2019-12-20T21:52:34.802Z',NULL,66,3,136.16126271106958,9.53,91.17836373276025,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12814,'2020-03-12T17:10:30.809Z',NULL,97,1,112.41825444654248,7.87,61.94106156636654,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12815,'2018-05-31T11:00:30.853Z',4.254989436987754,11,6,132.45679913492563,9.27,153.5064920126803,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12816,'2019-07-25T05:47:51.462Z',NULL,106,5,52.723521442619514,3.69,92.68199124697368,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12817,'2019-07-29T10:29:35.780Z',NULL,102,4,47.04215255778118,3.29,22.980684969267312,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12818,'2020-02-06T08:28:59.998Z',NULL,78,1,41.616917284159726,2.91,53.599767580616884,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12819,'2019-04-25T04:41:52.727Z',NULL,156,1,30.615804149046195,2.14,43.78316102796624,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12820,'2019-05-27T10:54:35.169Z',NULL,144,2,61.1983004605443,4.28,112.50158537897697,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12821,'2018-01-20T11:40:42.200Z',NULL,78,1,41.616917284159726,2.91,75.70993662409049,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12822,'2019-02-20T03:37:41.934Z',NULL,72,2,142.20381898788685,9.95,161.99965012731647,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12823,'2018-09-10T14:22:37.102Z',NULL,54,5,62.09360840402396,4.35,102.0904974881941,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12824,'2017-05-25T13:59:12.583Z',NULL,92,3,83.2616179105333,5.83,85.29281265155713,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12825,'2018-11-20T01:09:58.607Z',0.8165822107560627,150,2,128.55415037577922,9,210.71018269251175,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12826,'2020-04-16T15:08:36.901Z',NULL,197,3,70.14610686710009,4.91,122.80796646294101,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12827,'2019-09-12T01:08:23.271Z',NULL,35,3,71.53687730741436,5.01,61.24340641416242,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12828,'2019-02-18T19:38:42.662Z',NULL,175,1,117.3248094335266,8.21,169.81767018297987,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12829,'2018-08-21T09:38:34.436Z',NULL,128,5,75.08016314504417,5.26,91.81039855977559,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12830,'2017-06-15T11:25:09.116Z',NULL,178,6,78.21975500247076,5.48,127.88967191074006,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12831,'2019-01-27T14:01:23.873Z',NULL,182,1,84.48940370476112,5.91,59.72506451325596,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12832,'2019-10-27T20:37:49.537Z',NULL,182,4,84.48940370476112,5.91,154.44671051067942,1696); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12833,'2019-08-03T07:49:25.631Z',NULL,75,7,125.81276373452337,9.44,88.06262352742657,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12834,'2017-07-17T13:15:00.450Z',NULL,25,5,45.7484264478831,3.43,75.901420251336,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12835,'2020-04-08T21:26:37.765Z',NULL,103,3,47.04215255778118,3.53,74.76179249387815,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12836,'2019-06-09T19:29:46.367Z',NULL,14,6,37.648145389078365,2.82,44.02721770244475,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12837,'2018-06-15T21:58:54.548Z',NULL,79,6,41.616917284159726,3.12,71.86616688728964,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12838,'2018-07-09T11:23:39.201Z',NULL,131,5,113.11722203337729,8.48,63.98971258410036,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12839,'2020-01-13T20:11:46.205Z',NULL,189,1,93.27738254731509,7,156.92584376779487,1697); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12840,'2019-11-03T04:56:36.061Z',NULL,193,2,50.38077396807232,3.15,71.90104576040093,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12841,'2017-07-26T23:02:47.035Z',NULL,200,3,48.802638078661005,3.05,30.458600809637485,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12842,'2018-06-14T14:54:34.956Z',0.8165822107560627,158,4,139.8942352373801,8.74,211.46844632535343,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12843,'2019-04-29T16:21:41.242Z',5.316582210756063,59,2,89.20214751859149,5.58,55.833018039008465,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12844,'2017-12-08T12:08:35.089Z',NULL,178,1,78.21975500247076,4.89,75.62518229645543,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12845,'2018-01-06T14:33:36.969Z',5.316582210756063,95,2,49.81864156655383,3.11,33.366672186631135,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12846,'2017-11-28T23:46:03.182Z',NULL,50,2,35.76013077879841,2.24,51.066950525758564,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12847,'2018-07-20T07:04:38.211Z',NULL,70,3,57.493003808959784,3.59,47.9480734177048,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12848,'2019-02-15T23:00:08.604Z',NULL,31,1,105.65346467128523,6.6,47.260270900688546,1698); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12849,'2017-06-03T12:24:11.932Z',NULL,199,3,76.95334253952366,4.62,114.18290926559021,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12850,'2018-05-22T21:43:20.406Z',NULL,124,3,110.93145648834248,6.66,135.32684113855393,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12851,'2019-02-04T09:34:59.678Z',NULL,104,2,106.44215255778118,6.39,80.88064991119121,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12852,'2018-05-05T12:18:29.098Z',NULL,166,6,38.30449564120193,2.3,27.60145315905169,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12853,'2019-09-07T06:55:53.817Z',NULL,54,5,62.09360840402396,3.73,26.165284925521792,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12854,'2019-02-27T20:24:11.067Z',NULL,87,2,117.25536340498041,7.04,146.96560494226765,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12855,'2019-05-29T13:59:22.506Z',NULL,195,5,109.78077396807234,6.59,67.09673968658136,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12856,'2018-11-01T10:49:19.926Z',NULL,74,3,51.12804227386549,3.07,33.03687193204912,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12857,'2019-12-23T06:27:49.535Z',NULL,60,3,29.80214751859149,1.79,38.1509364353301,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12858,'2018-09-24T17:01:47.820Z',NULL,132,7,127.88197029833711,7.67,84.3378556645324,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12859,'2020-01-11T15:10:55.123Z',NULL,166,3,38.30449564120193,2.3,67.91842560666754,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12860,'2018-09-28T00:50:36.157Z',4.276096799879353,152,5,48.89568729900663,2.93,62.04739865698799,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12861,'2017-06-11T04:00:19.783Z',4.276096799879353,13,7,75.0861692740371,4.51,86.7376493559532,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12862,'2018-10-12T11:26:36.896Z',NULL,88,8,105.41292031622555,6.32,134.02447292598495,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12863,'2018-11-25T06:20:36.119Z',NULL,104,4,106.44215255778118,6.39,100.9169507861865,1700); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12864,'2018-10-27T18:23:07.195Z',NULL,46,6,118.0495173798411,7.38,86.80202575465813,1701); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12865,'2017-12-18T20:04:08.136Z',NULL,197,2,46.76407124473339,2.34,73.94616046843598,1702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12866,'2017-07-20T05:05:31.762Z',NULL,15,7,25.09876359271891,1.25,30.71342266610264,1702); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12867,'2018-03-25T10:12:07.849Z',NULL,172,1,122.3651993029456,7.95,202.88434280448442,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12868,'2019-02-17T04:16:46.323Z',NULL,57,2,122.4223933583994,7.96,54.63206285119764,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12869,'2020-02-13T23:28:08.829Z',NULL,21,2,60.57501609456816,3.94,40.36310380305795,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12870,'2018-08-10T06:55:30.177Z',NULL,28,8,68.12471180754113,4.43,59.053953990614794,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12871,'2020-04-17T16:23:51.534Z',NULL,192,2,69.18418520579327,4.5,107.4768477329649,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12872,'2018-10-04T09:56:42.571Z',NULL,87,5,117.25536340498041,7.62,87.94418297618402,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12873,'2019-02-20T21:36:40.761Z',NULL,156,1,30.615804149046195,1.99,53.81427190601309,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12874,'2020-04-05T21:37:34.562Z',NULL,139,3,76.77768319177018,4.99,121.43386129187232,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12875,'2019-06-04T03:10:38.132Z',NULL,112,7,41.329386510090345,2.69,29.886281712504864,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12876,'2018-06-22T15:37:22.356Z',NULL,132,7,127.88197029833711,8.31,81.6954989170357,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12877,'2019-12-15T21:32:04.497Z',NULL,159,2,35.53017445377361,2.31,25.881767323208294,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12878,'2018-07-20T12:55:52.384Z',8.776096799879353,152,5,48.89568729900663,3.18,88.31961972052345,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12879,'2018-08-16T16:56:07.648Z',NULL,73,8,71.6287722595695,4.66,66.6052911715393,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12880,'2019-07-03T12:39:18.422Z',NULL,42,4,38.00410713690931,2.47,55.41848121905666,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12881,'2019-05-21T20:03:14.912Z',NULL,121,4,40.44528328808107,2.63,74.88796907098381,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12882,'2017-01-23T09:52:15.121Z',4.276096799879353,13,2,75.0861692740371,4.88,112.71956624804281,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12883,'2017-11-12T22:05:25.575Z',NULL,180,3,45.549391048892794,2.96,45.04776310217688,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12884,'2019-09-08T12:35:21.127Z',NULL,76,5,63.82421061366486,4.15,91.38740967666878,1703); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12885,'2019-05-03T01:06:28.202Z',NULL,20,6,37.32649625046575,1.77,54.907810541914266,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12886,'2017-08-13T08:57:02.014Z',NULL,61,9,15.691943673970439,0.75,10.341954103485069,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12887,'2018-12-27T04:58:04.934Z',NULL,154,3,81.87529553312261,3.89,55.20217514413641,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12888,'2019-02-17T08:47:08.349Z',NULL,162,2,33.56789820016516,1.59,48.88764503270024,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12889,'2017-10-24T06:17:37.259Z',8.324442762605162,175,6,78.21653962235106,3.72,46.98460598971377,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12890,'2019-02-01T14:35:35.588Z',8.324442762605162,88,1,105.41292031622555,5.01,114.76953291117773,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12891,'2018-12-15T20:40:04.271Z',NULL,87,2,117.25536340498041,5.57,214.04751031545644,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12892,'2019-07-13T10:52:07.113Z',3.8244427626051634,77,5,101.01691728415972,4.8,53.20312773474102,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12893,'2019-01-28T23:51:10.582Z',NULL,86,2,92.31436670850246,4.38,38.55112179206439,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12894,'2017-10-27T05:28:58.290Z',NULL,186,6,65.98466722567774,3.13,105.29761709445823,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12895,'2019-10-17T13:06:49.454Z',NULL,2,7,105.11984419607644,4.99,188.17615307827433,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12896,'2019-03-08T18:10:26.345Z',NULL,38,1,66.06937283839378,3.14,70.62480299060228,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12897,'2018-10-23T16:11:01.517Z',NULL,43,4,76.35255205175756,3.63,34.047599452197424,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12898,'2018-06-20T02:01:54.660Z',NULL,161,5,47.59120561297272,2.26,51.390701796157856,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12899,'2019-05-15T02:15:35.540Z',NULL,128,3,75.08016314504417,3.57,81.56226943766752,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12900,'2018-11-13T19:09:43.477Z',NULL,135,2,45.80402317157342,2.18,26.015004655824555,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12901,'2018-11-30T17:22:12.841Z',NULL,62,2,133.5202262591817,6.34,157.2548053279136,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12902,'2017-09-26T00:36:46.421Z',NULL,130,5,50.01715912876758,2.38,89.90452484261414,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12903,'2017-09-16T13:04:44.869Z',NULL,200,6,48.802638078661005,2.32,32.444875903955854,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12904,'2017-02-06T21:53:26.346Z',NULL,38,2,44.04624855892918,2.09,66.77044237807132,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12905,'2017-10-30T20:28:44.761Z',3.8244427626051634,126,6,83.49598746872304,3.97,38.607004845776565,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12906,'2019-08-26T03:29:29.499Z',NULL,182,7,84.48940370476112,4.01,44.73369727054048,1704); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12907,'2018-03-21T07:39:29.413Z',NULL,136,1,105.20402317157343,7.89,181.46891501827392,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12908,'2019-01-24T00:07:27.950Z',NULL,50,2,53.64019616819762,4.02,27.248195151522996,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12909,'2020-03-08T12:55:24.865Z',NULL,141,1,126.20312547576883,9.47,222.4973153157814,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12910,'2020-03-11T19:14:46.948Z',NULL,132,1,127.88197029833711,9.59,190.5530369414047,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12911,'2018-11-03T06:19:16.083Z',NULL,81,3,43.9329842322118,3.29,59.47347349467578,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12912,'2018-03-01T05:24:00.643Z',3.8244427626051634,153,1,66.79892314178237,5.01,60.91345237390009,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12913,'2018-10-15T21:07:03.962Z',NULL,94,6,109.21864156655383,8.19,84.6479966476216,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12914,'2016-11-14T21:15:41.664Z',NULL,15,4,25.09876359271891,1.88,10.966499922221521,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12915,'2019-04-10T06:57:45.731Z',NULL,141,3,126.20312547576883,9.47,57.03503867111765,1705); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12916,'2017-07-23T13:21:50.805Z',8.324442762605162,170,4,70.05110494330981,3.33,33.85610881303758,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12917,'2020-04-07T22:58:01.635Z',NULL,137,3,67.77247956807186,3.22,74.87491538180109,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12918,'2016-07-31T11:23:37.548Z',NULL,105,6,35.149014295079674,1.67,55.86227432568351,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12919,'2020-03-09T07:56:22.692Z',NULL,157,1,139.8942352373801,6.64,225.75327593475444,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12920,'2018-10-31T04:32:57.604Z',4.185370698958818,155,4,43.77574310182776,2.08,32.15886561987362,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12921,'2019-04-24T20:15:02.406Z',NULL,111,3,55.526746186906664,2.64,56.947423365085065,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12922,'2018-07-07T08:58:30.276Z',NULL,11,5,132.45679913492563,6.29,170.36832758663581,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12923,'2020-01-06T03:00:17.010Z',8.685370698958817,179,2,68.32408657333919,3.25,37.24242150561162,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12924,'2019-09-01T07:08:04.823Z',NULL,108,67,50.094887884945365,2.38,67.55526994932146,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12925,'2018-07-07T03:31:33.902Z',NULL,167,7,97.70449564120193,4.64,91.31579043007632,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12926,'2018-07-06T08:37:20.820Z',NULL,94,5,109.21864156655383,5.19,166.89805879929702,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12927,'2018-10-28T16:37:35.781Z',NULL,164,5,92.96789820016517,4.42,90.39908457484331,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12928,'2018-08-07T13:47:37.619Z',NULL,197,6,70.14610686710009,3.33,38.61459654395514,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12929,'2018-04-17T08:39:03.479Z',NULL,180,2,68.32408657333919,3.25,99.5297420187766,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12930,'2019-08-05T17:33:53.630Z',NULL,23,8,116.86672609493307,5.55,106.14809042791856,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12931,'2017-05-29T19:24:53.601Z',NULL,56,6,24.24752383956291,1.15,40.01725937364564,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12932,'2020-02-01T11:10:10.971Z',NULL,29,2,123.57448218067185,5.87,222.51392241476023,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12933,'2018-10-08T20:25:35.532Z',NULL,77,6,101.01691728415972,4.8,92.84436090125767,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12934,'2018-09-30T16:19:49.315Z',NULL,102,5,47.04215255778118,2.23,32.92518985794909,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12935,'2018-08-10T00:08:20.807Z',NULL,127,8,134.48016314504417,6.39,153.02034648550406,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12936,'2017-05-15T09:23:20.775Z',NULL,162,3,22.378598800110105,1.06,19.46937125377736,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12937,'2017-12-27T12:20:17.438Z',NULL,73,2,47.752514839713,2.27,59.991451302499215,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12938,'2018-04-30T05:53:07.724Z',NULL,107,2,50.094887884945365,2.38,78.00238643140587,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12939,'2018-03-12T15:04:36.709Z',NULL,112,1,41.329386510090345,1.96,55.157591906267314,1706); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12940,'2018-05-11T16:26:12.284Z',NULL,64,5,143.4221774571866,5.74,208.78883506679247,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12941,'2017-12-01T11:53:56.099Z',NULL,84,2,54.58418555091025,2.18,80.24417530565525,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12942,'2017-09-08T15:57:03.459Z',NULL,165,5,25.536330427467956,1.02,34.22018641270439,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12943,'2019-07-24T11:28:11.252Z',NULL,165,5,38.30449564120193,1.53,23.277003045909986,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12944,'2018-03-10T06:29:31.446Z',NULL,92,1,124.89242686579996,5,179.1003760420557,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12945,'2018-05-16T15:39:57.490Z',NULL,55,5,95.77128575934437,3.83,64.41233582182169,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12946,'2019-11-28T12:14:14.296Z',NULL,133,2,68.4819702983371,2.74,109.3945182424039,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12947,'2019-03-16T13:35:32.329Z',NULL,183,1,56.697412301919755,2.27,87.25268829713512,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12948,'2020-04-09T10:15:26.157Z',NULL,84,2,81.87627832636537,3.28,54.82225169154562,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12949,'2017-05-27T01:02:18.314Z',NULL,114,5,51.94130981241432,2.08,31.22332639269066,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12950,'2018-10-29T15:58:37.249Z',NULL,28,6,68.12471180754113,2.72,116.92562648735786,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12951,'2017-01-23T06:08:55.355Z',NULL,20,2,24.884330833643833,1,28.441592976222932,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12952,'2020-03-02T20:47:48.401Z',4.185370698958818,54,1,62.09360840402396,2.48,95.29466522363553,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12953,'2018-11-21T08:50:13.909Z',4.185370698958818,132,2,127.88197029833711,5.12,147.2500475496342,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12954,'2017-11-29T14:44:38.198Z',NULL,54,2,41.395738936015974,1.66,17.639032402469084,1708); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12955,'2018-10-31T19:43:09.294Z',NULL,185,5,39.57700083851661,2.37,43.035414159349514,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12956,'2017-11-17T17:11:45.898Z',9.099440957951515,80,3,36.60883787357609,2.2,49.54272076008493,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12957,'2017-07-18T11:46:27.846Z',9.099440957951515,68,4,76.82895921539838,4.61,111.5523048243432,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12958,'2017-10-24T23:57:46.255Z',NULL,185,5,26.384667225677738,1.58,41.11604490530812,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12959,'2018-02-09T08:20:36.312Z',NULL,2,1,105.11984419607644,6.31,183.85672037332859,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12960,'2020-03-17T14:46:40.477Z',NULL,60,1,29.80214751859149,1.79,34.619040955134366,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12961,'2018-12-10T07:44:18.902Z',NULL,59,2,89.20214751859149,5.35,132.04492131375477,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12962,'2018-06-09T11:57:57.383Z',NULL,45,9,118.0495173798411,7.08,107.1342081093173,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12963,'2019-10-14T14:51:05.622Z',NULL,62,6,133.5202262591817,8.01,209.2337160935662,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12964,'2019-04-13T22:07:09.713Z',4.599440957951516,129,3,148.1672972165937,8.89,91.79531216827027,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12965,'2019-12-26T04:15:22.737Z',NULL,87,3,117.25536340498041,7.04,142.44570710586277,1709); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12966,'2020-03-13T20:46:20.077Z',9.099440957951515,144,1,61.1983004605443,0,77.3982240675657,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12967,'2019-02-03T01:16:46.523Z',NULL,192,2,69.18418520579327,0,33.52949052071151,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12968,'2019-08-29T16:48:47.864Z',9.099440957951515,162,8,33.56789820016516,0,20.284963619167335,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12969,'2017-12-01T09:48:57.009Z',NULL,53,2,29.517248267676894,0,29.57706546374004,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12970,'2019-08-12T21:48:49.693Z',NULL,48,8,123.20884248534108,0,178.3426728347184,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12971,'2019-03-02T22:59:04.924Z',NULL,2,1,105.11984419607644,0,158.82569556531092,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12972,'2018-12-15T07:32:58.084Z',NULL,137,2,67.77247956807186,0,78.97954363919565,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12973,'2019-01-24T07:55:20.614Z',4.599440957951516,97,2,112.41825444654248,0,42.908798733889704,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12974,'2019-09-15T23:38:07.379Z',NULL,147,4,66.64727121216615,0,59.19036836368345,1710); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12975,'2017-10-15T04:32:37.338Z',NULL,199,6,76.95334253952366,4.62,93.02949283718777,1711); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12976,'2018-06-14T18:56:20.099Z',NULL,32,9,107.1448636959614,6.43,150.31619755086965,1711); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12977,'2016-11-22T15:43:18.305Z',NULL,194,4,33.587182645381546,2.02,22.323752885576944,1711); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12978,'2019-08-18T08:34:22.917Z',NULL,191,10,128.5841852057933,7.72,105.2531546879485,1711); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12979,'2018-07-01T07:14:34.413Z',NULL,76,7,63.82421061366486,0,91.24913092760312,1712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12980,'2018-07-29T04:35:16.018Z',NULL,80,7,54.91325681036414,0,23.779467008588885,1712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12981,'2016-08-15T04:01:41.900Z',NULL,103,10,31.361435038520785,0,19.328181796442422,1712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12982,'2018-07-27T18:20:17.906Z',9.099440957951515,21,6,60.57501609456816,0,65.87476594015675,1712); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12983,'2019-10-25T22:59:08.807Z',NULL,148,6,138.9817182254566,0,217.7431189793194,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12984,'2019-10-07T16:33:08.721Z',NULL,194,6,50.38077396807232,0,62.59463720209382,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12985,'2019-11-07T16:33:20.294Z',NULL,154,3,81.87529553312261,0,35.57950157029187,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12986,'2019-09-12T15:43:45.065Z',NULL,124,6,110.93145648834248,0,95.81349948749306,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12987,'2018-06-22T17:13:31.345Z',NULL,5,88,124.1176465275534,0,131.95141149731208,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12988,'2020-03-17T13:00:05.261Z',NULL,170,1,105.07665741496471,0,129.10023040553642,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12989,'2019-06-21T11:09:25.166Z',NULL,13,5,112.62925391105566,0,46.889513952916374,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12990,'2020-02-22T21:34:22.855Z',NULL,165,1,38.30449564120193,0,48.10061457176174,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12991,'2018-12-30T19:55:08.758Z',NULL,74,2,51.12804227386549,0,41.5136962380994,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12992,'2020-01-08T22:13:47.177Z',NULL,146,2,126.04727121216614,0,159.1145798611227,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12993,'2016-09-17T14:22:27.543Z',NULL,36,5,87.29125153827623,0,76.55315255978024,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12994,'2016-11-09T20:42:11.803Z',NULL,105,3,35.149014295079674,0,15.072000208792563,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12995,'2020-03-18T04:00:14.632Z',NULL,179,1,68.32408657333919,0,56.150876818440125,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12996,'2017-09-11T23:52:50.165Z',NULL,49,3,87.61910559549149,0,90.69456290492728,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12997,'2018-09-19T05:08:36.695Z',NULL,20,5,37.32649625046575,0,50.13034279855436,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12998,'2019-02-18T05:53:53.269Z',NULL,11,2,132.45679913492563,0,97.14938120809131,1713); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (12999,'2019-08-16T00:20:48.455Z',NULL,102,49,47.04215255778118,1.99,73.11631724616231,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13000,'2019-12-08T23:22:40.191Z',NULL,111,2,55.526746186906664,2.35,101.93791622667719,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13001,'2020-04-06T15:38:18.347Z',NULL,113,3,110.47725376186015,4.67,191.71181114346632,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13002,'2018-12-13T20:00:43.859Z',3.2943467684507,9,1,87.46968147789205,3.7,56.60456986470532,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13003,'2020-02-14T19:28:10.095Z',NULL,105,1,52.723521442619514,2.23,48.35701423975352,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13004,'2019-04-17T18:51:40.937Z',NULL,182,2,84.48940370476112,3.57,53.010592147714284,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13005,'2019-03-31T20:34:13.212Z',NULL,199,1,115.4300138092855,4.88,200.09425691627172,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13006,'2019-08-14T21:38:21.889Z',NULL,44,5,76.35255205175756,3.23,134.23813310304462,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13007,'2018-02-14T10:55:21.663Z',NULL,34,1,74.30391386913199,3.14,134.5318912036709,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13008,'2019-03-05T07:11:03.523Z',NULL,90,1,123.1196127553999,5.2,179.83973914568577,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13009,'2019-12-22T01:35:20.199Z',NULL,38,2,66.06937283839378,2.79,116.54342027430064,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13010,'2018-05-16T23:36:41.266Z',NULL,90,5,123.1196127553999,5.2,101.8962186918782,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13011,'2018-08-18T07:27:19.251Z',NULL,129,9,148.1672972165937,6.26,105.80414845973904,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13012,'2019-04-22T03:12:02.027Z',NULL,96,4,104.82144858590365,4.43,131.82775729160358,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13013,'2018-09-16T08:06:06.672Z',NULL,124,6,110.93145648834248,4.69,179.66715245257814,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13014,'2020-04-05T23:32:23.641Z',NULL,198,4,70.14610686710009,2.96,60.52788485789473,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13015,'2020-01-12T04:48:35.424Z',NULL,59,2,89.20214751859149,3.77,109.61945402131138,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13016,'2019-09-17T12:24:36.222Z',NULL,196,5,70.14610686710009,2.96,58.20125735309684,1714); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13017,'2018-06-18T18:08:46.944Z',NULL,161,6,47.59120561297272,0,81.12161603673113,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13018,'2018-09-19T07:35:53.849Z',NULL,163,5,33.56789820016516,0,25.72863685991606,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13019,'2019-11-10T23:23:43.919Z',NULL,72,3,142.20381898788685,0,193.84621410345258,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13020,'2019-03-19T12:04:06.149Z',NULL,150,1,128.55415037577922,0,207.22867677176018,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13021,'2018-12-26T04:07:50.762Z',NULL,181,1,143.88940370476112,0,142.24288728606274,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13022,'2018-11-15T02:20:26.473Z',NULL,69,3,73.38772304360626,0,41.223858752091466,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13023,'2018-03-20T16:52:10.444Z',NULL,159,1,35.53017445377361,0,54.55606616759422,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13024,'2020-02-25T04:53:15.789Z',NULL,120,2,83.5020135028928,0,126.6570741512959,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13025,'2018-09-30T06:55:44.163Z',NULL,59,3,89.20214751859149,0,66.20713190623941,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13026,'2019-10-25T06:18:45.184Z',NULL,107,5,50.094887884945365,0,77.86876066539358,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13027,'2020-02-19T22:54:01.293Z',NULL,162,2,33.56789820016516,0,48.48573023979217,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13028,'2018-04-24T02:46:16.164Z',NULL,83,3,81.87627832636537,0,51.36436459366752,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13029,'2020-01-21T18:42:52.198Z',1.6629260826350152,41,2,63.50890855689462,0,57.79589374394914,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13030,'2017-08-17T04:51:54.576Z',NULL,156,7,20.41053609936413,0,24.26666313289871,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13031,'2018-05-24T17:57:55.276Z',NULL,147,3,66.64727121216615,0,47.8757050317793,1718); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13032,'2017-09-06T08:12:15.541Z',NULL,191,4,85.72279013719552,5.14,86.16421327645023,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13033,'2018-10-23T22:19:54.775Z',NULL,188,4,33.87738254731509,2.03,47.527771471511485,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13034,'2018-08-27T18:05:55.582Z',6.162926082635015,25,3,68.62263967182464,4.12,73.9773024471936,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13035,'2019-03-29T06:36:40.852Z',NULL,5,0,124.1176465275534,7.45,217.28257953474957,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13036,'2018-06-01T16:07:29.862Z',6.162926082635015,14,5,37.648145389078365,2.26,17.481304687819467,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13037,'2019-03-02T14:25:12.750Z',NULL,104,1,106.44215255778118,6.39,71.49170246064205,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13038,'2020-04-17T18:44:07.751Z',NULL,39,3,114.58158180283459,6.87,155.4411322297156,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13039,'2018-01-11T20:58:33.869Z',NULL,141,2,126.20312547576883,7.57,71.79460515458318,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13040,'2018-08-14T22:34:59.515Z',NULL,102,3,47.04215255778118,2.82,26.292945827712856,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13041,'2018-04-06T00:27:15.770Z',NULL,114,1,77.91196471862148,4.67,99.40273713391245,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13042,'2017-10-31T19:03:23.367Z',NULL,77,3,67.34461152277315,4.04,45.85503237573865,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13043,'2017-08-18T20:16:34.268Z',NULL,133,5,45.654646865558064,2.74,74.66014925102327,1721); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13044,'2018-12-12T06:50:57.228Z',NULL,87,2,117.25536340498041,8.21,79.2289897538611,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13045,'2018-11-16T11:04:03.934Z',NULL,198,3,70.14610686710009,4.91,106.48214114537292,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13046,'2018-10-28T22:08:37.481Z',NULL,62,4,133.5202262591817,9.35,62.12883767952831,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13047,'2019-08-06T21:35:57.689Z',NULL,161,3,47.59120561297272,3.33,63.51789049510777,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13048,'2018-02-06T01:22:32.222Z',NULL,34,1,74.30391386913199,5.2,65.7875100547412,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13049,'2017-04-05T19:45:47.062Z',NULL,138,2,75.96718984479077,5.32,102.71050980147585,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13050,'2018-11-03T06:10:42.716Z',NULL,187,1,98.9770008385166,6.93,125.51225036228468,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13051,'2019-03-30T05:32:31.483Z',NULL,194,1,50.38077396807232,3.53,90.4203996544639,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13052,'2019-01-13T01:45:26.552Z',NULL,63,2,133.5202262591817,9.35,138.95428580515033,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13053,'2020-01-04T00:42:05.594Z',NULL,108,1,50.094887884945365,3.51,80.4903562292849,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13054,'2017-10-12T06:55:51.207Z',NULL,30,4,42.7829881204479,2.99,80.1645065802398,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13055,'2017-10-23T12:31:43.090Z',1.6629260826350152,148,6,92.65447881697106,6.49,94.1680325726272,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13056,'2018-06-16T00:08:33.780Z',NULL,190,5,128.5841852057933,9,234.69229893235126,1722); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13057,'2018-08-04T13:27:00.796Z',NULL,23,5,116.86672609493307,7.01,138.02007312283376,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13058,'2019-01-06T11:13:58.826Z',NULL,77,2,101.01691728415972,6.06,138.33420808217483,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13059,'2017-06-26T02:00:20.204Z',NULL,132,5,85.25464686555807,5.12,155.10034133596517,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13060,'2020-02-28T22:14:18.922Z',NULL,147,1,66.64727121216615,4,55.810142543982614,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13061,'2018-03-12T15:06:47.264Z',4.89247272291467,113,0,110.47725376186015,6.63,183.97857660374865,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13062,'2016-12-08T13:58:23.483Z',NULL,179,1,45.549391048892794,2.73,24.73717111782887,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13063,'2018-03-26T09:33:35.588Z',NULL,61,1,23.537915510955656,1.41,38.62493070075125,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13064,'2020-02-05T10:29:50.620Z',0.3924727229146696,200,1,73.20395711799151,4.39,85.16063253500774,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13065,'2019-03-12T11:21:01.288Z',NULL,109,1,119.04991068193098,7.14,196.91919709657614,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13066,'2019-04-28T23:11:57.486Z',NULL,64,2,143.4221774571866,8.61,172.85946883906462,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13067,'2019-01-02T17:38:39.491Z',NULL,107,1,50.094887884945365,3.01,26.528379627253887,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13068,'2018-02-27T16:01:20.082Z',NULL,131,1,113.11722203337729,6.79,147.78348345390933,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13069,'2020-03-23T16:17:18.552Z',NULL,129,1,148.1672972165937,8.89,173.22631383250663,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13070,'2018-01-20T15:28:23.604Z',NULL,191,1,128.5841852057933,7.72,221.52589177891846,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13071,'2020-02-21T09:57:18.650Z',NULL,70,1,57.493003808959784,3.45,65.05469365479568,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13072,'2019-12-08T12:50:14.479Z',0.3924727229146696,59,1,89.20214751859149,5.35,159.8284061567339,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13073,'2020-02-26T18:52:23.735Z',NULL,189,1,93.27738254731509,5.6,144.5864501684114,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13074,'2016-10-19T08:32:30.348Z',NULL,105,5,35.149014295079674,2.11,33.623086235008635,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13075,'2020-02-15T21:55:20.335Z',NULL,160,1,47.59120561297272,2.86,87.1074952011366,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13076,'2018-09-22T15:33:41.328Z',NULL,169,2,59.53172693453274,3.57,107.3821295921885,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13077,'2019-06-10T22:50:24.098Z',NULL,116,2,114.42485125407785,6.87,129.93094140881286,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13078,'2020-01-02T05:02:24.568Z',NULL,33,1,47.7448636959614,2.86,78.29854683288161,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13079,'2018-09-25T05:32:37.131Z',NULL,179,4,68.32408657333919,4.1,83.72620113057499,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13080,'2018-05-01T02:49:02.895Z',NULL,141,4,126.20312547576883,7.57,219.3592640600745,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13081,'2018-11-08T19:17:13.225Z',NULL,115,3,77.91196471862148,4.67,43.00556853469856,1724); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13082,'2019-05-15T05:31:40.622Z',NULL,132,3,127.88197029833711,7.67,131.78407514629296,1725); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13083,'2020-01-28T23:28:31.256Z',NULL,141,1,126.20312547576883,8.83,181.3535043280361,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13084,'2018-04-05T11:53:50.325Z',NULL,71,2,82.80381898788684,5.8,141.72756446626255,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13085,'2017-11-26T01:24:03.071Z',NULL,94,3,72.81242771103588,5.1,84.23742838152938,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13086,'2020-01-25T14:02:32.890Z',0.3924727229146696,178,1,117.32963250370614,8.21,200.68558752919515,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13087,'2018-09-05T01:02:39.705Z',0.3924727229146696,33,3,47.7448636959614,3.34,25.876963376830087,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13088,'2019-08-23T06:34:21.668Z',NULL,96,6,104.82144858590365,7.34,171.11142802102233,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13089,'2020-01-30T09:42:39.278Z',NULL,90,2,123.1196127553999,8.62,51.57924387143685,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13090,'2019-12-31T20:35:04.223Z',NULL,44,2,76.35255205175756,5.34,108.15720730397337,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13091,'2019-05-10T23:03:50.207Z',NULL,146,4,126.04727121216614,8.82,181.9716128051625,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13092,'2020-01-23T12:43:19.943Z',NULL,15,1,37.648145389078365,2.64,31.794530100193317,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13093,'2019-01-12T23:49:38.008Z',NULL,138,1,113.95078476718615,7.98,194.26939850442565,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13094,'2019-02-10T18:20:33.120Z',NULL,52,2,103.67587240151535,7.26,176.61093984256712,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13095,'2018-03-28T11:28:27.063Z',NULL,123,1,110.93145648834248,7.77,114.75046571078191,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13096,'2018-01-12T19:19:57.859Z',NULL,160,1,47.59120561297272,3.33,82.70074656782799,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13097,'2019-08-23T11:51:28.418Z',NULL,131,4,113.11722203337729,7.92,123.94058559070449,1726); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13098,'2018-10-23T17:56:41.835Z',2.1168249712264133,180,3,68.32408657333919,3.25,52.30747102256349,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13099,'2018-05-03T12:46:26.686Z',NULL,70,4,57.493003808959784,2.73,105.67859790972784,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13100,'2019-12-27T00:15:45.554Z',NULL,108,2,50.094887884945365,2.38,45.3759770823453,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13101,'2019-11-05T00:49:39.519Z',6.616824971226413,175,2,117.3248094335266,5.57,166.7062405346229,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13102,'2018-09-02T11:52:38.853Z',NULL,17,4,79.93608046792765,3.8,85.72680038356714,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13103,'2018-11-14T09:15:40.029Z',NULL,124,2,110.93145648834248,5.27,60.051689444876594,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13104,'2020-04-14T02:06:05.668Z',6.616824971226413,159,2,35.53017445377361,1.69,56.12064245351035,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13105,'2019-07-31T07:58:04.596Z',6.616824971226413,48,28,123.20884248534108,5.85,82.38610533382132,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13106,'2019-07-13T21:43:29.998Z',2.1168249712264133,41,3,63.50890855689462,3.02,61.89665374508388,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13107,'2019-08-02T22:14:47.551Z',NULL,97,4,112.41825444654248,5.34,89.80730456810467,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13108,'2019-02-17T12:44:33.316Z',NULL,154,1,81.87529553312261,3.89,111.45663563300518,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13109,'2019-07-14T05:29:45.976Z',NULL,150,3,128.55415037577922,6.11,193.26619143904446,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13110,'2018-07-13T12:31:09.237Z',NULL,103,4,47.04215255778118,2.23,30.22666503123782,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13111,'2017-07-06T20:08:15.407Z',NULL,77,5,67.34461152277315,3.2,43.88574125121722,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13112,'2019-10-29T00:03:27.408Z',NULL,186,6,98.9770008385166,4.7,43.07975908719932,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13113,'2016-11-17T17:20:41.518Z',NULL,185,3,26.384667225677738,1.25,31.83811340445196,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13114,'2019-09-28T06:24:20.835Z',NULL,76,5,63.82421061366486,3.03,114.99035689017123,1727); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13115,'2018-07-27T06:34:59.280Z',6.616824971226413,9,5,87.46968147789205,3.76,146.6695279168557,1728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13116,'2019-04-28T07:13:04.792Z',NULL,91,3,65.09432810381134,2.8,111.50144909009515,1728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13117,'2018-11-25T21:45:04.910Z',NULL,192,2,69.18418520579327,2.97,75.70263491498612,1728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13118,'2018-12-21T17:48:41.890Z',NULL,79,1,41.616917284159726,1.79,64.69821088427327,1728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13119,'2017-12-05T17:23:49.637Z',NULL,1,2,29.463261130679875,1.27,43.41583576106413,1728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13120,'2019-07-14T10:24:51.128Z',NULL,105,4,52.723521442619514,2.27,75.55574183754558,1728); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13121,'2017-07-30T10:41:04.642Z',2.1168249712264133,138,4,75.96718984479077,3.8,131.16696554063864,1729); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13122,'2018-05-23T13:39:49.814Z',2.1168249712264133,42,5,38.00410713690931,1.9,47.72574830982704,1729); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13123,'2020-04-14T13:27:56.803Z',NULL,70,2,57.493003808959784,4.02,63.55057644125053,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13124,'2019-06-25T23:19:31.324Z',NULL,35,5,71.53687730741436,5.01,133.75083881139054,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13125,'2018-12-22T09:28:18.905Z',NULL,25,2,68.62263967182464,4.8,110.64299475813687,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13126,'2019-05-10T14:02:12.411Z',NULL,97,2,112.41825444654248,7.87,127.58681347625225,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13127,'2018-09-28T08:44:00.810Z',NULL,63,4,133.5202262591817,9.35,248.82490025274788,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13128,'2019-05-10T22:25:59.639Z',NULL,180,4,68.32408657333919,4.78,104.0659357138233,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13129,'2018-12-12T05:16:02.145Z',NULL,132,1,127.88197029833711,8.95,68.4349014345205,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13130,'2018-01-15T16:08:00.771Z',NULL,70,2,57.493003808959784,4.02,23.154382883703,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13131,'2017-02-08T16:08:37.742Z',NULL,163,1,22.378598800110105,1.57,9.748126969876454,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13132,'2018-02-12T02:57:40.906Z',NULL,5,1,124.1176465275534,8.69,97.88665429637777,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13133,'2019-08-29T18:35:33.573Z',NULL,48,73,123.20884248534108,8.62,176.6503518200048,1732); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13134,'2019-11-22T15:18:41.512Z',NULL,40,3,99.66240044231697,2.89,177.69099581137365,1733); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13135,'2019-02-08T15:14:41.742Z',NULL,160,2,47.59120561297272,2.26,30.13264614752103,1734); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13136,'2019-12-14T01:37:52.639Z',NULL,102,2,47.04215255778118,2.23,48.198367140867525,1734); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13137,'2018-09-30T05:07:38.120Z',NULL,138,4,113.95078476718615,5.41,85.79329418810906,1734); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13138,'2020-03-28T19:32:31.886Z',NULL,102,1,47.04215255778118,2.23,29.076174382513873,1734); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13139,'2019-09-26T22:40:04.712Z',NULL,119,7,43.43814329652384,2.06,54.38136515034217,1734); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13140,'2019-07-03T05:32:15.054Z',NULL,100,5,67.83486485383094,4.24,97.2535200664029,1736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13141,'2019-04-14T22:09:14.165Z',8.441697580993978,60,2,29.80214751859149,1.86,32.83831512903523,1736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13142,'2018-11-02T19:50:58.419Z',NULL,78,2,41.616917284159726,2.6,65.50292628218385,1736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13143,'2019-05-08T15:02:11.891Z',NULL,189,5,93.27738254731509,5.83,92.91398176761815,1736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13144,'2018-05-14T04:25:49.346Z',NULL,196,6,70.14610686710009,4.38,104.61585239373852,1736); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13145,'2017-11-12T14:32:30.658Z',NULL,195,4,73.18718264538155,3.09,44.49772510548779,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13146,'2018-11-21T04:20:31.594Z',NULL,39,4,114.58158180283459,4.84,62.79933793652906,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13147,'2019-02-24T11:27:39.531Z',NULL,113,2,110.47725376186015,4.67,152.86529875403508,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13148,'2019-12-26T02:52:24.632Z',NULL,56,2,36.37128575934436,1.54,56.01754078649684,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13149,'2018-07-25T13:01:27.178Z',NULL,200,5,73.20395711799151,3.09,89.51796084379902,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13150,'2017-05-04T15:11:32.810Z',NULL,181,5,95.92626913650741,4.05,130.82726849205775,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13151,'2017-06-05T01:01:39.314Z',NULL,166,8,25.536330427467956,1.08,46.529052475840494,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13152,'2018-08-27T02:51:47.046Z',NULL,37,9,80.10774204020768,3.38,63.51983267919456,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13153,'2018-03-13T22:25:10.804Z',3.9416975809939787,81,1,43.9329842322118,1.86,56.128226825758055,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13154,'2019-04-05T03:50:49.862Z',NULL,72,3,142.20381898788685,6.01,240.3664771158521,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13155,'2018-11-04T10:00:21.289Z',NULL,128,2,75.08016314504417,3.17,79.25245691154583,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13156,'2017-01-24T21:09:35.095Z',NULL,111,1,37.01783079127111,1.56,48.39486720474221,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13157,'2017-12-22T00:31:23.626Z',NULL,164,1,61.978598800110106,2.62,28.5177893605715,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13158,'2019-11-15T11:39:10.555Z',NULL,39,2,114.58158180283459,4.84,78.94917786103458,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13159,'2018-03-09T04:28:00.581Z',NULL,100,1,67.83486485383094,2.87,90.75779977681118,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13160,'2019-01-16T10:39:23.893Z',NULL,82,1,60.89545738030947,2.57,54.67962572653306,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13161,'2018-01-06T01:10:54.803Z',NULL,1,1,44.19489169601981,1.87,64.24832360819087,1738); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13162,'2019-06-06T17:05:00.904Z',NULL,188,4,33.87738254731509,2.33,50.82229727213478,1739); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13163,'2017-05-03T14:14:16.587Z',NULL,13,3,75.0861692740371,5.16,135.77160564774553,1739); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13164,'2019-09-23T07:59:22.060Z',4.631126562690068,3,3,53.08311732230858,3.65,67.66799809217609,1739); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13165,'2019-08-10T18:58:33.184Z',NULL,52,2,103.67587240151535,6.22,52.49117478773442,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13166,'2019-04-20T20:32:00.703Z',NULL,40,1,99.66240044231697,5.98,126.70790345625954,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13167,'2019-06-12T21:27:28.532Z',4.631126562690068,100,4,67.83486485383094,4.07,51.78866943080943,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13168,'2019-04-20T07:25:14.172Z',NULL,139,26,76.77768319177018,4.61,106.10541684238552,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13169,'2018-03-13T00:53:09.057Z',NULL,99,1,67.83486485383094,4.07,34.59820569487782,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13170,'2019-11-15T06:21:24.148Z',NULL,111,2,55.526746186906664,3.33,56.670231621373674,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13171,'2019-03-10T17:59:21.223Z',NULL,173,1,122.3651993029456,7.34,226.65793710781907,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13172,'2018-04-03T09:16:22.393Z',NULL,182,1,84.48940370476112,5.07,74.23435511363995,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13173,'2018-07-01T03:20:32.269Z',NULL,23,2,116.86672609493307,7.01,109.31619662076962,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13174,'2018-11-10T00:57:28.587Z',NULL,49,2,131.42865839323724,7.89,60.92694506652731,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13175,'2019-05-04T06:19:41.965Z',NULL,75,37,125.81276373452337,7.55,128.42198924525928,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13176,'2019-12-06T13:32:10.342Z',NULL,16,1,66.11029954877317,3.97,92.8978321943731,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13177,'2019-01-05T11:38:54.355Z',NULL,68,1,115.24343882309758,6.91,48.94539718461935,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13178,'2020-01-06T22:57:04.550Z',NULL,67,1,41.24480890795779,2.47,55.286365540844535,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13179,'2018-07-11T13:05:20.998Z',NULL,104,3,106.44215255778118,6.39,156.3327507686907,1740); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13180,'2017-06-04T08:26:46.703Z',NULL,160,4,31.727470408648482,1.9,23.104370930906118,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13181,'2019-09-10T04:49:02.263Z',0.13112656269006795,57,2,122.4223933583994,7.35,55.69679321477532,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13182,'2018-07-11T02:09:05.179Z',NULL,78,2,41.616917284159726,2.5,26.347827965795414,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13183,'2017-06-15T13:33:04.913Z',4.631126562690068,145,2,40.7988669736962,2.45,39.7728894970248,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13184,'2017-09-19T03:59:16.984Z',NULL,85,3,36.6006982295235,2.2,49.03708356735815,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13185,'2017-10-05T16:14:46.310Z',NULL,25,3,45.7484264478831,2.74,70.85689693013056,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13186,'2018-07-11T22:26:13.042Z',NULL,114,2,77.91196471862148,4.67,95.8181548645287,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13187,'2020-01-13T14:22:29.239Z',2.860047519399201,121,1,40.44528328808107,2.43,60.165362480635075,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13188,'2018-06-28T12:21:26.940Z',NULL,102,4,47.04215255778118,2.82,45.13895903403357,1741); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13189,'2018-07-13T13:30:19.701Z',NULL,197,5,70.14610686710009,4.91,89.73580808625258,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13190,'2017-12-03T21:41:41.582Z',NULL,94,2,72.81242771103588,5.1,66.27383932985016,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13191,'2017-08-19T21:08:01.935Z',NULL,19,5,42.67116731707548,2.99,17.435211827789843,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13192,'2019-04-29T22:22:25.922Z',NULL,191,2,128.5841852057933,9,183.27449088479318,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13193,'2019-01-15T11:59:53.890Z',NULL,178,2,117.32963250370614,8.21,217.3945868821765,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13194,'2019-10-13T15:20:53.092Z',NULL,40,5,99.66240044231697,6.98,57.84262486027403,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13195,'2019-08-18T19:33:20.476Z',NULL,160,6,47.59120561297272,3.33,26.726556163752637,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13196,'2017-06-07T07:53:16.602Z',NULL,183,7,37.7982748679465,2.65,58.179001878468256,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13197,'2017-04-09T12:24:59.332Z',NULL,199,4,76.95334253952366,5.39,118.32316100607956,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13198,'2019-08-31T01:20:29.853Z',NULL,23,8,116.86672609493307,8.18,50.25275017163565,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13199,'2019-08-25T02:59:43.678Z',NULL,145,8,61.1983004605443,4.28,76.0556402344323,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13200,'2018-04-28T02:25:17.860Z',NULL,73,4,71.6287722595695,5.01,107.99575171957947,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13201,'2018-04-15T07:26:35.220Z',NULL,112,3,41.329386510090345,2.89,61.110272282802015,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13202,'2019-05-19T13:29:43.713Z',NULL,188,4,33.87738254731509,2.37,43.37934504785734,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13203,'2018-06-27T07:53:58.650Z',NULL,51,6,75.65058751905018,5.3,47.41106415758375,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13204,'2018-07-17T02:07:31.154Z',NULL,181,5,143.88940370476112,10.07,105.18850493267159,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13205,'2019-07-09T18:39:34.060Z',NULL,58,5,78.14578007078882,5.47,109.42274800660441,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13206,'2016-09-19T15:22:26.747Z',NULL,36,5,87.29125153827623,6.11,87.8551086758132,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13207,'2019-05-21T11:39:27.498Z',NULL,57,4,122.4223933583994,8.57,59.49712468591783,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13208,'2019-07-06T13:50:22.634Z',7.360047519399201,186,3,98.9770008385166,6.93,176.8251886350394,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13209,'2019-03-29T07:19:06.018Z',7.360047519399201,122,1,99.84528328808108,6.99,123.43625024014634,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13210,'2018-12-15T13:19:08.693Z',NULL,76,2,63.82421061366486,4.47,70.42240920450338,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13211,'2018-10-04T15:13:36.456Z',NULL,87,5,117.25536340498041,8.21,134.92048564517194,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13212,'2020-04-11T13:02:48.825Z',NULL,26,2,68.12471180754113,4.77,71.10874494983975,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13213,'2018-09-17T08:41:03.791Z',NULL,9,3,87.46968147789205,6.12,88.19380973085666,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13214,'2018-10-03T14:36:59.202Z',NULL,142,5,70.34853057210945,4.92,113.68641936723193,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13215,'2017-11-30T07:54:51.050Z',7.360047519399201,47,3,56.05108065511453,3.92,102.80559970915735,1742); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13216,'2019-07-30T05:05:22.276Z',NULL,2,5,105.11984419607644,6.31,158.8074851601257,1743); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13217,'2018-05-18T18:48:53.975Z',NULL,51,4,75.65058751905018,3.03,105.02553447214555,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13218,'2020-03-11T17:51:24.820Z',8.167462939981801,2,1,105.11984419607644,4.2,180.5265689392017,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13219,'2018-12-17T22:03:17.495Z',NULL,95,3,49.81864156655383,1.99,75.20047700962994,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13220,'2018-12-10T16:37:35.791Z',8.167462939981801,87,3,117.25536340498041,4.69,196.91239990755332,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13221,'2019-04-23T15:16:09.796Z',NULL,160,4,47.59120561297272,1.9,81.15558985202688,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13222,'2017-08-11T07:16:00.426Z',NULL,137,7,45.18165304538124,1.81,80.4389796838793,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13223,'2020-02-07T02:14:13.055Z',NULL,99,2,67.83486485383094,2.71,80.6419205279355,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13224,'2019-07-08T01:51:37.713Z',NULL,181,5,143.88940370476112,5.76,139.43264287649365,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13225,'2019-01-31T09:08:18.464Z',NULL,165,1,38.30449564120193,1.53,36.02376136670461,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13226,'2017-11-09T10:34:33.379Z',NULL,112,3,27.55292434006023,1.1,50.549226893355524,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13227,'2020-02-29T06:38:49.863Z',NULL,85,2,54.90104734428525,2.2,26.662514017421913,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13228,'2019-04-02T05:22:11.129Z',3.667462939981802,48,2,123.20884248534108,4.93,157.3439833102454,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13229,'2019-08-04T05:11:24.885Z',NULL,146,7,126.04727121216614,5.04,210.9132454197499,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13230,'2019-06-26T03:12:20.433Z',NULL,161,8,47.59120561297272,1.9,68.33968903251287,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13231,'2018-10-23T14:05:08.715Z',NULL,158,7,139.8942352373801,5.6,164.30680355892292,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13232,'2017-06-03T08:43:23.271Z',NULL,101,8,93.21658710786936,3.73,137.67772804883967,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13233,'2018-02-21T08:22:30.608Z',NULL,27,2,127.52471180754115,5.1,157.4721073724308,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13234,'2019-12-29T22:29:50.777Z',NULL,15,3,37.648145389078365,1.51,51.153640319820276,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13235,'2018-05-29T11:14:58.544Z',NULL,122,6,99.84528328808108,3.99,41.064135930310606,1745); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13236,'2020-04-11T09:02:33.733Z',NULL,152,3,48.89568729900663,2.93,36.13876324013712,1746); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13237,'2018-08-05T08:32:18.147Z',NULL,139,7,76.77768319177018,5.37,45.71207311762594,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13238,'2017-07-04T03:14:24.134Z',NULL,17,5,53.290720311951766,3.73,40.09195976601944,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13239,'2019-10-26T09:52:57.404Z',NULL,170,4,105.07665741496471,7.36,108.79123354774491,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13240,'2019-03-28T08:46:16.053Z',NULL,162,1,33.56789820016516,2.35,63.23479797335578,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13241,'2018-06-28T00:22:46.566Z',NULL,198,5,70.14610686710009,4.91,126.0909221121506,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13242,'2017-03-06T12:26:29.322Z',3.667462939981802,43,1,50.90170136783837,3.56,39.95696103477879,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13243,'2018-10-19T02:07:17.044Z',NULL,141,6,126.20312547576883,8.83,58.453479706162774,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13244,'2019-10-20T23:44:09.668Z',NULL,135,6,45.80402317157342,3.21,49.700287293155476,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13245,'2019-10-06T03:32:50.539Z',NULL,111,7,55.526746186906664,3.89,62.12550323803777,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13246,'2019-07-19T08:56:29.532Z',3.667462939981802,108,5,50.094887884945365,3.51,45.983178786101135,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13247,'2017-04-15T04:58:33.050Z',NULL,38,3,44.04624855892918,3.08,67.80449977437257,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13248,'2018-11-27T10:20:35.439Z',8.167462939981801,187,4,98.9770008385166,6.93,42.5334857474253,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13249,'2020-02-18T18:10:05.336Z',NULL,93,2,49.81864156655383,3.49,80.65200726881837,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13250,'2018-05-18T06:36:42.457Z',NULL,92,4,124.89242686579996,8.74,183.19895688244208,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13251,'2018-03-12T23:58:03.835Z',NULL,107,1,50.094887884945365,3.51,29.686229629316298,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13252,'2019-11-06T01:39:15.801Z',NULL,194,3,50.38077396807232,3.53,34.045115992788126,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13253,'2016-12-23T07:46:47.550Z',NULL,118,2,38.418408731319154,2.69,19.50697451485363,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13254,'2019-10-09T00:40:24.719Z',NULL,132,5,127.88197029833711,8.95,192.0694563070641,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13255,'2017-07-31T21:57:26.671Z',NULL,146,3,84.03151414144409,5.88,91.26374190531489,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13256,'2018-01-07T04:10:44.446Z',NULL,58,2,78.14578007078882,5.47,144.6215394572662,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13257,'2019-11-12T01:16:50.982Z',NULL,50,3,53.64019616819762,3.75,35.012886417049785,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13258,'2019-01-15T14:46:45.025Z',NULL,35,1,71.53687730741436,5.01,29.339460820872972,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13259,'2020-03-26T04:44:58.251Z',NULL,198,1,70.14610686710009,4.91,60.98710075916528,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13260,'2017-12-23T23:35:32.101Z',NULL,74,2,34.08536151591033,2.39,55.13264060029472,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13261,'2019-02-02T02:30:29.177Z',NULL,55,1,95.77128575934437,6.7,37.68075172313365,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13262,'2019-07-04T17:53:05.338Z',NULL,65,6,68.22769726470014,4.78,61.90674042207128,1747); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13263,'2020-04-12T16:21:07.422Z',NULL,64,3,143.4221774571866,5.74,192.3863437176355,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13264,'2018-01-25T08:07:21.287Z',NULL,25,2,68.62263967182464,2.74,63.47353696757791,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13265,'2017-06-10T17:45:19.997Z',NULL,69,6,48.925148695737505,1.96,30.089344817288865,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13266,'2019-02-16T10:21:43.861Z',NULL,111,1,55.526746186906664,2.22,64.89122234704917,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13267,'2019-05-30T16:09:46.768Z',7.083280924739799,149,3,69.15415037577924,2.77,83.19673383891562,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13268,'2017-09-27T09:48:28.918Z',NULL,172,4,81.57679953529707,3.26,78.03079254559351,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13269,'2019-09-18T18:55:30.911Z',NULL,52,4,103.67587240151535,4.15,80.49535260327576,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13270,'2017-05-26T11:16:02.868Z',NULL,78,3,27.74461152277315,1.11,45.21454328145993,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13271,'2017-04-20T09:56:46.570Z',NULL,41,2,42.33927237126308,1.69,64.8635740136048,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13272,'2017-02-21T11:51:14.866Z',NULL,82,1,40.59697158687298,1.62,24.02173628047827,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13273,'2019-10-02T22:00:08.946Z',NULL,121,3,40.44528328808107,1.62,66.37327351445956,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13274,'2017-11-22T05:57:36.070Z',NULL,144,3,40.7988669736962,1.63,26.810232464829824,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13275,'2019-03-27T11:58:18.267Z',NULL,19,1,64.00675097561322,2.56,102.51144016258482,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13276,'2019-12-03T13:00:48.980Z',NULL,10,1,47.6793282102869,1.91,72.81958819028296,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13277,'2017-04-26T02:42:05.025Z',NULL,161,2,31.727470408648482,1.27,43.78315099848117,1748); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13278,'2018-05-02T03:15:05.608Z',NULL,40,4,99.66240044231697,6.23,83.65962205994734,1750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13279,'2019-12-16T09:38:55.102Z',NULL,135,2,45.80402317157342,2.86,82.04974558514523,1750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13280,'2018-02-16T14:56:18.016Z',NULL,142,1,70.34853057210945,4.4,45.25756112114437,1750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13281,'2017-04-25T09:26:56.721Z',NULL,189,3,62.18492169821006,3.89,86.11792355228228,1750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13282,'2018-10-12T15:03:22.793Z',NULL,195,7,109.78077396807234,6.86,138.05909214518687,1750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13283,'2017-07-09T01:00:14.673Z',NULL,193,6,33.587182645381546,2.1,37.74755584747594,1750); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13284,'2020-04-12T17:14:26.720Z',NULL,8,3,98.83823503993958,3.95,165.12618705978826,1751); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13285,'2019-09-02T06:18:28.924Z',NULL,116,3,114.42485125407785,4.58,70.70978609344147,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13286,'2019-08-22T04:48:37.086Z',7.083280924739799,98,6,112.41825444654248,4.5,71.3787502735844,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13287,'2020-01-25T17:30:12.303Z',NULL,53,2,44.27587240151534,1.77,57.110555624179646,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13288,'2018-11-13T23:16:28.089Z',NULL,114,2,77.91196471862148,3.12,40.417193735511326,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13289,'2018-05-23T19:42:36.591Z',NULL,43,4,76.35255205175756,3.05,38.576205101891546,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13290,'2018-02-05T23:33:44.959Z',NULL,168,2,118.93172693453273,4.76,158.5947833264024,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13291,'2017-09-03T07:46:29.378Z',NULL,187,4,65.98466722567774,2.64,57.96887243896909,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13292,'2019-06-20T05:58:15.811Z',NULL,86,6,92.31436670850246,3.69,114.8715210621032,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13293,'2020-02-29T07:23:26.419Z',2.5229926549767137,88,1,105.41292031622555,4.22,122.99724911805902,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13294,'2019-10-04T21:14:00.191Z',NULL,141,3,126.20312547576883,5.05,139.293166784478,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13295,'2018-10-13T17:20:29.546Z',NULL,94,3,109.21864156655383,4.37,120.26845944639251,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13296,'2019-09-04T21:36:41.469Z',NULL,86,3,92.31436670850246,3.69,154.00427827288954,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13297,'2019-06-28T19:31:43.776Z',NULL,71,4,82.80381898788684,3.31,31.21115896090174,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13298,'2018-06-19T05:10:18.731Z',7.022992654976714,151,6,91.61302306843446,3.66,95.90935233175587,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13299,'2019-09-25T04:13:16.728Z',NULL,50,6,53.64019616819762,2.15,93.37219343073963,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13300,'2019-05-25T13:46:57.857Z',NULL,200,4,73.20395711799151,2.93,47.68063791045629,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13301,'2019-08-09T00:06:27.974Z',NULL,128,4,75.08016314504417,3,119.92813102902872,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13302,'2018-11-17T09:57:54.937Z',NULL,127,2,134.48016314504417,5.38,202.36922438105412,1752); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13303,'2018-07-10T14:14:10.314Z',NULL,36,3,130.93687730741433,5.63,184.30627924736532,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13304,'2019-10-04T03:29:35.426Z',NULL,70,5,57.493003808959784,2.47,104.2878847944581,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13305,'2018-06-16T08:19:06.660Z',2.5229926549767137,124,6,110.93145648834248,4.77,146.6671714009401,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13306,'2018-12-17T21:26:57.687Z',NULL,169,1,59.53172693453274,2.56,26.003498586288597,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13307,'2019-09-07T06:19:20.535Z',NULL,178,4,117.32963250370614,5.05,206.894441123272,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13308,'2019-12-15T09:35:53.154Z',NULL,164,2,92.96789820016517,4,50.935224982106064,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13309,'2019-08-24T14:36:33.721Z',NULL,7,8,148.22900526552291,6.37,183.77347550266623,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13310,'2018-08-25T21:55:28.648Z',NULL,150,8,128.55415037577922,5.53,207.65342859563447,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13311,'2019-02-23T16:08:24.931Z',7.022992654976714,184,1,116.09741230191975,4.99,190.17013567298667,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13312,'2018-11-01T04:32:52.186Z',NULL,183,3,56.697412301919755,2.44,47.61942205824063,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13313,'2019-12-08T01:45:24.499Z',NULL,22,2,32.136779940663494,1.38,53.632422468924275,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13314,'2018-03-10T10:23:03.384Z',NULL,83,1,81.87627832636537,3.52,102.89228049992614,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13315,'2019-12-10T05:10:34.421Z',NULL,123,2,110.93145648834248,4.77,176.30699672992486,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13316,'2017-02-12T13:06:33.908Z',NULL,164,2,61.978598800110106,2.67,66.66435921431102,1754); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13317,'2018-08-08T18:05:41.182Z',NULL,184,8,116.09741230191975,0,173.8766745212471,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13318,'2017-09-13T08:03:43.645Z',NULL,33,6,31.829909130640935,0,55.07809078114957,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13319,'2018-03-23T10:36:48.277Z',NULL,26,1,68.12471180754113,0,108.38137946248989,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13320,'2017-10-09T10:29:26.010Z',NULL,97,5,74.94550296436165,0,72.48908128474656,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13321,'2017-08-23T04:59:39.042Z',NULL,99,6,45.22324323588729,0,51.33950870458105,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13322,'2017-08-19T00:02:32.564Z',NULL,196,6,46.76407124473339,0,38.95679707388432,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13323,'2020-02-12T23:34:51.100Z',NULL,54,1,62.09360840402396,0,103.52273748912866,1755); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13324,'2019-10-26T21:06:37.423Z',NULL,81,5,43.9329842322118,2.09,60.700712242811036,1757); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13325,'2018-01-04T19:44:54.847Z',NULL,187,1,98.9770008385166,4.95,100.44334132527386,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13326,'2018-08-30T02:51:57.211Z',NULL,10,6,47.6793282102869,2.38,66.37755350380644,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13327,'2018-03-23T00:29:08.886Z',NULL,85,1,54.90104734428525,2.75,26.738302517186547,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13328,'2019-09-08T22:54:21.601Z',NULL,25,5,68.62263967182464,3.43,60.733603766870665,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13329,'2019-11-19T13:41:51.212Z',NULL,27,4,127.52471180754115,6.38,220.36981046115005,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13330,'2019-09-09T05:53:20.863Z',NULL,96,6,104.82144858590365,5.24,164.1097790999448,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13331,'2016-12-22T21:32:48.505Z',NULL,179,2,45.549391048892794,2.28,70.91459815034612,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13332,'2019-05-19T11:30:39.983Z',NULL,168,4,118.93172693453273,5.95,58.14918705302005,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13333,'2018-08-06T13:13:40.481Z',NULL,31,7,105.65346467128523,5.28,126.99483260627237,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13334,'2018-01-20T14:36:12.962Z',NULL,33,1,47.7448636959614,2.39,36.34962091978796,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13335,'2017-03-16T11:35:22.374Z',NULL,18,1,54.60204747398195,2.73,53.56185978377593,1758); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13336,'2018-10-27T16:24:26.121Z',NULL,132,4,127.88197029833711,7.67,76.309200956426,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13337,'2018-09-28T02:37:20.866Z',NULL,76,5,63.82421061366486,3.83,65.02157249335811,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13338,'2018-09-04T15:25:28.854Z',NULL,123,6,110.93145648834248,6.66,127.16619092411395,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13339,'2018-11-14T09:49:53.259Z',NULL,159,4,35.53017445377361,2.13,38.8992060769942,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13340,'2018-05-16T06:17:14.299Z',NULL,22,5,32.136779940663494,1.93,36.94177290926635,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13341,'2019-10-21T16:30:05.061Z',NULL,198,7,70.14610686710009,4.21,104.24101804049918,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13342,'2019-01-18T03:43:01.166Z',NULL,44,3,76.35255205175756,4.58,127.6978762565904,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13343,'2018-11-30T10:41:10.948Z',NULL,196,4,70.14610686710009,4.21,87.58738668730943,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13344,'2018-12-30T01:05:28.563Z',NULL,59,2,89.20214751859149,5.35,81.46308020779982,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13345,'2018-03-22T05:46:06.911Z',NULL,56,1,36.37128575934436,2.18,42.965211628720304,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13346,'2020-02-20T15:30:32.067Z',NULL,87,2,117.25536340498041,7.04,76.469490344376,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13347,'2018-06-01T05:12:32.175Z',NULL,140,6,66.80312547576881,4.01,115.25030036506463,1759); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13348,'2019-11-15T23:13:38.116Z',NULL,50,2,53.64019616819762,3.35,25.510559598985676,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13349,'2018-05-06T13:11:06.374Z',NULL,47,4,84.0766209826718,5.25,43.12412144980379,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13350,'2018-09-02T14:26:31.610Z',NULL,90,5,123.1196127553999,7.69,169.08471105350793,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13351,'2019-10-10T18:26:37.271Z',3.5650300501402206,111,6,55.526746186906664,3.47,63.39574124106792,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13352,'2019-01-14T23:53:11.005Z',3.5650300501402206,123,2,110.93145648834248,6.93,115.70520623349232,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13353,'2018-12-09T19:28:02.348Z',NULL,136,2,105.20402317157343,6.58,49.02987443005217,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13354,'2018-01-03T16:02:58.214Z',NULL,88,2,105.41292031622555,6.59,185.3435646504138,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13355,'2019-06-01T13:53:15.215Z',NULL,28,6,68.12471180754113,4.26,94.14511945990384,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13356,'2019-07-24T06:19:12.031Z',NULL,120,6,83.5020135028928,5.22,96.54133669381208,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13357,'2018-09-02T08:51:31.062Z',3.5650300501402206,104,5,106.44215255778118,6.65,53.71906841476549,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13358,'2018-07-31T05:37:13.875Z',NULL,185,4,39.57700083851661,2.47,47.075805762786885,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13359,'2018-03-08T16:01:14.659Z',NULL,150,1,128.55415037577922,8.03,131.7651428493611,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13360,'2018-12-11T07:04:26.531Z',NULL,77,2,101.01691728415972,6.31,59.91127053409235,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13361,'2020-01-10T08:45:46.669Z',NULL,136,3,105.20402317157343,6.58,103.7040964155531,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13362,'2019-02-28T16:06:09.419Z',NULL,50,2,53.64019616819762,3.35,25.391078412224317,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13363,'2019-07-16T09:58:22.079Z',NULL,120,6,83.5020135028928,5.22,152.58710495901116,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13364,'2018-08-26T22:09:12.091Z',NULL,126,9,125.24398120308456,7.83,95.71737724176779,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13365,'2019-03-30T11:00:49.923Z',NULL,21,1,60.57501609456816,3.79,38.82462533674462,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13366,'2019-03-15T10:17:23.163Z',NULL,190,1,128.5841852057933,8.04,74.50728547750462,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13367,'2019-01-05T18:08:33.983Z',NULL,35,2,71.53687730741436,4.47,77.03292653406625,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13368,'2018-12-13T22:00:45.846Z',NULL,135,2,45.80402317157342,2.86,50.99601896521149,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13369,'2019-03-21T21:47:21.668Z',NULL,22,1,32.136779940663494,2.01,48.084765806014396,1760); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13370,'2018-12-27T00:41:25.926Z',4.126030981731551,106,2,52.723521442619514,3.16,80.68130900836013,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13371,'2020-02-19T12:35:41.003Z',NULL,66,2,136.16126271106958,8.17,101.1800899087022,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13372,'2019-01-06T23:47:50.143Z',NULL,40,2,99.66240044231697,5.98,138.04386470626903,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13373,'2019-09-29T01:21:38.379Z',NULL,54,7,62.09360840402396,3.73,88.87332359050428,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13374,'2019-10-26T05:11:05.544Z',NULL,143,6,61.1983004605443,3.67,54.839279866423894,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13375,'2019-05-27T09:06:16.477Z',NULL,14,3,37.648145389078365,2.26,45.65624814414657,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13376,'2019-12-07T21:07:13.855Z',NULL,81,2,43.9329842322118,2.64,55.184541825818506,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13377,'2017-12-08T02:21:25.512Z',NULL,32,2,71.42990913064094,4.29,110.7857510332794,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13378,'2019-04-28T21:51:43.900Z',NULL,170,2,105.07665741496471,6.3,75.8512364803059,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13379,'2017-08-23T14:57:44.641Z',NULL,55,7,63.84752383956291,3.83,120.76010010879591,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13380,'2019-08-03T11:22:57.999Z',NULL,163,9,33.56789820016516,2.01,23.099698663341933,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13381,'2017-05-22T11:42:13.650Z',NULL,80,5,36.60883787357609,2.2,52.26950023153839,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13382,'2018-07-04T22:50:13.078Z',NULL,75,5,125.81276373452337,7.55,155.61717801452937,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13383,'2018-08-21T05:28:41.154Z',NULL,157,7,139.8942352373801,8.39,64.43004580273188,1761); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13384,'2018-03-12T07:18:16.138Z',NULL,19,1,64.00675097561322,4,84.60743145592164,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13385,'2020-02-27T06:46:49.018Z',NULL,8,2,98.83823503993958,6.18,166.04143152016314,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13386,'2018-09-14T10:01:11.356Z',NULL,72,4,142.20381898788685,8.89,125.11181761062457,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13387,'2019-09-27T09:23:31.133Z',NULL,108,4,50.094887884945365,3.13,78.83476320257387,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13388,'2020-04-11T02:40:45.118Z',NULL,35,3,71.53687730741436,4.47,103.94260781894299,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13389,'2020-02-22T15:30:18.722Z',NULL,114,2,77.91196471862148,4.87,94.77368405817892,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13390,'2018-12-28T13:40:59.170Z',NULL,29,2,123.57448218067185,7.72,100.3767926102743,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13391,'2018-10-31T06:40:35.702Z',NULL,1,8,44.19489169601981,2.76,43.83871098386307,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13392,'2020-04-03T22:42:19.340Z',NULL,60,4,29.80214751859149,1.86,42.56351776763233,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13393,'2019-12-15T03:37:20.156Z',NULL,84,2,81.87627832636537,5.12,86.21918018853027,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13394,'2019-03-21T14:23:03.660Z',NULL,9,1,87.46968147789205,5.47,49.90155525486656,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13395,'2016-11-03T14:02:46.602Z',NULL,176,3,38.616539622351056,2.41,26.485924979004217,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13396,'2020-01-15T22:50:14.031Z',NULL,92,2,124.89242686579996,7.81,175.22783747172252,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13397,'2019-12-18T09:23:27.742Z',NULL,184,2,116.09741230191975,7.26,157.45227225427882,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13398,'2019-02-11T15:53:09.529Z',NULL,119,2,43.43814329652384,2.71,66.49158405371867,1762); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13399,'2017-07-02T05:38:22.816Z',8.626030981731551,80,4,36.60883787357609,1.74,47.298824778481546,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13400,'2016-12-17T18:32:54.528Z',NULL,108,2,33.39659192329691,1.59,25.71006539005904,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13401,'2019-04-01T13:14:53.103Z',NULL,137,2,67.77247956807186,3.22,51.39974590576965,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13402,'2019-01-19T22:53:38.602Z',NULL,2,2,105.11984419607644,4.99,80.54462610301712,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13403,'2019-05-27T09:30:33.329Z',NULL,12,5,116.01427581618326,5.51,155.14701167132938,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13404,'2019-02-12T07:47:23.748Z',NULL,150,2,128.55415037577922,6.11,148.14972425339468,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13405,'2020-02-23T17:12:35.721Z',NULL,122,2,99.84528328808108,4.74,91.95038429711853,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13406,'2020-02-27T13:13:57.610Z',NULL,3,22,53.08311732230858,2.52,95.1589863154732,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13407,'2018-12-20T05:14:04.034Z',NULL,102,3,47.04215255778118,2.23,56.91255188289378,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13408,'2017-09-01T08:53:08.656Z',NULL,130,4,50.01715912876758,2.38,58.32556386960471,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13409,'2017-12-06T03:42:25.742Z',5.366365772197278,35,1,47.691251538276234,2.27,62.5783782765602,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13410,'2019-01-31T19:44:55.336Z',NULL,80,1,54.91325681036414,2.61,59.15888147345839,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13411,'2018-01-22T01:30:18.394Z',NULL,48,1,123.20884248534108,5.85,218.98906856032633,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13412,'2018-07-26T17:16:54.071Z',0.8663657721972777,93,3,49.81864156655383,2.37,23.202587263302142,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13413,'2018-11-25T07:51:11.334Z',NULL,146,1,126.04727121216614,5.99,91.491457823053,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13414,'2017-04-09T22:31:58.791Z',NULL,81,1,29.288656154807867,1.39,52.23652098058768,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13415,'2018-09-21T01:26:49.837Z',NULL,46,3,118.0495173798411,5.61,93.12442994762863,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13416,'2018-04-23T22:16:05.119Z',NULL,2,3,105.11984419607644,4.99,182.7841531690123,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13417,'2018-05-07T09:28:02.153Z',NULL,137,3,67.77247956807186,3.22,108.63310815506797,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13418,'2019-04-11T12:52:37.794Z',0.8663657721972777,47,1,84.0766209826718,3.99,104.23227335510038,1764); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13419,'2018-08-25T09:18:46.197Z',NULL,139,5,76.77768319177018,5.76,50.351599713458185,1766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13420,'2018-05-06T11:37:57.010Z',NULL,97,4,112.41825444654248,8.43,170.37629380330375,1766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13421,'2019-11-14T06:47:04.768Z',NULL,81,3,43.9329842322118,3.29,81.80435130028081,1766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13422,'2019-09-16T12:45:16.076Z',NULL,169,5,59.53172693453274,4.46,66.37031127746161,1766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13423,'2018-11-29T12:50:48.825Z',NULL,87,3,117.25536340498041,8.79,181.92216937560647,1766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13424,'2020-02-28T23:23:39.921Z',NULL,47,1,84.0766209826718,6.31,87.56348602878352,1766); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13425,'2019-06-17T12:25:01.423Z',NULL,75,3,125.81276373452337,9.44,124.11987578804056,1769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13426,'2018-03-07T02:10:21.654Z',NULL,113,1,110.47725376186015,8.29,168.35363957939083,1769); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13427,'2019-09-17T20:13:10.101Z',5.366365772197278,86,5,92.31436670850246,0,84.34915022515456,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13428,'2017-07-28T17:28:11.705Z',NULL,127,5,89.65344209669612,0,71.74314126080706,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13429,'2017-09-12T11:17:49.205Z',NULL,62,5,89.0134841727878,0,113.91725293579181,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13430,'2020-02-07T19:18:26.666Z',NULL,22,2,32.136779940663494,0,27.851088326167766,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13431,'2019-07-22T07:44:17.099Z',NULL,114,3,77.91196471862148,0,133.1739668225311,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13432,'2018-01-09T06:08:42.514Z',NULL,46,1,118.0495173798411,0,168.51349897055712,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13433,'2019-05-16T02:14:16.914Z',NULL,75,3,125.81276373452337,0,195.2847256905025,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13434,'2018-07-30T01:09:02.971Z',NULL,153,3,66.79892314178237,0,102.3521111686152,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13435,'2018-08-07T14:50:20.886Z',NULL,93,3,49.81864156655383,0,79.04022749254824,1771); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13436,'2017-10-31T11:28:44.565Z',NULL,15,4,25.09876359271891,1.25,12.215095562543784,1773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13437,'2018-12-15T19:46:42.610Z',NULL,6,2,97.43621265344382,4.87,112.35348401671929,1773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13438,'2017-12-02T20:12:32.705Z',NULL,165,2,25.536330427467956,1.28,42.14288033262671,1773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13439,'2019-05-08T20:00:40.914Z',NULL,76,3,63.82421061366486,3.19,110.59458420323443,1773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13440,'2017-02-26T18:04:07.581Z',NULL,31,1,70.43564311419016,3.52,36.21114756612182,1773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13441,'2018-06-05T11:28:58.337Z',NULL,188,4,33.87738254731509,1.69,16.57748706079846,1773); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13442,'2017-04-08T11:54:35.028Z',NULL,134,2,28.328223666657742,1.59,15.57460316184292,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13443,'2017-09-17T19:48:04.762Z',5.366365772197278,30,2,42.7829881204479,2.4,30.36757151331361,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13444,'2017-04-04T14:47:40.472Z',NULL,22,2,21.42451996044233,1.2,33.8019254483354,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13445,'2018-12-03T05:30:16.369Z',NULL,26,2,68.12471180754113,3.81,117.16112102832527,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13446,'2020-03-16T08:56:54.994Z',NULL,74,1,51.12804227386549,2.86,46.50251634093796,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13447,'2019-02-14T00:22:49.902Z',NULL,90,1,123.1196127553999,6.89,124.75654736441,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13448,'2018-04-28T08:21:51.525Z',NULL,94,3,109.21864156655383,6.12,99.21310267640288,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13449,'2019-07-19T11:44:22.491Z',NULL,45,6,118.0495173798411,6.61,151.03120773414508,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13450,'2019-03-29T23:20:08.852Z',NULL,142,1,70.34853057210945,3.94,119.23370840302809,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13451,'2019-03-06T15:59:20.847Z',7.98561035430459,85,1,54.90104734428525,3.07,75.30045280913374,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13452,'2017-06-21T20:07:25.409Z',NULL,159,5,23.686782969182406,1.33,41.02502423540131,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13453,'2018-09-20T21:05:42.748Z',NULL,77,4,101.01691728415972,5.66,67.19026961766305,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13454,'2017-11-03T00:06:23.903Z',NULL,191,2,85.72279013719552,4.8,153.5071902581664,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13455,'2019-04-06T04:36:21.053Z',NULL,148,2,138.9817182254566,7.78,150.1514359110234,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13456,'2018-08-24T17:35:31.367Z',NULL,182,5,84.48940370476112,4.73,36.946982908964024,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13457,'2020-03-14T07:03:18.180Z',NULL,178,1,117.32963250370614,6.57,80.78045091399942,1774); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13458,'2018-06-19T02:06:28.285Z',7.98561035430459,48,6,123.20884248534108,8.62,100.99504915852177,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13459,'2019-05-18T12:37:44.968Z',NULL,77,5,101.01691728415972,7.07,164.43191616835378,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13460,'2019-12-03T14:00:29.603Z',NULL,167,2,97.70449564120193,6.84,137.64325521131533,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13461,'2018-11-03T09:40:50.242Z',NULL,62,2,133.5202262591817,9.35,115.92462845731734,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13462,'2018-01-24T06:07:25.435Z',NULL,72,2,142.20381898788685,9.95,167.7573682155038,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13463,'2016-05-23T09:27:34.632Z',NULL,34,5,49.535942579421324,3.47,37.742634118879764,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13464,'2019-06-05T05:57:10.570Z',NULL,180,6,68.32408657333919,4.78,129.90544685824918,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13465,'2019-11-09T07:09:20.591Z',NULL,48,2,123.20884248534108,8.62,193.13376251949666,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13466,'2018-10-28T00:23:20.928Z',NULL,130,6,75.02573869315137,5.25,134.2591250012454,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13467,'2017-09-15T04:28:14.726Z',3.485610354304591,23,5,77.91115072995538,5.45,59.42659394189008,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13468,'2016-08-03T03:37:52.580Z',NULL,92,5,83.2616179105333,5.83,92.41653667228422,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13469,'2018-05-18T07:11:28.625Z',NULL,7,4,148.22900526552291,10.38,197.37229416170533,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13470,'2020-04-13T23:44:41.091Z',NULL,165,3,38.30449564120193,2.68,63.50115851052732,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13471,'2019-09-26T01:00:18.378Z',NULL,141,5,126.20312547576883,8.83,216.03579978396823,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13472,'2018-11-23T03:20:58.081Z',NULL,178,4,117.32963250370614,8.21,203.74079112488485,1776); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13473,'2017-10-14T12:33:24.791Z',NULL,90,6,82.07974183693327,5.64,84.5773945553962,1777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13474,'2018-06-12T14:27:10.073Z',NULL,68,5,115.24343882309758,7.92,169.90360022969915,1777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13475,'2017-12-05T00:07:46.213Z',NULL,37,1,53.40516136013846,3.67,67.13164500087838,1777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13476,'2019-01-25T02:20:08.424Z',NULL,71,2,82.80381898788684,5.69,57.20311970681747,1777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13477,'2017-11-08T12:07:49.267Z',NULL,73,3,47.752514839713,3.28,36.99744642994784,1777); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13478,'2019-03-06T12:59:19.372Z',3.485610354304591,89,1,63.719612755399886,3.5,59.07226378221513,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13479,'2018-06-11T02:47:06.969Z',NULL,48,5,123.20884248534108,6.78,183.2207635382216,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13480,'2017-08-27T20:56:55.606Z',NULL,130,5,50.01715912876758,2.75,20.340508738772982,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13481,'2019-10-21T12:43:03.307Z',NULL,89,6,63.719612755399886,3.5,25.653094336271035,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13482,'2016-07-28T17:33:01.833Z',NULL,34,5,49.535942579421324,2.72,25.4039305346333,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13483,'2017-07-04T18:20:07.618Z',NULL,60,5,19.86809834572766,1.09,23.792361922007437,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13484,'2017-02-24T08:29:52.490Z',NULL,128,2,50.053442096696116,2.75,57.41747710672683,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13485,'2019-07-01T18:33:11.973Z',NULL,22,4,32.136779940663494,1.77,51.28584023892558,1779); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13486,'2017-10-14T12:57:41.866Z',NULL,179,4,45.549391048892794,2.85,86.34720886583699,1780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13487,'2019-10-21T12:49:02.936Z',NULL,117,4,55.024851254077866,3.44,44.61927245576906,1780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13488,'2019-12-02T10:48:35.781Z',NULL,119,2,43.43814329652384,2.71,80.225405869567,1780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13489,'2017-01-15T15:34:27.307Z',3.370970966079884,79,2,27.74461152277315,1.73,49.381965361426566,1780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13490,'2019-06-16T22:13:16.830Z',NULL,48,6,123.20884248534108,7.7,190.65192616704024,1780); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13491,'2018-08-09T13:01:20.228Z',NULL,128,5,75.08016314504417,3.75,118.85243782909936,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13492,'2017-08-16T06:27:28.844Z',NULL,55,5,63.84752383956291,3.19,78.48479345921847,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13493,'2016-12-20T23:17:38.642Z',NULL,127,2,89.65344209669612,4.48,68.59659866863612,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13494,'2018-06-25T03:00:53.012Z',NULL,100,8,67.83486485383094,3.39,26.096203152041504,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13495,'2019-07-21T22:40:52.803Z',NULL,13,6,112.62925391105566,5.63,155.17103649481527,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13496,'2017-09-13T19:20:35.790Z',NULL,73,6,47.752514839713,2.39,81.69815808209133,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13497,'2017-03-20T21:13:17.176Z',NULL,82,1,40.59697158687298,2.03,36.304310551502745,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13498,'2018-12-05T13:00:19.670Z',NULL,90,2,123.1196127553999,6.16,94.01002687691056,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13499,'2018-08-09T15:11:20.940Z',NULL,97,9,112.41825444654248,5.62,46.33261633760478,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13500,'2020-02-17T22:42:54.206Z',NULL,67,2,41.24480890795779,2.06,36.35702025248801,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13501,'2018-07-18T17:45:20.959Z',NULL,18,6,81.90307121097293,4.1,139.24422192582728,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13502,'2019-12-05T14:50:35.664Z',NULL,35,2,71.53687730741436,3.58,96.13627559784274,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13503,'2018-01-15T19:01:55.636Z',NULL,169,1,59.53172693453274,2.98,58.06432869989181,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13504,'2019-09-23T09:02:25.894Z',NULL,62,5,133.5202262591817,6.68,218.34298406818615,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13505,'2018-01-13T11:27:27.966Z',3.370970966079884,94,2,109.21864156655383,5.46,182.68489755274803,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13506,'2017-08-05T18:41:51.710Z',NULL,126,9,83.49598746872304,4.17,67.41166999473,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13507,'2018-05-21T11:10:35.884Z',NULL,126,5,125.24398120308456,6.26,168.30430280510683,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13508,'2017-10-28T10:27:59.593Z',NULL,66,6,90.77417514071306,4.54,118.68958588582248,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13509,'2019-09-17T07:36:52.949Z',7.870970966079884,23,5,116.86672609493307,5.84,131.10823277270902,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13510,'2018-02-14T05:30:21.602Z',NULL,154,2,81.87529553312261,4.09,84.42971522131067,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13511,'2017-10-11T07:44:57.022Z',3.370970966079884,150,6,85.70276691718615,4.29,60.601615410613,1781); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13512,'2019-01-27T20:49:59.967Z',NULL,39,1,114.58158180283459,4.58,77.37154648166496,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13513,'2018-12-03T01:59:06.042Z',NULL,128,1,75.08016314504417,3,111.6935104113795,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13514,'2020-02-03T23:59:06.938Z',NULL,164,2,92.96789820016517,3.72,100.44536536339223,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13515,'2018-11-25T06:20:29.028Z',NULL,173,3,122.3651993029456,4.89,122.67737901533505,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13516,'2017-07-12T13:06:48.666Z',NULL,15,4,25.09876359271891,1,23.646417480709076,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13517,'2018-08-15T09:09:30.690Z',NULL,73,5,71.6287722595695,2.87,51.607976923912574,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13518,'2017-11-13T22:15:35.826Z',NULL,121,3,26.96352219205405,1.08,48.813648723890864,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13519,'2018-07-09T19:30:33.111Z',NULL,179,6,68.32408657333919,2.73,85.63796650551095,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13520,'2019-09-22T23:27:17.003Z',NULL,112,5,41.329386510090345,1.65,21.503087551909147,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13521,'2019-05-21T20:00:15.668Z',NULL,86,3,92.31436670850246,3.69,81.02885029052044,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13522,'2017-04-29T14:55:23.295Z',NULL,24,2,74.87095783152942,2.99,34.934189243657606,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13523,'2018-02-20T09:31:18.546Z',5.806853924688897,96,1,104.82144858590365,4.19,129.10144034391732,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13524,'2020-03-20T20:35:29.788Z',NULL,187,1,98.9770008385166,3.96,56.795906698045776,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13525,'2019-12-05T21:16:22.494Z',NULL,112,2,41.329386510090345,1.65,62.97307001227013,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13526,'2019-02-26T11:47:05.571Z',NULL,54,2,62.09360840402396,2.48,94.50330358320818,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13527,'2017-12-11T18:18:11.431Z',NULL,52,2,69.1172482676769,2.76,84.4654152543281,1782); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13528,'2019-02-12T07:39:11.610Z',8.695624138798411,161,2,47.59120561297272,2.86,51.806790144586685,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13529,'2020-04-13T22:29:02.752Z',NULL,117,4,55.024851254077866,3.3,69.06166920538786,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13530,'2017-11-13T23:44:01.767Z',NULL,76,3,42.54947374244324,2.55,54.75694673256235,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13531,'2018-04-28T21:04:49.010Z',NULL,67,3,41.24480890795779,2.47,26.17516877302505,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13532,'2018-03-10T16:27:20.808Z',NULL,88,1,105.41292031622555,6.32,92.61939115633459,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13533,'2016-11-22T19:35:49.764Z',NULL,28,4,45.41647453836076,2.72,55.64709121113739,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13534,'2018-02-03T14:02:22.089Z',5.806853924688897,143,2,61.1983004605443,3.67,77.3216605002994,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13535,'2017-07-22T03:00:55.586Z',NULL,154,5,54.58353035541507,3.28,26.11646250872964,1784); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13536,'2019-06-05T17:22:53.817Z',NULL,75,7,125.81276373452337,7.23,62.10224167046446,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13537,'2019-11-22T12:02:25.799Z',NULL,99,4,67.83486485383094,3.9,57.3487223074707,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13538,'2019-04-09T13:22:11.232Z',NULL,104,4,106.44215255778118,6.12,155.23213369599205,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13539,'2019-03-18T22:11:08.004Z',NULL,126,1,125.24398120308456,7.2,237.09818074788672,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13540,'2018-12-12T09:34:58.967Z',NULL,65,2,68.22769726470014,3.92,30.303884768942364,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13541,'2020-02-20T11:18:54.472Z',NULL,131,2,113.11722203337729,6.5,158.2516551273829,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13542,'2018-03-30T16:06:44.707Z',NULL,130,1,75.02573869315137,4.31,37.120024381795965,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13543,'2019-02-15T14:03:15.642Z',8.695624138798411,20,2,37.32649625046575,2.15,51.45203150149449,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13544,'2019-07-24T23:03:47.325Z',5.806853924688897,114,6,77.91196471862148,4.48,126.44220522372156,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13545,'2018-07-03T06:44:56.986Z',NULL,87,5,117.25536340498041,6.74,74.91219282541793,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13546,'2017-07-10T00:15:56.774Z',NULL,164,5,61.978598800110106,3.56,75.5896068696978,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13547,'2019-09-24T03:59:27.836Z',NULL,34,6,74.30391386913199,4.27,51.25409970599085,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13548,'2017-05-07T10:30:46.639Z',NULL,118,5,38.418408731319154,2.21,44.00652143892446,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13549,'2019-05-17T04:57:20.946Z',NULL,63,5,133.5202262591817,7.68,92.28648582946444,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13550,'2018-08-28T11:21:48.998Z',NULL,85,9,54.90104734428525,3.16,90.95116229682066,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13551,'2018-09-09T02:51:15.642Z',5.806853924688897,96,6,104.82144858590365,6.03,110.22073289580825,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13552,'2019-07-30T17:29:33.794Z',NULL,72,5,142.20381898788685,8.18,233.38031096940733,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13553,'2020-04-07T01:47:40.143Z',NULL,104,3,106.44215255778118,6.12,44.11878928997843,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13554,'2016-12-04T14:55:45.603Z',NULL,179,2,45.549391048892794,2.62,48.30055397493056,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13555,'2017-01-02T13:08:03.243Z',NULL,13,3,75.0861692740371,4.32,67.7101683695238,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13556,'2018-08-15T10:12:12.733Z',NULL,86,8,92.31436670850246,5.31,48.733389998015426,1785); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13557,'2020-02-26T17:36:33.511Z',NULL,176,2,57.92480943352658,3.77,52.28608814193196,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13558,'2020-03-14T04:16:52.917Z',8.045564362180938,194,1,50.38077396807232,3.27,36.83665368751872,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13559,'2017-05-04T13:48:16.764Z',NULL,84,6,54.58418555091025,3.55,79.26043985859067,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13560,'2018-12-27T11:14:11.444Z',NULL,143,3,61.1983004605443,3.98,65.36109531025872,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13561,'2019-11-26T18:27:56.363Z',NULL,72,3,142.20381898788685,9.24,110.29466523667126,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13562,'2019-11-27T23:13:20.144Z',NULL,20,2,37.32649625046575,2.43,59.30950762975451,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13563,'2018-11-07T10:13:37.642Z',NULL,139,3,76.77768319177018,4.99,98.50858974499789,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13564,'2019-12-30T03:27:04.630Z',NULL,30,3,64.17448218067184,4.17,24.227163393067997,1786); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13565,'2017-04-16T02:21:58.192Z',NULL,51,4,50.433725012700116,1.46,57.138124194656676,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13566,'2018-04-10T00:11:57.306Z',NULL,34,4,74.30391386913199,2.15,64.83620024484382,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13567,'2018-12-19T15:11:23.987Z',NULL,158,2,139.8942352373801,4.06,103.43534266598868,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13568,'2019-08-22T17:39:02.269Z',NULL,90,5,123.1196127553999,3.57,51.30989419228892,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13569,'2018-06-19T11:47:19.705Z',NULL,167,5,97.70449564120193,2.83,109.7398791256138,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13570,'2019-07-06T14:10:45.555Z',NULL,110,4,55.526746186906664,1.61,47.12612093321848,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13571,'2016-11-28T04:42:41.824Z',NULL,92,3,83.2616179105333,2.41,70.7391919940639,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13572,'2018-10-19T21:59:09.212Z',NULL,65,7,68.22769726470014,1.98,80.9715974343973,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13573,'2018-08-08T22:34:20.366Z',NULL,31,7,105.65346467128523,3.06,99.13623033424787,1788); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13574,'2019-11-14T01:55:31.209Z',NULL,12,3,116.01427581618326,4.9,89.37344995626943,1790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13575,'2019-01-28T14:11:12.224Z',NULL,73,2,71.6287722595695,3.03,117.35782988087465,1790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13576,'2019-12-01T13:25:00.116Z',NULL,62,1,133.5202262591817,5.64,64.99528416888643,1790); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13577,'2018-05-22T18:18:56.492Z',NULL,79,3,41.616917284159726,1.79,50.958417055776465,1791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13578,'2017-05-23T17:28:34.823Z',NULL,81,4,29.288656154807867,1.26,25.811737330541,1791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13579,'2020-03-27T10:11:05.665Z',8.045564362180938,147,1,66.64727121216615,2.87,65.67529181307172,1791); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13580,'2016-12-21T23:47:53.361Z',8.045564362180938,188,2,22.584921698210056,1.36,8.600336424676687,1792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13581,'2016-08-16T01:01:16.713Z',8.045564362180938,38,7,44.04624855892918,2.64,45.45242296278427,1792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13582,'2017-06-17T01:41:12.375Z',NULL,143,8,40.7988669736962,2.45,33.54966589764547,1792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13583,'2019-02-17T22:30:41.944Z',NULL,200,2,73.20395711799151,4.39,129.22243234776562,1792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13584,'2018-10-01T02:42:29.166Z',3.5455643621809374,92,6,124.89242686579996,7.49,88.01750473234736,1792); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13585,'2018-04-10T23:50:33.337Z',NULL,151,2,91.61302306843446,5.73,103.30762670748614,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13586,'2020-02-21T12:31:08.208Z',NULL,124,1,110.93145648834248,6.93,94.90879875751423,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13587,'2019-10-29T01:23:49.075Z',NULL,158,6,139.8942352373801,8.74,195.50621199599271,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13588,'2019-05-06T12:18:01.771Z',NULL,42,4,38.00410713690931,2.38,30.87562132941234,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13589,'2018-07-02T20:17:16.212Z',NULL,186,5,98.9770008385166,6.19,98.40515745961059,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13590,'2020-03-12T20:34:50.339Z',NULL,92,1,124.89242686579996,7.81,205.4487662413256,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13591,'2019-06-29T23:48:04.343Z',NULL,193,6,50.38077396807232,3.15,60.86906796905555,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13592,'2019-05-24T09:09:55.769Z',NULL,165,5,38.30449564120193,2.39,16.35743266055064,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13593,'2018-12-14T23:43:25.575Z',NULL,72,2,142.20381898788685,8.89,105.78687041442434,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13594,'2018-12-03T19:13:40.033Z',NULL,162,1,33.56789820016516,2.1,18.25451470802681,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13595,'2018-12-15T20:53:19.297Z',NULL,22,1,32.136779940663494,2.01,38.736578439409904,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13596,'2018-12-28T15:25:51.427Z',NULL,53,2,44.27587240151534,2.77,75.24075988575973,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13597,'2017-12-04T05:48:13.179Z',NULL,131,3,75.41148135558485,4.71,32.78368955967899,1793); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13598,'2019-12-04T10:23:00.031Z',NULL,184,3,116.09741230191975,5.95,63.443428658590896,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13599,'2019-06-23T06:03:55.245Z',NULL,136,8,105.20402317157343,5.39,134.12786189097253,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13600,'2017-01-02T12:50:56.932Z',NULL,163,2,22.378598800110105,1.15,35.318645076642575,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13601,'2017-09-06T08:38:27.208Z',NULL,95,6,33.212427711035886,1.7,30.577541715842738,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13602,'2018-04-14T13:32:59.183Z',NULL,146,4,126.04727121216614,6.46,206.16742165447687,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13603,'2017-08-24T08:01:28.417Z',NULL,37,10,53.40516136013846,2.74,96.99056367922405,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13604,'2019-03-27T05:04:35.463Z',NULL,151,1,91.61302306843446,4.7,161.69590414982946,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13605,'2020-02-17T14:03:06.957Z',NULL,29,2,123.57448218067185,6.33,167.1101452741935,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13606,'2018-11-27T08:22:18.638Z',NULL,123,4,110.93145648834248,5.69,56.22235290193027,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13607,'2018-02-16T18:05:54.587Z',NULL,12,2,116.01427581618326,5.95,62.32434591338584,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13608,'2017-02-28T20:22:13.629Z',NULL,80,2,36.60883787357609,1.88,37.62734181012047,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13609,'2019-03-09T17:44:32.698Z',NULL,173,1,122.3651993029456,6.27,134.12029680715364,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13610,'2019-02-02T22:11:16.153Z',NULL,162,2,33.56789820016516,1.72,51.68223441344725,1795); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13611,'2019-01-06T11:33:38.024Z',NULL,70,2,57.493003808959784,2.3,81.0589938510667,1797); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13612,'2019-05-20T18:41:36.791Z',NULL,14,4,37.648145389078365,1.88,34.08980984911339,1798); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13613,'2020-01-07T05:53:55.968Z',NULL,4,2,110.98767151282252,7.63,129.72773738957508,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13614,'2016-09-01T13:44:41.206Z',NULL,16,5,44.07353303251545,3.03,75.90891501393416,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13615,'2018-09-03T03:14:17.618Z',NULL,151,6,91.61302306843446,6.3,122.37719052966902,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13616,'2019-07-08T00:39:59.523Z',NULL,112,6,41.329386510090345,2.84,48.314931167810336,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13617,'2016-06-09T04:03:59.229Z',NULL,22,8,21.42451996044233,1.47,29.832156530795046,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13618,'2017-09-28T13:49:37.912Z',NULL,22,7,21.42451996044233,1.47,14.096112332265879,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13619,'2018-12-29T17:01:18.491Z',NULL,108,2,50.094887884945365,3.44,21.445807195428106,1799); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13620,'2016-10-18T01:07:41.528Z',NULL,115,5,51.94130981241432,2.6,49.57356766821749,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13621,'2019-10-16T18:35:26.026Z',NULL,145,5,61.1983004605443,3.06,51.6211119538247,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13622,'2016-11-15T18:22:28.555Z',NULL,20,4,24.884330833643833,1.24,38.67738747642664,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13623,'2019-03-09T07:55:34.657Z',NULL,157,1,139.8942352373801,6.99,258.1768894932235,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13624,'2019-11-09T04:10:43.614Z',NULL,131,3,113.11722203337729,5.66,205.93950586983738,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13625,'2017-08-26T11:40:51.415Z',NULL,35,8,47.691251538276234,2.38,85.35138857390264,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13626,'2018-12-23T09:18:08.027Z',NULL,23,2,116.86672609493307,5.84,190.12852537546766,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13627,'2020-01-02T19:59:19.885Z',NULL,89,2,63.719612755399886,3.19,51.53815187671814,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13628,'2020-04-17T12:46:18.536Z',NULL,5,4,124.1176465275534,6.21,179.25892323335694,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13629,'2018-09-26T14:49:08.315Z',9.867787173609884,36,7,130.93687730741433,6.55,221.34363526853187,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13630,'2018-08-09T15:54:15.803Z',NULL,85,8,54.90104734428525,2.75,97.89471724839758,1800); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13631,'2019-09-18T19:21:58.352Z',NULL,129,6,148.1672972165937,5.93,207.54927259920873,1805); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13632,'2019-01-28T18:34:46.535Z',NULL,64,2,143.4221774571866,9.32,209.2944109823337,1806); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13633,'2017-04-12T21:08:47.680Z',NULL,167,3,65.13633042746795,4.23,74.5564365005728,1806); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13634,'2017-12-12T00:25:21.223Z',NULL,111,2,37.01783079127111,2.41,36.40638510078723,1806); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13635,'2019-05-16T07:21:38.869Z',NULL,60,5,29.80214751859149,1.94,34.81144459868588,1806); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13636,'2017-10-01T21:14:23.554Z',NULL,82,7,40.59697158687298,2.64,46.7960368295093,1806); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13637,'2017-08-26T14:34:22.080Z',7.380864905319434,108,7,33.39659192329691,2.17,62.59628345276308,1806); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13638,'2017-04-09T14:52:56.427Z',NULL,74,4,34.08536151591033,1.6,46.901951976741834,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13639,'2017-09-05T15:23:37.281Z',NULL,98,5,74.94550296436165,3.52,37.519923164319906,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13640,'2019-03-20T16:10:19.148Z',28.808649053194348,5,1,124.1176465275534,5.83,181.1414641596229,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13641,'2017-03-10T06:18:02.125Z',NULL,87,1,78.17024226998694,3.67,73.3148413153139,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13642,'2017-04-23T21:31:08.934Z',NULL,85,2,36.6006982295235,1.72,34.44503766889927,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13643,'2019-02-21T22:58:03.844Z',NULL,75,1,125.81276373452337,5.91,171.7105103293629,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13644,'2017-05-21T21:42:20.704Z',NULL,125,3,53.59799471993963,2.52,86.2590559799468,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13645,'2019-01-06T13:07:44.934Z',NULL,175,1,117.3248094335266,5.51,71.06616176981521,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13646,'2019-11-25T10:54:34.504Z',NULL,146,3,126.04727121216614,5.92,136.35038167427896,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13647,'2019-08-05T08:05:57.873Z',NULL,70,6,57.493003808959784,2.7,75.13846881952182,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13648,'2019-10-31T23:05:24.817Z',NULL,56,5,36.37128575934436,1.71,62.47372704252637,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13649,'2017-10-03T18:54:35.362Z',NULL,78,5,27.74461152277315,1.3,34.740287161613495,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13650,'2018-07-14T21:53:10.347Z',NULL,52,5,103.67587240151535,4.87,190.76671956268117,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13651,'2017-08-24T11:21:11.717Z',NULL,138,8,75.96718984479077,3.57,114.89094250350287,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13652,'2019-04-20T08:21:44.725Z',NULL,1,3,44.19489169601981,2.08,82.38325575188523,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13653,'2017-03-28T22:33:58.008Z',NULL,160,1,31.727470408648482,1.49,40.60073820671539,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13654,'2016-10-11T03:50:59.922Z',NULL,35,4,47.691251538276234,2.24,27.158311840316426,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13655,'2018-10-28T19:48:02.577Z',NULL,49,4,131.42865839323724,6.18,71.54596527645721,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13656,'2017-11-01T11:45:06.326Z',NULL,96,3,69.88096572393577,3.28,106.74694307305072,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13657,'2019-10-04T01:28:53.858Z',NULL,172,7,122.3651993029456,5.75,62.552296902746036,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13658,'2018-09-13T01:28:04.801Z',NULL,31,6,105.65346467128523,4.97,198.1908958621414,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13659,'2016-12-21T13:40:06.322Z',NULL,94,2,72.81242771103588,3.42,29.7830688199861,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13660,'2019-03-28T05:07:33.646Z',NULL,82,1,60.89545738030947,2.86,40.86686002577571,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13661,'2019-11-12T17:58:24.724Z',NULL,44,3,76.35255205175756,3.59,87.98441627841984,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13662,'2018-11-01T21:09:52.126Z',NULL,65,4,68.22769726470014,3.21,49.3513340505616,1807); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13663,'2020-02-10T20:51:25.823Z',NULL,37,2,80.10774204020768,4.01,32.371763504849774,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13664,'2019-01-15T01:19:02.798Z',NULL,178,2,117.32963250370614,5.87,87.13739896659408,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13665,'2019-06-06T23:26:32.350Z',NULL,25,8,68.62263967182464,3.43,39.5665038015567,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13666,'2017-03-16T10:33:18.173Z',NULL,38,1,44.04624855892918,2.2,18.86669071349369,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13667,'2017-09-26T14:07:53.819Z',NULL,80,5,36.60883787357609,1.83,68.98460395466144,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13668,'2018-02-02T11:07:44.212Z',NULL,192,2,69.18418520579327,3.46,70.81438161507391,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13669,'2019-12-07T04:05:01.565Z',NULL,102,2,47.04215255778118,2.35,72.93970201181847,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13670,'2019-06-30T08:46:41.745Z',NULL,189,6,93.27738254731509,4.66,74.65394300229914,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13671,'2017-12-24T05:50:10.478Z',NULL,147,1,44.4315141414441,2.22,64.3396025268087,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13672,'2018-05-09T21:34:20.969Z',NULL,171,3,105.07665741496471,5.25,135.144347535353,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13673,'2018-06-12T11:38:57.319Z',NULL,170,6,105.07665741496471,5.25,129.4458132390286,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13674,'2018-09-11T13:27:34.115Z',NULL,157,5,139.8942352373801,6.99,106.90111924685657,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13675,'2017-09-02T23:35:53.029Z',NULL,176,3,38.616539622351056,1.93,65.93654051478273,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13676,'2019-08-22T15:22:38.074Z',NULL,89,6,63.719612755399886,3.19,39.48701146714323,1808); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13677,'2018-08-02T00:12:08.141Z',NULL,72,6,142.20381898788685,5.69,178.07389800526465,1809); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13678,'2019-05-12T18:32:19.436Z',NULL,118,3,57.627613096978735,3.75,27.754669343420527,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13679,'2019-11-05T07:29:06.323Z',NULL,125,2,80.39699207990944,5.23,80.68492018435617,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13680,'2018-05-14T14:59:26.608Z',NULL,74,4,51.12804227386549,3.32,51.981288459239,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13681,'2019-05-28T09:31:33.289Z',NULL,200,4,73.20395711799151,4.76,74.26320634876402,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13682,'2018-06-04T09:26:06.382Z',NULL,126,4,125.24398120308456,8.14,136.20240446588394,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13683,'2018-04-06T06:43:28.865Z',NULL,198,2,70.14610686710009,4.56,28.196717147541282,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13684,'2018-11-15T17:35:14.533Z',NULL,69,2,73.38772304360626,4.77,120.4735442018816,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13685,'2017-05-13T23:51:42.028Z',NULL,161,4,31.727470408648482,2.06,34.65381152760524,1810); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13686,'2018-03-23T21:17:12.611Z',NULL,129,1,148.1672972165937,11.11,65.42192024130415,1811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13687,'2017-10-23T18:01:37.382Z',NULL,172,5,81.57679953529707,6.12,97.66810846890414,1811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13688,'2018-07-13T01:05:12.774Z',NULL,40,6,99.66240044231697,7.47,99.83641896220479,1811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13689,'2017-08-01T19:51:45.440Z',NULL,3,8,35.388744881539054,2.65,61.00923214572968,1811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13690,'2019-08-20T15:39:00.481Z',NULL,180,6,68.32408657333919,5.12,81.78307334911183,1811); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13691,'2020-03-08T12:33:01.515Z',2.4012991865157,149,1,69.15415037577924,2.77,29.46144200809156,1812); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13692,'2019-10-21T02:16:25.776Z',NULL,42,3,38.00410713690931,1.52,54.55679995535564,1812); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13693,'2019-04-15T15:59:49.487Z',NULL,122,3,99.84528328808108,3.99,162.2743161027617,1812); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13694,'2018-03-13T05:37:47.560Z',2.4012991865157,158,1,139.8942352373801,5.6,214.51020186857838,1812); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13695,'2019-04-19T07:23:57.186Z',NULL,36,2,130.93687730741433,0,84.69570847430077,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13696,'2016-08-12T20:55:29.757Z',NULL,199,4,76.95334253952366,0,43.40712778527006,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13697,'2018-05-07T02:28:47.081Z',NULL,48,4,123.20884248534108,0,71.52015205347712,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13698,'2019-12-26T03:23:44.675Z',NULL,89,2,63.719612755399886,0,47.27777966538709,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13699,'2019-01-09T17:11:28.591Z',2.4012991865157,137,2,67.77247956807186,0,112.92286202222627,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13700,'2018-01-12T14:29:11.272Z',NULL,121,1,40.44528328808107,0,69.28972814730547,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13701,'2020-01-29T12:11:47.464Z',NULL,190,1,128.5841852057933,0,227.9856142820485,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13702,'2017-01-13T17:38:47.352Z',NULL,135,1,30.536015447715613,0,48.00000116231525,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13703,'2017-08-25T16:32:15.480Z',NULL,60,6,19.86809834572766,0,20.20437490379077,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13704,'2018-02-21T02:13:32.784Z',6.9012991865157005,122,1,99.84528328808108,0,69.57177811708998,1813); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13705,'2019-07-27T02:52:32.858Z',NULL,130,4,75.02573869315137,4.5,65.47030454728886,1814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13706,'2019-09-14T22:22:20.001Z',NULL,193,6,50.38077396807232,3.02,37.34668579618437,1814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13707,'2018-08-31T00:43:57.443Z',NULL,112,8,41.329386510090345,2.48,27.92188759843616,1814); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13708,'2019-12-11T04:53:19.913Z',NULL,50,2,53.64019616819762,3.22,71.69238859480296,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13709,'2019-02-05T02:48:33.997Z',6.9012991865157005,65,2,68.22769726470014,4.09,48.50959204488423,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13710,'2019-06-08T05:25:52.970Z',NULL,189,5,93.27738254731509,5.6,134.03858732889356,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13711,'2018-09-28T17:42:35.643Z',6.9012991865157005,129,3,148.1672972165937,8.89,119.56016215812944,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13712,'2020-01-31T20:26:26.386Z',NULL,2,1,105.11984419607644,6.31,89.14754396948038,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13713,'2019-07-11T12:03:03.065Z',NULL,135,4,45.80402317157342,2.75,59.6644118317629,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13714,'2017-08-03T01:45:35.334Z',NULL,53,8,29.517248267676894,1.77,15.039141601412279,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13715,'2018-08-26T09:17:21.360Z',NULL,101,8,139.82488066180403,8.39,114.58056542658395,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13716,'2019-02-07T14:53:31.590Z',NULL,1,1,44.19489169601981,2.65,36.53946649028782,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13717,'2018-04-11T03:26:57.434Z',2.123706479671895,167,3,97.70449564120193,5.86,113.53958341763496,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13718,'2019-06-08T20:32:44.363Z',6.6237064796718945,181,5,143.88940370476112,8.63,118.2611548027811,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13719,'2018-05-05T13:13:21.972Z',NULL,182,4,84.48940370476112,5.07,98.35705803660028,1815); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13720,'2018-08-20T21:15:13.036Z',2.123706479671895,6,8,97.43621265344382,0,172.881831617696,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13721,'2019-11-15T08:26:37.236Z',NULL,34,3,74.30391386913199,0,26.093332792058355,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13722,'2018-01-08T13:58:13.144Z',NULL,132,2,127.88197029833711,0,141.5403680462984,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13723,'2018-10-22T01:25:31.938Z',NULL,165,3,38.30449564120193,0,20.008348255878047,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13724,'2019-08-30T16:44:09.244Z',NULL,52,4,103.67587240151535,0,91.21377689856271,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13725,'2019-02-20T03:51:07.949Z',NULL,43,1,76.35255205175756,0,115.30901266140275,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13726,'2019-01-23T22:22:13.153Z',6.6237064796718945,145,2,61.1983004605443,0,78.90676513772122,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13727,'2020-01-19T09:28:54.509Z',NULL,86,2,92.31436670850246,0,81.35900733245771,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13728,'2019-11-21T03:37:25.012Z',NULL,177,2,128.8192981944599,0,182.60138653416914,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13729,'2017-03-23T15:37:50.640Z',NULL,199,1,76.95334253952366,0,77.14910348652572,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13730,'2019-12-18T06:30:26.951Z',NULL,111,2,55.526746186906664,0,95.43814799505833,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13731,'2020-01-16T15:25:27.923Z',NULL,34,1,74.30391386913199,0,111.3411335691949,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13732,'2019-06-25T08:35:30.667Z',NULL,55,4,95.77128575934437,0,37.98216454798448,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13733,'2017-02-24T09:25:14.884Z',2.123706479671895,175,1,78.21653962235106,0,126.56695083863954,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13734,'2018-07-05T10:30:51.049Z',NULL,170,4,105.07665741496471,0,107.14660724291895,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13735,'2017-05-12T14:35:50.302Z',NULL,126,2,83.49598746872304,0,139.340672093465,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13736,'2018-08-27T03:31:52.260Z',NULL,134,6,42.49233549998661,0,27.556644751700194,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13737,'2020-04-15T01:06:29.753Z',NULL,13,3,112.62925391105566,0,89.94713314549337,1816); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13738,'2018-05-08T00:32:16.927Z',NULL,118,5,57.627613096978735,3.6,49.877373682417684,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13739,'2018-05-31T16:43:10.890Z',NULL,122,5,99.84528328808108,6.24,79.22468118125086,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13740,'2018-04-14T10:39:56.111Z',NULL,72,3,142.20381898788685,8.89,69.65543861105358,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13741,'2019-12-03T04:49:43.746Z',NULL,169,2,59.53172693453274,3.72,78.66084405376013,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13742,'2019-08-24T16:01:03.605Z',NULL,187,6,98.9770008385166,6.19,129.78732203947618,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13743,'2019-02-08T04:11:36.150Z',NULL,39,2,114.58158180283459,7.16,203.04448849175225,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13744,'2019-04-19T06:01:24.557Z',NULL,118,2,57.627613096978735,3.6,57.62785452041994,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13745,'2018-02-07T01:59:56.978Z',NULL,17,1,79.93608046792765,5,74.52667509430398,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13746,'2019-04-23T06:22:51.814Z',NULL,162,2,33.56789820016516,2.1,60.479933471909725,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13747,'2019-02-12T14:28:13.047Z',6.6237064796718945,103,1,47.04215255778118,2.94,81.56085899504144,1817); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13748,'2018-03-02T16:35:05.555Z',NULL,74,1,51.12804227386549,3.58,39.92214412022963,1821); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13749,'2020-01-21T08:51:17.927Z',NULL,195,1,109.78077396807234,5.49,167.09383768905727,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13750,'2019-08-10T16:53:05.758Z',NULL,134,6,42.49233549998661,2.12,21.30626122246306,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13751,'2019-07-03T02:19:55.659Z',NULL,126,5,125.24398120308456,6.26,204.41972668882013,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13752,'2018-04-01T12:53:23.185Z',6.6237064796718945,142,3,70.34853057210945,3.52,114.5861011551781,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13753,'2019-07-31T22:58:51.457Z',NULL,11,55,132.45679913492563,6.62,143.30590597523343,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13754,'2019-01-05T03:15:12.095Z',6.6237064796718945,115,2,77.91196471862148,3.9,124.88700520734857,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13755,'2018-07-20T06:41:46.684Z',NULL,7,3,148.22900526552291,7.41,104.63003702210187,1822); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13756,'2019-01-14T17:40:28.132Z',NULL,57,2,122.4223933583994,7.65,124.0478654723808,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13757,'2017-03-08T20:40:11.844Z',NULL,120,1,55.668009001928525,3.48,70.23160071265922,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13758,'2018-09-16T08:28:45.135Z',NULL,127,5,134.48016314504417,8.41,190.63785997697218,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13759,'2019-12-27T23:23:47.774Z',NULL,150,2,128.55415037577922,8.03,224.62796174686164,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13760,'2019-06-18T08:19:23.137Z',NULL,57,8,122.4223933583994,7.65,146.2408893584257,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13761,'2017-04-30T18:29:19.354Z',NULL,156,4,20.41053609936413,1.28,22.665439342962618,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13762,'2017-07-11T22:36:08.956Z',NULL,7,6,98.81933684368194,6.18,94.46146512753778,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13763,'2018-08-19T01:50:23.364Z',NULL,123,10,110.93145648834248,6.93,202.87360325025375,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13764,'2019-11-08T12:39:13.176Z',5.403369794382532,166,4,38.30449564120193,2.39,38.27256739788659,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13765,'2019-12-04T09:35:30.580Z',NULL,190,3,128.5841852057933,8.04,94.92300648386012,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13766,'2018-11-30T04:24:29.028Z',NULL,163,4,33.56789820016516,2.1,35.12183164899886,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13767,'2020-02-13T06:09:38.775Z',NULL,44,2,76.35255205175756,4.77,79.45211582513137,1823); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13768,'2018-03-01T22:59:12.013Z',NULL,53,1,44.27587240151534,0,58.665493601609505,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13769,'2017-07-14T10:39:23.860Z',NULL,67,6,27.496539271971862,0,17.32809749986028,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13770,'2017-10-31T12:10:53.664Z',NULL,27,7,85.01647453836077,0,74.2473923464329,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13771,'2019-02-12T03:55:32.041Z',NULL,86,2,92.31436670850246,0,79.37330013273986,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13772,'2017-05-20T03:11:32.575Z',NULL,199,5,76.95334253952366,0,85.61703997292162,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13773,'2017-01-26T03:38:37.304Z',NULL,116,2,76.28323416938524,0,96.19910320141561,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13774,'2020-04-17T07:10:13.667Z',NULL,160,4,47.59120561297272,0,74.55718715880815,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13775,'2018-10-14T13:09:18.388Z',NULL,57,7,122.4223933583994,0,60.75526574584422,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13776,'2018-08-07T14:08:31.007Z',NULL,85,10,54.90104734428525,0,91.61982417543078,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13777,'2019-09-21T19:25:38.071Z',NULL,142,7,70.34853057210945,0,63.91956011965265,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13778,'2016-12-10T04:24:10.510Z',NULL,118,2,38.418408731319154,0,64.04915836301423,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13779,'2017-01-18T10:48:17.674Z',NULL,104,2,70.96143503852079,0,107.65988116137514,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13780,'2018-05-24T04:56:29.019Z',NULL,4,5,110.98767151282252,0,40.40095675394744,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13781,'2017-06-09T05:36:21.023Z',NULL,23,9,77.91115072995538,0,123.11019322105298,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13782,'2017-12-03T10:24:06.784Z',NULL,179,3,45.549391048892794,0,21.784888646971467,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13783,'2020-03-30T06:10:21.068Z',NULL,118,1,57.627613096978735,0,62.1489592360702,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13784,'2019-09-10T05:29:04.265Z',NULL,171,5,105.07665741496471,0,158.43029545094996,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13785,'2019-07-22T21:06:50.580Z',5.403369794382532,148,6,138.9817182254566,0,76.65083810307358,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13786,'2019-07-31T14:46:00.825Z',NULL,115,7,77.91196471862148,0,114.17592256038405,1825); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13787,'2019-05-17T00:11:01.305Z',NULL,170,6,105.07665741496471,5.25,102.47864312665082,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13788,'2019-12-28T19:25:03.238Z',NULL,97,2,112.41825444654248,5.62,176.97981352335225,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13789,'2018-11-24T09:27:58.645Z',NULL,71,3,82.80381898788684,4.14,136.45133543940227,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13790,'2019-01-19T13:25:45.876Z',NULL,140,2,66.80312547576881,3.34,126.61200914951203,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13791,'2019-07-21T09:00:33.565Z',NULL,108,6,50.094887884945365,2.5,43.794333198986884,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13792,'2019-08-20T08:19:55.040Z',NULL,35,9,71.53687730741436,3.58,42.532922311915215,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13793,'2017-11-11T18:19:43.858Z',NULL,65,4,45.4851315098001,2.27,26.58999036201074,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13794,'2019-02-08T01:43:50.323Z',NULL,79,2,41.616917284159726,2.08,65.23555029895785,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13795,'2018-08-28T10:15:34.061Z',NULL,86,9,92.31436670850246,4.62,87.19175277611434,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13796,'2018-12-08T12:22:28.057Z',NULL,172,2,122.3651993029456,6.12,144.95013332660545,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13797,'2018-02-10T23:46:27.274Z',NULL,149,2,69.15415037577924,3.46,103.08626744353047,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13798,'2019-12-06T05:04:43.182Z',NULL,71,2,82.80381898788684,4.14,76.44031797512028,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13799,'2019-03-30T11:54:25.847Z',NULL,13,1,112.62925391105566,5.63,88.13151658667677,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13800,'2019-02-17T03:46:59.843Z',NULL,49,2,131.42865839323724,6.57,209.902126711227,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13801,'2019-06-15T03:58:25.866Z',NULL,106,7,52.723521442619514,2.64,66.69058906648988,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13802,'2019-05-20T10:57:10.248Z',NULL,37,6,80.10774204020768,4.01,32.0598040204095,1827); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13803,'2018-06-07T20:54:21.610Z',NULL,68,8,115.24343882309758,4.61,97.00642867230438,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13804,'2017-06-12T18:04:47.404Z',NULL,15,7,25.09876359271891,1,38.670548637775916,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13805,'2019-05-15T01:14:37.126Z',NULL,130,5,75.02573869315137,3,125.60486177685478,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13806,'2020-01-09T04:57:02.178Z',NULL,33,2,47.7448636959614,1.91,77.82961428159261,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13807,'2020-02-17T20:39:14.709Z',NULL,141,2,126.20312547576883,5.05,234.17662123624874,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13808,'2019-06-05T21:30:31.780Z',NULL,110,7,55.526746186906664,2.22,48.510525361061816,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13809,'2019-05-07T11:05:35.917Z',NULL,110,5,55.526746186906664,2.22,87.50340694311241,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13810,'2020-03-12T09:22:29.738Z',NULL,104,1,106.44215255778118,4.26,97.77717899555259,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13811,'2019-07-27T01:26:46.905Z',NULL,193,5,50.38077396807232,2.02,86.27232062414461,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13812,'2018-01-09T12:09:19.154Z',NULL,100,2,67.83486485383094,2.71,83.20073871858234,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13813,'2018-12-20T22:49:14.106Z',NULL,83,2,81.87627832636537,3.28,100.67935290151713,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13814,'2018-05-24T02:33:30.998Z',NULL,111,3,55.526746186906664,2.22,78.22858718609565,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13815,'2019-03-03T17:47:37.623Z',NULL,31,1,105.65346467128523,4.23,40.37817074633849,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13816,'2019-08-11T17:47:08.053Z',NULL,135,7,45.80402317157342,1.83,72.78003174203815,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13817,'2016-12-02T08:44:44.849Z',NULL,156,2,20.41053609936413,0.82,34.820241012533565,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13818,'2020-03-26T19:58:04.888Z',NULL,59,1,89.20214751859149,3.57,84.69165578559279,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13819,'2019-02-03T09:16:16.303Z',NULL,188,1,33.87738254731509,1.36,61.045533500724126,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13820,'2018-04-11T08:58:41.152Z',NULL,162,3,33.56789820016516,1.34,59.209444712415625,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13821,'2019-07-18T21:53:01.800Z',NULL,179,5,68.32408657333919,2.73,54.645573250755774,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13822,'2019-02-08T19:13:39.529Z',NULL,4,2,110.98767151282252,4.44,191.12788863163172,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13823,'2020-02-02T10:25:39.995Z',NULL,30,2,64.17448218067184,2.57,87.25087643682427,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13824,'2018-07-11T09:43:06.834Z',NULL,158,7,139.8942352373801,5.6,131.03607103439407,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13825,'2020-02-19T00:25:48.386Z',NULL,91,2,65.09432810381134,2.6,109.38356932067047,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13826,'2019-11-24T08:32:13.279Z',NULL,55,3,95.77128575934437,3.83,154.5228028628277,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13827,'2019-06-21T00:12:03.337Z',NULL,158,7,139.8942352373801,5.6,68.15499244550135,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13828,'2018-04-19T14:41:36.334Z',4.142539599968702,120,3,83.5020135028928,3.34,42.286543879370114,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13829,'2019-03-28T02:26:10.464Z',NULL,132,1,127.88197029833711,5.12,138.51389006464592,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13830,'2018-10-18T08:35:04.598Z',NULL,86,5,92.31436670850246,3.69,112.22172866296668,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13831,'2019-10-08T07:02:46.379Z',NULL,51,5,75.65058751905018,3.03,113.87107887996186,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13832,'2019-06-13T07:27:21.470Z',NULL,114,7,77.91196471862148,3.12,83.55199313707156,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13833,'2019-09-09T13:06:38.704Z',NULL,69,5,73.38772304360626,2.94,43.995032053641104,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13834,'2017-09-28T08:00:05.876Z',NULL,79,5,27.74461152277315,1.11,51.17569994684088,1828); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13835,'2018-01-06T01:21:09.836Z',NULL,185,2,39.57700083851661,1.98,74.58751830034143,1829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13836,'2019-12-09T13:59:47.510Z',NULL,191,2,128.5841852057933,6.43,129.13198196788292,1829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13837,'2020-02-05T05:07:58.116Z',NULL,54,1,62.09360840402396,3.1,55.934537929031755,1829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13838,'2017-04-27T02:42:52.729Z',NULL,144,2,40.7988669736962,2.04,45.640011451179284,1829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13839,'2018-12-10T22:35:26.455Z',NULL,148,2,138.9817182254566,6.95,92.34449686110364,1829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13840,'2019-08-26T18:06:58.369Z',NULL,36,5,130.93687730741433,6.55,216.48339251927894,1829); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13841,'2020-02-23T22:06:53.031Z',NULL,154,1,81.87529553312261,3.28,76.70940920959103,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13842,'2018-10-01T10:32:37.488Z',NULL,130,4,75.02573869315137,3,118.3316839731999,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13843,'2018-07-23T11:15:50.794Z',NULL,157,4,139.8942352373801,5.6,78.39409065505451,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13844,'2018-07-05T03:42:43.985Z',NULL,56,4,36.37128575934436,1.45,23.006626804717026,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13845,'2018-11-21T21:50:07.984Z',1.2699677948953345,4,2,110.98767151282252,4.44,144.18258700464548,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13846,'2020-03-10T09:17:44.653Z',NULL,115,1,77.91196471862148,3.12,91.51843451012938,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13847,'2018-01-24T13:46:01.085Z',NULL,48,1,123.20884248534108,4.93,171.05520942938276,1830); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13848,'2018-12-19T04:54:20.051Z',5.769967794895335,120,1,83.5020135028928,6.26,116.36253390599617,1831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13849,'2017-05-15T12:00:43.555Z',NULL,13,3,75.0861692740371,5.63,121.04097191028784,1831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13850,'2018-05-10T17:23:04.165Z',NULL,79,4,41.616917284159726,3.12,54.93575086937342,1831); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13851,'2017-04-27T21:15:33.718Z',NULL,13,2,75.0861692740371,0,116.97537365287631,1834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13852,'2019-01-17T16:21:46.707Z',NULL,121,1,40.44528328808107,0,64.3373004705491,1834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13853,'2018-05-23T10:51:53.546Z',NULL,21,4,60.57501609456816,0,66.65109887183857,1834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13854,'2018-10-16T20:48:43.779Z',NULL,178,4,117.32963250370614,0,196.75388757666877,1834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13855,'2018-06-18T16:35:28.892Z',NULL,191,3,128.5841852057933,0,163.79775467294618,1834); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13856,'2018-04-28T14:42:31.001Z',NULL,157,2,139.8942352373801,8.39,169.298517988685,1835); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13857,'2018-05-19T04:33:27.078Z',NULL,151,3,91.61302306843446,6.41,163.30911647446752,1836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13858,'2019-04-06T21:31:14.896Z',NULL,102,1,47.04215255778118,3.29,56.1538013807701,1836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13859,'2019-10-08T07:03:12.351Z',NULL,43,3,76.35255205175756,5.34,85.02310851737752,1836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13860,'2019-01-20T13:44:36.829Z',NULL,182,1,84.48940370476112,5.91,113.60212661020554,1836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13861,'2018-06-08T11:12:40.782Z',NULL,161,3,47.59120561297272,3.33,88.05181663967296,1836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13862,'2019-01-16T13:22:36.275Z',NULL,133,1,68.4819702983371,4.79,102.65585207082393,1836); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13863,'2019-03-03T08:48:01.879Z',NULL,29,1,123.57448218067185,5.31,194.53910840156414,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13864,'2019-05-17T12:13:46.788Z',NULL,59,3,89.20214751859149,3.84,50.891047496178274,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13865,'2020-01-03T15:27:08.694Z',NULL,52,1,103.67587240151535,4.46,47.34219676826847,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13866,'2018-10-10T06:59:14.990Z',NULL,118,4,57.627613096978735,2.48,45.15055954416471,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13867,'2019-08-02T04:39:40.093Z',NULL,87,5,117.25536340498041,5.04,156.90353602226205,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13868,'2018-12-30T11:11:39.945Z',NULL,84,2,81.87627832636537,3.52,30.88862398577483,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13869,'2018-10-08T09:59:46.210Z',NULL,160,6,47.59120561297272,2.05,51.623484533100545,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13870,'2019-11-13T22:07:17.337Z',NULL,35,3,71.53687730741436,3.08,62.389715494557954,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13871,'2020-04-05T04:17:08.440Z',NULL,185,3,39.57700083851661,1.7,48.975361957864614,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13872,'2019-11-21T12:36:10.149Z',NULL,31,2,105.65346467128523,4.54,132.5636455295714,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13873,'2017-08-11T11:13:42.014Z',NULL,199,6,76.95334253952366,3.31,30.14955553222496,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13874,'2018-02-11T20:29:56.794Z',NULL,147,2,66.64727121216615,2.87,106.30815024396418,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13875,'2018-06-02T09:10:24.634Z',4.490778894122684,83,7,81.87627832636537,3.52,67.64391019744106,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13876,'2017-11-03T16:11:33.866Z',NULL,117,4,36.683234169385244,1.58,19.202252007882716,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13877,'2019-05-25T05:37:46.408Z',NULL,50,6,53.64019616819762,2.31,62.59569683445411,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13878,'2017-03-10T02:00:21.232Z',4.490778894122684,92,1,83.2616179105333,3.58,72.62548899642952,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13879,'2020-02-22T01:37:20.139Z',NULL,30,2,64.17448218067184,2.76,44.473748345373714,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13880,'2019-07-20T10:30:44.473Z',NULL,39,6,114.58158180283459,4.93,43.86699120494757,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13881,'2019-12-21T03:02:55.360Z',NULL,152,2,48.89568729900663,2.1,71.47503504747499,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13882,'2018-04-05T12:29:37.401Z',NULL,52,3,103.67587240151535,4.46,167.5810833643409,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13883,'2019-01-10T20:53:29.675Z',NULL,8,2,98.83823503993958,4.25,86.22517358634539,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13884,'2019-05-08T23:16:16.062Z',NULL,156,5,30.615804149046195,1.32,35.574788215821535,1838); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13885,'2019-04-30T03:16:52.594Z',NULL,169,3,59.53172693453274,2.38,111.97224423022365,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13886,'2019-10-24T12:59:23.150Z',NULL,132,6,127.88197029833711,5.12,77.98057304125454,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13887,'2019-02-10T00:00:57.907Z',NULL,169,2,59.53172693453274,2.38,73.06383311530718,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13888,'2017-08-20T17:49:04.438Z',NULL,117,6,36.683234169385244,1.47,19.830477596235575,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13889,'2019-08-01T06:56:00.140Z',NULL,83,8,81.87627832636537,3.28,147.807816154306,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13890,'2019-10-12T02:55:31.189Z',NULL,60,6,29.80214751859149,1.19,29.22116862881045,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13891,'2018-12-07T14:35:35.313Z',NULL,164,2,92.96789820016517,3.72,49.550777778978635,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13892,'2018-12-30T04:51:26.116Z',NULL,186,2,98.9770008385166,3.96,88.10008543728974,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13893,'2018-04-26T00:15:46.858Z',NULL,148,3,138.9817182254566,5.56,63.18373042850031,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13894,'2019-11-14T00:51:47.111Z',8.990778894122684,114,3,77.91196471862148,3.12,124.55659809284275,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13895,'2016-10-13T13:13:08.670Z',NULL,129,5,98.7781981443958,3.95,139.84095260743152,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13896,'2018-08-19T23:01:27.351Z',NULL,145,8,61.1983004605443,2.45,28.189435406497758,1839); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13897,'2018-03-31T20:48:05.002Z',NULL,35,11,71.53687730741436,4.29,90.77313393654873,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13898,'2018-05-29T05:48:50.740Z',NULL,28,5,68.12471180754113,4.09,40.109553881069516,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13899,'2019-01-18T18:50:10.874Z',NULL,38,3,66.06937283839378,3.96,108.1160960513317,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13900,'2017-10-04T18:51:49.345Z',NULL,52,6,69.1172482676769,4.15,85.50729161570378,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13901,'2017-04-19T06:09:39.959Z',NULL,119,3,28.95876219768256,1.74,17.02203987011763,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13902,'2018-05-06T07:53:26.838Z',NULL,159,4,35.53017445377361,2.13,12.993928506465592,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13903,'2020-02-17T14:58:53.199Z',NULL,153,1,66.79892314178237,4.01,116.95769152001681,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13904,'2019-12-08T07:49:11.189Z',NULL,108,2,50.094887884945365,3.01,62.821944237343025,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13905,'2020-04-13T18:21:26.636Z',2.7153837542307073,73,3,71.6287722595695,4.3,76.05936374439898,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13906,'2019-01-21T11:58:13.334Z',NULL,35,2,71.53687730741436,4.29,70.19261606383341,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13907,'2017-04-01T02:00:57.893Z',NULL,166,3,25.536330427467956,1.53,40.55623226667702,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13908,'2017-09-09T15:23:53.954Z',NULL,179,6,45.549391048892794,2.73,61.56987761090812,1840); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13909,'2018-05-17T17:58:01.815Z',NULL,22,5,32.136779940663494,1.93,60.68384335396697,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13910,'2019-06-20T21:07:48.684Z',2.7153837542307073,55,6,95.77128575934437,5.75,166.2410749052441,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13911,'2019-08-21T04:36:23.762Z',NULL,132,4,127.88197029833711,7.67,195.26323717227166,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13912,'2019-12-10T18:30:59.711Z',NULL,155,2,43.77574310182776,2.63,72.83784060976984,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13913,'2017-09-21T16:09:24.068Z',NULL,56,6,24.24752383956291,1.45,11.972603661479388,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13914,'2019-05-25T04:02:12.547Z',NULL,155,4,43.77574310182776,2.63,67.81250822342162,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13915,'2019-03-16T05:54:02.032Z',NULL,112,1,41.329386510090345,2.48,16.14879586297712,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13916,'2020-01-13T20:48:49.861Z',NULL,170,2,105.07665741496471,6.3,104.56282829695176,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13917,'2018-05-25T18:08:01.590Z',2.7153837542307073,126,4,125.24398120308456,7.51,129.07246743905233,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13918,'2019-09-25T11:40:28.951Z',7.215383754230707,167,3,97.70449564120193,5.86,35.09309309161121,1841); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13919,'2019-05-22T07:02:52.004Z',NULL,65,4,68.22769726470014,4.26,50.338673379952446,1842); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13920,'2017-06-09T16:20:16.101Z',NULL,152,7,32.59712486600442,2.04,43.097784525267585,1842); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13921,'2019-10-04T11:49:32.909Z',NULL,147,5,66.64727121216615,4.17,126.42785212775044,1842); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13922,'2018-04-10T20:10:24.151Z',NULL,100,2,67.83486485383094,4.24,114.52669560079552,1842); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13923,'2017-11-28T01:59:41.303Z',NULL,42,2,25.336071424606207,1.52,38.11765614091078,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13924,'2020-02-08T23:11:59.214Z',NULL,177,10,128.8192981944599,7.73,128.647131963431,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13925,'2018-02-05T22:27:07.999Z',NULL,138,1,113.95078476718615,6.84,152.98879586898502,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13926,'2016-08-23T16:26:53.445Z',2.7153837542307073,109,8,79.36660712128732,4.76,59.48159382059044,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13927,'2020-01-27T02:07:04.271Z',NULL,137,2,67.77247956807186,4.07,36.286999065690416,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13928,'2018-07-27T12:57:14.842Z',2.7153837542307073,8,3,98.83823503993958,5.93,146.6398905419843,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13929,'2020-03-28T07:08:15.663Z',NULL,152,1,48.89568729900663,2.93,94.03187625046169,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13930,'2019-09-15T10:48:05.896Z',NULL,124,4,110.93145648834248,6.66,184.6203430657888,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13931,'2019-08-04T04:46:51.054Z',NULL,8,6,98.83823503993958,5.93,89.59948891484963,1843); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13932,'2017-09-28T15:06:33.838Z',NULL,1,3,29.463261130679875,1.24,18.389502840136576,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13933,'2017-11-01T15:20:41.906Z',NULL,20,3,24.884330833643833,1.05,18.25143178370588,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13934,'2020-02-18T04:46:59.607Z',NULL,94,2,109.21864156655383,4.61,201.69928228974692,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13935,'2019-07-25T02:07:00.172Z',NULL,160,4,47.59120561297272,2.01,87.38030539504476,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13936,'2017-10-07T15:04:43.898Z',NULL,138,5,75.96718984479077,3.21,93.6414376698981,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13937,'2020-04-18T10:55:52.529Z',NULL,196,3,70.14610686710009,2.96,41.0541324573279,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13938,'2017-09-25T18:12:09.705Z',NULL,105,3,35.149014295079674,1.49,37.92303617232382,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13939,'2018-11-01T23:54:26.588Z',NULL,160,3,47.59120561297272,2.01,65.85814400674141,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13940,'2018-03-19T03:28:02.432Z',NULL,5,1,124.1176465275534,5.24,103.66320532578136,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13941,'2019-02-26T03:19:30.937Z',NULL,13,12,112.62925391105566,4.76,80.54350156240208,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13942,'2019-07-30T04:48:39.850Z',NULL,44,5,76.35255205175756,3.23,62.51714976584959,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13943,'2018-01-18T02:11:32.457Z',NULL,18,3,81.90307121097293,3.46,130.6487603192737,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13944,'2019-10-27T07:46:21.542Z',NULL,44,6,76.35255205175756,3.23,115.87042382388726,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13945,'2018-06-30T10:12:43.575Z',NULL,151,5,91.61302306843446,3.87,154.50968445320564,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13946,'2019-04-17T11:45:23.471Z',7.981788424536431,99,3,67.83486485383094,2.87,77.03019938481005,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13947,'2017-08-05T10:26:20.650Z',NULL,92,7,83.2616179105333,3.52,136.60160426571264,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13948,'2019-09-06T02:52:03.607Z',NULL,165,5,38.30449564120193,1.62,29.86210258968988,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13949,'2018-09-21T18:30:47.146Z',NULL,34,6,74.30391386913199,3.14,60.14296083415977,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13950,'2018-11-14T09:17:19.917Z',NULL,91,3,65.09432810381134,2.75,99.83637363539079,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13951,'2018-03-19T22:12:54.420Z',NULL,173,1,122.3651993029456,5.17,60.71977120419275,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13952,'2019-02-20T10:14:39.982Z',NULL,5,2,124.1176465275534,5.24,163.75104461835033,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13953,'2019-04-16T02:11:46.901Z',3.481788424536431,196,3,70.14610686710009,2.96,60.22814382284103,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13954,'2018-12-07T04:07:01.457Z',NULL,114,1,77.91196471862148,3.29,110.64641747193657,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13955,'2020-01-20T17:13:24.275Z',NULL,147,1,66.64727121216615,2.82,63.59343068630331,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13956,'2019-11-13T03:16:49.011Z',NULL,187,3,98.9770008385166,4.18,62.415312342412044,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13957,'2018-03-29T16:39:34.919Z',NULL,125,1,80.39699207990944,3.4,133.188076829703,1844); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13958,'2020-01-28T02:28:36.302Z',3.481788424536431,92,3,124.89242686579996,8.12,103.89095895517828,1848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13959,'2017-07-12T18:14:54.792Z',NULL,42,6,25.336071424606207,1.65,23.377333699468366,1848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13960,'2019-10-31T22:36:56.703Z',NULL,173,7,122.3651993029456,7.95,123.13289077714835,1848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13961,'2018-09-20T07:21:04.437Z',NULL,23,6,116.86672609493307,7.6,186.13219149364113,1848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13962,'2019-04-29T01:59:54.701Z',NULL,103,4,47.04215255778118,3.06,78.5659532608121,1848); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13963,'2019-11-22T08:09:50.216Z',NULL,112,4,41.329386510090345,1.2,56.58935159591075,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13964,'2017-01-15T10:48:12.383Z',NULL,5,2,82.7450976850356,2.4,38.748400003181935,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13965,'2018-11-11T22:48:40.921Z',NULL,172,2,122.3651993029456,3.55,98.8642269939128,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13966,'2018-01-04T17:14:38.769Z',NULL,36,20,130.93687730741433,3.8,143.44109588647385,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13967,'2019-10-22T09:30:14.482Z',NULL,150,7,128.55415037577922,3.73,235.90832669957467,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13968,'2019-10-04T01:12:58.609Z',7.981788424536431,87,7,117.25536340498041,3.4,108.5475706693694,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13969,'2020-01-17T15:53:47.472Z',NULL,91,3,65.09432810381134,1.89,85.84805191184685,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13970,'2018-03-25T02:40:54.868Z',NULL,5,1,124.1176465275534,3.6,150.30785772505527,1849); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13971,'2019-04-16T06:33:40.110Z',NULL,136,3,105.20402317157343,0,56.5892834667076,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13972,'2017-05-24T09:49:38.268Z',7.981788424536431,84,5,54.58418555091025,0,60.500670410111134,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13973,'2017-09-07T17:57:24.002Z',NULL,179,5,45.549391048892794,0,79.50310283636998,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13974,'2017-11-29T04:11:23.839Z',NULL,81,2,29.288656154807867,0,38.34544489019853,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13975,'2017-02-07T03:37:36.061Z',NULL,51,1,50.433725012700116,0,77.92523709905024,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13976,'2019-03-27T07:15:31.396Z',NULL,198,1,70.14610686710009,0,24.993883407549866,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13977,'2017-07-09T22:58:43.998Z',1.863523719863127,200,5,48.802638078661005,0,78.7062576152006,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13978,'2020-03-03T21:34:01.842Z',NULL,29,1,123.57448218067185,0,195.00545485279272,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13979,'2017-12-11T01:55:38.793Z',1.863523719863127,133,1,45.654646865558064,0,52.786860580527765,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13980,'2018-08-08T08:54:58.828Z',NULL,142,4,70.34853057210945,0,58.414853050572496,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13981,'2016-11-11T22:18:47.334Z',NULL,133,2,45.654646865558064,0,59.79383795826593,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13982,'2019-05-02T10:35:59.796Z',NULL,113,3,110.47725376186015,0,191.9776209743438,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13983,'2019-12-10T07:40:32.363Z',NULL,119,2,43.43814329652384,0,59.13421178996387,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13984,'2017-11-20T13:07:44.146Z',NULL,61,2,15.691943673970439,0,11.413951543191235,1850); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13985,'2017-08-06T12:29:45.173Z',NULL,151,4,61.07534871228964,3.82,24.82444678775827,1851); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13986,'2018-01-05T17:59:55.138Z',NULL,69,2,73.38772304360626,4.59,45.758102569553884,1851); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13987,'2018-07-24T09:43:24.676Z',NULL,92,5,124.89242686579996,7.81,49.052820301402754,1851); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13988,'2018-02-19T07:39:32.563Z',NULL,48,1,123.20884248534108,8.01,231.83158134734902,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13989,'2016-06-21T21:24:59.049Z',NULL,117,3,36.683234169385244,2.38,28.191867438584396,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13990,'2017-12-28T04:46:43.876Z',NULL,190,2,85.72279013719552,5.57,129.28242527160356,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13991,'2020-02-27T11:26:36.769Z',NULL,77,1,101.01691728415972,6.57,173.6651704921891,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13992,'2018-12-27T17:26:46.315Z',NULL,129,1,148.1672972165937,9.63,119.86733845538691,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13993,'2016-07-29T23:59:37.553Z',NULL,40,3,66.44160029487797,4.32,126.1118974698253,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13994,'2016-11-13T23:20:50.213Z',NULL,90,2,82.07974183693327,5.34,70.97843385128198,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13995,'2019-09-27T10:07:28.748Z',NULL,99,5,67.83486485383094,4.41,59.08224415711056,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13996,'2018-10-31T11:04:56.864Z',NULL,73,6,71.6287722595695,4.66,113.95024403880828,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13997,'2019-01-12T06:50:08.407Z',NULL,132,2,127.88197029833711,8.31,129.26032159989614,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13998,'2016-05-28T07:34:23.367Z',NULL,43,3,50.90170136783837,3.31,88.07695435869836,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (13999,'2017-08-11T14:01:16.043Z',NULL,108,4,33.39659192329691,2.17,13.936310927887316,1852); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14000,'2019-04-12T19:07:47.511Z',NULL,95,2,49.81864156655383,3.43,41.82536983093522,1853); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14001,'2019-11-08T04:34:54.133Z',NULL,129,2,148.1672972165937,10.19,256.1539395824318,1853); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14002,'2018-08-25T21:06:43.668Z',NULL,39,6,114.58158180283459,7.88,198.9852256345372,1853); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14003,'2018-08-27T14:00:49.966Z',NULL,76,7,63.82421061366486,4.39,27.232897519768883,1853); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14004,'2018-01-15T21:33:32.449Z',6.363523719863127,96,2,104.82144858590365,7.21,68.92896901405618,1853); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14005,'2019-06-21T19:53:52.877Z',NULL,122,3,99.84528328808108,4.99,49.14417474583656,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14006,'2020-03-30T07:53:46.224Z',NULL,73,1,71.6287722595695,3.58,98.01169273752129,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14007,'2018-03-07T22:57:06.861Z',NULL,189,1,93.27738254731509,4.66,130.91150929424188,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14008,'2019-01-09T13:04:23.135Z',1.863523719863127,194,2,50.38077396807232,2.52,52.92852087843019,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14009,'2019-05-15T13:19:05.212Z',NULL,110,3,55.526746186906664,2.78,41.109398242440456,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14010,'2019-09-27T01:07:57.675Z',NULL,65,4,68.22769726470014,3.41,104.63197880188959,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14011,'2019-03-04T20:48:04.345Z',NULL,195,1,109.78077396807234,5.49,115.6139146165424,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14012,'2019-10-18T08:09:04.067Z',6.363523719863127,59,4,89.20214751859149,4.46,101.73835200018074,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14013,'2019-07-04T06:09:07.033Z',6.363523719863127,48,5,123.20884248534108,6.16,80.40347491142799,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14014,'2016-12-22T17:28:45.459Z',NULL,138,2,75.96718984479077,3.8,85.49479183947449,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14015,'2019-10-06T06:30:31.320Z',NULL,151,4,91.61302306843446,4.58,88.8333908257174,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14016,'2019-02-26T00:29:14.280Z',NULL,47,1,84.0766209826718,4.2,124.18662446550364,1855); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14017,'2018-12-08T05:21:35.992Z',NULL,48,1,123.20884248534108,8.62,123.59101441582267,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14018,'2019-04-25T17:13:33.244Z',NULL,178,2,117.32963250370614,8.21,227.326576682128,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14019,'2018-03-05T04:52:51.213Z',NULL,91,1,65.09432810381134,4.56,36.458385078404696,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14020,'2018-07-25T09:00:00.102Z',NULL,156,3,30.615804149046195,2.14,51.74038970226666,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14021,'2018-09-08T11:46:18.724Z',NULL,157,4,139.8942352373801,9.79,242.0809566257919,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14022,'2019-06-20T05:05:59.877Z',6.466833414364184,157,7,139.8942352373801,9.79,207.5342716695398,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14023,'2019-02-24T02:53:47.703Z',NULL,34,1,74.30391386913199,5.2,139.89552215934503,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14024,'2019-08-06T18:03:02.288Z',NULL,125,4,80.39699207990944,5.63,86.42282558074199,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14025,'2019-10-21T10:04:20.167Z',NULL,14,5,37.648145389078365,2.64,63.25813093346765,1856); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14026,'2020-03-22T19:09:04.707Z',NULL,189,1,93.27738254731509,6.06,160.48873929446842,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14027,'2018-12-09T11:17:37.632Z',NULL,52,1,103.67587240151535,6.74,166.4851551095852,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14028,'2019-07-06T05:34:58.818Z',NULL,35,4,71.53687730741436,4.65,84.52826389426514,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14029,'2017-03-15T08:08:05.920Z',NULL,16,1,44.07353303251545,2.86,46.155141906398704,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14030,'2019-12-02T02:47:13.646Z',NULL,57,1,122.4223933583994,7.96,213.23423458127266,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14031,'2019-02-13T07:10:18.262Z',NULL,87,1,117.25536340498041,7.62,45.896101814789844,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14032,'2018-12-03T02:01:46.846Z',NULL,119,2,43.43814329652384,2.82,76.72285330864068,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14033,'2017-12-28T03:35:41.112Z',NULL,59,2,59.46809834572766,3.87,111.72448258659134,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14034,'2019-03-13T14:19:02.422Z',NULL,83,1,81.87627832636537,5.32,87.29900589506668,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14035,'2018-04-27T08:32:22.062Z',NULL,117,2,55.024851254077866,3.58,87.29320852689145,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14036,'2019-10-28T07:02:43.161Z',NULL,177,6,128.8192981944599,8.37,218.98900746768228,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14037,'2020-01-24T06:27:26.421Z',NULL,31,2,105.65346467128523,6.87,77.70856793602678,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14038,'2018-05-16T21:43:10.165Z',NULL,146,3,126.04727121216614,8.19,188.21507885021393,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14039,'2018-11-28T10:55:20.437Z',NULL,114,3,77.91196471862148,5.06,108.97005072381198,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14040,'2017-08-08T06:47:16.050Z',NULL,174,6,74.40953929454055,4.84,119.51588161672335,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14041,'2018-09-18T03:18:43.325Z',NULL,173,4,122.3651993029456,7.95,111.76464291275559,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14042,'2018-12-30T06:22:12.664Z',NULL,42,2,38.00410713690931,2.47,34.07527948930022,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14043,'2018-09-24T10:08:31.433Z',NULL,134,3,42.49233549998661,2.76,28.697192882168242,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14044,'2017-10-30T14:31:43.197Z',NULL,183,5,37.7982748679465,2.46,15.796389297413949,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14045,'2018-04-30T13:20:57.363Z',NULL,32,2,107.1448636959614,6.96,130.88507945246243,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14046,'2020-04-18T09:10:15.593Z',6.466833414364184,14,2,37.648145389078365,2.45,40.409683203194156,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14047,'2016-11-16T08:40:30.937Z',NULL,176,3,38.616539622351056,2.51,34.644597440702036,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14048,'2020-03-08T11:39:22.898Z',NULL,6,1,97.43621265344382,6.33,55.69417384925074,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14049,'2018-08-04T16:01:43.619Z',NULL,155,8,43.77574310182776,2.85,77.10215836481348,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14050,'2016-10-24T20:28:20.781Z',NULL,117,6,36.683234169385244,2.38,55.14793020799952,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14051,'2018-07-07T06:30:41.943Z',NULL,195,5,109.78077396807234,7.14,169.53102789140382,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14052,'2018-10-11T23:04:43.143Z',NULL,66,6,136.16126271106958,8.85,227.87060034969093,1858); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14053,'2020-04-14T20:31:09.234Z',NULL,132,2,127.88197029833711,5.12,129.60128863310266,1859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14054,'2019-05-17T16:14:39.468Z',NULL,76,2,63.82421061366486,2.55,119.83907578120254,1859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14055,'2019-10-29T22:52:29.494Z',NULL,59,3,89.20214751859149,3.57,154.41704270726103,1859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14056,'2017-01-27T05:42:59.236Z',NULL,194,2,33.587182645381546,1.34,32.70036209675751,1859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14057,'2020-02-11T01:32:46.073Z',NULL,189,2,93.27738254731509,3.73,138.00429299370384,1859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14058,'2018-07-04T08:39:40.411Z',NULL,53,5,44.27587240151534,1.77,36.067931959718,1859); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14059,'2018-09-02T11:46:59.447Z',NULL,33,5,47.7448636959614,0,50.23385009323204,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14060,'2017-07-29T14:04:22.066Z',NULL,161,4,31.727470408648482,0,10.981971751034266,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14061,'2017-06-15T22:24:20.355Z',NULL,57,5,81.6149289055996,0,77.92450726342682,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14062,'2017-08-28T15:42:52.792Z',NULL,114,5,51.94130981241432,0,55.93397940050772,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14063,'2018-03-17T13:57:49.073Z',NULL,3,1,53.08311732230858,0,66.58238443673596,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14064,'2018-08-07T07:32:29.419Z',NULL,156,4,30.615804149046195,0,51.67658393998606,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14065,'2018-02-21T02:59:28.411Z',NULL,144,1,61.1983004605443,0,37.83108460764667,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14066,'2018-08-30T12:21:01.130Z',NULL,142,7,70.34853057210945,0,106.020432746936,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14067,'2019-04-10T04:49:23.293Z',1.7176803252558333,162,3,33.56789820016516,0,28.216426866036112,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14068,'2019-11-25T14:08:19.574Z',NULL,174,3,111.61430894181083,0,181.57824555305893,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14069,'2018-01-21T03:24:51.998Z',NULL,81,2,43.9329842322118,0,17.896050470058626,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14070,'2017-07-02T08:41:43.355Z',NULL,79,39,27.74461152277315,0,20.345160473852005,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14071,'2018-09-20T23:43:04.448Z',NULL,11,4,132.45679913492563,0,151.7744586508917,1861); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14072,'2018-09-02T14:39:38.711Z',NULL,183,4,56.697412301919755,3.54,39.598562978327685,1863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14073,'2018-02-12T22:15:37.878Z',1.7176803252558333,43,1,76.35255205175756,4.77,105.09675852597864,1863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14074,'2019-11-27T04:19:11.239Z',6.2176803252558335,54,2,62.09360840402396,3.88,99.71800309893604,1863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14075,'2019-07-27T22:36:12.707Z',NULL,85,5,54.90104734428525,3.43,24.65837039846277,1863); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14076,'2017-04-17T08:51:21.980Z',NULL,192,2,46.122790137195516,0,38.54743873369303,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14077,'2019-09-05T05:34:46.386Z',NULL,104,3,106.44215255778118,0,168.88877268040287,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14078,'2019-07-26T21:36:49.831Z',NULL,193,4,50.38077396807232,0,73.69356400582873,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14079,'2018-10-20T14:18:59.789Z',NULL,50,4,53.64019616819762,0,66.65471357111566,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14080,'2017-07-22T19:01:50.073Z',NULL,156,4,20.41053609936413,0,29.080352565157643,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14081,'2019-03-18T03:05:15.154Z',NULL,93,1,49.81864156655383,0,24.904772094565505,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14082,'2019-04-08T08:27:51.102Z',NULL,102,3,47.04215255778118,0,45.73712013380574,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14083,'2018-03-29T08:58:47.633Z',NULL,95,1,49.81864156655383,0,69.09002582438211,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14084,'2017-08-19T05:13:02.226Z',NULL,49,5,87.61910559549149,0,68.05944988461422,1865); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14085,'2016-11-04T15:19:54.859Z',NULL,99,3,45.22324323588729,2.71,28.900710852037705,1867); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14086,'2019-05-18T03:43:44.362Z',NULL,195,3,109.78077396807234,6.59,88.16453180540991,1867); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14087,'2018-05-02T01:42:04.993Z',NULL,72,2,142.20381898788685,8.53,66.71406212605072,1867); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14088,'2019-05-28T10:54:13.593Z',NULL,172,2,122.3651993029456,7.34,182.71903418351798,1867); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14089,'2018-10-06T02:53:08.828Z',1.7176803252558333,128,3,75.08016314504417,4.5,64.50843170872872,1867); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14090,'2018-06-21T17:39:06.401Z',NULL,132,5,127.88197029833711,5.5,45.83296106408124,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14091,'2018-05-14T19:47:25.663Z',NULL,103,5,47.04215255778118,2.02,22.440565270800942,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14092,'2018-08-14T16:42:54.149Z',NULL,123,7,110.93145648834248,4.77,100.01135802889999,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14093,'2017-09-19T23:41:27.655Z',1.7176803252558333,74,5,34.08536151591033,1.47,26.032667320285036,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14094,'2018-06-03T21:47:15.373Z',NULL,77,7,101.01691728415972,4.34,179.18766255271723,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14095,'2019-09-26T10:18:43.241Z',NULL,198,4,70.14610686710009,3.02,95.6770489892711,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14096,'2019-03-10T15:44:30.128Z',NULL,184,1,116.09741230191975,4.99,148.2481608948797,1868); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14097,'2018-10-19T05:17:58.747Z',NULL,138,4,113.95078476718615,3.3,69.4913041852119,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14098,'2018-01-19T03:53:46.101Z',NULL,112,1,41.329386510090345,1.2,45.72993302411739,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14099,'2020-01-27T03:53:33.275Z',NULL,191,2,128.5841852057933,3.73,191.26789783148828,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14100,'2020-03-18T01:04:19.376Z',NULL,164,1,92.96789820016517,2.7,174.30411652553084,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14101,'2019-11-30T18:54:46.964Z',NULL,169,2,59.53172693453274,1.73,21.06286594183829,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14102,'2017-07-29T06:28:02.918Z',NULL,5,4,82.7450976850356,2.4,60.13969690345365,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14103,'2018-03-05T22:54:31.003Z',NULL,130,1,75.02573869315137,2.18,25.962006701653635,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14104,'2019-06-12T04:34:31.123Z',NULL,4,5,110.98767151282252,3.22,68.1103433000708,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14105,'2017-12-31T01:14:38.265Z',NULL,85,1,36.6006982295235,1.06,14.7282578475913,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14106,'2019-04-08T07:49:34.049Z',NULL,108,2,50.094887884945365,1.45,73.14022738080322,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14107,'2018-06-01T21:47:07.285Z',NULL,59,5,89.20214751859149,2.59,66.53773087050988,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14108,'2017-11-23T04:59:29.312Z',6.252736931560258,97,2,74.94550296436165,2.17,26.935573454423693,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14109,'2017-09-23T07:59:16.231Z',NULL,71,3,55.202545991924566,1.6,61.521901748197045,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14110,'2020-02-06T03:34:59.211Z',NULL,76,1,63.82421061366486,1.85,56.54186266794057,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14111,'2019-04-09T11:19:15.864Z',NULL,47,2,84.0766209826718,2.44,116.53885380698678,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14112,'2018-07-07T08:55:48.751Z',NULL,48,4,123.20884248534108,3.57,66.63041509893864,1869); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14113,'2017-07-26T14:29:23.285Z',NULL,86,4,61.54291113900164,3.69,49.62555059933812,1873); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14114,'2019-11-28T23:23:56.518Z',NULL,83,3,81.87627832636537,4.91,98.4833948823854,1873); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14115,'2018-06-09T04:53:11.331Z',NULL,33,49,47.7448636959614,2.86,22.416788607504014,1873); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14116,'2019-10-24T18:55:55.282Z',NULL,74,4,51.12804227386549,3.07,64.4027809767874,1873); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14117,'2020-01-20T01:03:39.723Z',NULL,62,2,133.5202262591817,8.01,178.95971586025172,1873); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14118,'2017-11-05T11:23:53.664Z',NULL,35,3,47.691251538276234,2.86,89.87520375414144,1873); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14119,'2020-03-14T00:33:50.697Z',NULL,67,1,41.24480890795779,2.06,53.11512080357488,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14120,'2019-08-26T07:07:56.457Z',NULL,185,5,39.57700083851661,1.98,73.37281759197735,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14121,'2017-10-25T03:53:03.290Z',NULL,167,6,65.13633042746795,3.26,117.10487164860172,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14122,'2017-10-11T08:18:35.971Z',NULL,45,4,78.6996782532274,3.93,61.315157035801455,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14123,'2019-08-19T04:16:15.176Z',NULL,41,5,63.50890855689462,3.18,28.008177875476047,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14124,'2020-04-19T14:01:12.845Z',NULL,126,2,125.24398120308456,6.26,97.24220601177764,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14125,'2019-08-27T18:30:48.985Z',NULL,107,5,50.094887884945365,2.5,72.89320044660349,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14126,'2017-11-08T05:40:09.564Z',6.252736931560258,196,2,46.76407124473339,2.34,66.70271564904472,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14127,'2018-07-09T15:23:08.174Z',6.252736931560258,103,4,47.04215255778118,2.35,66.80392170019019,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14128,'2020-01-24T20:27:13.542Z',NULL,62,2,133.5202262591817,6.68,76.31809615694878,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14129,'2019-04-01T02:13:37.084Z',NULL,1,2,44.19489169601981,2.21,38.033861475997284,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14130,'2018-12-12T15:48:50.271Z',NULL,100,1,67.83486485383094,3.39,60.82915250019441,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14131,'2018-03-03T02:15:02.237Z',NULL,165,1,38.30449564120193,1.92,47.60399554186982,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14132,'2018-07-07T14:28:23.248Z',NULL,116,4,114.42485125407785,5.72,59.93916715346672,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14133,'2018-09-03T20:22:25.288Z',6.252736931560258,60,4,29.80214751859149,1.49,30.065103284245385,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14134,'2019-10-31T03:23:45.361Z',1.7527369315602581,87,3,117.25536340498041,5.86,208.96892995888203,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14135,'2019-10-30T08:57:17.919Z',NULL,112,3,41.329386510090345,2.07,29.42138496330745,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14136,'2018-11-09T11:09:34.781Z',NULL,43,2,76.35255205175756,3.82,74.2001623327153,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14137,'2020-03-13T17:47:25.322Z',NULL,148,1,138.9817182254566,6.95,140.95123792090126,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14138,'2019-08-03T04:42:00.578Z',NULL,135,10,45.80402317157342,2.29,72.53830086430803,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14139,'2020-03-17T04:51:44.007Z',NULL,19,1,64.00675097561322,3.2,92.40166411924645,1874); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14140,'2017-06-28T14:10:23.838Z',NULL,30,7,42.7829881204479,1.81,31.098644040642768,1876); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14141,'2020-04-18T10:10:48.684Z',NULL,130,4,75.02573869315137,3.17,63.96346100620215,1876); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14142,'2020-02-13T04:07:13.126Z',NULL,38,2,66.06937283839378,2.79,79.82708218788422,1876); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14143,'2019-04-25T03:24:23.257Z',NULL,86,3,92.31436670850246,3.9,49.6585916793736,1876); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14144,'2018-12-10T13:09:44.962Z',4.910278935851689,12,2,116.01427581618326,6.96,42.46302301455295,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14145,'2019-01-03T08:49:49.486Z',NULL,35,2,71.53687730741436,4.29,108.14832242001735,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14146,'2019-01-22T21:13:04.147Z',NULL,52,2,103.67587240151535,6.22,195.714657822477,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14147,'2019-10-25T02:25:01.874Z',NULL,56,7,36.37128575934436,2.18,66.20714164849397,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14148,'2019-03-04T00:25:12.100Z',NULL,48,1,123.20884248534108,7.39,208.16678467245978,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14149,'2018-03-21T13:21:46.506Z',NULL,32,1,107.1448636959614,6.43,151.10192635367443,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14150,'2019-07-17T05:23:21.793Z',NULL,40,6,99.66240044231697,5.98,180.30914761122537,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14151,'2020-03-25T22:43:13.197Z',NULL,86,1,92.31436670850246,5.54,175.96793234626526,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14152,'2019-10-06T12:24:31.083Z',NULL,91,5,65.09432810381134,3.91,109.8532885589489,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14153,'2018-12-01T10:57:41.029Z',NULL,87,2,117.25536340498041,7.04,70.61607991747884,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14154,'2019-02-23T13:45:53.493Z',NULL,140,2,66.80312547576881,4.01,24.985585784988878,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14155,'2017-07-14T09:02:50.584Z',NULL,42,4,25.336071424606207,1.52,27.008538918766124,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14156,'2018-06-26T15:26:27.861Z',NULL,17,6,79.93608046792765,4.8,96.74345513897696,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14157,'2018-12-30T03:18:05.936Z',NULL,51,2,75.65058751905018,4.54,75.90690899010025,1877); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14158,'2019-02-06T03:02:18.912Z',NULL,141,2,126.20312547576883,7.89,94.14518967331487,1878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14159,'2020-03-13T12:06:43.904Z',NULL,48,1,123.20884248534108,7.7,199.49137369113006,1878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14160,'2020-03-05T18:34:01.463Z',4.910278935851689,130,1,75.02573869315137,4.69,76.48215576903326,1878); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14161,'2018-02-03T03:10:47.686Z',NULL,164,2,92.96789820016517,3.93,116.99597551322903,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14162,'2020-01-10T00:04:16.320Z',NULL,6,2,97.43621265344382,4.12,111.08416464910663,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14163,'2018-02-17T04:12:31.174Z',NULL,158,1,139.8942352373801,5.91,232.86248623100016,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14164,'2017-07-29T09:39:58.331Z',NULL,54,6,41.395738936015974,1.75,31.062899499770136,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14165,'2017-03-20T15:32:49.400Z',NULL,137,1,45.18165304538124,1.91,61.64898902697719,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14166,'2019-01-18T18:26:44.615Z',NULL,66,3,136.16126271106958,5.75,223.6345245886333,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14167,'2017-11-26T09:48:57.705Z',NULL,77,4,67.34461152277315,2.85,110.56364921756403,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14168,'2018-01-21T03:35:35.629Z',NULL,187,2,98.9770008385166,4.18,64.85856811945608,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14169,'2016-12-17T00:35:57.172Z',NULL,92,2,83.2616179105333,3.52,81.38392624749616,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14170,'2018-10-23T08:09:24.293Z',NULL,139,5,76.77768319177018,3.24,75.07692263910245,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14171,'2019-06-26T04:06:37.526Z',NULL,135,6,45.80402317157342,1.94,74.04617330523521,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14172,'2016-09-05T12:55:36.426Z',NULL,105,6,35.149014295079674,1.49,30.79845785410158,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14173,'2019-09-08T15:48:59.705Z',NULL,78,71,41.616917284159726,1.76,63.993138845832355,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14174,'2017-07-10T11:11:38.485Z',NULL,177,6,85.87953212963993,3.63,110.19178953731233,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14175,'2016-08-19T22:29:13.828Z',NULL,51,8,50.433725012700116,2.13,62.60152897277982,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14176,'2019-09-19T06:49:17.533Z',NULL,76,6,63.82421061366486,2.7,115.98813505487776,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14177,'2018-09-02T12:12:25.236Z',NULL,178,4,117.32963250370614,4.96,174.96470249225206,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14178,'2018-04-04T10:18:54.910Z',NULL,84,3,81.87627832636537,3.46,92.11978120812482,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14179,'2020-04-10T02:02:36.902Z',NULL,67,4,41.24480890795779,1.74,30.87528747125055,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14180,'2017-08-02T10:46:25.127Z',NULL,10,10,31.78621880685793,1.34,25.76933060083508,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14181,'2020-01-21T04:53:38.573Z',NULL,98,2,112.41825444654248,4.75,39.2340737765911,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14182,'2018-07-10T10:39:52.715Z',NULL,10,6,47.6793282102869,2.01,71.27945008348874,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14183,'2017-08-15T14:01:32.989Z',NULL,166,8,25.536330427467956,1.08,15.685256532660333,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14184,'2019-05-05T12:00:38.792Z',NULL,193,4,50.38077396807232,2.13,71.24378355954987,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14185,'2020-04-15T22:21:27.710Z',NULL,29,4,123.57448218067185,5.22,215.95906600340453,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14186,'2017-10-02T14:40:38.453Z',NULL,144,8,40.7988669736962,1.72,60.01729216562113,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14187,'2017-05-11T17:58:48.531Z',NULL,5,5,82.7450976850356,3.5,146.87245657168197,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14188,'2018-10-04T17:31:35.710Z',NULL,167,5,97.70449564120193,4.13,141.22907691858362,1881); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14189,'2017-12-22T17:29:42.423Z',NULL,78,2,27.74461152277315,0,29.743120296797674,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14190,'2018-11-29T09:34:15.436Z',NULL,109,3,119.04991068193098,0,152.44409763776463,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14191,'2019-10-15T01:13:02.528Z',NULL,63,5,133.5202262591817,0,182.51342365637862,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14192,'2020-01-13T20:57:41.946Z',NULL,52,2,103.67587240151535,0,184.49118388218093,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14193,'2018-03-01T20:20:54.360Z',NULL,167,1,97.70449564120193,0,85.88398609093132,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14194,'2019-01-08T16:24:43.482Z',NULL,39,3,114.58158180283459,0,43.732957250087715,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14195,'2020-04-16T23:19:06.886Z',NULL,121,4,40.44528328808107,0,21.183906570860138,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14196,'2020-02-17T19:01:19.993Z',9.57761755478932,16,2,66.11029954877317,0,110.39833251670815,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14197,'2020-03-15T02:45:18.553Z',NULL,137,1,67.77247956807186,0,86.31674971253007,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14198,'2019-10-13T02:48:07.853Z',NULL,7,7,148.22900526552291,0,95.48680423340733,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14199,'2017-12-14T15:18:07.116Z',NULL,121,2,26.96352219205405,0,46.70390652830364,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14200,'2019-10-25T17:06:14.720Z',NULL,62,7,133.5202262591817,0,54.70547955223757,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14201,'2019-08-01T07:32:40.732Z',NULL,62,8,133.5202262591817,0,116.38368546866681,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14202,'2016-12-22T21:07:05.657Z',NULL,125,2,53.59799471993963,0,91.1443862889401,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14203,'2018-09-15T13:33:22.654Z',NULL,55,5,95.77128575934437,0,146.6672900559157,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14204,'2017-11-08T23:33:35.175Z',NULL,81,3,29.288656154807867,0,34.77968147169493,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14205,'2018-08-14T04:08:20.880Z',NULL,187,8,98.9770008385166,0,103.74219892195124,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14206,'2020-01-28T19:50:02.197Z',NULL,120,3,83.5020135028928,0,95.11875525574376,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14207,'2019-01-07T12:14:07.617Z',NULL,146,3,126.04727121216614,0,208.30201129789933,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14208,'2019-07-08T04:02:59.091Z',5.077617554789321,23,7,116.86672609493307,0,122.98275355836091,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14209,'2019-08-16T11:13:06.699Z',NULL,192,10,69.18418520579327,0,89.83861544055175,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14210,'2019-01-02T03:59:25.966Z',NULL,169,3,59.53172693453274,0,57.151280245250376,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14211,'2019-02-02T13:31:10.644Z',NULL,181,2,143.88940370476112,0,110.96684996907166,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14212,'2020-04-11T17:54:42.901Z',NULL,109,3,119.04991068193098,0,136.19697355345002,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14213,'2017-07-07T07:35:51.830Z',NULL,178,5,78.21975500247076,0,112.59711750007581,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14214,'2018-02-23T08:38:00.393Z',9.57761755478932,11,2,132.45679913492563,0,66.64744693633295,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14215,'2019-02-13T23:50:46.312Z',NULL,191,2,128.5841852057933,0,209.1538973942739,1882); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14216,'2017-10-13T07:09:37.398Z',NULL,38,5,44.04624855892918,2.64,19.201959363692456,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14217,'2017-10-10T07:36:00.860Z',NULL,54,7,41.395738936015974,2.48,36.761835242714554,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14218,'2018-03-15T09:11:09.744Z',NULL,112,1,41.329386510090345,2.48,54.77800240377641,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14219,'2019-06-01T16:50:52.902Z',NULL,116,7,114.42485125407785,6.87,41.288763177692246,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14220,'2020-02-10T14:19:11.514Z',NULL,131,2,113.11722203337729,6.79,43.32045762087284,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14221,'2017-08-14T16:52:23.089Z',NULL,84,6,54.58418555091025,3.28,31.285384447932422,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14222,'2018-11-14T20:17:40.230Z',NULL,49,2,131.42865839323724,7.89,132.97595490739388,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14223,'2019-02-08T08:54:00.009Z',3.5564686564651193,90,2,123.1196127553999,7.39,239.29834699716392,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14224,'2018-09-09T20:18:35.375Z',8.05646865646512,110,5,55.526746186906664,3.33,38.09102981435502,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14225,'2020-03-15T04:33:04.782Z',NULL,7,1,148.22900526552291,8.89,238.37743355892053,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14226,'2019-01-15T18:35:52.383Z',NULL,87,2,117.25536340498041,7.04,162.96247147495652,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14227,'2019-05-09T07:26:42.416Z',NULL,91,43,65.09432810381134,3.91,116.46757698172097,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14228,'2020-02-21T19:55:43.323Z',8.05646865646512,36,2,130.93687730741433,7.86,126.60848513405799,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14229,'2019-12-13T16:22:43.711Z',3.5564686564651193,108,3,50.094887884945365,3.01,63.34884001388828,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14230,'2019-09-07T16:33:47.254Z',NULL,37,5,80.10774204020768,4.81,81.1248154525383,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14231,'2019-05-14T21:51:13.658Z',NULL,127,3,134.48016314504417,8.07,177.43531598636034,1886); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14232,'2019-09-14T23:42:53.429Z',NULL,83,5,81.87627832636537,4.91,77.01533785034363,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14233,'2017-06-18T04:55:23.259Z',NULL,5,6,82.7450976850356,4.96,121.99559640697292,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14234,'2019-09-02T21:28:48.853Z',NULL,170,5,105.07665741496471,6.3,171.5316384010236,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14235,'2019-10-14T03:18:06.498Z',NULL,197,7,70.14610686710009,4.21,135.34383365116486,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14236,'2020-03-19T14:35:00.516Z',NULL,72,1,142.20381898788685,8.53,104.90477772306903,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14237,'2019-03-31T03:42:19.617Z',NULL,101,1,139.82488066180403,8.39,86.63918221889459,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14238,'2017-05-08T17:02:12.362Z',NULL,110,4,37.01783079127111,2.22,30.418699794864825,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14239,'2019-09-15T02:11:21.663Z',NULL,159,5,35.53017445377361,2.13,45.42118779890648,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14240,'2017-06-25T12:56:56.969Z',NULL,199,5,76.95334253952366,4.62,97.7414922390678,1888); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14241,'2017-02-18T19:07:53.949Z',NULL,141,2,84.13541698384589,3.37,55.764980401245396,1889); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14242,'2019-06-15T04:21:22.524Z',NULL,116,8,114.42485125407785,4.58,106.38144267473263,1889); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14243,'2017-02-23T07:23:28.383Z',8.05646865646512,35,2,47.691251538276234,1.91,83.61368267080667,1889); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14244,'2018-12-08T12:26:30.971Z',NULL,118,3,57.627613096978735,2.31,37.17446493605254,1889); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14245,'2019-11-25T18:06:21.066Z',NULL,6,3,97.43621265344382,3.9,65.32045064268723,1889); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14246,'2016-12-08T10:59:08.858Z',NULL,36,2,87.29125153827623,4.8,103.7799629212954,1891); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14247,'2016-07-10T02:01:42.441Z',NULL,2,5,70.07989613071763,3.85,125.635682503759,1891); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14248,'2017-05-24T20:38:45.814Z',NULL,17,3,53.290720311951766,2.93,79.62851941195639,1891); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14249,'2017-11-16T22:49:24.749Z',NULL,156,3,20.41053609936413,1.12,22.674449823860503,1891); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14250,'2017-04-11T08:30:12.276Z',NULL,181,4,95.92626913650741,3.84,50.30836450618295,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14251,'2018-05-29T19:58:37.644Z',NULL,139,5,76.77768319177018,3.07,118.52067157100228,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14252,'2017-11-11T11:06:45.794Z',8.05646865646512,62,3,89.0134841727878,3.56,128.23801527976283,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14253,'2017-08-29T00:05:47.525Z',NULL,144,5,40.7988669736962,1.63,50.53351662376103,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14254,'2020-03-23T10:52:17.533Z',3.5564686564651193,174,1,111.61430894181083,4.46,207.3969227647562,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14255,'2017-12-27T07:42:15.873Z',NULL,144,2,40.7988669736962,1.63,68.21199621631217,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14256,'2017-10-05T20:16:30.043Z',NULL,60,4,19.86809834572766,0.79,6.933545104599825,1895); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14257,'2018-09-24T18:10:06.052Z',NULL,162,5,33.56789820016516,1.59,17.447304601555278,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14258,'2019-03-01T11:35:02.861Z',NULL,195,1,109.78077396807234,5.21,162.02263790892232,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14259,'2018-05-23T15:38:45.278Z',NULL,123,4,110.93145648834248,5.27,56.07169759985979,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14260,'2019-10-19T16:52:51.463Z',NULL,114,7,77.91196471862148,3.7,131.9384610095017,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14261,'2019-11-21T04:41:54.327Z',NULL,53,3,44.27587240151534,2.1,15.483638807343898,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14262,'2020-01-10T09:48:06.546Z',NULL,177,1,128.8192981944599,6.12,194.40255565689,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14263,'2019-02-05T18:14:57.886Z',8.187464134892346,17,1,79.93608046792765,3.8,88.68561231941429,1896); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14264,'2019-08-17T20:39:55.260Z',NULL,144,5,61.1983004605443,4.28,75.12138853176455,1897); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14265,'2017-09-01T22:29:44.847Z',NULL,101,5,93.21658710786936,6.53,93.23892075513658,1897); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14266,'2018-09-05T08:10:04.179Z',NULL,98,5,112.41825444654248,7.87,101.9661583410271,1897); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14267,'2016-11-27T13:05:20.330Z',NULL,142,3,46.8990203814063,3.28,56.11667341130284,1897); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14268,'2018-07-12T13:37:42.416Z',NULL,165,5,38.30449564120193,2.3,16.221178793948752,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14269,'2019-10-07T12:33:46.140Z',NULL,51,6,75.65058751905018,4.54,101.37983165928007,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14270,'2019-04-14T01:43:11.696Z',NULL,12,3,116.01427581618326,6.96,47.05706197603443,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14271,'2018-08-20T17:06:21.944Z',NULL,68,5,115.24343882309758,6.91,152.8983883783562,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14272,'2018-12-29T22:57:51.161Z',NULL,200,2,73.20395711799151,4.39,41.42569175253242,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14273,'2017-03-15T04:54:52.089Z',NULL,65,10,45.4851315098001,2.73,26.133538832944225,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14274,'2019-08-19T02:30:21.814Z',NULL,71,7,82.80381898788684,4.97,96.70878163067394,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14275,'2018-03-11T07:10:12.961Z',NULL,81,1,43.9329842322118,2.64,38.3225061915561,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14276,'2019-01-16T23:17:51.071Z',3.6874641348923456,194,3,50.38077396807232,3.02,84.05963599222228,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14277,'2019-02-17T18:40:56.099Z',NULL,116,2,114.42485125407785,6.87,71.03255300181631,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14278,'2017-09-27T03:11:07.833Z',NULL,151,5,61.07534871228964,3.66,30.457060014629885,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14279,'2019-08-08T14:16:23.177Z',NULL,199,7,115.4300138092855,6.93,69.22114670213122,1899); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14280,'2018-10-25T08:54:59.348Z',NULL,155,4,43.77574310182776,0,66.0417839451984,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14281,'2019-03-05T06:39:39.103Z',NULL,149,1,69.15415037577924,0,97.99856495671428,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14282,'2019-07-28T07:24:18.851Z',NULL,196,5,70.14610686710009,0,80.771284133722,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14283,'2018-05-21T08:49:56.522Z',NULL,196,4,70.14610686710009,0,67.9786197785738,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14284,'2019-06-20T12:20:23.614Z',NULL,183,6,56.697412301919755,0,43.80336210508072,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14285,'2020-01-17T12:15:11.563Z',3.6874641348923456,200,3,73.20395711799151,0,45.186752025664035,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14286,'2018-04-05T02:38:47.838Z',NULL,187,3,98.9770008385166,0,165.02376242162066,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14287,'2018-03-22T06:49:09.867Z',NULL,169,1,59.53172693453274,0,81.94211661465135,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14288,'2017-12-07T16:47:28.862Z',NULL,171,3,70.05110494330981,0,55.17017531469188,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14289,'2020-01-08T03:31:41.328Z',8.187464134892346,186,3,98.9770008385166,0,104.67318050613804,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14290,'2019-10-14T12:32:32.895Z',NULL,164,6,92.96789820016517,0,100.19725262302867,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14291,'2018-03-19T03:43:49.911Z',NULL,26,1,68.12471180754113,0,27.900532922610815,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14292,'2019-07-07T03:46:36.266Z',NULL,6,6,97.43621265344382,0,44.78439474989123,1901); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14293,'2019-11-21T22:46:35.269Z',NULL,69,4,73.38772304360626,0,133.65420276175047,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14294,'2020-04-14T16:26:44.577Z',NULL,141,3,126.20312547576883,0,122.5712303829073,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14295,'2019-07-27T07:23:58.354Z',NULL,52,4,103.67587240151535,0,132.75073940637714,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14296,'2019-11-21T19:38:22.102Z',NULL,1,22,44.19489169601981,0,31.018424492259864,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14297,'2019-12-02T10:58:08.968Z',NULL,116,1,114.42485125407785,0,169.9731773635234,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14298,'2018-07-06T00:04:28.404Z',NULL,105,5,52.723521442619514,0,46.44660863271818,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14299,'2017-12-01T04:49:13.842Z',NULL,173,2,81.57679953529707,0,60.97030224941338,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14300,'2018-10-14T01:15:55.000Z',NULL,35,4,71.53687730741436,0,90.45310726671529,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14301,'2020-04-04T19:35:48.554Z',3.231080904771333,11,3,132.45679913492563,0,240.67694722920413,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14302,'2017-09-23T09:12:35.111Z',NULL,106,5,35.149014295079674,0,51.55466351203321,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14303,'2018-06-18T06:50:43.840Z',NULL,11,6,132.45679913492563,0,86.37880303954609,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14304,'2020-03-23T10:44:51.971Z',NULL,42,1,38.00410713690931,0,65.47228462394429,1902); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14305,'2017-11-04T11:06:36.910Z',NULL,116,2,76.28323416938524,3.43,146.54484311244937,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14306,'2018-02-16T23:19:48.661Z',NULL,200,2,73.20395711799151,3.29,123.16269878808912,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14307,'2019-01-30T12:23:43.656Z',NULL,144,2,61.1983004605443,2.75,42.14834714854925,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14308,'2018-01-30T04:23:28.394Z',NULL,28,1,68.12471180754113,3.07,28.63669035056029,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14309,'2018-12-26T07:49:31.227Z',NULL,100,1,67.83486485383094,3.05,34.879062021845726,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14310,'2019-03-28T21:06:14.527Z',NULL,49,1,131.42865839323724,5.91,207.44749574444572,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14311,'2019-06-12T18:11:30.172Z',NULL,198,4,70.14610686710009,3.16,73.25622780288569,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14312,'2018-08-18T16:25:26.231Z',NULL,7,5,148.22900526552291,6.67,79.35581666695921,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14313,'2017-11-29T23:55:04.623Z',3.231080904771333,12,2,77.34285054412217,3.48,120.98804484247275,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14314,'2020-02-05T01:30:44.283Z',NULL,57,1,122.4223933583994,5.51,42.351625580691106,1903); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14315,'2020-01-13T09:47:37.307Z',NULL,84,2,81.87627832636537,5.12,97.43126273076368,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14316,'2017-01-03T14:43:22.851Z',7.731080904771333,120,2,55.668009001928525,3.48,61.236391549400864,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14317,'2018-11-08T12:36:01.847Z',NULL,48,2,123.20884248534108,7.7,53.67154347086643,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14318,'2018-07-21T06:26:02.203Z',NULL,17,5,79.93608046792765,5,124.86374071937315,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14319,'2018-08-28T10:46:53.824Z',NULL,148,9,138.9817182254566,8.69,134.21170250950684,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14320,'2018-04-10T11:28:50.093Z',NULL,4,4,110.98767151282252,6.94,69.28052698964923,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14321,'2018-08-12T04:17:32.844Z',NULL,139,9,76.77768319177018,4.8,133.01662177420724,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14322,'2017-08-16T23:26:37.357Z',NULL,56,7,24.24752383956291,1.52,34.500169765097695,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14323,'2019-12-01T11:51:58.329Z',NULL,9,1,87.46968147789205,5.47,103.33141503468187,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14324,'2018-07-29T17:53:15.035Z',NULL,137,5,67.77247956807186,4.24,122.46832167713694,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14325,'2019-07-29T19:14:35.952Z',NULL,179,5,68.32408657333919,4.27,88.34996535110614,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14326,'2017-07-12T03:50:06.577Z',NULL,68,5,76.82895921539838,4.8,25.743163953608736,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14327,'2019-04-07T02:30:06.223Z',NULL,177,4,128.8192981944599,8.05,187.19444546440639,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14328,'2019-10-04T23:13:06.921Z',3.231080904771333,146,7,126.04727121216614,7.88,44.5325539238338,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14329,'2018-12-23T01:07:18.117Z',NULL,137,2,67.77247956807186,4.24,72.62871825720694,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14330,'2019-07-29T21:16:03.087Z',NULL,130,3,75.02573869315137,4.69,65.04994355261779,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14331,'2017-11-04T08:16:34.310Z',NULL,138,3,75.96718984479077,4.75,28.087634491168778,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14332,'2018-04-10T16:05:26.375Z',NULL,32,4,107.1448636959614,6.7,99.31823146130793,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14333,'2018-12-01T23:32:32.598Z',NULL,25,2,68.62263967182464,4.29,63.59725647630513,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14334,'2019-02-11T21:49:10.115Z',NULL,37,2,80.10774204020768,5.01,39.12738522200747,1905); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14335,'2018-05-01T22:37:36.601Z',NULL,180,4,68.32408657333919,3.5,42.268883170240144,1906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14336,'2017-07-22T05:37:47.826Z',NULL,133,3,45.654646865558064,2.34,60.38952457637707,1906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14337,'2017-09-27T16:50:16.727Z',NULL,79,5,27.74461152277315,1.42,18.29256169280825,1906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14338,'2019-12-10T03:21:14.899Z',NULL,119,2,43.43814329652384,2.23,76.6006755672194,1906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14339,'2017-05-27T22:14:38.322Z',NULL,126,4,83.49598746872304,4.28,135.958545243273,1906); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14340,'2019-12-24T12:09:54.196Z',NULL,82,1,60.89545738030947,3.65,117.44298618562408,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14341,'2017-08-10T08:03:29.912Z',6.349545803018533,21,6,40.38334406304544,2.42,71.92646639071651,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14342,'2019-03-17T13:42:48.645Z',NULL,176,1,57.92480943352658,3.48,91.63039296714413,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14343,'2018-02-27T12:21:24.207Z',NULL,119,1,43.43814329652384,2.61,72.48513118393056,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14344,'2017-10-09T18:16:34.064Z',NULL,142,4,46.8990203814063,2.81,23.31583507006389,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14345,'2018-01-27T11:49:38.210Z',NULL,58,2,78.14578007078882,4.69,129.75025227950914,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14346,'2017-12-18T12:16:09.867Z',NULL,53,2,29.517248267676894,1.77,40.11007263173063,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14347,'2017-10-14T18:03:24.312Z',NULL,28,3,45.41647453836076,2.72,27.131685426245532,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14348,'2019-09-18T01:13:39.000Z',NULL,88,4,105.41292031622555,6.32,190.61451700927225,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14349,'2017-12-18T14:20:23.460Z',NULL,103,2,31.361435038520785,1.88,37.350869877085564,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14350,'2019-04-15T21:53:06.507Z',NULL,162,2,33.56789820016516,2.01,16.05519452226317,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14351,'2017-03-25T02:15:45.530Z',NULL,185,1,26.384667225677738,1.58,29.83101709247264,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14352,'2019-09-24T08:34:10.059Z',NULL,161,4,47.59120561297272,2.86,18.488178794187085,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14353,'2018-12-15T21:15:35.470Z',NULL,27,2,127.52471180754115,7.65,93.7144095108603,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14354,'2018-03-14T09:25:17.148Z',NULL,127,1,134.48016314504417,8.07,56.82813651556504,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14355,'2018-06-19T10:41:31.919Z',NULL,50,7,53.64019616819762,3.22,22.73572735945087,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14356,'2020-04-10T13:27:50.515Z',NULL,79,3,41.616917284159726,2.5,53.997206518764855,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14357,'2018-01-28T06:42:18.283Z',NULL,58,2,78.14578007078882,4.69,111.66439440964787,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14358,'2019-01-12T05:03:35.273Z',NULL,22,2,32.136779940663494,1.93,49.19703153237636,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14359,'2018-08-21T18:17:04.724Z',NULL,38,7,66.06937283839378,3.96,49.99182250570159,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14360,'2018-08-02T11:19:26.790Z',1.8495458030185332,137,6,67.77247956807186,4.07,128.89550727940386,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14361,'2018-06-29T22:39:11.856Z',NULL,7,3,148.22900526552291,8.89,232.8837745205491,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14362,'2017-11-09T23:28:26.700Z',NULL,155,2,29.183828734551838,1.75,39.164907066411715,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14363,'2019-10-26T04:35:01.845Z',NULL,59,4,89.20214751859149,5.35,147.35100530761525,1908); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14364,'2018-01-14T19:10:47.428Z',NULL,149,1,69.15415037577924,4.15,85.01493698090715,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14365,'2020-03-09T01:03:24.733Z',NULL,60,1,29.80214751859149,1.79,39.621716145033325,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14366,'2018-05-13T11:51:23.930Z',NULL,129,3,148.1672972165937,8.89,166.53697201799784,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14367,'2018-01-30T11:23:25.819Z',1.8495458030185332,75,2,125.81276373452337,7.55,90.04245955833233,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14368,'2019-11-15T23:02:32.301Z',NULL,3,2,53.08311732230858,3.18,37.59099640909654,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14369,'2017-02-01T18:36:46.784Z',NULL,29,2,82.3829881204479,4.94,87.48597039031533,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14370,'2018-01-24T13:34:40.857Z',NULL,179,2,68.32408657333919,4.1,81.64717285785876,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14371,'2017-04-10T12:35:54.409Z',NULL,173,2,81.57679953529707,4.89,77.85402499694052,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14372,'2018-04-19T21:14:37.085Z',NULL,115,2,77.91196471862148,4.67,128.0599479035672,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14373,'2017-06-21T22:34:17.284Z',NULL,128,5,50.053442096696116,3,66.14460231983054,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14374,'2018-07-13T03:28:15.112Z',NULL,25,5,68.62263967182464,4.12,38.851611669064255,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14375,'2017-04-04T23:14:43.956Z',NULL,166,2,25.536330427467956,1.53,12.492765740865465,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14376,'2017-10-28T12:21:05.360Z',NULL,116,3,76.28323416938524,4.58,76.58132569183388,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14377,'2020-03-14T13:33:49.189Z',NULL,134,1,42.49233549998661,2.55,76.25390790443967,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14378,'2020-03-10T00:03:37.329Z',NULL,84,1,81.87627832636537,4.91,158.11061304180663,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14379,'2017-03-17T10:32:47.941Z',NULL,79,1,27.74461152277315,1.66,33.70102627676106,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14380,'2020-03-07T10:08:44.708Z',NULL,45,1,118.0495173798411,7.08,143.898100815484,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14381,'2020-01-11T13:14:37.455Z',NULL,42,1,38.00410713690931,2.28,25.195553948027598,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14382,'2017-06-05T09:57:55.811Z',NULL,151,3,61.07534871228964,3.66,75.5633067326234,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14383,'2018-02-21T00:11:51.870Z',NULL,84,1,81.87627832636537,4.91,141.1508182153871,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14384,'2016-10-25T17:14:29.983Z',NULL,8,3,65.89215669329305,3.95,35.103719948757565,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14385,'2018-02-07T05:59:53.632Z',NULL,75,1,125.81276373452337,7.55,73.1215217679154,1909); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14386,'2020-01-19T01:56:00.595Z',NULL,39,2,114.58158180283459,4.84,153.55932506505755,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14387,'2018-03-06T07:49:09.794Z',NULL,40,1,99.66240044231697,4.21,134.02319564517597,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14388,'2017-12-02T12:47:45.652Z',NULL,18,2,54.60204747398195,2.31,81.07797367584283,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14389,'2020-01-05T04:48:19.560Z',NULL,84,1,81.87627832636537,3.46,139.85841815245078,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14390,'2018-11-17T07:43:12.624Z',NULL,8,2,98.83823503993958,4.18,110.68683543754294,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14391,'2018-06-05T21:21:11.269Z',NULL,186,5,98.9770008385166,4.18,118.8151225122717,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14392,'2019-01-28T18:25:09.918Z',NULL,33,2,47.7448636959614,2.02,87.70965730932467,1910); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14393,'2017-11-10T07:31:24.081Z',NULL,180,2,45.549391048892794,3.42,26.483072376008664,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14394,'2018-05-10T14:55:50.374Z',NULL,30,2,64.17448218067184,4.81,38.545941020960186,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14395,'2018-03-29T18:59:46.410Z',NULL,127,1,134.48016314504417,10.09,200.22182063138584,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14396,'2017-04-25T16:21:37.207Z',1.8138966218397212,87,2,78.17024226998694,5.86,109.08060731411092,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14397,'2018-07-25T10:39:08.602Z',NULL,46,3,118.0495173798411,8.85,114.9435922749557,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14398,'2020-03-06T23:40:20.995Z',NULL,83,1,81.87627832636537,6.14,90.74399512438234,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14399,'2017-02-24T10:46:56.425Z',NULL,117,1,36.683234169385244,2.75,60.958935118044,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14400,'2019-02-01T07:12:00.883Z',NULL,39,1,114.58158180283459,8.59,168.45473415459566,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14401,'2016-09-28T23:17:47.896Z',NULL,146,5,84.03151414144409,6.3,62.052028333132064,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14402,'2018-04-06T13:42:39.677Z',1.8138966218397212,106,3,52.723521442619514,3.95,31.12014925009382,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14403,'2019-03-13T07:40:52.697Z',NULL,43,1,76.35255205175756,5.73,32.912762769563635,1911); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14404,'2017-06-21T13:54:25.547Z',NULL,27,5,85.01647453836077,5.1,127.78528952971463,1912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14405,'2018-05-24T23:59:07.687Z',NULL,187,3,98.9770008385166,5.94,148.4407059487278,1912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14406,'2019-05-28T02:46:04.439Z',NULL,7,3,148.22900526552291,8.89,238.3858429780237,1912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14407,'2016-11-30T17:16:39.349Z',NULL,153,2,44.532615427854914,2.67,56.60218149651743,1912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14408,'2018-03-21T06:30:56.432Z',NULL,93,1,49.81864156655383,2.99,43.02235245979307,1912); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14409,'2018-01-08T20:14:31.251Z',6.313896621839721,111,2,55.526746186906664,2.22,69.1492585689062,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14410,'2019-04-11T15:33:43.022Z',NULL,148,3,138.9817182254566,5.56,215.0960844869456,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14411,'2018-04-11T10:11:17.728Z',NULL,63,3,133.5202262591817,5.34,208.41325042970593,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14412,'2019-02-27T14:54:34.217Z',6.313896621839721,15,1,37.648145389078365,1.51,12.647557432146597,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14413,'2020-03-09T13:52:53.420Z',6.313896621839721,14,1,37.648145389078365,1.51,19.14990787090863,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14414,'2018-03-19T22:45:26.623Z',NULL,35,1,71.53687730741436,2.86,75.43764999582481,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14415,'2017-10-27T12:09:58.807Z',NULL,38,6,44.04624855892918,1.76,45.43471289023704,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14416,'2016-08-04T23:09:34.217Z',NULL,117,7,36.683234169385244,1.47,27.147499841155515,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14417,'2017-12-12T20:19:05.254Z',NULL,90,2,82.07974183693327,3.28,66.15587963871735,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14418,'2019-11-15T09:43:34.101Z',NULL,3,2,53.08311732230858,2.12,84.6032556360465,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14419,'2017-01-10T11:54:27.807Z',1.8138966218397212,10,2,31.78621880685793,1.27,35.61684161561905,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14420,'2017-05-28T18:38:14.576Z',NULL,6,3,64.95747510229587,2.6,36.9183518090512,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14421,'2017-03-29T22:37:03.463Z',NULL,15,1,25.09876359271891,1,39.746224213938405,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14422,'2017-10-07T22:05:13.793Z',6.313896621839721,106,4,35.149014295079674,1.41,51.98510037144085,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14423,'2018-02-18T15:30:54.970Z',NULL,181,1,143.88940370476112,5.76,97.63738384962853,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14424,'2020-01-09T14:52:39.308Z',NULL,199,2,115.4300138092855,4.62,175.42525756470104,1913); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14425,'2018-03-27T03:28:50.397Z',NULL,106,1,52.723521442619514,2.64,102.07724219455024,1914); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14426,'2017-06-11T20:05:55.175Z',NULL,58,6,52.097186713859216,2.67,31.50244598533462,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14427,'2018-10-18T05:09:21.145Z',NULL,102,5,47.04215255778118,2.41,61.67328008505447,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14428,'2017-11-12T06:47:06.217Z',NULL,181,2,95.92626913650741,4.92,164.4039553490277,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14429,'2017-09-07T06:06:42.348Z',NULL,64,5,95.61478497145774,4.9,100.03884858735469,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14430,'2018-08-11T08:51:10.854Z',NULL,145,8,61.1983004605443,3.14,47.419293203765456,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14431,'2018-05-17T12:11:04.621Z',NULL,55,5,95.77128575934437,4.91,171.74003036354966,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14432,'2019-11-28T05:13:43.739Z',NULL,70,3,57.493003808959784,2.95,82.58298323883689,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14433,'2019-07-29T16:44:47.215Z',2.807032873501008,145,5,61.1983004605443,3.14,95.62399958929362,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14434,'2017-01-24T10:05:19.943Z',NULL,139,2,51.18512212784679,2.62,18.56553485808962,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14435,'2020-02-12T06:31:08.344Z',NULL,192,2,69.18418520579327,3.55,102.87274528312545,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14436,'2020-02-16T10:01:18.464Z',NULL,157,2,139.8942352373801,7.17,57.9375403834492,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14437,'2019-11-13T18:31:18.519Z',2.807032873501008,95,3,49.81864156655383,2.55,48.47714767149796,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14438,'2019-12-27T13:48:43.554Z',NULL,191,2,128.5841852057933,6.59,151.87162534560824,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14439,'2019-05-29T09:10:22.859Z',7.307032873501008,145,4,61.1983004605443,3.14,28.938084167560476,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14440,'2018-07-26T04:48:55.169Z',NULL,35,5,71.53687730741436,3.67,31.815145102857844,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14441,'2019-09-15T23:04:49.580Z',NULL,70,5,57.493003808959784,2.95,94.86723320199002,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14442,'2017-06-01T08:32:29.175Z',NULL,58,6,52.097186713859216,2.67,80.12508112739108,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14443,'2017-11-04T06:42:02.625Z',NULL,33,4,31.829909130640935,1.63,56.67549743259626,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14444,'2020-01-15T17:18:50.745Z',NULL,89,2,63.719612755399886,3.27,53.887720195080746,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14445,'2016-11-24T16:00:18.610Z',NULL,146,2,84.03151414144409,4.31,47.64483936406532,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14446,'2017-10-30T15:06:48.206Z',NULL,2,4,70.07989613071763,3.59,72.01543953664371,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14447,'2017-02-02T23:41:44.863Z',NULL,126,1,83.49598746872304,4.28,79.84775776561631,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14448,'2018-04-02T12:53:37.692Z',NULL,99,2,67.83486485383094,3.48,111.00176921601815,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14449,'2016-12-08T12:15:19.644Z',NULL,71,1,55.202545991924566,2.83,70.87679440581273,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14450,'2017-07-26T08:17:04.315Z',NULL,143,3,40.7988669736962,2.09,68.04471612584355,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14451,'2018-11-19T18:24:37.859Z',NULL,150,3,128.55415037577922,6.59,90.66753471521554,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14452,'2016-11-22T20:51:34.097Z',NULL,9,4,58.31312098526137,2.99,45.954384015043026,1915); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14453,'2019-11-04T04:19:20.105Z',NULL,20,3,37.32649625046575,2.61,47.99103304198493,1920); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14454,'2018-09-28T04:03:09.781Z',NULL,171,5,105.07665741496471,7.36,163.2916431085315,1920); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14455,'2017-11-08T22:06:49.543Z',NULL,194,3,33.587182645381546,2.35,42.86709528329574,1920); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14456,'2017-11-06T17:17:01.043Z',NULL,88,2,70.27528021081703,4.92,104.7535877645783,1920); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14457,'2018-01-02T01:52:43.367Z',NULL,78,2,41.616917284159726,2.91,58.323933930945,1920); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14458,'2016-12-11T06:08:10.573Z',NULL,13,2,75.0861692740371,4.88,57.77428378879444,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14459,'2017-07-12T11:50:49.078Z',NULL,198,6,46.76407124473339,3.04,55.580553647486454,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14460,'2018-08-24T14:31:24.765Z',NULL,196,7,70.14610686710009,4.56,25.159926537353364,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14461,'2018-08-05T22:21:02.857Z',NULL,32,7,107.1448636959614,6.96,73.27817473457101,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14462,'2019-09-09T18:26:03.209Z',NULL,100,6,67.83486485383094,4.41,100.79334212497228,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14463,'2017-07-14T15:35:59.421Z',3.060744220316791,74,5,34.08536151591033,2.22,32.455988041871244,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14464,'2019-08-30T18:38:26.537Z',NULL,170,5,105.07665741496471,6.83,175.4322239434725,1921); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14465,'2019-07-24T07:51:56.316Z',NULL,123,5,110.93145648834248,6.93,206.54078399440823,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14466,'2019-05-16T07:27:52.699Z',NULL,51,4,75.65058751905018,4.73,136.18446021056536,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14467,'2020-02-15T00:13:30.510Z',NULL,118,2,57.627613096978735,3.6,42.921143839196205,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14468,'2018-08-15T02:31:51.529Z',NULL,74,8,51.12804227386549,3.2,72.95393270554136,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14469,'2019-02-04T09:56:34.594Z',NULL,77,2,101.01691728415972,6.31,62.210088092711345,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14470,'2018-08-13T05:33:17.780Z',NULL,90,8,123.1196127553999,7.69,155.99385122845547,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14471,'2019-11-19T23:38:00.537Z',NULL,85,3,54.90104734428525,3.43,38.83478260289613,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14472,'2018-04-28T14:59:50.345Z',NULL,180,3,68.32408657333919,4.27,81.1398263208664,1924); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14473,'2019-06-19T18:21:35.960Z',NULL,122,8,99.84528328808108,5.99,58.29892736747877,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14474,'2018-09-08T13:50:01.165Z',NULL,26,5,68.12471180754113,4.09,129.72886438746448,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14475,'2018-07-12T06:58:02.583Z',NULL,6,3,97.43621265344382,5.85,62.03437537046516,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14476,'2016-11-18T18:25:48.567Z',NULL,30,2,42.7829881204479,2.57,74.70472966440533,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14477,'2017-11-03T03:57:41.222Z',NULL,52,3,69.1172482676769,4.15,104.53613530272892,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14478,'2019-04-17T22:57:24.422Z',NULL,24,4,112.30643674729413,6.74,118.73013912386206,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14479,'2020-01-24T12:14:23.471Z',NULL,96,2,104.82144858590365,6.29,91.99280898923642,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14480,'2019-08-10T19:49:40.793Z',NULL,60,8,29.80214751859149,1.79,54.78003014845994,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14481,'2020-02-24T21:18:04.954Z',NULL,52,2,103.67587240151535,6.22,86.80383499135317,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14482,'2016-09-16T10:53:28.528Z',NULL,55,5,63.84752383956291,3.83,92.82252803359012,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14483,'2020-02-01T08:22:09.159Z',NULL,135,2,45.80402317157342,2.75,26.602230165804034,1926); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14484,'2018-02-19T05:53:42.375Z',NULL,65,2,68.22769726470014,4.26,89.26755074508657,1928); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14485,'2018-05-17T00:37:22.092Z',NULL,8,4,98.83823503993958,6.18,132.03510947618295,1928); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14486,'2018-07-18T10:07:36.040Z',NULL,64,3,143.4221774571866,6.45,113.19138790457082,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14487,'2019-04-15T11:52:33.731Z',NULL,110,2,55.526746186906664,2.5,96.99147869669369,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14488,'2019-03-26T14:17:34.036Z',NULL,107,1,50.094887884945365,2.25,53.343039320945664,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14489,'2017-01-25T17:52:46.234Z',NULL,95,2,33.212427711035886,1.49,47.060544540945024,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14490,'2018-10-12T16:31:12.189Z',NULL,41,5,63.50890855689462,2.86,98.19676823063867,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14491,'2018-10-25T16:50:10.100Z',NULL,168,5,118.93172693453273,5.35,209.2591369026479,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14492,'2017-03-29T02:37:36.678Z',NULL,166,1,25.536330427467956,1.15,33.59496641437194,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14493,'2018-01-08T09:24:09.021Z',NULL,127,2,134.48016314504417,6.05,172.78955048543105,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14494,'2018-10-07T07:52:18.076Z',NULL,80,5,54.91325681036414,2.47,34.07241624509191,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14495,'2017-05-05T08:43:48.744Z',NULL,198,4,46.76407124473339,2.1,38.45146756429556,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14496,'2017-09-01T11:21:00.506Z',NULL,37,4,53.40516136013846,2.4,96.12762040602118,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14497,'2019-02-18T15:59:34.032Z',NULL,185,1,39.57700083851661,1.78,62.24829286272071,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14498,'2019-03-27T20:26:46.628Z',NULL,138,1,113.95078476718615,5.13,206.33541749231765,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14499,'2020-02-20T01:10:51.162Z',NULL,118,1,57.627613096978735,2.59,22.816152971554104,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14500,'2018-08-25T23:18:56.371Z',NULL,176,8,57.92480943352658,2.61,74.78378962209878,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14501,'2020-04-16T16:17:32.063Z',NULL,7,3,148.22900526552291,6.67,233.82450600094273,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14502,'2018-11-20T17:33:23.687Z',NULL,185,2,39.57700083851661,1.78,21.47024613101016,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14503,'2017-04-15T09:39:56.520Z',NULL,200,2,48.802638078661005,2.2,84.83195967156193,1929); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14504,'2016-11-26T23:11:12.907Z',NULL,179,2,45.549391048892794,0,22.414232553204037,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14505,'2018-08-03T17:10:22.822Z',NULL,54,4,62.09360840402396,0,27.4767365202825,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14506,'2019-12-12T00:10:58.251Z',NULL,52,2,103.67587240151535,0,54.442735395356515,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14507,'2020-01-23T20:42:25.095Z',NULL,100,2,67.83486485383094,0,92.80282968334035,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14508,'2019-11-07T15:44:58.523Z',6.968653007324936,18,3,81.90307121097293,0,99.24863490279512,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14509,'2018-06-16T18:27:29.201Z',NULL,121,7,40.44528328808107,0,58.07701320652277,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14510,'2019-03-15T15:51:14.567Z',NULL,91,1,65.09432810381134,0,119.84784873486885,1930); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14511,'2017-10-13T09:01:36.059Z',NULL,158,5,93.26282349158673,6.53,184.458163334182,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14512,'2018-05-08T23:06:22.085Z',NULL,154,4,81.87529553312261,5.73,30.731911168214143,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14513,'2019-09-02T01:58:52.306Z',NULL,173,6,122.3651993029456,8.57,161.91587023315054,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14514,'2018-07-06T05:53:37.647Z',NULL,151,6,91.61302306843446,6.41,179.42392964182827,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14515,'2019-01-20T23:29:10.635Z',NULL,128,2,75.08016314504417,5.26,135.06015322282613,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14516,'2019-10-17T06:21:50.566Z',6.968653007324936,174,5,111.61430894181083,7.81,110.77054271579843,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14517,'2020-02-05T11:02:02.210Z',2.468653007324936,134,2,42.49233549998661,2.97,49.924388639635104,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14518,'2019-03-29T04:37:33.444Z',NULL,83,1,81.87627832636537,5.73,66.78475174887436,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14519,'2019-10-31T15:10:27.043Z',NULL,167,6,97.70449564120193,6.84,42.13045520840624,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14520,'2018-09-25T16:22:32.130Z',NULL,104,6,106.44215255778118,7.45,42.05679326124918,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14521,'2018-08-21T09:27:23.189Z',NULL,183,6,56.697412301919755,3.97,57.38729717081234,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14522,'2018-07-15T22:09:22.505Z',NULL,157,3,139.8942352373801,9.79,95.38745640785528,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14523,'2019-02-08T07:02:19.052Z',NULL,190,2,128.5841852057933,9,104.13660603352345,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14524,'2019-04-05T18:16:31.617Z',NULL,155,3,43.77574310182776,3.06,25.093131071935144,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14525,'2019-04-08T17:39:35.916Z',NULL,195,3,109.78077396807234,7.68,37.74317955507409,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14526,'2018-04-19T04:30:21.223Z',NULL,52,4,103.67587240151535,7.26,58.69637660483305,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14527,'2019-02-27T09:40:51.771Z',NULL,73,2,71.6287722595695,5.01,111.29768909737345,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14528,'2016-11-26T10:44:57.047Z',2.7768361140345514,79,2,27.74461152277315,1.94,40.41408146961817,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14529,'2020-03-05T06:59:06.189Z',NULL,55,1,95.77128575934437,6.7,185.5068504167991,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14530,'2019-11-29T04:17:13.919Z',NULL,127,2,134.48016314504417,9.41,208.4362305421101,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14531,'2019-10-14T20:24:21.067Z',NULL,8,5,98.83823503993958,6.92,144.3388737972537,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14532,'2020-02-07T18:07:10.561Z',NULL,180,2,68.32408657333919,4.78,128.6341430297376,1932); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14533,'2019-03-15T11:35:00.947Z',NULL,189,1,93.27738254731509,0,67.13019167804232,1935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14534,'2018-05-09T20:27:11.009Z',7.276836114034552,21,3,60.57501609456816,0,52.91738700626032,1935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14535,'2019-10-16T16:19:45.507Z',NULL,103,5,47.04215255778118,0,83.21150543232395,1935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14536,'2019-11-04T18:44:49.426Z',2.7768361140345514,20,4,37.32649625046575,0,13.489863954685818,1935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14537,'2018-08-06T17:35:30.281Z',NULL,18,6,81.90307121097293,0,115.77335339611108,1935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14538,'2019-10-23T17:28:57.032Z',2.7768361140345514,63,4,133.5202262591817,0,122.37994202165778,1935); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14539,'2018-10-30T04:53:52.660Z',NULL,199,5,115.4300138092855,4.88,220.97873639672076,1936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14540,'2017-07-01T00:59:24.429Z',NULL,19,6,42.67116731707548,1.8,42.80927096585141,1936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14541,'2017-02-28T21:02:41.415Z',NULL,193,2,33.587182645381546,1.42,48.64705677970557,1936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14542,'2018-01-28T03:02:56.981Z',NULL,38,2,66.06937283839378,2.79,82.05921810865729,1936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14543,'2019-07-31T20:35:11.159Z',NULL,171,3,105.07665741496471,4.44,198.96296198907913,1936); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14544,'2019-08-03T01:35:48.669Z',NULL,120,4,83.5020135028928,4.8,103.2955116757841,1938); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14545,'2018-12-31T11:46:12.688Z',NULL,167,2,97.70449564120193,5.62,57.19191178642922,1938); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14546,'2018-12-04T23:29:09.811Z',NULL,96,2,104.82144858590365,6.03,74.66116110870027,1938); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14547,'2019-05-20T14:54:37.854Z',NULL,189,3,93.27738254731509,5.36,65.39961489379351,1938); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14548,'2019-09-17T05:06:29.719Z',NULL,191,3,128.5841852057933,7.39,222.45170980767392,1938); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14549,'2017-03-18T22:14:35.348Z',NULL,151,1,61.07534871228964,3.51,56.474944352490425,1938); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14550,'2018-12-12T02:57:52.373Z',NULL,148,2,138.9817182254566,5.56,247.88659731281933,1939); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14551,'2019-05-16T04:52:00.139Z',NULL,3,5,53.08311732230858,2.65,63.31380469357222,1942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14552,'2018-10-12T06:46:17.422Z',NULL,96,7,104.82144858590365,5.24,56.246074130548664,1942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14553,'2019-03-27T00:58:33.676Z',NULL,197,1,70.14610686710009,3.51,103.58598810319523,1942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14554,'2018-08-08T03:28:42.524Z',NULL,166,8,38.30449564120193,1.92,29.632127339431097,1942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14555,'2020-01-26T14:28:58.311Z',NULL,87,2,117.25536340498041,5.86,104.7010116335872,1942); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14556,'2019-01-07T06:03:10.986Z',NULL,36,2,130.93687730741433,8.51,192.92244770883366,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14557,'2018-09-23T18:35:11.083Z',NULL,110,6,55.526746186906664,3.61,83.11929527662768,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14558,'2016-09-13T23:48:26.800Z',NULL,117,6,36.683234169385244,2.38,47.6433742217177,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14559,'2018-05-26T06:43:13.152Z',NULL,36,4,130.93687730741433,8.51,173.9710624748491,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14560,'2019-03-17T16:16:20.552Z',NULL,57,1,122.4223933583994,7.96,147.00181497053242,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14561,'2018-08-31T20:01:20.332Z',NULL,31,6,105.65346467128523,6.87,161.32653460147645,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14562,'2019-05-11T11:03:37.716Z',NULL,167,4,97.70449564120193,6.35,171.81131141959523,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14563,'2019-10-25T05:36:53.251Z',NULL,147,7,66.64727121216615,4.33,125.88058837391527,1943); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14564,'2019-04-13T01:03:06.158Z',NULL,169,4,59.53172693453274,2.38,113.30231732181873,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14565,'2020-02-19T17:39:54.741Z',NULL,47,2,84.0766209826718,3.36,81.1320156465205,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14566,'2020-03-27T13:36:42.153Z',NULL,144,1,61.1983004605443,2.45,67.92971565804797,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14567,'2018-06-18T19:18:13.020Z',7.351726750436663,97,6,112.41825444654248,4.5,107.84624870082929,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14568,'2020-04-08T08:18:01.010Z',NULL,34,3,74.30391386913199,2.97,96.92469590944158,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14569,'2020-03-09T16:05:54.804Z',NULL,121,1,40.44528328808107,1.62,55.56816701333992,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14570,'2019-03-29T06:04:29.179Z',7.351726750436663,57,1,122.4223933583994,4.9,71.14570906925285,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14571,'2020-01-07T00:35:19.989Z',NULL,1,2,44.19489169601981,1.77,34.81914358562735,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14572,'2017-11-13T19:57:05.580Z',NULL,125,3,53.59799471993963,2.14,21.319701560420924,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14573,'2019-04-21T01:21:44.473Z',NULL,61,3,23.537915510955656,0.94,16.780496533270284,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14574,'2018-05-31T00:39:42.761Z',NULL,35,5,71.53687730741436,2.86,70.3366733352197,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14575,'2019-03-02T13:54:28.130Z',NULL,192,1,69.18418520579327,2.77,116.00195206577129,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14576,'2017-03-19T04:00:44.571Z',NULL,18,1,54.60204747398195,2.18,100.01952845789444,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14577,'2017-12-26T02:26:19.163Z',NULL,127,2,89.65344209669612,3.59,59.44810745772968,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14578,'2019-01-01T18:29:39.024Z',NULL,199,1,115.4300138092855,4.62,107.06350020104838,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14579,'2020-01-05T20:22:16.793Z',NULL,42,2,38.00410713690931,1.52,27.516233976673394,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14580,'2019-04-12T00:59:10.296Z',2.8517267504366637,28,4,68.12471180754113,2.72,49.05190004446658,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14581,'2020-03-01T12:38:11.191Z',NULL,129,1,148.1672972165937,5.93,107.57886557834749,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14582,'2019-01-22T06:48:07.463Z',NULL,94,2,109.21864156655383,4.37,174.42966569141967,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14583,'2017-12-27T09:56:24.099Z',73.51726750436663,121,2,26.96352219205405,1.08,24.8085906254466,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14584,'2019-09-15T06:39:32.526Z',NULL,88,5,105.41292031622555,4.22,142.8305095546569,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14585,'2019-05-15T18:19:11.299Z',NULL,103,5,47.04215255778118,1.88,89.41504123304189,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14586,'2017-10-20T09:45:21.839Z',NULL,16,5,44.07353303251545,1.76,66.26470904900785,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14587,'2019-06-08T15:24:06.009Z',NULL,18,4,81.90307121097293,3.28,146.63974895679127,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14588,'2020-02-05T06:43:45.255Z',NULL,113,1,110.47725376186015,4.42,168.47832520617018,1945); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14589,'2019-10-03T13:25:27.327Z',NULL,152,5,48.89568729900663,2.93,42.84922851502636,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14590,'2020-03-25T01:51:23.673Z',NULL,140,1,66.80312547576881,4.01,127.16675153181374,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14591,'2019-06-13T17:40:21.521Z',NULL,124,6,110.93145648834248,6.66,208.52903937802995,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14592,'2018-10-08T07:57:22.511Z',NULL,200,5,73.20395711799151,4.39,109.00216565444123,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14593,'2018-08-19T14:45:01.250Z',NULL,186,4,98.9770008385166,5.94,169.73025049624746,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14594,'2019-04-26T11:52:34.918Z',NULL,50,3,53.64019616819762,3.22,47.27986573598546,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14595,'2018-04-21T08:11:32.504Z',NULL,67,4,41.24480890795779,2.47,15.42281438146339,1946); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14596,'2019-07-13T13:29:47.259Z',NULL,198,5,70.14610686710009,0,89.68283084869083,1947); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14597,'2017-10-31T08:31:00.319Z',NULL,129,5,98.7781981443958,0,68.9366004567946,1947); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14598,'2016-09-12T09:09:42.789Z',NULL,51,6,50.433725012700116,0,33.600907818585796,1947); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14599,'2017-11-08T21:16:01.085Z',NULL,149,3,46.10276691718616,0,50.61029221836181,1947); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14600,'2020-02-26T01:44:16.993Z',7.351726750436663,74,1,51.12804227386549,0,17.020858553880217,1947); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14601,'2017-11-19T18:15:21.282Z',NULL,5,2,82.7450976850356,3.5,50.59130806437348,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14602,'2018-12-06T07:18:35.840Z',NULL,43,1,76.35255205175756,3.23,74.06898912253973,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14603,'2019-07-03T08:29:33.763Z',6.687316573180572,164,3,92.96789820016517,3.93,132.43843562484778,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14604,'2019-07-23T00:42:41.331Z',NULL,48,3,123.20884248534108,5.21,199.0002899769757,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14605,'2018-04-26T14:37:53.586Z',NULL,193,2,50.38077396807232,2.13,76.35525104313488,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14606,'2017-12-16T12:45:43.733Z',NULL,49,2,87.61910559549149,3.7,89.82526511149584,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14607,'2019-02-11T14:31:17.147Z',NULL,33,1,47.7448636959614,2.02,50.26013989495844,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14608,'2020-02-12T23:28:56.719Z',NULL,103,1,47.04215255778118,1.99,77.8809802235813,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14609,'2017-11-19T14:43:27.781Z',NULL,35,3,47.691251538276234,2.01,71.28872325737224,1948); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14610,'2019-01-18T06:16:46.061Z',NULL,182,2,84.48940370476112,5.49,97.40550798638603,1949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14611,'2018-06-08T22:25:26.388Z',NULL,156,5,30.615804149046195,1.99,42.7827003116661,1949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14612,'2018-03-18T16:32:14.089Z',NULL,5,1,124.1176465275534,8.07,141.60725665351296,1949); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14613,'2017-12-30T10:20:17.116Z',NULL,8,2,65.89215669329305,2.64,123.39275823647712,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14614,'2019-11-18T22:29:05.313Z',6.687316573180572,62,2,133.5202262591817,5.34,181.20771073300824,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14615,'2019-02-11T13:04:04.546Z',NULL,15,1,37.648145389078365,1.51,53.175485287683216,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14616,'2017-10-18T09:20:08.709Z',2.1873165731805724,8,6,65.89215669329305,2.64,73.03494012211759,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14617,'2018-06-23T20:09:19.696Z',NULL,41,5,63.50890855689462,2.54,67.68552170734482,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14618,'2018-08-01T10:39:31.492Z',NULL,79,4,41.616917284159726,1.66,68.13814890693516,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14619,'2017-03-14T21:22:35.161Z',NULL,10,1,31.78621880685793,1.27,32.577508950276766,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14620,'2017-09-07T18:26:54.970Z',NULL,117,4,36.683234169385244,1.47,28.677458844561873,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14621,'2019-05-08T05:27:19.375Z',NULL,103,4,47.04215255778118,1.88,70.07383333389878,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14622,'2020-02-16T22:21:56.620Z',NULL,83,1,81.87627832636537,3.28,54.31365021986779,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14623,'2019-01-08T12:51:48.047Z',NULL,11,1,132.45679913492563,5.3,111.56465301760585,1950); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14624,'2019-09-01T09:32:44.273Z',NULL,181,3,143.88940370476112,0,189.71742205013106,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14625,'2020-03-13T18:42:47.817Z',NULL,14,1,37.648145389078365,0,14.98084057412559,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14626,'2017-10-21T07:17:55.741Z',NULL,7,6,98.81933684368194,0,116.61169738369271,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14627,'2019-10-04T02:15:56.266Z',NULL,27,6,127.52471180754115,0,45.081585036385086,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14628,'2019-02-20T23:43:16.966Z',NULL,123,1,110.93145648834248,0,33.85330429126475,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14629,'2017-01-04T16:49:20.753Z',NULL,15,2,25.09876359271891,0,10.689383549157498,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14630,'2017-04-18T20:02:27.185Z',NULL,155,2,29.183828734551838,0,29.900860975055025,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14631,'2019-03-09T11:12:59.597Z',NULL,129,1,148.1672972165937,0,130.3699022274824,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14632,'2018-11-09T08:07:06.684Z',NULL,20,2,37.32649625046575,0,22.18690147890223,1951); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14633,'2018-10-29T06:27:16.152Z',NULL,165,3,38.30449564120193,2.39,52.422425757896306,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14634,'2017-06-08T20:01:57.357Z',NULL,68,5,76.82895921539838,4.8,26.856772395852662,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14635,'2018-02-12T11:07:33.225Z',NULL,170,2,105.07665741496471,6.57,151.5448792181332,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14636,'2018-03-03T14:15:07.504Z',NULL,31,1,105.65346467128523,6.6,188.97261292872514,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14637,'2018-03-13T05:52:21.002Z',NULL,109,1,119.04991068193098,7.44,85.83140253028782,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14638,'2018-04-14T02:21:19.208Z',NULL,96,2,104.82144858590365,6.55,117.33898129758259,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14639,'2018-09-18T10:16:21.914Z',NULL,130,3,75.02573869315137,4.69,89.38295041677064,1952); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14640,'2018-01-19T08:12:15.517Z',NULL,58,1,78.14578007078882,4.69,101.30098847208461,1955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14641,'2017-11-24T02:30:53.552Z',NULL,20,2,24.884330833643833,1.49,43.188529128661415,1955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14642,'2018-02-22T20:02:32.266Z',NULL,190,1,128.5841852057933,7.72,224.3129611060101,1955); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14643,'2019-03-07T15:30:05.032Z',NULL,100,1,67.83486485383094,2.87,58.855296197434676,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14644,'2017-01-09T01:27:50.721Z',NULL,84,2,54.58418555091025,2.31,97.69917192698928,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14645,'2018-03-10T03:06:05.291Z',NULL,46,1,118.0495173798411,4.99,227.6300806631137,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14646,'2018-04-21T05:05:58.901Z',8.723651882109213,199,2,115.4300138092855,4.88,220.66973979469054,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14647,'2017-11-10T12:01:45.054Z',NULL,109,24,79.36660712128732,3.35,52.35518670607886,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14648,'2016-10-02T02:05:06.897Z',NULL,34,5,49.535942579421324,2.09,68.45837194059716,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14649,'2019-01-14T21:08:03.424Z',NULL,127,2,134.48016314504417,5.68,206.88373698068784,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14650,'2017-11-05T03:38:04.013Z',NULL,95,2,33.212427711035886,1.4,52.15998647086153,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14651,'2017-12-16T23:55:34.698Z',NULL,171,2,70.05110494330981,2.96,100.69051839105381,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14652,'2018-09-17T05:42:12.326Z',NULL,122,7,99.84528328808108,4.22,50.70119756154628,1957); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14653,'2019-06-16T07:52:34.500Z',NULL,148,7,138.9817182254566,9.03,265.8766165000209,1958); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14654,'2019-09-18T20:16:11.972Z',NULL,77,5,101.01691728415972,6.57,63.752428352480045,1958); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14655,'2020-02-21T17:58:29.638Z',NULL,144,2,61.1983004605443,3.98,76.56036835341042,1958); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14656,'2018-05-18T17:12:20.121Z',NULL,79,3,41.616917284159726,1.66,53.526484058153784,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14657,'2020-01-03T23:51:24.619Z',NULL,118,2,57.627613096978735,2.31,77.73008913514632,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14658,'2017-12-28T20:35:37.379Z',NULL,17,2,53.290720311951766,2.13,56.042154824185005,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14659,'2019-08-17T23:15:39.830Z',NULL,48,6,123.20884248534108,4.93,171.69570722534556,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14660,'2020-03-20T13:45:47.556Z',NULL,14,1,37.648145389078365,1.51,34.308356482854556,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14661,'2018-06-26T00:06:44.282Z',NULL,58,9,78.14578007078882,3.13,79.85824105047566,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14662,'2020-02-21T19:41:02.230Z',NULL,107,2,50.094887884945365,2,24.480497964807476,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14663,'2019-11-17T11:18:44.592Z',NULL,107,3,50.094887884945365,2,67.87260775773393,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14664,'2019-11-22T18:03:22.832Z',NULL,148,2,138.9817182254566,5.56,263.9317185085423,1960); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14665,'2017-12-17T03:12:08.405Z',NULL,53,2,29.517248267676894,1.84,11.804325328852869,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14666,'2018-05-07T23:57:22.375Z',8.723651882109213,163,3,33.56789820016516,2.1,41.48826863339589,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14667,'2018-05-03T07:52:29.089Z',NULL,51,5,75.65058751905018,4.73,24.67491340745703,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14668,'2017-02-15T22:11:56.836Z',NULL,73,2,47.752514839713,2.98,82.16743736005492,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14669,'2018-02-10T05:59:09.904Z',NULL,164,2,92.96789820016517,5.81,135.0689739516889,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14670,'2018-12-20T10:19:55.466Z',NULL,47,3,84.0766209826718,5.25,134.12894128150873,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14671,'2019-02-25T11:04:54.272Z',NULL,9,2,87.46968147789205,5.47,92.97619022279808,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14672,'2018-09-01T22:16:25.493Z',NULL,136,4,105.20402317157343,6.58,42.650236106361895,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14673,'2018-12-02T10:19:32.791Z',NULL,118,2,57.627613096978735,3.6,82.83040354891894,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14674,'2019-02-26T20:41:27.754Z',NULL,111,1,55.526746186906664,3.47,29.71718415699265,1961); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14675,'2017-12-08T04:20:37.730Z',NULL,8,2,65.89215669329305,2.64,56.0592371717716,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14676,'2019-10-01T17:27:03.377Z',NULL,78,5,41.616917284159726,1.66,28.371251501081183,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14677,'2019-10-27T09:07:31.181Z',NULL,145,6,61.1983004605443,2.45,98.80053225716657,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14678,'2018-11-09T22:10:42.432Z',NULL,173,3,122.3651993029456,4.89,74.17153512101477,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14679,'2020-02-10T14:21:46.292Z',NULL,52,1,103.67587240151535,4.15,81.60508191660324,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14680,'2018-06-09T04:11:38.762Z',8.723651882109213,180,7,68.32408657333919,2.73,75.09769966974689,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14681,'2019-03-15T17:35:08.808Z',NULL,76,1,63.82421061366486,2.55,78.69344436721674,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14682,'2020-04-03T16:12:41.139Z',NULL,82,4,60.89545738030947,2.44,86.26408868755887,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14683,'2018-07-09T16:05:14.749Z',NULL,195,7,109.78077396807234,4.39,147.44950500321875,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14684,'2018-06-25T22:17:11.803Z',NULL,33,7,47.7448636959614,1.91,49.21596597386638,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14685,'2017-06-16T15:06:35.189Z',NULL,39,7,76.38772120188973,3.06,107.06134723155303,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14686,'2018-09-21T09:39:30.741Z',3.910286789885579,191,7,128.5841852057933,5.14,74.9230526342046,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14687,'2019-07-06T10:33:30.459Z',NULL,35,5,71.53687730741436,2.86,96.66066507713019,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14688,'2017-09-24T03:37:39.891Z',NULL,111,4,37.01783079127111,1.48,38.510747675827055,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14689,'2019-11-05T16:56:48.833Z',NULL,97,3,112.41825444654248,4.5,70.39047734972523,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14690,'2018-03-28T17:47:31.335Z',NULL,185,1,39.57700083851661,1.58,64.7665067724465,1962); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14691,'2017-04-22T15:52:35.004Z',NULL,93,4,33.212427711035886,2.16,24.054100531014527,1964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14692,'2019-05-10T05:58:52.826Z',NULL,149,5,69.15415037577924,4.5,51.53309680721765,1964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14693,'2019-03-23T13:02:24.407Z',NULL,60,1,29.80214751859149,1.94,36.89007495972057,1964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14694,'2017-11-24T15:21:04.905Z',NULL,141,2,84.13541698384589,5.47,70.10256322886507,1964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14695,'2017-08-18T06:01:49.456Z',NULL,49,5,87.61910559549149,5.7,111.15227020338001,1964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14696,'2016-08-02T02:19:43.980Z',8.410286789885578,43,7,50.90170136783837,3.31,66.79125222879729,1964); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14697,'2018-01-18T17:11:53.717Z',NULL,41,2,63.50890855689462,0,27.19830095313048,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14698,'2019-06-05T20:48:50.978Z',NULL,97,5,112.41825444654248,0,56.57052829134582,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14699,'2017-01-23T04:58:34.386Z',NULL,120,2,55.668009001928525,0,73.96816899697964,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14700,'2019-04-23T10:43:24.558Z',NULL,135,2,45.80402317157342,0,31.367858782458843,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14701,'2019-08-06T15:02:33.728Z',8.410286789885578,133,7,68.4819702983371,0,51.89662955387811,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14702,'2017-06-14T05:34:23.401Z',NULL,17,8,53.290720311951766,0,67.83720576716695,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14703,'2019-05-05T23:48:11.338Z',NULL,199,6,115.4300138092855,0,100.26773111175785,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14704,'2017-08-04T20:01:18.442Z',8.410286789885578,7,7,98.81933684368194,0,101.51934761439752,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14705,'2017-11-26T05:53:59.937Z',NULL,53,23,29.517248267676894,0,14.355075680844074,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14706,'2020-01-24T11:09:09.309Z',NULL,138,2,113.95078476718615,0,193.5201713142913,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14707,'2020-01-14T20:07:15.102Z',NULL,17,2,79.93608046792765,0,124.86214470345277,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14708,'2018-05-08T23:35:47.210Z',NULL,99,5,67.83486485383094,0,113.43110668230835,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14709,'2017-09-23T23:03:04.444Z',NULL,148,7,92.65447881697106,0,69.70818014323814,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14710,'2016-08-10T22:29:40.194Z',NULL,139,9,51.18512212784679,0,75.4324587751918,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14711,'2018-12-18T17:40:09.561Z',NULL,155,3,43.77574310182776,0,75.62101736620222,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14712,'2019-03-03T02:15:07.886Z',NULL,66,1,136.16126271106958,0,87.96555345242288,1965); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14713,'2018-07-22T04:12:03.633Z',NULL,164,7,92.96789820016517,4.65,147.85476510376458,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14714,'2018-09-29T06:37:32.587Z',NULL,9,5,87.46968147789205,4.37,100.06042982316505,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14715,'2017-04-17T11:30:44.888Z',NULL,199,3,76.95334253952366,3.85,101.04053441263787,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14716,'2019-07-15T03:52:22.289Z',NULL,54,5,62.09360840402396,3.1,89.54846517999212,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14717,'2018-07-06T08:29:03.426Z',NULL,78,5,41.616917284159726,2.08,54.66292591294947,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14718,'2018-01-15T20:33:29.897Z',NULL,156,2,30.615804149046195,1.53,47.687385926761955,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14719,'2018-12-28T02:18:18.208Z',NULL,139,2,76.77768319177018,3.84,142.3575669436405,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14720,'2019-02-07T11:29:33.052Z',NULL,148,1,138.9817182254566,6.95,242.01460293046003,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14721,'2019-07-31T17:29:40.622Z',NULL,63,5,133.5202262591817,6.68,216.85519618027305,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14722,'2019-03-30T02:43:34.377Z',NULL,151,1,91.61302306843446,4.58,171.90853439347234,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14723,'2018-12-27T12:19:18.699Z',NULL,103,3,47.04215255778118,2.35,85.26832864135815,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14724,'2019-03-10T05:57:44.812Z',NULL,113,1,110.47725376186015,5.52,190.49472285701168,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14725,'2018-09-03T10:32:01.928Z',NULL,85,5,54.90104734428525,2.75,102.02879840788884,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14726,'2019-01-19T09:30:47.845Z',NULL,80,2,54.91325681036414,2.75,91.80014085359457,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14727,'2020-01-03T09:01:21.748Z',NULL,191,2,128.5841852057933,6.43,91.97436168647211,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14728,'2018-04-28T21:42:38.702Z',NULL,10,2,47.6793282102869,2.38,37.17290342114889,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14729,'2018-05-12T05:24:02.037Z',NULL,199,3,115.4300138092855,5.77,63.27039516153501,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14730,'2018-05-10T16:46:25.878Z',NULL,51,5,75.65058751905018,3.78,103.96924075045497,1967); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14731,'2018-11-17T23:22:17.203Z',NULL,69,3,73.38772304360626,0,42.021532577039295,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14732,'2019-03-11T02:29:02.026Z',NULL,196,1,70.14610686710009,0,92.56547742201401,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14733,'2018-10-22T23:39:05.381Z',NULL,68,8,115.24343882309758,0,85.87736515266823,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14734,'2019-01-28T13:03:05.711Z',NULL,114,2,77.91196471862148,0,77.19800474555689,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14735,'2017-01-21T22:19:21.966Z',NULL,22,2,21.42451996044233,0,22.733352184692023,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14736,'2017-04-07T02:55:34.150Z',NULL,1,4,29.463261130679875,0,43.622581681514454,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14737,'2018-11-14T05:45:19.688Z',NULL,174,3,111.61430894181083,0,72.1196690385903,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14738,'2016-11-04T15:26:33.943Z',NULL,121,3,26.96352219205405,0,24.96340381952777,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14739,'2019-05-24T02:44:23.218Z',NULL,158,5,139.8942352373801,0,148.08699894671156,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14740,'2017-06-18T08:38:21.501Z',NULL,198,5,46.76407124473339,0,48.913308371333414,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14741,'2017-06-16T21:40:58.730Z',NULL,44,7,50.90170136783837,0,59.291190525917685,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14742,'2019-04-27T14:26:00.393Z',NULL,22,3,32.136779940663494,0,53.20980840699529,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14743,'2018-04-19T20:29:33.722Z',NULL,78,3,41.616917284159726,0,20.909025252675285,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14744,'2020-02-24T11:08:06.822Z',NULL,140,1,66.80312547576881,0,106.45850970069765,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14745,'2018-07-27T16:12:28.212Z',NULL,179,6,68.32408657333919,0,93.06151889447322,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14746,'2017-09-08T01:49:10.804Z',NULL,83,6,54.58418555091025,0,52.47998536266569,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14747,'2020-04-14T03:12:18.766Z',NULL,96,3,104.82144858590365,0,152.42811015725025,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14748,'2019-11-12T00:05:51.010Z',NULL,95,4,49.81864156655383,0,60.771186145777904,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14749,'2016-08-01T02:22:50.803Z',NULL,198,8,46.76407124473339,0,45.64817630993081,1968); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14750,'2018-04-15T17:56:39.118Z',NULL,143,3,61.1983004605443,3.98,117.3901397193292,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14751,'2020-03-26T01:40:37.407Z',NULL,115,1,77.91196471862148,5.06,109.08620753135317,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14752,'2019-07-15T00:51:13.890Z',NULL,46,6,118.0495173798411,7.67,167.38377449593634,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14753,'2019-11-18T11:08:46.266Z',NULL,75,4,125.81276373452337,8.18,102.00856227093549,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14754,'2017-06-26T09:29:43.369Z',NULL,5,9,82.7450976850356,5.38,102.90193360238186,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14755,'2018-11-28T13:34:52.635Z',NULL,69,4,73.38772304360626,4.77,37.210553791696825,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14756,'2017-08-24T02:52:49.024Z',NULL,90,8,82.07974183693327,5.34,117.59492912802833,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14757,'2019-12-14T19:54:25.921Z',NULL,198,2,70.14610686710009,4.56,53.505410243285304,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14758,'2019-03-28T21:23:46.402Z',NULL,51,1,75.65058751905018,4.92,111.96066443444964,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14759,'2017-12-17T04:39:33.023Z',NULL,13,2,75.0861692740371,4.88,37.07570893147208,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14760,'2017-12-31T06:55:40.038Z',NULL,108,2,33.39659192329691,2.17,23.10537241752726,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14761,'2019-09-04T14:24:32.644Z',NULL,123,6,110.93145648834248,7.21,182.9530145403523,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14762,'2018-08-16T22:33:51.301Z',NULL,196,8,70.14610686710009,4.56,44.445573042903376,1969); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14763,'2019-05-11T11:14:15.653Z',NULL,171,5,105.07665741496471,6.83,65.96935517686327,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14764,'2018-03-11T20:52:10.359Z',NULL,17,1,79.93608046792765,5.2,133.15999218301397,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14765,'2019-10-12T23:10:32.534Z',NULL,145,5,61.1983004605443,3.98,99.64561711583308,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14766,'2020-02-10T18:30:34.667Z',NULL,70,2,57.493003808959784,3.74,106.90805183884072,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14767,'2019-09-18T07:06:45.314Z',9.015324279702176,47,7,84.0766209826718,5.46,121.13068718967199,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14768,'2019-12-13T20:12:57.233Z',NULL,72,3,142.20381898788685,9.24,44.195686627431,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14769,'2017-12-13T19:35:12.200Z',NULL,188,2,22.584921698210056,1.47,28.02339760916071,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14770,'2019-09-20T17:09:48.319Z',NULL,32,6,107.1448636959614,6.96,136.161098710297,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14771,'2019-11-11T07:49:32.687Z',NULL,86,3,92.31436670850246,6,63.93470852426662,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14772,'2019-11-08T12:16:28.264Z',NULL,78,3,41.616917284159726,2.71,56.39795936124532,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14773,'2018-08-13T09:58:01.161Z',NULL,118,5,57.627613096978735,3.75,101.81103494418835,1970); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14774,'2020-02-21T23:13:03.091Z',1.5384969816628522,75,1,125.81276373452337,5.03,70.25173957938536,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14775,'2018-06-24T02:42:13.125Z',NULL,116,5,114.42485125407785,4.58,168.33008756846127,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14776,'2018-10-07T08:36:54.451Z',NULL,156,4,30.615804149046195,1.22,9.519430617098532,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14777,'2018-06-20T00:48:00.648Z',NULL,76,3,63.82421061366486,2.55,73.96375791126806,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14778,'2018-10-23T00:10:32.887Z',NULL,143,3,61.1983004605443,2.45,56.50304784400217,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14779,'2020-04-07T05:40:49.969Z',NULL,51,1,75.65058751905018,3.03,97.54594427410079,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14780,'2019-10-22T00:55:58.133Z',NULL,16,4,66.11029954877317,2.64,76.61934360783783,1972); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14781,'2019-01-16T10:22:45.180Z',NULL,101,2,139.82488066180403,5.59,220.7639226022063,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14782,'2019-07-05T06:40:00.561Z',NULL,177,5,128.8192981944599,5.15,149.50257116511403,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14783,'2018-08-31T20:22:06.751Z',NULL,114,7,77.91196471862148,3.12,87.00221623834605,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14784,'2019-05-13T03:25:26.664Z',NULL,142,4,70.34853057210945,2.81,63.55206408353673,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14785,'2017-10-02T17:51:08.872Z',NULL,152,4,32.59712486600442,1.3,58.81811129312622,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14786,'2017-10-17T17:44:21.014Z',NULL,33,3,31.829909130640935,1.27,53.25746101219592,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14787,'2017-05-24T10:38:06.609Z',NULL,19,3,42.67116731707548,1.71,36.60789299952495,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14788,'2019-12-04T00:10:36.494Z',NULL,122,2,99.84528328808108,3.99,92.40431311430768,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14789,'2018-06-25T13:26:18.002Z',NULL,43,5,76.35255205175756,3.05,83.83865541300818,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14790,'2019-06-22T15:48:53.542Z',NULL,54,3,62.09360840402396,2.48,33.649086565154285,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14791,'2018-09-02T07:15:31.628Z',NULL,89,4,63.719612755399886,2.55,93.32198349771764,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14792,'2017-01-21T03:13:35.840Z',NULL,173,2,81.57679953529707,3.26,122.06365508469689,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14793,'2019-02-22T13:01:56.593Z',NULL,84,1,81.87627832636537,3.28,80.65549383688581,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14794,'2017-04-11T17:31:57.132Z',6.038496981662853,68,3,76.82895921539838,3.07,119.14796275482604,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14795,'2019-02-24T12:00:42.898Z',NULL,23,2,116.86672609493307,4.67,73.759743890409,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14796,'2018-09-11T14:04:47.509Z',NULL,8,4,98.83823503993958,3.95,47.09216263048408,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14797,'2017-08-28T14:07:00.849Z',6.038496981662853,82,3,40.59697158687298,1.62,12.706525287665954,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14798,'2017-11-27T20:58:21.300Z',NULL,128,1,50.053442096696116,2,57.78894980224879,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14799,'2017-01-09T21:32:35.238Z',NULL,43,2,50.90170136783837,2.04,35.53075679786548,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14800,'2019-07-01T22:59:49.015Z',NULL,115,4,77.91196471862148,3.12,45.38529736811275,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14801,'2020-04-09T04:51:16.630Z',NULL,12,1,116.01427581618326,4.64,214.32238721327624,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14802,'2019-11-02T07:05:48.371Z',NULL,96,1,104.82144858590365,4.19,73.07815225421115,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14803,'2018-05-04T06:57:00.787Z',NULL,81,2,43.9329842322118,1.76,76.5930569346793,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14804,'2019-04-01T17:45:54.595Z',NULL,135,2,45.80402317157342,1.83,80.40652602126694,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14805,'2018-06-24T00:04:27.916Z',NULL,81,6,43.9329842322118,1.76,80.74013212089051,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14806,'2018-10-22T19:31:32.995Z',NULL,114,4,77.91196471862148,3.12,116.55073303343609,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14807,'2019-06-14T06:35:57.088Z',NULL,154,5,81.87529553312261,3.28,158.58066354126723,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14808,'2017-12-24T19:16:41.004Z',NULL,175,2,78.21653962235106,3.13,89.82242964840222,1974); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14809,'2019-08-05T02:38:47.146Z',NULL,145,3,61.1983004605443,2.59,46.3640636241533,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14810,'2018-10-05T15:25:55.030Z',NULL,39,4,114.58158180283459,4.84,202.6040437167445,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14811,'2019-12-10T14:22:07.784Z',NULL,104,2,106.44215255778118,4.5,57.55393874559706,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14812,'2019-11-07T19:19:43.229Z',NULL,193,4,50.38077396807232,2.13,21.437114493008593,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14813,'2019-06-21T18:06:25.861Z',NULL,104,8,106.44215255778118,4.5,128.62757560462322,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14814,'2019-06-14T06:47:53.160Z',NULL,140,8,66.80312547576881,2.82,79.85361629781158,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14815,'2019-01-05T22:19:47.328Z',8.412855968549003,193,2,50.38077396807232,2.13,70.37641202456497,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14816,'2018-08-11T23:58:49.686Z',NULL,122,5,99.84528328808108,4.22,51.92269536553223,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14817,'2018-11-09T19:06:06.450Z',NULL,157,3,139.8942352373801,5.91,60.98969655901046,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14818,'2019-04-28T05:01:58.162Z',8.412855968549003,132,4,127.88197029833711,5.4,224.3775267686164,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14819,'2019-07-31T13:44:35.667Z',NULL,90,7,123.1196127553999,5.2,51.238801672853086,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14820,'2018-09-25T06:53:39.803Z',NULL,170,5,105.07665741496471,4.44,35.00000930843317,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14821,'2019-04-06T01:08:37.727Z',NULL,184,3,116.09741230191975,4.91,68.29182948762214,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14822,'2019-05-14T16:52:05.786Z',NULL,102,5,47.04215255778118,1.99,71.4093396734837,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14823,'2020-01-24T13:41:30.047Z',8.412855968549003,77,2,101.01691728415972,4.27,149.47101020033617,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14824,'2019-02-13T06:45:58.482Z',8.412855968549003,195,2,109.78077396807234,4.64,148.6242441596348,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14825,'2019-10-09T02:40:02.194Z',NULL,38,7,66.06937283839378,2.79,28.288730813477063,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14826,'2019-04-15T23:39:05.222Z',NULL,50,3,53.64019616819762,2.27,31.783162094792086,1975); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14827,'2017-11-01T20:47:42.340Z',NULL,196,3,46.76407124473339,0,60.67973737391783,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14828,'2018-08-27T23:30:20.017Z',NULL,69,7,73.38772304360626,0,54.758326535940405,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14829,'2018-08-05T02:25:40.195Z',NULL,129,7,148.1672972165937,0,204.47439788307767,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14830,'2020-04-01T20:01:54.784Z',NULL,151,4,91.61302306843446,0,51.316531235591384,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14831,'2019-10-17T04:15:52.644Z',NULL,75,6,125.81276373452337,0,45.381904373618845,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14832,'2019-11-21T07:41:22.514Z',NULL,57,3,122.4223933583994,0,57.810318919398995,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14833,'2017-10-15T21:40:15.192Z',NULL,56,6,24.24752383956291,0,23.70311047129413,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14834,'2020-03-14T20:37:37.291Z',NULL,191,1,128.5841852057933,0,171.75821466613542,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14835,'2017-11-19T13:55:05.391Z',8.412855968549003,68,2,76.82895921539838,0,68.32713626572857,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14836,'2019-04-28T03:21:18.301Z',NULL,200,3,73.20395711799151,0,32.21064849397104,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14837,'2019-07-29T07:28:01.427Z',NULL,96,5,104.82144858590365,0,93.47890421517407,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14838,'2020-02-13T13:30:13.351Z',NULL,146,1,126.04727121216614,0,127.35934293843033,1976); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14839,'2019-05-29T06:26:26.075Z',NULL,93,3,49.81864156655383,2.55,18.632757494765926,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14840,'2019-11-16T18:56:53.889Z',NULL,43,2,76.35255205175756,3.91,114.5108295261074,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14841,'2017-04-15T15:57:01.875Z',NULL,149,2,46.10276691718616,2.36,64.93296024720934,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14842,'2017-06-09T20:51:55.193Z',8.412855968549003,117,5,36.683234169385244,1.88,19.207361378075714,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14843,'2019-07-11T04:36:49.216Z',NULL,90,5,123.1196127553999,6.31,210.55512188379367,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14844,'2018-06-18T03:12:54.164Z',NULL,174,8,111.61430894181083,5.72,197.33287242196167,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14845,'2017-11-11T05:04:36.570Z',NULL,96,3,69.88096572393577,3.58,78.38744486217821,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14846,'2019-11-03T20:59:53.149Z',NULL,92,2,124.89242686579996,6.4,99.5280514005807,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14847,'2019-12-20T01:09:47.252Z',NULL,39,2,114.58158180283459,5.87,36.21626431989639,1978); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14848,'2019-09-06T22:47:22.995Z',NULL,189,5,93.27738254731509,5.83,156.67801980032746,1980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14849,'2018-03-24T04:26:06.660Z',NULL,118,1,57.627613096978735,3.6,67.72215651979793,1980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14850,'2018-04-13T12:59:08.307Z',NULL,97,3,112.41825444654248,7.03,91.17969617619984,1980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14851,'2018-09-10T10:17:30.703Z',NULL,170,7,105.07665741496471,6.57,38.89000225705495,1980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14852,'2018-05-11T09:10:06.007Z',NULL,165,5,38.30449564120193,2.39,33.81763018489235,1980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14853,'2017-12-27T12:24:55.523Z',NULL,157,2,93.26282349158673,5.83,57.1709088015539,1980); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14854,'2019-09-06T09:39:04.510Z',NULL,72,3,142.20381898788685,9.95,234.25203764179403,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14855,'2020-04-17T11:46:14.948Z',NULL,184,2,116.09741230191975,8.13,70.31228309307404,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14856,'2018-08-11T18:02:35.498Z',NULL,86,5,92.31436670850246,6.46,32.619136539975536,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14857,'2018-08-28T23:17:16.984Z',NULL,177,7,128.8192981944599,9.02,195.46428577275026,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14858,'2017-09-08T11:52:23.722Z',NULL,110,5,37.01783079127111,2.59,29.175650773647924,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14859,'2019-08-05T21:53:02.834Z',NULL,200,7,73.20395711799151,5.12,39.38070825574457,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14860,'2017-11-19T05:38:11.450Z',NULL,120,3,55.668009001928525,3.9,55.0219282203974,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14861,'2018-01-02T01:49:06.817Z',NULL,32,1,107.1448636959614,7.5,174.6760258101739,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14862,'2017-10-24T01:27:12.628Z',NULL,45,38,78.6996782532274,5.51,60.48649613099926,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14863,'2017-12-15T23:07:50.104Z',NULL,76,1,42.54947374244324,2.98,70.59067757779812,1981); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14864,'2019-01-19T16:00:49.311Z',NULL,197,1,70.14610686710009,4.21,114.9003600012146,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14865,'2020-04-02T04:40:31.677Z',NULL,135,3,45.80402317157342,2.75,53.7087574866015,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14866,'2019-03-04T23:46:05.797Z',NULL,186,1,98.9770008385166,5.94,73.4529080742316,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14867,'2017-02-20T05:14:25.334Z',NULL,30,2,42.7829881204479,2.57,21.53178919038751,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14868,'2019-09-23T21:41:00.078Z',NULL,138,3,113.95078476718615,6.84,197.06466060316365,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14869,'2017-05-26T12:41:36.215Z',NULL,76,4,42.54947374244324,2.55,48.09449823615553,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14870,'2020-02-04T02:18:08.242Z',NULL,56,2,36.37128575934436,2.18,42.432906940242226,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14871,'2017-10-19T04:40:36.203Z',NULL,101,5,93.21658710786936,5.59,30.4211345938599,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14872,'2018-02-01T02:29:05.364Z',NULL,28,2,68.12471180754113,4.09,63.296697482178175,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14873,'2018-05-27T20:58:34.953Z',NULL,130,5,75.02573869315137,4.5,77.13760343175535,1982); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14874,'2018-10-25T10:54:31.754Z',NULL,30,7,64.17448218067184,1.86,43.259700966056144,1984); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14875,'2018-12-16T00:38:36.996Z',NULL,114,2,77.91196471862148,2.26,39.566966148197764,1984); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14876,'2020-02-06T07:28:30.977Z',NULL,133,1,68.4819702983371,1.99,98.0187187837136,1984); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14877,'2016-10-14T02:34:48.532Z',NULL,120,5,55.668009001928525,2.78,107.79714647553222,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14878,'2018-11-04T11:57:42.605Z',NULL,154,4,81.87529553312261,4.09,71.86269862202876,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14879,'2019-03-23T18:40:02.398Z',NULL,73,1,71.6287722595695,3.58,79.69618455601749,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14880,'2019-08-30T07:52:35.747Z',NULL,59,8,89.20214751859149,4.46,78.87022669161821,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14881,'2017-12-13T07:30:46.294Z',NULL,157,2,93.26282349158673,4.66,117.58725464227533,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14882,'2017-05-02T14:52:40.034Z',NULL,68,3,76.82895921539838,3.84,33.799267323997796,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14883,'2018-02-21T12:26:21.719Z',NULL,71,2,82.80381898788684,4.14,119.90485853363802,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14884,'2019-12-16T21:58:10.853Z',NULL,57,2,122.4223933583994,6.12,134.33922869753638,1985); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14885,'2019-03-20T11:16:06.714Z',NULL,147,1,66.64727121216615,3.33,74.0021934526778,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14886,'2018-03-27T15:03:22.096Z',3.0961424700156934,121,1,40.44528328808107,2.02,13.763903394133113,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14887,'2019-09-10T07:45:55.450Z',NULL,56,6,36.37128575934436,1.82,12.319234399775125,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14888,'2019-03-18T02:36:31.424Z',NULL,63,1,133.5202262591817,6.68,62.06447290607566,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14889,'2019-03-27T11:25:11.904Z',NULL,182,1,84.48940370476112,4.22,97.80258262487888,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14890,'2017-11-07T14:56:47.490Z',NULL,17,3,53.290720311951766,2.66,50.26321096860656,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14891,'2019-08-02T17:39:40.381Z',NULL,35,7,71.53687730741436,3.58,30.696178339348396,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14892,'2020-01-22T14:25:40.677Z',7.596142470015693,144,2,61.1983004605443,3.06,119.88557634510056,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14893,'2018-02-15T15:27:03.221Z',NULL,83,1,81.87627832636537,4.09,73.10215998531693,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14894,'2019-06-30T20:23:02.901Z',NULL,128,4,75.08016314504417,3.75,133.42701237010007,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14895,'2019-02-14T04:01:30.906Z',NULL,96,2,104.82144858590365,5.24,142.4531335318956,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14896,'2019-11-09T03:13:46.009Z',8.17504735163472,60,3,29.80214751859149,1.49,46.73380884478395,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14897,'2019-03-24T01:28:01.873Z',NULL,105,1,52.723521442619514,2.64,65.0351758875651,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14898,'2017-02-05T02:05:00.887Z',NULL,53,1,29.517248267676894,1.48,39.93049823298027,1986); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14899,'2019-02-13T21:22:23.132Z',NULL,128,12,75.08016314504417,4.13,89.06024771346362,1989); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14900,'2016-08-24T21:54:45.919Z',NULL,43,7,50.90170136783837,2.8,38.64953913518894,1989); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14901,'2020-02-26T01:24:05.582Z',3.6750473516347197,102,2,47.04215255778118,2.59,30.71362162349748,1989); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14902,'2020-03-11T15:20:19.707Z',NULL,67,1,41.24480890795779,0,21.492980781544517,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14903,'2019-12-23T20:22:42.549Z',NULL,93,2,49.81864156655383,0,77.79486292831436,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14904,'2019-05-04T11:08:17.855Z',NULL,32,6,107.1448636959614,0,145.27151538379246,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14905,'2019-04-29T23:01:20.436Z',NULL,27,3,127.52471180754115,0,212.36386658632847,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14906,'2018-06-07T06:18:47.443Z',NULL,200,5,73.20395711799151,0,118.79330212796408,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14907,'2018-12-08T20:41:37.608Z',NULL,162,2,33.56789820016516,0,11.529652748881865,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14908,'2020-04-04T20:34:44.743Z',NULL,103,3,47.04215255778118,0,68.11462226275148,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14909,'2019-01-18T01:33:17.897Z',NULL,183,2,56.697412301919755,0,24.60880695156978,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14910,'2019-11-23T08:39:16.024Z',8.17504735163472,49,3,131.42865839323724,0,220.8976616654073,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14911,'2018-12-12T17:23:44.777Z',NULL,78,2,41.616917284159726,0,69.6348444692133,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14912,'2019-01-08T03:15:27.664Z',NULL,155,3,43.77574310182776,0,36.64521188824933,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14913,'2019-12-18T13:11:07.803Z',NULL,158,3,139.8942352373801,0,225.0613256083669,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14914,'2019-01-05T11:28:08.338Z',NULL,57,3,122.4223933583994,0,179.1395577234203,1990); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14915,'2018-09-25T17:34:55.243Z',NULL,150,5,128.55415037577922,9,237.84225663239928,1991); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14916,'2017-05-03T07:55:37.731Z',NULL,122,3,66.56352219205405,4.66,112.31411329368555,1991); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14917,'2016-05-14T08:54:58.655Z',NULL,45,4,78.6996782532274,4.72,64.3726343686357,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14918,'2018-11-14T00:06:36.870Z',NULL,5,4,124.1176465275534,7.45,136.76677449211854,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14919,'2018-09-10T20:33:16.075Z',NULL,148,5,138.9817182254566,8.34,237.6385437919885,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14920,'2019-07-05T00:25:34.297Z',NULL,117,5,55.024851254077866,3.3,51.2524784949846,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14921,'2020-01-12T02:30:55.964Z',NULL,89,2,63.719612755399886,3.82,80.52164278925028,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14922,'2018-10-09T20:13:25.317Z',8.17504735163472,112,6,41.329386510090345,2.48,77.67756540534569,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14923,'2018-12-12T14:55:24.642Z',NULL,129,2,148.1672972165937,8.89,140.66180107079992,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14924,'2018-10-06T23:16:24.090Z',NULL,166,4,38.30449564120193,2.3,49.16572712882607,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14925,'2019-12-30T03:43:02.306Z',NULL,3,2,53.08311732230858,3.18,88.47255625362433,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14926,'2018-06-14T02:21:14.082Z',NULL,107,6,50.094887884945365,3.01,33.77780360884812,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14927,'2018-11-27T13:02:50.641Z',NULL,183,3,56.697412301919755,3.4,107.61892309252204,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14928,'2020-02-20T21:05:18.072Z',NULL,78,2,41.616917284159726,2.5,76.00814331567764,1992); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14929,'2017-02-20T16:46:23.966Z',NULL,5,2,82.7450976850356,5.69,101.7533249264036,1995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14930,'2018-12-18T06:00:00.084Z',3.6750473516347197,139,2,76.77768319177018,5.28,126.62161397810435,1995); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14931,'2018-05-16T02:42:56.037Z',NULL,39,3,114.58158180283459,7.85,218.6214371240993,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14932,'2020-04-05T03:26:23.975Z',NULL,174,2,111.61430894181083,7.65,43.83163502128612,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14933,'2019-06-28T05:23:33.504Z',NULL,47,5,84.0766209826718,5.76,79.62683808579821,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14934,'2017-07-18T02:28:11.180Z',NULL,193,5,33.587182645381546,2.3,51.483062496294195,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14935,'2018-01-06T20:11:54.593Z',NULL,77,2,101.01691728415972,6.92,189.8192936038478,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14936,'2019-12-23T07:10:26.681Z',NULL,28,1,68.12471180754113,4.67,86.56995166001418,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14937,'2019-08-04T23:18:49.253Z',NULL,122,2,99.84528328808108,6.84,131.00643984194008,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14938,'2016-12-14T04:19:51.147Z',NULL,120,1,55.668009001928525,3.81,106.71048287091647,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14939,'2018-08-16T01:28:23.304Z',0.06581879071725627,108,4,50.094887884945365,3.43,26.30962861956526,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14940,'2018-02-21T04:42:46.335Z',NULL,103,1,47.04215255778118,3.22,32.541440792239165,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14941,'2017-06-22T13:11:53.161Z',NULL,34,5,49.535942579421324,3.39,90.79071108086536,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14942,'2017-11-09T22:56:53.483Z',4.565818790717256,108,2,33.39659192329691,2.29,27.168676740300896,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14943,'2018-01-22T10:43:43.406Z',NULL,8,1,98.83823503993958,6.77,145.8011705464215,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14944,'2019-09-08T00:27:22.949Z',4.565818790717256,119,2,43.43814329652384,2.98,84.60827157406699,1996); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14945,'2019-06-12T21:30:40.090Z',0.06581879071725627,56,4,36.37128575934436,0,63.23985578226263,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14946,'2018-09-11T12:38:40.826Z',NULL,167,4,97.70449564120193,0,132.4653111392657,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14947,'2018-06-21T04:50:57.448Z',0.06581879071725627,49,4,131.42865839323724,0,38.16614992057353,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14948,'2016-10-09T22:03:40.158Z',0.06581879071725627,34,2,49.535942579421324,0,24.88846592699154,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14949,'2017-06-15T16:31:46.517Z',4.565818790717256,33,4,31.829909130640935,0,33.34957895398399,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14950,'2018-01-16T06:11:32.275Z',NULL,22,2,32.136779940663494,0,42.39162916654895,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14951,'2019-08-15T05:10:19.738Z',NULL,69,6,73.38772304360626,0,119.61166212760727,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14952,'2019-12-03T22:02:10.549Z',NULL,105,2,52.723521442619514,0,23.8602437530762,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14953,'2018-11-20T00:19:50.590Z',NULL,88,2,105.41292031622555,0,160.5163077868083,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14954,'2019-08-17T00:12:00.123Z',NULL,144,4,61.1983004605443,0,63.40416609144497,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14955,'2017-02-18T22:13:23.496Z',NULL,54,1,41.395738936015974,0,48.50323921464542,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14956,'2018-03-23T15:00:01.857Z',NULL,124,0,110.93145648834248,0,91.72038362775315,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14957,'2020-01-10T18:07:59.690Z',NULL,17,1,79.93608046792765,0,58.57480223510986,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14958,'2019-02-23T21:46:16.916Z',NULL,179,1,68.32408657333919,0,57.08413215185896,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14959,'2017-01-01T08:46:11.472Z',NULL,109,1,79.36660712128732,0,78.07357949953867,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14960,'2017-03-17T19:49:22.708Z',NULL,174,1,74.40953929454055,0,72.08382804498157,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14961,'2019-10-31T09:34:25.409Z',NULL,85,5,54.90104734428525,0,17.074510069812263,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14962,'2019-04-05T14:50:31.300Z',NULL,35,2,71.53687730741436,0,97.72592883019128,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14963,'2017-10-16T11:59:49.650Z',NULL,113,3,73.65150250790677,0,103.24633444993773,1997); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14964,'2018-06-28T15:18:47.541Z',NULL,118,5,57.627613096978735,3.46,83.97674506035113,1999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14965,'2019-04-29T18:17:46.268Z',NULL,111,2,55.526746186906664,3.33,38.466894593909295,1999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14966,'2018-11-13T07:40:43.780Z',NULL,165,2,38.30449564120193,2.3,75.69438656465185,1999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14967,'2018-03-20T19:09:59.500Z',NULL,12,1,116.01427581618326,6.96,161.83723152631822,1999); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14968,'2020-01-24T19:53:28.785Z',NULL,20,1,37.32649625046575,2.33,29.58571727536639,2001); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14969,'2018-09-20T14:43:24.983Z',NULL,154,2,81.87529553312261,5.12,103.20605701621027,2001); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14970,'2018-10-27T04:16:12.701Z',NULL,164,2,92.96789820016517,5.81,175.9999410970697,2001); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14971,'2019-04-30T04:45:13.495Z',NULL,62,1,133.5202262591817,8.35,191.82492817259129,2001); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14972,'2016-10-20T07:39:06.806Z',4.565818790717256,129,3,98.7781981443958,0,73.46205033357873,2002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14973,'2017-04-24T22:34:31.824Z',NULL,167,2,65.13633042746795,0,20.998974710111565,2002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14974,'2018-05-26T19:27:00.345Z',NULL,101,1,139.82488066180403,0,58.50382975220954,2002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14975,'2017-02-27T21:20:48.411Z',NULL,71,1,55.202545991924566,0,51.35608695595382,2002); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14976,'2018-12-03T16:20:51.744Z',NULL,176,1,57.92480943352658,3.48,19.197445195200192,2004); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14977,'2016-07-10T03:34:12.564Z',NULL,100,3,45.22324323588729,2.71,58.52742658148697,2004); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14978,'2019-04-15T09:21:27.961Z',NULL,106,2,52.723521442619514,3.43,87.20170777718316,2006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14979,'2019-10-14T21:03:50.690Z',NULL,123,3,110.93145648834248,7.21,209.20464373496532,2006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14980,'2018-06-11T11:56:15.942Z',NULL,72,3,142.20381898788685,9.24,52.1204596925422,2006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14981,'2018-07-16T12:09:50.578Z',NULL,165,3,38.30449564120193,2.49,16.461411996965936,2006); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14982,'2018-04-19T17:51:42.781Z',NULL,123,2,110.93145648834248,6.1,207.83139279266484,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14983,'2017-04-28T12:38:45.933Z',NULL,184,3,77.3982748679465,4.26,48.691963513199234,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14984,'2018-09-04T23:11:12.103Z',NULL,61,5,23.537915510955656,1.29,45.059105107305804,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14985,'2018-11-09T14:19:48.720Z',NULL,76,3,63.82421061366486,3.51,124.75968666001039,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14986,'2018-02-28T01:24:30.928Z',6.448005649122972,79,2,41.616917284159726,2.29,69.13145581155025,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14987,'2020-03-11T22:55:14.625Z',6.448005649122972,123,1,110.93145648834248,6.1,213.7366080750452,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14988,'2019-10-28T03:31:01.586Z',1.9480056491229718,56,3,36.37128575934436,2,15.014732771748912,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14989,'2019-01-30T13:40:26.356Z',NULL,22,1,32.136779940663494,1.77,27.934102432616978,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14990,'2018-09-02T07:30:22.556Z',NULL,11,4,132.45679913492563,7.29,75.90428388975188,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14991,'2019-07-01T20:47:33.241Z',NULL,66,4,136.16126271106958,7.49,146.64434526612467,2009); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14992,'2019-10-04T16:38:21.611Z',NULL,186,5,98.9770008385166,4.95,45.46458756670939,2011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14993,'2020-03-06T14:06:15.605Z',NULL,114,1,77.91196471862148,3.9,63.04475819882441,2011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14994,'2017-09-16T09:24:32.267Z',NULL,24,5,74.87095783152942,3.74,136.3540208306724,2011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14995,'2019-04-26T03:05:56.383Z',NULL,12,3,116.01427581618326,5.8,130.78753828778994,2011); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14996,'2019-02-04T17:05:59.793Z',NULL,169,1,59.53172693453274,0,17.06010587960209,2012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14997,'2018-04-21T09:26:22.990Z',6.448005649122972,172,2,122.3651993029456,0,62.462044291459364,2012); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14998,'2019-07-18T03:01:22.063Z',NULL,81,4,43.9329842322118,2.75,60.5075858754632,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (14999,'2018-09-19T08:42:52.786Z',NULL,100,4,67.83486485383094,4.24,62.82399015376599,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15000,'2019-08-17T13:52:55.102Z',NULL,191,8,128.5841852057933,8.04,73.80801125122007,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15001,'2018-04-29T12:37:42.318Z',NULL,36,3,130.93687730741433,8.18,122.00930317381221,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15002,'2018-08-09T00:23:15.753Z',NULL,64,8,143.4221774571866,8.96,265.8537833199345,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15003,'2019-08-25T17:22:35.866Z',NULL,46,8,118.0495173798411,7.38,39.71028985528243,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15004,'2018-01-14T16:13:45.313Z',NULL,135,2,45.80402317157342,2.86,88.12549584794483,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15005,'2019-08-23T05:39:51.595Z',NULL,150,6,128.55415037577922,8.03,138.92095269710654,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15006,'2018-12-18T22:45:22.429Z',NULL,123,2,110.93145648834248,6.93,196.79838905960915,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15007,'2019-08-09T07:50:14.214Z',NULL,26,8,68.12471180754113,4.26,123.8366316021291,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15008,'2017-06-08T22:53:44.850Z',NULL,172,5,81.57679953529707,5.1,70.48491163615924,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15009,'2019-09-12T08:53:03.515Z',NULL,124,4,110.93145648834248,6.93,52.94775124020811,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15010,'2017-05-18T00:44:20.386Z',NULL,107,3,33.39659192329691,2.09,33.790273781203155,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15011,'2019-05-14T17:21:56.620Z',NULL,128,2,75.08016314504417,4.69,121.08363724278692,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15012,'2018-03-07T22:54:46.380Z',NULL,85,1,54.90104734428525,3.43,66.73513720243791,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15013,'2018-09-18T21:21:57.273Z',1.9480056491229718,91,3,65.09432810381134,4.07,48.88631733740073,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15014,'2019-08-21T06:42:43.013Z',1.9480056491229718,128,4,75.08016314504417,4.69,54.58287362538416,2014); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15015,'2017-02-14T10:49:10.284Z',NULL,25,1,45.7484264478831,2.74,49.11763727884939,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15016,'2017-06-11T15:56:16.089Z',NULL,198,3,46.76407124473339,2.81,87.5518274466386,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15017,'2019-06-28T08:54:48.309Z',NULL,59,5,89.20214751859149,5.35,85.30894648676363,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15018,'2018-04-04T19:43:01.646Z',NULL,195,2,109.78077396807234,6.59,120.89347106002519,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15019,'2016-11-07T00:55:27.140Z',NULL,33,1,31.829909130640935,1.91,30.58630092868504,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15020,'2017-11-11T14:44:35.593Z',NULL,164,1,61.978598800110106,3.72,58.97199120508671,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15021,'2017-11-19T23:52:25.532Z',NULL,76,2,42.54947374244324,2.55,77.98570583514294,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15022,'2017-07-11T15:42:44.437Z',NULL,175,5,78.21653962235106,4.69,106.24910683539991,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15023,'2016-09-12T18:30:50.088Z',NULL,159,3,23.686782969182406,1.42,30.2770881958825,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15024,'2018-10-19T22:22:05.223Z',NULL,61,2,23.537915510955656,1.41,35.10795899993897,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15025,'2018-12-16T22:22:38.858Z',NULL,196,1,70.14610686710009,4.21,137.18989459832827,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15026,'2018-05-21T03:08:46.481Z',NULL,1,2,44.19489169601981,2.65,70.79016546757329,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15027,'2017-01-22T07:54:53.013Z',NULL,197,1,46.76407124473339,2.81,91.42481759329127,2016); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15028,'2019-03-28T07:11:02.391Z',NULL,154,1,81.87529553312261,0,146.62486647194618,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15029,'2018-01-05T01:46:10.384Z',NULL,106,1,52.723521442619514,0,66.36249369650047,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15030,'2020-01-02T20:51:34.419Z',NULL,25,1,68.62263967182464,0,23.787315081709735,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15031,'2019-01-18T23:47:58.703Z',NULL,23,1,116.86672609493307,0,81.77487522380748,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15032,'2020-01-02T01:29:51.231Z',5.231347666791592,64,1,143.4221774571866,0,187.6623133536069,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15033,'2020-02-26T22:04:03.612Z',NULL,31,1,105.65346467128523,0,154.99722101209352,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15034,'2020-01-15T06:36:59.910Z',5.231347666791592,14,2,37.648145389078365,0,25.729915038541712,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15035,'2017-05-22T11:30:36.550Z',NULL,193,3,33.587182645381546,0,26.898910134209036,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15036,'2019-02-26T03:09:38.870Z',NULL,32,1,107.1448636959614,0,123.15774530394687,2019); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15037,'2017-12-30T06:00:05.277Z',NULL,189,1,62.18492169821006,2.63,81.34370900599828,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15038,'2018-07-12T10:45:29.506Z',NULL,110,3,55.526746186906664,2.35,89.25371907299755,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15039,'2020-03-16T05:54:55.361Z',NULL,86,1,92.31436670850246,3.9,44.30162196142811,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15040,'2019-07-08T22:27:46.939Z',NULL,159,2,35.53017445377361,1.5,31.645091416199232,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15041,'2020-02-13T02:13:51.715Z',NULL,90,1,123.1196127553999,5.2,196.24711719260105,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15042,'2019-04-22T09:34:39.157Z',NULL,146,1,126.04727121216614,5.33,115.25218399949452,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15043,'2018-01-18T07:15:45.715Z',NULL,69,1,73.38772304360626,3.1,77.888746560323,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15044,'2018-07-07T18:57:51.739Z',NULL,161,3,47.59120561297272,2.01,92.59681680943086,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15045,'2019-09-25T18:13:28.379Z',NULL,189,3,93.27738254731509,3.94,95.80408829087672,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15046,'2018-12-02T18:32:37.660Z',NULL,73,1,71.6287722595695,3.03,136.3377466336854,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15047,'2018-03-10T11:23:48.447Z',NULL,197,0,70.14610686710009,2.96,64.25911119639683,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15048,'2019-07-21T10:57:43.183Z',NULL,163,3,33.56789820016516,1.42,38.34679914589345,2021); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15049,'2017-03-27T11:30:59.202Z',NULL,10,1,31.78621880685793,0,18.783100747389362,2022); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15050,'2019-11-28T20:29:21.539Z',NULL,188,2,33.87738254731509,0,30.93267016099252,2022); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15051,'2018-12-18T23:16:47.563Z',NULL,98,1,112.41825444654248,7.87,189.50485444478358,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15052,'2020-02-20T15:31:40.197Z',NULL,14,1,37.648145389078365,2.64,23.514502420111523,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15053,'2018-05-03T17:34:01.383Z',NULL,199,3,115.4300138092855,8.08,121.66034208414273,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15054,'2019-03-25T18:14:24.785Z',5.231347666791592,174,1,111.61430894181083,7.81,72.63755520638941,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15055,'2018-12-06T02:14:11.474Z',NULL,161,1,47.59120561297272,3.33,45.39595652036417,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15056,'2020-02-13T07:44:40.237Z',NULL,36,2,130.93687730741433,9.17,223.3258960650439,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15057,'2018-06-04T11:44:29.343Z',NULL,195,6,109.78077396807234,7.68,136.67646271217728,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15058,'2020-02-10T23:15:40.686Z',NULL,59,2,89.20214751859149,6.24,98.76403989636012,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15059,'2018-06-25T06:38:26.684Z',NULL,52,6,103.67587240151535,7.26,138.73249567942872,2026); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15060,'2018-02-17T10:20:53.627Z',NULL,97,2,112.41825444654248,6.75,139.5883765083828,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15061,'2019-07-25T03:08:41.044Z',NULL,80,5,54.91325681036414,3.29,63.625156275232385,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15062,'2019-08-29T07:07:09.253Z',3.678430346338965,56,7,36.37128575934436,2.18,31.832426307711632,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15063,'2019-08-16T09:58:52.884Z',NULL,44,7,76.35255205175756,4.58,42.11384136107765,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15064,'2018-12-09T16:34:42.233Z',8.178430346338965,128,1,75.08016314504417,4.5,101.79212201911145,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15065,'2020-01-25T04:14:17.978Z',NULL,88,1,105.41292031622555,6.32,88.6122618856919,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15066,'2019-11-19T10:17:53.061Z',NULL,115,2,77.91196471862148,4.67,78.19625774879411,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15067,'2017-11-29T22:47:36.683Z',NULL,73,3,47.752514839713,2.87,47.075429598607606,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15068,'2018-12-18T02:00:34.154Z',NULL,38,3,66.06937283839378,3.96,42.85669743480654,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15069,'2018-04-30T11:43:18.057Z',NULL,1,3,44.19489169601981,2.65,57.897425931222294,2027); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15070,'2018-12-11T23:11:04.813Z',NULL,17,1,79.93608046792765,4.8,34.773832969466845,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15071,'2020-02-23T01:53:54.665Z',NULL,197,2,70.14610686710009,4.21,28.107261306132933,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15072,'2017-02-18T18:50:56.583Z',NULL,44,2,50.90170136783837,3.05,17.913485317448316,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15073,'2019-01-07T16:46:52.881Z',NULL,45,2,118.0495173798411,7.08,201.28537440506923,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15074,'2018-05-18T05:54:15.007Z',NULL,171,4,105.07665741496471,6.3,98.81191313369582,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15075,'2019-02-13T07:27:28.026Z',NULL,128,2,75.08016314504417,4.5,119.29798884360244,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15076,'2018-01-25T07:15:10.302Z',NULL,171,3,105.07665741496471,6.3,68.5876159424382,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15077,'2019-10-15T17:05:41.483Z',NULL,80,6,54.91325681036414,3.29,70.0294159540056,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15078,'2017-09-06T09:59:11.773Z',NULL,90,4,82.07974183693327,4.92,29.23692987816078,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15079,'2019-07-31T09:22:32.024Z',NULL,186,5,98.9770008385166,5.94,177.85068361237154,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15080,'2019-03-18T14:06:31.257Z',NULL,123,1,110.93145648834248,6.66,56.855682083100945,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15081,'2018-12-21T05:29:34.916Z',NULL,27,1,127.52471180754115,7.65,147.14141657268786,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15082,'2018-08-03T09:08:20.025Z',NULL,152,7,48.89568729900663,2.93,84.64740093020178,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15083,'2018-02-13T04:35:28.484Z',NULL,96,2,104.82144858590365,6.29,108.42464611357325,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15084,'2018-11-15T16:39:40.001Z',NULL,96,2,104.82144858590365,6.29,95.4116751015846,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15085,'2018-11-17T02:23:13.524Z',NULL,182,3,84.48940370476112,5.07,78.84240053139342,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15086,'2017-04-07T07:34:06.668Z',NULL,85,3,36.6006982295235,2.2,49.35540106456378,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15087,'2018-12-25T16:33:59.312Z',8.178430346338965,158,1,139.8942352373801,8.39,178.27539360331622,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15088,'2020-01-22T16:45:20.362Z',NULL,31,1,105.65346467128523,6.34,170.60129723325372,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15089,'2017-12-27T04:47:57.762Z',8.178430346338965,187,2,65.98466722567774,3.96,71.63723995635362,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15090,'2018-12-18T07:01:12.020Z',NULL,143,3,61.1983004605443,3.67,86.50217589764371,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15091,'2018-12-13T21:33:49.479Z',NULL,90,2,123.1196127553999,7.39,195.14668479209507,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15092,'2020-01-15T15:49:24.394Z',NULL,2,1,105.11984419607644,6.31,80.81949687223059,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15093,'2019-01-13T08:07:12.986Z',NULL,86,2,92.31436670850246,5.54,116.89044153153696,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15094,'2019-02-26T09:10:26.738Z',8.178430346338965,37,2,80.10774204020768,4.81,116.91226301968275,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15095,'2018-11-29T06:38:49.886Z',NULL,69,4,73.38772304360626,4.4,102.52696250732323,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15096,'2017-11-08T20:53:51.810Z',NULL,105,3,35.149014295079674,2.11,69.11442316479872,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15097,'2019-09-20T22:27:43.842Z',NULL,112,4,41.329386510090345,2.48,61.87128870853889,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15098,'2019-10-13T00:17:21.161Z',NULL,76,4,63.82421061366486,3.83,21.80379930098092,2028); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15099,'2017-09-02T03:00:12.456Z',NULL,158,4,93.26282349158673,0,167.40668376311356,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15100,'2019-06-28T03:32:53.761Z',3.678430346338965,56,6,36.37128575934436,0,56.28991545002599,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15101,'2019-02-27T04:28:13.134Z',NULL,153,2,66.79892314178237,0,107.43974669100533,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15102,'2018-10-30T20:10:53.196Z',NULL,176,4,57.92480943352658,0,103.28548078427566,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15103,'2019-11-12T02:22:26.305Z',NULL,8,3,98.83823503993958,0,182.59982248061525,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15104,'2019-07-14T15:25:48.064Z',NULL,1,6,44.19489169601981,0,75.52347791977321,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15105,'2017-07-01T00:46:25.368Z',NULL,7,4,98.81933684368194,0,100.1791880504383,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15106,'2017-09-07T12:36:40.512Z',NULL,89,4,42.47974183693326,0,58.453256927683924,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15107,'2019-10-06T06:09:30.512Z',1.283463988514172,58,6,78.14578007078882,0,83.64827689678519,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15108,'2019-06-21T02:35:05.022Z',NULL,90,5,123.1196127553999,0,208.94578104782158,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15109,'2019-07-27T08:10:53.027Z',NULL,149,4,69.15415037577924,0,114.42280452122876,2030); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15110,'2020-03-31T09:22:01.517Z',1.283463988514172,9,1,87.46968147789205,6.01,91.93168386669302,2031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15111,'2016-10-12T09:16:40.777Z',NULL,37,4,53.40516136013846,3.67,49.310763493148784,2031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15112,'2017-09-28T09:17:42.495Z',NULL,107,5,33.39659192329691,2.3,56.374732427816845,2031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15113,'2019-05-17T18:24:21.357Z',NULL,147,3,66.64727121216615,4.58,73.81744337101797,2031); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15114,'2018-10-26T14:35:19.812Z',NULL,114,4,77.91196471862148,3.12,102.84507683356274,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15115,'2017-02-03T01:19:21.705Z',NULL,162,2,22.378598800110105,0.9,7.0134745606418445,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15116,'2019-01-02T21:03:43.140Z',NULL,4,2,110.98767151282252,4.44,164.94674694539367,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15117,'2019-07-30T18:56:21.678Z',NULL,39,5,114.58158180283459,4.58,184.3263236480743,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15118,'2018-12-06T08:19:56.370Z',NULL,7,2,148.22900526552291,5.93,238.91846161598718,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15119,'2017-05-27T05:30:08.124Z',1.283463988514172,26,4,45.41647453836076,1.82,34.79866040666465,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15120,'2019-03-14T08:07:05.368Z',NULL,61,1,23.537915510955656,0.94,42.01613395220125,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15121,'2017-02-28T07:17:21.082Z',NULL,50,2,35.76013077879841,1.43,26.96461426524051,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15122,'2016-08-01T13:11:15.633Z',NULL,169,7,39.68781795635516,1.59,20.8950192569901,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15123,'2017-05-23T00:30:53.284Z',NULL,181,3,95.92626913650741,3.84,39.04561446217221,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15124,'2018-12-07T21:03:12.375Z',NULL,53,1,44.27587240151534,1.77,45.91651969755228,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15125,'2016-11-09T08:42:29.916Z',NULL,7,2,98.81933684368194,3.95,52.40267521796937,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15126,'2019-06-22T18:21:51.295Z',NULL,191,5,128.5841852057933,5.14,204.06288731496775,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15127,'2018-09-08T05:30:50.064Z',NULL,109,4,119.04991068193098,4.76,140.6775853422229,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15128,'2019-09-09T06:17:15.759Z',NULL,81,4,43.9329842322118,1.76,39.76670006208987,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15129,'2016-09-05T19:33:37.597Z',NULL,66,5,90.77417514071306,3.63,133.89177661977183,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15130,'2019-11-10T02:03:09.367Z',NULL,30,2,64.17448218067184,2.57,37.167749405050294,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15131,'2018-05-27T04:54:45.337Z',1.283463988514172,26,3,68.12471180754113,2.72,120.61694900563985,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15132,'2017-08-29T02:31:27.706Z',NULL,173,5,81.57679953529707,3.26,144.0548282910861,2034); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15133,'2020-03-03T05:49:55.224Z',NULL,91,0,65.09432810381134,3.91,106.79384585156622,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15134,'2020-04-18T05:09:09.170Z',NULL,171,1,105.07665741496471,6.3,133.14442684773817,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15135,'2018-04-12T03:51:49.631Z',NULL,149,1,69.15415037577924,4.15,111.01652343526672,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15136,'2018-12-02T16:26:14.318Z',1.283463988514172,182,1,84.48940370476112,5.07,84.53863930282084,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15137,'2018-05-10T16:11:24.139Z',NULL,48,2,123.20884248534108,7.39,78.54235581381855,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15138,'2018-10-17T11:32:14.482Z',NULL,39,4,114.58158180283459,6.87,214.70080142793407,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15139,'2018-09-22T09:32:28.685Z',NULL,62,5,133.5202262591817,8.01,43.1265351435866,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15140,'2019-06-08T07:50:29.318Z',NULL,90,6,123.1196127553999,7.39,75.83602806759636,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15141,'2017-07-21T09:51:41.815Z',1.283463988514172,46,5,78.6996782532274,4.72,95.25449478916866,2035); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15142,'2016-11-04T21:42:44.836Z',NULL,110,2,37.01783079127111,0,58.490275459156685,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15143,'2019-11-02T16:45:07.321Z',NULL,186,1,98.9770008385166,0,53.32133063193519,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15144,'2018-09-16T03:24:26.044Z',NULL,1,2,44.19489169601981,0,19.17781133456847,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15145,'2019-12-09T11:40:00.248Z',NULL,191,1,128.5841852057933,0,180.66462825492346,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15146,'2017-09-03T11:34:43.618Z',NULL,131,4,75.41148135558485,0,79.21980493703724,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15147,'2017-12-17T09:04:17.335Z',NULL,24,2,74.87095783152942,0,64.9227923042989,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15148,'2018-11-18T10:51:15.283Z',NULL,172,4,122.3651993029456,0,74.5504798674574,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15149,'2017-12-04T06:18:24.567Z',NULL,188,2,22.584921698210056,0,18.61109829068779,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15150,'2018-04-22T10:51:39.917Z',NULL,105,4,52.723521442619514,0,21.033508569633174,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15151,'2019-11-01T18:54:34.815Z',NULL,27,4,127.52471180754115,0,166.84188208153842,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15152,'2017-02-04T13:44:42.482Z',NULL,156,2,20.41053609936413,0,37.93968480350646,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15153,'2018-12-24T16:46:29.091Z',NULL,138,2,113.95078476718615,0,58.0571886174706,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15154,'2017-01-22T09:19:07.747Z',NULL,82,3,40.59697158687298,0,71.87903607888016,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15155,'2019-03-30T17:34:05.186Z',NULL,96,1,104.82144858590365,0,38.4790038958688,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15156,'2017-02-07T03:00:57.110Z',8.745442339845496,46,2,78.6996782532274,0,30.152004932130044,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15157,'2019-12-10T19:24:09.074Z',NULL,178,2,117.32963250370614,0,66.32563819667774,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15158,'2019-02-06T04:40:05.802Z',NULL,156,2,30.615804149046195,0,41.023721986995454,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15159,'2019-01-16T16:26:04.412Z',NULL,82,2,60.89545738030947,0,55.92623261603119,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15160,'2018-09-27T01:48:58.413Z',NULL,172,6,122.3651993029456,0,86.97825606147877,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15161,'2019-11-03T07:57:09.504Z',NULL,72,4,142.20381898788685,0,242.61293497350906,2036); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15162,'2019-10-06T11:52:10.792Z',NULL,14,7,37.648145389078365,1.51,72.2668105370816,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15163,'2018-10-18T23:40:05.375Z',NULL,72,8,142.20381898788685,5.69,66.93808252365197,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15164,'2017-09-12T20:39:11.809Z',NULL,180,7,45.549391048892794,1.82,25.598833199226718,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15165,'2018-04-04T08:24:11.945Z',NULL,151,4,91.61302306843446,3.66,42.54421981844817,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15166,'2019-06-02T12:50:58.160Z',NULL,49,9,131.42865839323724,5.26,168.46379150076456,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15167,'2019-09-23T19:13:18.234Z',NULL,128,6,75.08016314504417,3,113.74947327459459,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15168,'2018-05-10T16:46:35.575Z',NULL,186,5,98.9770008385166,3.96,138.45950204905026,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15169,'2019-06-02T15:53:36.626Z',NULL,181,9,143.88940370476112,5.76,163.95228676516007,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15170,'2019-05-02T19:13:30.947Z',NULL,67,6,41.24480890795779,1.65,30.450038504332877,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15171,'2018-07-15T23:07:37.614Z',NULL,130,7,75.02573869315137,3,142.1817465823687,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15172,'2020-03-10T13:17:51.119Z',NULL,150,1,128.55415037577922,5.14,190.46055271510744,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15173,'2018-11-22T07:20:49.481Z',NULL,126,4,125.24398120308456,5.01,50.144539503451455,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15174,'2018-05-30T20:18:43.216Z',NULL,41,5,63.50890855689462,2.54,55.73969630924604,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15175,'2017-06-21T15:47:40.011Z',NULL,138,8,75.96718984479077,3.04,64.23740034630563,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15176,'2018-04-10T15:46:12.067Z',NULL,147,4,66.64727121216615,2.67,45.80347345261084,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15177,'2017-10-28T13:39:03.531Z',NULL,56,7,24.24752383956291,0.97,43.2761907162856,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15178,'2018-10-30T22:55:05.095Z',NULL,104,6,106.44215255778118,4.26,183.8362230816471,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15179,'2020-01-11T03:35:38.152Z',NULL,105,2,52.723521442619514,2.11,29.368777824556417,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15180,'2018-01-09T11:25:47.005Z',NULL,58,2,78.14578007078882,3.13,72.9355572775733,2037); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15181,'2019-02-06T02:26:39.786Z',NULL,89,2,63.719612755399886,0,63.75664034369738,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15182,'2017-10-14T14:20:56.653Z',NULL,174,7,74.40953929454055,0,108.75718536427522,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15183,'2019-01-20T22:48:50.224Z',NULL,63,2,133.5202262591817,0,162.39802142764495,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15184,'2018-03-27T09:11:06.671Z',NULL,170,1,105.07665741496471,0,38.0940037767871,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15185,'2017-04-15T05:00:14.885Z',NULL,48,4,82.13922832356072,0,91.15454264974207,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15186,'2019-01-14T05:54:11.592Z',NULL,140,2,66.80312547576881,0,64.96274455024523,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15187,'2016-12-04T11:19:30.871Z',NULL,83,2,54.58418555091025,0,98.255778784609,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15188,'2019-02-04T11:54:28.240Z',NULL,170,2,105.07665741496471,0,169.30095338055676,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15189,'2016-11-13T15:03:35.253Z',NULL,145,4,40.7988669736962,0,41.98818697903562,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15190,'2017-05-12T20:26:14.949Z',NULL,98,5,74.94550296436165,0,111.1797721509739,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15191,'2019-03-22T15:42:24.113Z',NULL,111,1,55.526746186906664,0,61.7281983175667,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15192,'2016-10-21T16:06:08.520Z',NULL,42,5,25.336071424606207,0,18.91818553466624,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15193,'2018-06-30T01:50:59.078Z',NULL,2,5,105.11984419607644,0,81.74950494867186,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15194,'2020-03-29T21:15:10.768Z',NULL,132,1,127.88197029833711,0,114.11090248479933,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15195,'2018-05-08T23:53:02.795Z',NULL,186,5,98.9770008385166,0,82.82698909477743,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15196,'2017-01-19T05:41:53.896Z',NULL,167,2,65.13633042746795,0,121.43948526235788,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15197,'2017-05-29T02:50:06.046Z',NULL,82,4,40.59697158687298,0,67.1219635293779,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15198,'2017-08-31T01:36:48.407Z',NULL,152,9,32.59712486600442,0,39.97621211367775,2038); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15199,'2018-10-03T23:07:46.112Z',NULL,126,6,125.24398120308456,7.2,139.5726777276027,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15200,'2019-10-25T20:00:54.541Z',NULL,118,6,57.627613096978735,3.31,27.905316239973505,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15201,'2020-04-12T03:54:49.069Z',NULL,58,3,78.14578007078882,4.49,99.28970682829082,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15202,'2020-03-01T18:46:22.177Z',NULL,82,1,60.89545738030947,3.5,98.90959452846624,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15203,'2019-04-11T00:31:31.638Z',NULL,190,2,128.5841852057933,7.39,75.06958692814038,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15204,'2019-09-26T19:00:00.284Z',NULL,62,4,133.5202262591817,7.68,167.26103121525912,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15205,'2018-06-23T04:30:21.301Z',NULL,1,6,44.19489169601981,2.54,47.57312546069825,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15206,'2018-11-08T11:29:24.768Z',NULL,93,4,49.81864156655383,2.86,15.007522683851935,2039); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15207,'2019-10-14T21:57:29.814Z',NULL,26,7,68.12471180754113,3.75,95.90329687230437,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15208,'2017-07-26T09:45:05.646Z',NULL,58,6,52.097186713859216,2.87,67.70152034649838,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15209,'2018-10-15T22:58:59.544Z',NULL,96,7,104.82144858590365,5.77,164.2378129921588,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15210,'2017-09-21T13:40:19.994Z',NULL,194,5,33.587182645381546,1.85,53.49503495652979,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15211,'2018-06-18T02:50:08.956Z',8.018855853418858,180,6,68.32408657333919,3.76,133.49657891879994,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15212,'2016-11-12T03:36:27.552Z',NULL,185,4,26.384667225677738,1.45,11.992686583852839,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15213,'2019-07-28T14:59:39.057Z',NULL,113,6,110.47725376186015,6.08,169.13961845228545,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15214,'2019-06-26T21:03:50.719Z',NULL,60,8,29.80214751859149,1.64,41.08967899087525,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15215,'2018-08-30T10:39:33.398Z',NULL,16,9,66.11029954877317,3.64,126.36670934476456,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15216,'2019-04-04T23:18:19.237Z',NULL,190,3,128.5841852057933,7.07,110.94148850621585,2040); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15217,'2017-04-26T04:33:12.442Z',NULL,40,3,66.44160029487797,3.99,31.406835566776586,2041); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15218,'2019-11-02T07:56:31.936Z',NULL,17,4,79.93608046792765,4.8,25.342860029244104,2041); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15219,'2019-08-05T15:17:12.695Z',NULL,124,9,110.93145648834248,6.66,181.04001149568023,2041); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15220,'2017-09-12T03:41:30.482Z',NULL,170,5,70.05110494330981,4.2,64.03880259449645,2041); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15221,'2018-12-08T01:21:17.188Z',NULL,44,2,76.35255205175756,4.58,39.88877753722276,2043); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15222,'2018-04-01T00:59:19.744Z',NULL,97,3,112.41825444654248,6.75,52.26096968150741,2043); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15223,'2019-01-20T12:58:21.085Z',NULL,173,2,122.3651993029456,7.34,243.69200844002938,2043); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15224,'2019-07-15T21:48:49.825Z',NULL,40,4,99.66240044231697,5.98,151.66289437804662,2043); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15225,'2019-04-09T03:53:34.358Z',6.913314477459051,5,3,124.1176465275534,4.96,161.1398427464935,2045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15226,'2019-05-23T02:56:17.825Z',NULL,168,5,118.93172693453273,4.76,88.52047081569415,2045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15227,'2017-10-30T20:41:27.193Z',6.913314477459051,15,5,25.09876359271891,1,21.446716757783655,2045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15228,'2016-11-29T15:05:11.441Z',6.913314477459051,179,3,45.549391048892794,1.82,26.199069213986945,2045); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15229,'2020-02-14T00:49:46.591Z',NULL,175,1,117.3248094335266,0,50.19563823918223,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15230,'2020-02-22T01:53:57.241Z',NULL,114,1,77.91196471862148,0,143.40961335674962,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15231,'2018-04-16T19:00:06.317Z',NULL,87,2,117.25536340498041,0,61.39737026572228,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15232,'2018-10-30T03:39:38.765Z',NULL,57,5,122.4223933583994,0,189.81210476415467,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15233,'2018-04-30T22:07:38.169Z',NULL,10,3,47.6793282102869,0,46.407391170595076,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15234,'2018-01-08T15:33:09.498Z',NULL,79,1,41.616917284159726,0,14.156420747267761,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15235,'2017-06-25T17:02:19.467Z',6.913314477459051,176,5,38.616539622351056,0,72.81539702553421,2046); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15236,'2018-08-08T08:51:17.513Z',NULL,167,8,97.70449564120193,3.91,157.2219619631708,2047); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15237,'2017-04-26T12:21:42.296Z',NULL,54,3,41.395738936015974,1.66,74.46577760232805,2047); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15238,'2018-04-16T14:17:31.282Z',NULL,161,3,47.59120561297272,1.9,81.50606361899648,2047); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15239,'2018-05-16T14:56:25.674Z',NULL,26,4,68.12471180754113,2.72,121.80187296277603,2047); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15240,'2020-01-24T14:06:47.896Z',NULL,17,2,79.93608046792765,3.2,64.03861287311382,2047); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15241,'2019-09-23T10:34:55.596Z',NULL,179,3,68.32408657333919,3.93,33.52667695384955,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15242,'2017-02-13T10:37:44.305Z',6.913314477459051,185,1,26.384667225677738,1.52,52.75744380413506,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15243,'2017-01-22T11:09:54.603Z',6.913314477459051,149,1,46.10276691718616,2.65,58.04530768459643,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15244,'2017-04-18T21:47:43.215Z',6.913314477459051,171,3,70.05110494330981,4.03,73.42612746987183,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15245,'2017-09-27T00:35:03.909Z',NULL,72,4,94.80254599192457,5.45,134.02371410768532,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15246,'2017-11-12T00:41:19.806Z',NULL,60,3,19.86809834572766,1.14,14.357399427615107,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15247,'2019-04-15T07:14:00.897Z',NULL,185,3,39.57700083851661,2.28,64.90252386520233,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15248,'2017-11-30T11:58:42.628Z',6.631484954140275,16,2,44.07353303251545,2.53,49.01341374306911,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15249,'2018-05-11T12:37:42.130Z',2.1314849541402747,24,4,112.30643674729413,6.46,52.62829329002334,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15250,'2020-03-16T22:12:37.037Z',NULL,95,1,49.81864156655383,2.86,75.76922082362026,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15251,'2019-11-09T00:44:51.795Z',NULL,41,2,63.50890855689462,3.65,105.53407313153753,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15252,'2018-08-02T04:28:51.907Z',NULL,189,6,93.27738254731509,5.36,152.78072890272156,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15253,'2019-10-21T14:20:17.896Z',2.1314849541402747,100,5,67.83486485383094,3.9,65.98737081441408,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15254,'2018-01-28T13:19:26.678Z',2.1314849541402747,11,1,132.45679913492563,7.62,259.3143717459026,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15255,'2017-03-02T12:43:42.548Z',NULL,163,1,22.378598800110105,1.29,11.046031755745036,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15256,'2019-01-28T18:49:28.223Z',NULL,187,2,98.9770008385166,5.69,78.79726183473164,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15257,'2018-10-12T07:07:19.009Z',NULL,11,6,132.45679913492563,7.62,80.96856152470441,2049); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15258,'2019-11-02T03:23:57.686Z',NULL,12,3,116.01427581618326,8.12,181.91295952144645,2050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15259,'2019-05-21T15:27:10.775Z',NULL,40,5,99.66240044231697,6.98,72.469518002685,2050); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15260,'2018-10-06T05:57:21.768Z',NULL,135,5,45.80402317157342,3.15,25.075880032906642,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15261,'2019-06-09T13:27:56.426Z',2.1314849541402747,15,4,37.648145389078365,2.59,57.75100352437836,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15262,'2018-09-09T03:54:48.116Z',NULL,194,3,50.38077396807232,3.46,19.24011530958667,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15263,'2019-02-05T01:15:11.809Z',NULL,168,1,118.93172693453273,8.18,210.79083467951233,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15264,'2018-10-31T10:23:01.813Z',NULL,41,3,63.50890855689462,4.37,84.32587644475038,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15265,'2019-10-09T04:55:26.180Z',NULL,87,5,117.25536340498041,8.06,93.8656504332405,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15266,'2019-07-30T11:53:10.805Z',NULL,106,5,52.723521442619514,3.62,19.458352354884894,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15267,'2016-10-27T18:40:08.405Z',NULL,92,6,83.2616179105333,5.72,125.13890817735582,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15268,'2019-09-04T14:25:44.740Z',NULL,91,5,65.09432810381134,4.48,131.10560848152153,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15269,'2018-06-02T06:16:18.333Z',NULL,60,7,29.80214751859149,2.05,40.548284647398596,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15270,'2019-03-23T23:23:37.601Z',NULL,116,1,114.42485125407785,7.87,179.61449175579622,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15271,'2020-02-06T11:25:50.881Z',NULL,59,2,89.20214751859149,6.13,71.9039045247422,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15272,'2017-05-02T08:18:23.935Z',NULL,38,5,44.04624855892918,3.03,31.96567478153777,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15273,'2018-12-31T05:29:06.491Z',NULL,118,2,57.627613096978735,3.96,56.817222040880196,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15274,'2020-01-18T12:13:54.822Z',NULL,146,2,126.04727121216614,8.67,163.25666940036348,2051); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15275,'2018-09-26T18:00:49.640Z',NULL,168,4,118.93172693453273,7.73,122.60523013473889,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15276,'2019-09-24T12:31:32.464Z',NULL,133,4,68.4819702983371,4.45,135.71117673066004,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15277,'2019-07-13T21:10:45.680Z',NULL,86,5,92.31436670850246,6,110.00436864603475,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15278,'2018-10-20T14:17:18.030Z',0.8117607770020707,113,5,110.47725376186015,7.18,195.85149680231748,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15279,'2018-06-19T17:26:42.302Z',NULL,114,4,77.91196471862148,5.06,147.70462226461424,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15280,'2019-02-07T03:08:06.247Z',NULL,47,1,84.0766209826718,5.46,33.42852479128526,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15281,'2019-06-25T13:35:55.031Z',NULL,32,4,107.1448636959614,6.96,149.50534510370085,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15282,'2016-10-03T21:24:16.348Z',NULL,168,2,79.28781795635516,5.15,58.06311988175134,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15283,'2019-08-05T06:06:07.399Z',NULL,165,3,38.30449564120193,2.49,11.366424497336109,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15284,'2017-11-20T13:02:35.753Z',NULL,17,1,53.290720311951766,3.46,55.33239757865036,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15285,'2018-05-02T09:35:10.058Z',NULL,14,3,37.648145389078365,2.45,46.20749436493483,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15286,'2019-02-01T00:43:30.183Z',NULL,72,1,142.20381898788685,9.24,180.95197351866642,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15287,'2019-05-05T10:19:51.997Z',NULL,39,3,114.58158180283459,7.45,43.54826323672571,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15288,'2019-07-28T06:46:14.953Z',NULL,48,5,123.20884248534108,8.01,99.98577485887513,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15289,'2019-08-25T13:13:50.270Z',NULL,92,5,124.89242686579996,8.12,219.5145053314565,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15290,'2018-11-26T10:33:31.418Z',NULL,178,1,117.32963250370614,7.63,163.8559260684029,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15291,'2019-05-06T18:22:33.244Z',NULL,21,2,60.57501609456816,3.94,53.95784160631123,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15292,'2019-07-04T14:44:54.593Z',NULL,111,2,55.526746186906664,3.61,37.27124293488523,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15293,'2019-05-31T02:06:33.448Z',NULL,148,2,138.9817182254566,9.03,148.47967002037495,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15294,'2017-09-19T07:10:26.885Z',NULL,168,3,79.28781795635516,5.15,83.24005936650491,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15295,'2020-01-16T23:51:49.421Z',NULL,6,2,97.43621265344382,6.33,85.42333910520607,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15296,'2019-07-20T17:06:05.794Z',5.311760777002071,159,3,35.53017445377361,2.31,69.77935140697635,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15297,'2018-08-19T17:14:40.714Z',NULL,154,5,81.87529553312261,5.32,41.867773885079494,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15298,'2020-01-29T19:29:09.681Z',NULL,55,2,95.77128575934437,6.23,78.3487966537816,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15299,'2020-01-29T19:23:01.739Z',NULL,157,1,139.8942352373801,9.09,97.08278055197044,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15300,'2019-09-07T05:05:24.201Z',NULL,197,2,70.14610686710009,4.56,51.03539870293288,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15301,'2018-10-20T01:22:31.153Z',NULL,37,4,80.10774204020768,5.21,24.81834290978026,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15302,'2019-07-14T21:54:43.672Z',NULL,123,3,110.93145648834248,7.21,78.61773564588907,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15303,'2018-07-15T15:49:20.691Z',NULL,183,3,56.697412301919755,3.69,53.55488232826866,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15304,'2019-09-12T02:54:55.151Z',NULL,71,5,82.80381898788684,5.38,49.01836888656232,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15305,'2016-06-29T11:50:28.491Z',NULL,80,4,36.60883787357609,2.38,22.461027430636126,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15306,'2019-09-25T15:57:21.651Z',NULL,80,2,54.91325681036414,3.57,57.54598028553254,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15307,'2018-07-09T12:42:39.140Z',NULL,91,2,65.09432810381134,4.23,83.51277422225104,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15308,'2019-03-08T23:51:57.361Z',6.321626758157737,124,0,110.93145648834248,7.21,63.553657320927435,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15309,'2020-01-27T01:22:05.552Z',NULL,140,2,66.80312547576881,4.34,87.85425603175243,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15310,'2018-02-18T02:17:48.402Z',NULL,139,2,76.77768319177018,4.99,21.914437045435108,2052); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15311,'2019-09-28T17:08:11.379Z',NULL,135,4,45.80402317157342,2.29,76.04422369756259,2053); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15312,'2017-11-01T09:27:55.816Z',NULL,183,2,37.7982748679465,1.89,31.35721529077001,2053); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15313,'2019-07-24T21:54:53.072Z',NULL,68,4,115.24343882309758,5.76,127.23209689336994,2053); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15314,'2020-04-11T18:31:36.274Z',NULL,195,2,109.78077396807234,5.49,84.69759773282264,2053); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15315,'2018-05-02T17:12:44.463Z',NULL,101,2,139.82488066180403,8.39,48.30266489569212,2054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15316,'2017-06-09T23:57:33.689Z',NULL,16,3,44.07353303251545,2.64,80.79393775491161,2054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15317,'2018-05-18T01:13:34.567Z',NULL,45,2,118.0495173798411,7.08,67.70345211130979,2054); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15318,'2017-05-03T07:42:14.794Z',NULL,17,3,53.290720311951766,2.66,24.238859414941334,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15319,'2018-11-15T12:50:50.846Z',6.321626758157737,111,3,55.526746186906664,2.78,78.2999682299114,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15320,'2020-03-22T11:10:11.426Z',1.8216267581577366,195,1,109.78077396807234,5.49,185.80571496748968,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15321,'2017-06-29T15:10:27.114Z',NULL,163,5,22.378598800110105,1.12,24.17331068540816,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15322,'2020-02-09T08:49:04.025Z',NULL,64,1,143.4221774571866,7.17,153.153865085135,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15323,'2018-11-25T09:06:24.658Z',1.8216267581577366,124,2,110.93145648834248,5.55,202.09819460145513,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15324,'2018-03-09T20:32:47.264Z',NULL,48,1,123.20884248534108,6.16,74.01427177423196,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15325,'2019-12-28T18:58:48.362Z',NULL,196,1,70.14610686710009,3.51,44.39676296270233,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15326,'2019-05-16T04:01:47.049Z',NULL,99,3,67.83486485383094,3.39,85.6832655847653,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15327,'2019-02-27T06:59:32.814Z',NULL,143,1,61.1983004605443,3.06,121.02886663031197,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15328,'2019-02-19T18:53:48.385Z',NULL,21,1,60.57501609456816,3.03,88.09265567922895,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15329,'2018-01-13T08:57:23.222Z',NULL,46,2,118.0495173798411,5.9,135.74040900311923,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15330,'2019-04-10T15:18:00.467Z',NULL,112,2,41.329386510090345,2.07,28.6159932374418,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15331,'2018-12-09T20:59:16.743Z',NULL,88,1,105.41292031622555,5.27,66.53765769185648,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15332,'2019-11-28T13:24:24.389Z',NULL,80,2,54.91325681036414,2.75,38.7203365662808,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15333,'2018-12-14T12:41:46.948Z',1.8216267581577366,174,2,111.61430894181083,5.58,35.382203703307354,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15334,'2019-01-29T22:02:10.927Z',NULL,144,2,61.1983004605443,3.06,100.39200812210161,2055); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15335,'2018-06-30T18:19:29.689Z',NULL,81,5,43.9329842322118,1.89,79.72495749852966,2056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15336,'2018-05-28T08:59:53.388Z',NULL,96,3,104.82144858590365,4.51,54.840842880891586,2056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15337,'2020-02-14T17:40:08.811Z',NULL,6,1,97.43621265344382,4.19,55.729716730957364,2056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15338,'2018-07-01T23:54:20.470Z',NULL,90,3,123.1196127553999,5.29,108.79430001127595,2056); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15339,'2019-12-01T19:43:22.982Z',NULL,185,1,39.57700083851661,2.72,50.79307194822645,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15340,'2018-02-01T13:46:02.362Z',NULL,151,1,91.61302306843446,6.3,40.19181724788257,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15341,'2018-07-09T20:04:47.798Z',NULL,194,6,50.38077396807232,3.46,62.86445915373941,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15342,'2019-07-01T05:58:10.745Z',7.226958650578963,172,4,122.3651993029456,8.41,85.45002078527624,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15343,'2019-09-18T04:33:37.558Z',NULL,75,3,125.81276373452337,8.65,152.157498277185,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15344,'2020-01-11T01:56:20.506Z',NULL,137,2,67.77247956807186,4.66,33.9623462655476,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15345,'2019-01-11T22:00:28.810Z',NULL,144,2,61.1983004605443,4.21,18.865737941963463,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15346,'2019-11-29T08:16:41.593Z',NULL,84,3,81.87627832636537,5.63,151.28536211781056,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15347,'2019-07-07T20:38:12.149Z',NULL,95,3,49.81864156655383,3.43,36.84820191083362,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15348,'2019-10-04T19:59:33.491Z',NULL,133,4,68.4819702983371,4.71,53.021572087709664,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15349,'2018-05-13T04:35:24.148Z',NULL,115,27,77.91196471862148,5.36,116.07711108845903,2057); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15350,'2020-04-17T13:42:04.769Z',NULL,58,2,78.14578007078882,3.13,29.984245839884075,2058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15351,'2019-07-25T21:05:48.450Z',NULL,103,4,47.04215255778118,1.88,65.899204906987,2058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15352,'2020-01-10T17:03:49.949Z',NULL,59,2,89.20214751859149,3.57,72.04208817931261,2058); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15353,'2017-08-16T22:24:24.082Z',NULL,80,6,36.60883787357609,2.29,15.041117779726894,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15354,'2020-02-29T07:41:21.964Z',NULL,18,1,81.90307121097293,5.12,69.48886767702017,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15355,'2018-08-10T08:30:20.870Z',NULL,31,6,105.65346467128523,6.6,93.35672162048309,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15356,'2017-06-24T19:39:16.901Z',NULL,126,6,83.49598746872304,5.22,45.05065918078628,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15357,'2018-04-19T14:14:16.173Z',2.7269586505789625,176,2,57.92480943352658,3.62,77.79118777127886,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15358,'2018-09-19T09:11:05.926Z',NULL,115,4,77.91196471862148,4.87,103.62509595135289,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15359,'2019-09-28T11:11:15.167Z',NULL,80,4,54.91325681036414,3.43,108.9909338932277,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15360,'2019-07-06T21:21:03.184Z',2.7269586505789625,116,4,114.42485125407785,7.15,36.28779200970199,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15361,'2018-01-08T01:06:52.991Z',NULL,121,2,40.44528328808107,2.53,59.16705504961967,2061); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15362,'2020-03-10T05:35:24.272Z',NULL,152,1,48.89568729900663,3.18,81.52171038777885,2062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15363,'2019-12-14T14:10:53.107Z',NULL,103,2,47.04215255778118,3.06,20.339335105659075,2062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15364,'2019-12-22T16:33:53.972Z',NULL,2,2,105.11984419607644,6.83,147.19594123089732,2062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15365,'2019-01-13T18:16:36.158Z',NULL,119,1,43.43814329652384,2.82,66.92715458680274,2062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15366,'2020-03-18T09:46:09.705Z',NULL,109,1,119.04991068193098,7.74,48.934006111716414,2062); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15367,'2019-05-27T23:21:26.921Z',NULL,178,3,117.32963250370614,3.4,61.00540514523617,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15368,'2019-07-02T01:30:03.884Z',NULL,189,3,93.27738254731509,2.71,56.54650170648742,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15369,'2018-05-11T04:29:16.597Z',NULL,182,4,84.48940370476112,2.45,64.064749054806,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15370,'2016-08-21T20:29:39.947Z',NULL,82,8,40.59697158687298,1.18,20.847685650792798,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15371,'2018-10-25T23:42:35.706Z',NULL,11,7,132.45679913492563,3.84,223.88895503348581,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15372,'2020-02-15T08:56:27.433Z',2.7269586505789625,52,2,103.67587240151535,3.01,97.10417727236506,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15373,'2018-08-13T17:36:17.667Z',NULL,90,8,123.1196127553999,3.57,69.72975435933523,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15374,'2016-06-29T19:48:02.617Z',NULL,62,7,89.0134841727878,2.58,37.37640902891785,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15375,'2017-03-07T11:18:33.362Z',NULL,41,1,42.33927237126308,1.23,26.406186815945865,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15376,'2019-08-08T03:38:21.635Z',NULL,61,6,23.537915510955656,0.68,15.459883271012453,2064); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15377,'2018-10-04T10:46:49.830Z',2.4310228837225174,49,3,131.42865839323724,7.56,138.39971904313293,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15378,'2018-06-29T17:32:27.828Z',6.931022883722517,147,4,66.64727121216615,3.83,59.587182000638755,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15379,'2017-07-25T15:28:03.509Z',NULL,183,4,37.7982748679465,2.17,19.506066317685033,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15380,'2020-02-04T03:30:55.575Z',NULL,162,1,33.56789820016516,1.93,51.787792644484306,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15381,'2018-12-26T02:33:13.950Z',NULL,12,2,116.01427581618326,6.67,47.55567449217588,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15382,'2017-07-23T06:27:02.576Z',NULL,159,6,23.686782969182406,1.36,37.663397820772786,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15383,'2018-11-16T14:04:47.805Z',NULL,188,3,33.87738254731509,1.95,11.095763844168527,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15384,'2018-03-05T15:55:04.379Z',NULL,11,1,132.45679913492563,7.62,125.42042920408164,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15385,'2019-02-11T15:17:31.071Z',NULL,200,1,73.20395711799151,4.21,34.918959498235516,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15386,'2019-09-21T13:34:10.932Z',NULL,200,4,73.20395711799151,4.21,64.40276370287155,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15387,'2017-12-25T12:44:16.406Z',NULL,76,2,42.54947374244324,2.45,65.10309011442772,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15388,'2018-02-02T12:50:31.911Z',NULL,134,1,42.49233549998661,2.44,56.047335713200916,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15389,'2018-08-03T03:37:22.991Z',NULL,25,4,68.62263967182464,3.95,116.95516374306064,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15390,'2019-08-22T02:58:31.074Z',NULL,135,4,45.80402317157342,2.63,50.57550140722355,2065); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15391,'2019-03-10T00:53:53.721Z',NULL,8,1,98.83823503993958,4.94,153.08641769150046,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15392,'2020-02-02T09:48:57.556Z',NULL,122,1,99.84528328808108,4.99,41.686104057291566,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15393,'2020-04-05T01:25:19.629Z',NULL,143,3,61.1983004605443,3.06,114.03518296527754,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15394,'2018-01-29T00:11:09.515Z',NULL,77,2,101.01691728415972,5.05,83.42364270936665,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15395,'2019-01-08T23:51:18.540Z',NULL,86,2,92.31436670850246,4.62,139.13001111942208,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15396,'2017-12-29T16:15:17.388Z',NULL,90,2,82.07974183693327,4.1,127.2105533640088,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15397,'2018-07-10T18:26:39.105Z',NULL,189,4,93.27738254731509,4.66,60.34146709498968,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15398,'2017-10-09T05:37:32.894Z',NULL,180,5,45.549391048892794,2.28,67.50311989563978,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15399,'2020-03-01T05:44:52.698Z',NULL,60,1,29.80214751859149,1.49,30.118534761235637,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15400,'2019-06-26T12:57:19.775Z',NULL,182,5,84.48940370476112,4.22,65.32527640668859,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15401,'2018-12-18T22:52:53.493Z',NULL,48,2,123.20884248534108,6.16,58.956848636343295,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15402,'2018-01-27T23:20:55.382Z',NULL,7,2,148.22900526552291,7.41,64.4919744796736,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15403,'2018-09-01T20:18:13.574Z',2.4310228837225174,172,4,122.3651993029456,6.12,74.16837981910476,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15404,'2018-11-14T21:26:29.024Z',NULL,173,2,122.3651993029456,6.12,140.1324196838602,2066); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15405,'2018-01-10T02:07:03.797Z',NULL,19,1,64.00675097561322,2.56,46.41347420153396,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15406,'2018-02-28T06:01:10.164Z',NULL,22,1,32.136779940663494,1.29,23.158274911491773,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15407,'2018-07-03T02:54:01.075Z',NULL,40,4,99.66240044231697,3.99,115.46232106496957,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15408,'2018-10-13T15:37:04.766Z',NULL,125,5,80.39699207990944,3.22,124.62708228518368,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15409,'2019-03-13T07:54:29.428Z',NULL,71,1,82.80381898788684,3.31,60.569748061441324,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15410,'2019-09-16T20:18:45.119Z',NULL,107,6,50.094887884945365,2,24.54256005054976,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15411,'2019-07-31T10:55:08.620Z',NULL,43,6,76.35255205175756,3.05,126.37819523199497,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15412,'2019-01-25T08:42:27.070Z',NULL,98,2,112.41825444654248,4.5,65.64115064355225,2067); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15413,'2018-05-25T13:11:15.293Z',NULL,153,4,66.79892314178237,4.59,117.21416401716665,2069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15414,'2017-11-27T21:18:48.539Z',NULL,112,3,27.55292434006023,1.89,11.518096186593727,2069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15415,'2018-10-30T12:21:27.568Z',NULL,161,5,47.59120561297272,3.27,63.694495307487806,2069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15416,'2019-06-09T01:00:01.971Z',NULL,92,6,124.89242686579996,8.59,225.45312253523485,2069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15417,'2017-08-01T12:10:57.645Z',NULL,165,6,25.536330427467956,1.76,50.60736171872462,2069); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15418,'2019-12-10T23:58:20.049Z',NULL,165,2,38.30449564120193,2.63,21.9339225166573,2070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15419,'2016-10-15T21:55:48.720Z',NULL,45,7,78.6996782532274,5.41,64.7488735039212,2070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15420,'2018-11-16T01:10:18.916Z',NULL,124,3,110.93145648834248,7.63,177.9504063312147,2070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15421,'2018-04-05T10:36:10.292Z',7.1060401406788305,186,3,98.9770008385166,6.8,128.97263513996398,2070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15422,'2017-01-28T20:48:38.175Z',NULL,163,1,22.378598800110105,1.54,17.335234285219165,2070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15423,'2019-10-20T03:09:52.351Z',NULL,177,5,128.8192981944599,8.86,182.062757751269,2070); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15424,'2017-11-22T15:37:55.793Z',NULL,115,3,51.94130981241432,3.12,52.88545139378671,2071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15425,'2018-01-24T10:18:09.866Z',NULL,184,2,116.09741230191975,6.97,55.929652019065514,2071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15426,'2018-05-29T19:52:24.814Z',NULL,27,4,127.52471180754115,7.65,190.07884362668227,2071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15427,'2017-09-14T13:21:55.786Z',NULL,118,6,38.418408731319154,2.31,11.138292451532454,2071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15428,'2019-02-04T11:16:03.723Z',NULL,62,2,133.5202262591817,8.01,123.96449750536345,2071); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15429,'2017-09-03T13:17:34.149Z',NULL,180,4,45.549391048892794,3.19,72.10032467316202,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15430,'2017-10-07T07:09:04.109Z',NULL,109,3,79.36660712128732,5.56,37.73811643268231,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15431,'2017-12-24T23:56:01.783Z',NULL,76,2,42.54947374244324,2.98,74.4327688099483,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15432,'2018-09-20T20:22:40.866Z',2.6060401406788305,157,6,139.8942352373801,9.79,148.09700011711195,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15433,'2018-06-30T15:51:31.154Z',2.6060401406788305,93,6,49.81864156655383,3.49,60.94236450250795,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15434,'2019-04-26T01:48:35.868Z',NULL,103,2,47.04215255778118,3.29,67.52486848457556,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15435,'2018-02-13T09:51:11.657Z',NULL,89,1,63.719612755399886,4.46,86.39210740581788,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15436,'2017-11-28T09:30:43.568Z',NULL,81,3,29.288656154807867,2.05,11.615432496133613,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15437,'2017-01-19T11:09:38.968Z',NULL,92,2,83.2616179105333,5.83,144.88203438761911,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15438,'2019-12-01T10:43:16.522Z',NULL,148,2,138.9817182254566,9.73,69.81131346515687,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15439,'2017-02-26T23:36:55.950Z',NULL,146,1,84.03151414144409,5.88,100.98649826463593,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15440,'2019-12-20T00:31:16.472Z',NULL,62,1,133.5202262591817,9.35,247.71875411609125,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15441,'2017-11-19T10:41:40.740Z',NULL,152,2,32.59712486600442,2.28,64.59906078037952,2072); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15442,'2019-11-11T05:17:42.284Z',NULL,80,3,54.91325681036414,3.08,25.50247876478555,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15443,'2018-10-23T20:25:41.604Z',NULL,172,5,122.3651993029456,6.85,238.7664602450987,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15444,'2018-09-06T10:53:48.099Z',2.7433426794065405,167,4,97.70449564120193,5.47,94.53243963368814,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15445,'2018-01-24T21:38:53.623Z',NULL,200,2,73.20395711799151,4.1,56.65865320032814,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15446,'2019-09-12T20:54:50.838Z',NULL,100,4,67.83486485383094,3.8,84.16329860840048,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15447,'2019-06-26T14:35:08.175Z',NULL,145,4,61.1983004605443,3.43,121.78106296345506,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15448,'2018-12-16T10:28:24.216Z',NULL,29,2,123.57448218067185,6.92,54.71206908115072,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15449,'2019-11-19T02:12:26.006Z',NULL,101,3,139.82488066180403,7.83,216.52477048305389,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15450,'2017-12-03T07:49:58.704Z',NULL,136,1,70.13601544771562,3.93,114.81343224908545,2073); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15451,'2018-03-05T20:10:18.170Z',NULL,102,1,47.04215255778118,0,55.763182210916526,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15452,'2017-08-13T19:09:50.267Z',NULL,185,6,26.384667225677738,0,12.080615371886383,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15453,'2017-08-21T19:58:24.385Z',NULL,172,6,81.57679953529707,0,91.64962955439803,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15454,'2019-09-01T04:49:59.277Z',NULL,16,6,66.11029954877317,0,109.24844807368228,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15455,'2017-03-21T11:39:40.263Z',NULL,46,1,78.6996782532274,0,146.22347735895872,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15456,'2018-11-28T15:48:23.370Z',NULL,41,3,63.50890855689462,0,112.32952496249894,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15457,'2018-01-20T04:05:17.338Z',NULL,22,2,32.136779940663494,0,39.99471732511168,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15458,'2018-02-02T13:16:29.155Z',7.24334267940654,200,1,73.20395711799151,0,105.13108410656031,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15459,'2018-05-04T08:42:32.670Z',NULL,82,3,60.89545738030947,0,110.63682167620902,2074); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15460,'2018-03-21T15:14:49.339Z',NULL,51,6,75.65058751905018,3.78,26.593744013977428,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15461,'2018-06-22T16:31:48.544Z',NULL,111,4,55.526746186906664,2.78,19.153820519532132,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15462,'2019-10-10T12:13:31.417Z',NULL,147,4,66.64727121216615,3.33,103.26604735459405,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15463,'2019-09-28T01:28:04.858Z',NULL,21,3,60.57501609456816,3.03,44.18809510949231,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15464,'2017-10-09T14:02:23.108Z',NULL,9,4,58.31312098526137,2.92,35.01368147768461,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15465,'2019-12-11T05:36:44.043Z',7.24334267940654,145,2,61.1983004605443,3.06,81.7511669944612,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15466,'2019-04-02T21:39:05.453Z',NULL,190,4,128.5841852057933,6.43,122.34146865845244,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15467,'2018-05-15T23:12:38.247Z',NULL,20,5,37.32649625046575,1.87,30.121356127918343,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15468,'2019-08-01T17:56:14.340Z',NULL,165,8,38.30449564120193,1.92,54.219631039783685,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15469,'2018-02-17T23:30:45.219Z',NULL,136,1,105.20402317157343,5.26,122.29206151181056,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15470,'2018-03-17T23:50:45.452Z',NULL,9,1,87.46968147789205,4.37,88.4521349148935,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15471,'2019-05-09T22:10:21.873Z',NULL,59,3,89.20214751859149,4.46,140.3324997859533,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15472,'2017-10-12T06:02:41.611Z',NULL,64,5,95.61478497145774,4.78,186.06650057682128,2075); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15473,'2017-12-08T06:09:48.106Z',NULL,124,2,73.95430432556165,4.62,148.1673193681993,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15474,'2017-01-18T20:39:13.649Z',NULL,51,2,50.433725012700116,3.15,25.841124761571972,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15475,'2018-02-23T10:58:12.202Z',NULL,47,1,84.0766209826718,5.25,160.35616908896867,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15476,'2018-09-05T14:29:58.634Z',NULL,35,6,71.53687730741436,4.47,47.10872003553593,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15477,'2019-05-14T06:35:15.460Z',NULL,45,4,118.0495173798411,7.38,33.487567268588066,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15478,'2019-04-22T14:06:47.064Z',NULL,140,3,66.80312547576881,4.18,91.06376017435323,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15479,'2017-03-30T16:37:23.503Z',NULL,25,1,45.7484264478831,2.86,66.55250961342934,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15480,'2017-10-12T23:31:24.428Z',NULL,147,7,44.4315141414441,2.78,48.09844856478842,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15481,'2017-08-29T07:42:59.392Z',NULL,196,9,46.76407124473339,2.92,32.34665977486162,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15482,'2018-07-03T03:55:24.175Z',8.728188680607904,171,7,105.07665741496471,6.57,140.93072403232682,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15483,'2018-02-07T11:07:31.862Z',NULL,6,2,97.43621265344382,6.09,72.08357051063538,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15484,'2019-10-28T15:33:25.831Z',NULL,7,8,148.22900526552291,9.26,127.76437575811502,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15485,'2020-04-06T17:15:24.001Z',NULL,51,4,75.65058751905018,4.73,116.8674496966878,2077); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15486,'2020-02-10T02:49:36.353Z',NULL,26,2,68.12471180754113,4.09,87.01056761537673,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15487,'2017-04-09T00:56:49.959Z',NULL,39,3,76.38772120188973,4.58,30.841073964170004,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15488,'2019-01-15T10:37:03.876Z',NULL,45,3,118.0495173798411,7.08,205.72739436753102,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15489,'2017-02-10T12:23:54.944Z',NULL,120,2,55.668009001928525,3.34,37.08649334975936,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15490,'2019-06-23T00:30:23.848Z',NULL,38,9,66.06937283839378,3.96,98.20320958882938,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15491,'2019-05-13T01:05:39.954Z',NULL,71,6,82.80381898788684,4.97,137.8582736821942,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15492,'2019-03-30T01:01:45.699Z',NULL,34,1,74.30391386913199,4.46,61.44923682876705,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15493,'2018-08-10T00:48:27.533Z',NULL,172,8,122.3651993029456,7.34,244.78040424163143,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15494,'2018-05-23T13:44:12.769Z',NULL,77,5,101.01691728415972,6.06,98.66664382958973,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15495,'2017-01-26T09:25:07.892Z',NULL,134,2,28.328223666657742,1.7,40.329186397114526,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15496,'2020-03-19T01:02:51.134Z',NULL,99,1,67.83486485383094,4.07,46.02179408243531,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15497,'2017-03-15T07:34:25.919Z',NULL,13,1,75.0861692740371,4.51,121.18172810786692,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15498,'2018-03-16T22:39:40.467Z',NULL,86,1,92.31436670850246,5.54,48.75096188862021,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15499,'2017-12-11T06:07:57.383Z',NULL,119,2,28.95876219768256,1.74,7.962149057950714,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15500,'2018-09-24T18:56:31.280Z',NULL,132,5,127.88197029833711,7.67,202.5989687722419,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15501,'2017-08-06T11:39:40.472Z',NULL,147,8,44.4315141414441,2.67,33.92165377118405,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15502,'2017-12-11T18:22:27.853Z',NULL,75,2,83.87517582301558,5.03,60.28587648484327,2078); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15503,'2018-03-22T23:46:34.311Z',NULL,41,1,63.50890855689462,3.49,73.57592306855366,2079); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15504,'2017-11-01T09:10:14.532Z',8.728188680607904,20,4,24.884330833643833,1.37,31.807245463821364,2079); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15505,'2017-02-13T00:14:04.638Z',NULL,7,2,98.81933684368194,6.18,190.3277945605426,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15506,'2017-06-05T02:31:53.269Z',NULL,96,9,69.88096572393577,4.37,108.90157674135075,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15507,'2018-05-08T11:43:31.374Z',NULL,112,6,41.329386510090345,2.58,13.924413447151382,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15508,'2018-04-11T07:39:10.107Z',NULL,144,4,61.1983004605443,3.82,25.870060224331326,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15509,'2017-08-27T12:58:18.197Z',NULL,111,9,37.01783079127111,2.31,49.64774452315286,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15510,'2018-05-16T07:30:30.844Z',NULL,187,5,98.9770008385166,6.19,53.122072194294134,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15511,'2019-10-11T08:10:19.966Z',4.228188680607904,40,6,99.66240044231697,6.23,103.1415810783641,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15512,'2018-05-06T02:32:36.059Z',NULL,195,6,109.78077396807234,6.86,69.63142410092566,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15513,'2017-12-31T19:14:48.905Z',NULL,43,2,50.90170136783837,3.18,43.35269129355724,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15514,'2020-03-31T17:03:24.635Z',NULL,118,1,57.627613096978735,3.6,94.94401704830416,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15515,'2019-12-05T06:55:04.086Z',NULL,187,2,98.9770008385166,6.19,192.90504704416043,2082); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15516,'2019-04-15T06:19:43.612Z',NULL,114,2,77.91196471862148,3.7,53.421415901575536,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15517,'2017-06-05T01:10:15.372Z',NULL,55,4,63.84752383956291,3.03,73.76614341565076,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15518,'2019-04-24T15:51:23.613Z',NULL,20,2,37.32649625046575,1.77,45.52129688181673,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15519,'2017-09-08T00:10:57.737Z',NULL,149,3,46.10276691718616,2.19,80.77949814356633,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15520,'2018-10-31T11:49:47.548Z',NULL,131,5,113.11722203337729,5.37,81.67120085356892,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15521,'2018-07-10T08:50:37.875Z',NULL,136,6,105.20402317157343,5,161.28193566504729,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15522,'2018-04-26T00:52:53.027Z',2.2298010417585834,26,3,68.12471180754113,3.24,61.10865969014417,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15523,'2019-04-04T23:22:24.000Z',NULL,89,2,63.719612755399886,3.03,82.43092761506767,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15524,'2018-06-18T07:46:19.570Z',NULL,15,4,37.648145389078365,1.79,39.39814098233711,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15525,'2019-02-14T01:36:22.047Z',NULL,6,1,97.43621265344382,4.63,99.44745467136403,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15526,'2019-05-07T12:18:28.535Z',6.729801041758583,29,5,123.57448218067185,5.87,242.48279566243463,2083); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15527,'2018-09-19T03:52:58.724Z',NULL,47,4,84.0766209826718,4.62,99.04879361282138,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15528,'2020-03-16T22:50:03.461Z',NULL,10,1,47.6793282102869,2.62,43.50039349745766,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15529,'2018-07-18T10:37:09.487Z',NULL,77,4,101.01691728415972,5.56,53.081883382904614,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15530,'2019-07-03T14:09:11.855Z',NULL,58,3,78.14578007078882,4.3,88.2998637498906,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15531,'2018-09-27T02:59:33.911Z',2.2298010417585834,153,3,66.79892314178237,3.67,71.15475524684936,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15532,'2016-09-13T14:47:02.400Z',NULL,194,4,33.587182645381546,1.85,60.98046509574243,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15533,'2016-12-06T21:37:06.142Z',NULL,133,2,45.654646865558064,2.51,39.18564240383104,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15534,'2019-03-29T17:35:12.341Z',NULL,138,1,113.95078476718615,6.27,84.31551582478039,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15535,'2019-12-21T01:27:08.248Z',NULL,155,2,43.77574310182776,2.41,46.814660189327675,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15536,'2020-03-16T11:39:27.982Z',NULL,48,1,123.20884248534108,6.78,64.63896961039234,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15537,'2019-10-10T07:11:19.421Z',NULL,188,6,33.87738254731509,1.86,13.725055780756152,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15538,'2019-11-08T00:13:33.093Z',NULL,7,3,148.22900526552291,8.15,69.1771500466511,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15539,'2020-02-23T11:18:07.291Z',NULL,196,1,70.14610686710009,3.86,43.85486614669332,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15540,'2018-07-18T13:34:30.775Z',NULL,191,4,128.5841852057933,7.07,215.64474651116345,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15541,'2020-01-04T14:32:05.851Z',NULL,115,2,77.91196471862148,4.29,120.42336501985208,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15542,'2020-03-29T00:57:20.278Z',NULL,89,1,63.719612755399886,3.5,44.16979307151159,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15543,'2018-10-19T21:22:19.288Z',NULL,185,5,39.57700083851661,2.18,76.33251522041047,2084); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15544,'2019-03-21T10:35:17.578Z',NULL,43,1,76.35255205175756,3.82,84.0064683296254,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15545,'2019-01-05T20:49:59.443Z',NULL,145,2,61.1983004605443,3.06,57.69582231270847,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15546,'2019-04-24T07:00:43.719Z',NULL,111,3,55.526746186906664,2.78,86.2262148081307,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15547,'2017-12-27T17:56:28.814Z',NULL,146,2,84.03151414144409,4.2,106.5556243536121,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15548,'2020-01-21T22:45:21.033Z',NULL,160,2,47.59120561297272,2.38,30.45342610443514,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15549,'2017-09-09T08:54:32.788Z',NULL,85,3,36.6006982295235,1.83,43.05294774863078,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15550,'2019-11-16T14:11:27.907Z',NULL,75,2,125.81276373452337,6.29,225.20496944190438,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15551,'2018-11-22T20:56:57.595Z',NULL,108,3,50.094887884945365,2.5,52.26632087234446,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15552,'2020-03-22T02:46:46.912Z',NULL,104,1,106.44215255778118,5.32,146.73095563027854,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15553,'2018-12-09T13:13:47.778Z',NULL,82,2,60.89545738030947,3.04,48.274232937909076,2086); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15554,'2019-08-18T15:26:15.124Z',NULL,123,6,110.93145648834248,6.93,222.7983122333542,2087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15555,'2018-04-01T20:49:45.308Z',8.732678017751137,88,3,105.41292031622555,6.59,188.65770175029647,2087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15556,'2019-12-13T04:06:41.490Z',NULL,8,2,98.83823503993958,6.18,79.04534305843313,2087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15557,'2017-05-16T17:43:14.820Z',NULL,16,5,44.07353303251545,2.75,39.35031460704009,2087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15558,'2018-10-10T14:43:26.431Z',NULL,58,8,78.14578007078882,4.88,61.88261339067522,2087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15559,'2018-05-26T14:29:28.850Z',4.2326780177511365,189,6,93.27738254731509,5.83,136.95305954675814,2087); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15560,'2019-08-25T06:09:06.927Z',NULL,18,9,81.90307121097293,4.91,118.18219306909839,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15561,'2020-02-15T16:23:12.178Z',NULL,68,2,115.24343882309758,6.91,92.85246480810443,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15562,'2020-02-22T05:08:24.324Z',NULL,166,2,38.30449564120193,2.3,38.99970107064549,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15563,'2019-12-15T21:18:39.655Z',NULL,177,2,128.8192981944599,7.73,97.73374266004356,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15564,'2018-11-06T23:12:07.794Z',NULL,167,3,97.70449564120193,5.86,54.566930148952274,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15565,'2018-06-22T05:57:51.688Z',NULL,101,7,139.82488066180403,8.39,117.08155241880962,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15566,'2018-12-02T02:56:10.841Z',NULL,65,2,68.22769726470014,4.09,38.36937887337709,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15567,'2018-07-29T03:48:32.456Z',4.2326780177511365,75,7,125.81276373452337,7.55,130.01024685737733,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15568,'2019-07-09T09:55:31.612Z',NULL,154,7,81.87529553312261,4.91,112.8518693188768,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15569,'2019-07-21T13:14:12.580Z',NULL,147,7,66.64727121216615,4,133.53141517684045,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15570,'2018-01-27T14:22:39.950Z',NULL,147,2,66.64727121216615,4,68.95983364389004,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15571,'2019-11-17T17:45:18.839Z',8.732678017751137,86,2,92.31436670850246,5.54,156.16685478214603,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15572,'2018-11-20T05:08:46.613Z',NULL,104,3,106.44215255778118,6.39,135.55385807434658,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15573,'2020-03-29T00:53:38.958Z',NULL,143,1,61.1983004605443,3.67,45.28673547449448,2088); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15574,'2017-05-23T10:50:09.436Z',NULL,106,6,35.149014295079674,1.49,24.68045188042249,2091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15575,'2018-05-08T17:43:42.980Z',NULL,39,6,114.58158180283459,4.84,168.01719913890537,2091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15576,'2017-10-08T18:15:54.407Z',NULL,46,8,78.6996782532274,3.33,105.96071056746071,2091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15577,'2019-12-08T15:40:08.239Z',NULL,149,2,69.15415037577924,2.92,30.783390364392393,2091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15578,'2019-12-02T04:19:32.272Z',NULL,36,2,130.93687730741433,5.53,37.923732641112345,2091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15579,'2019-07-09T23:21:22.628Z',NULL,188,7,33.87738254731509,1.43,32.640900968805006,2091); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15580,'2016-08-29T00:21:25.973Z',NULL,33,8,31.829909130640935,1.27,49.37645731116444,2093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15581,'2017-12-20T14:18:44.062Z',NULL,6,2,64.95747510229587,2.6,17.535258976787794,2093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15582,'2019-10-04T12:44:48.087Z',NULL,164,6,92.96789820016517,3.72,67.84382077655404,2093); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15583,'2019-01-26T17:42:08.892Z',NULL,42,3,38.00410713690931,2.47,20.54169400198802,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15584,'2019-04-15T22:20:27.581Z',NULL,22,4,32.136779940663494,2.09,47.101310659066506,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15585,'2018-10-11T20:39:06.709Z',4.2326780177511365,134,6,42.49233549998661,2.76,43.248372247017905,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15586,'2017-02-11T18:25:32.399Z',NULL,54,1,41.395738936015974,2.69,65.28006600454276,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15587,'2019-07-08T00:51:58.489Z',NULL,31,5,105.65346467128523,6.87,141.84077422106927,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15588,'2019-04-06T05:36:35.967Z',NULL,47,4,84.0766209826718,5.46,91.55526751444764,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15589,'2017-05-10T07:01:31.447Z',NULL,196,5,46.76407124473339,3.04,28.4745910672223,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15590,'2018-09-26T23:53:44.194Z',NULL,169,5,59.53172693453274,3.87,48.33759330641665,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15591,'2019-09-24T19:57:29.967Z',NULL,142,7,70.34853057210945,4.57,55.42567655474717,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15592,'2018-07-21T00:11:06.026Z',NULL,19,6,64.00675097561322,4.16,118.22908477390293,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15593,'2020-02-16T14:55:52.392Z',NULL,104,2,106.44215255778118,6.92,44.09414968225221,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15594,'2019-04-19T06:09:07.577Z',NULL,59,2,89.20214751859149,5.8,70.59183497464002,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15595,'2019-04-16T19:24:55.640Z',NULL,196,1,70.14610686710009,4.56,137.59850115424297,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15596,'2018-12-13T18:20:42.260Z',NULL,40,1,99.66240044231697,6.48,191.02718089756556,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15597,'2019-05-01T02:15:33.239Z',5.023101007677196,28,3,68.12471180754113,4.43,107.06208544646451,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15598,'2018-04-22T13:27:21.082Z',5.023101007677196,160,2,47.59120561297272,3.09,46.49250019486604,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15599,'2018-06-22T11:42:05.305Z',NULL,164,4,92.96789820016517,6.04,110.78212771508038,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15600,'2019-02-08T17:22:07.268Z',NULL,131,1,113.11722203337729,7.35,133.372704308636,2094); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15601,'2018-02-01T18:07:31.571Z',NULL,139,1,76.77768319177018,3.84,95.6120323946018,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15602,'2018-11-17T15:32:04.889Z',NULL,122,2,99.84528328808108,4.99,78.28529620137009,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15603,'2019-11-06T18:37:41.126Z',5.023101007677196,77,2,101.01691728415972,5.05,164.4673201257361,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15604,'2017-02-24T13:57:24.873Z',NULL,112,1,27.55292434006023,1.38,18.007275491411583,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15605,'2018-07-18T20:38:24.287Z',NULL,49,2,131.42865839323724,6.57,235.28807318198574,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15606,'2018-03-07T07:52:42.723Z',NULL,17,1,79.93608046792765,4,31.542588097091624,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15607,'2018-02-08T06:04:26.914Z',NULL,123,1,110.93145648834248,5.55,43.471331592454675,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15608,'2019-07-15T01:11:21.392Z',5.023101007677196,82,2,60.89545738030947,3.04,94.88657986129496,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15609,'2020-03-08T13:29:25.796Z',NULL,113,1,110.47725376186015,5.52,126.90453119871248,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15610,'2020-02-02T16:35:00.114Z',NULL,94,2,109.21864156655383,5.46,89.69054403332896,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15611,'2018-01-27T21:28:53.719Z',NULL,134,2,42.49233549998661,2.12,26.89268356203348,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15612,'2020-02-14T20:58:39.324Z',NULL,193,2,50.38077396807232,2.52,37.073145897783895,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15613,'2017-12-26T01:12:26.729Z',NULL,138,2,75.96718984479077,3.8,69.65977131569996,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15614,'2019-08-29T14:20:48.848Z',NULL,20,4,37.32649625046575,1.87,69.47612869719494,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15615,'2018-02-04T08:01:26.417Z',NULL,198,1,70.14610686710009,3.51,99.84890756598216,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15616,'2019-05-19T10:55:56.544Z',NULL,190,2,128.5841852057933,6.43,133.4664823977446,2095); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15617,'2018-09-20T12:55:09.784Z',NULL,157,2,139.8942352373801,9.09,274.3938928773677,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15618,'2019-06-18T12:44:55.727Z',NULL,169,2,59.53172693453274,3.87,50.84316914956338,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15619,'2018-06-08T18:08:10.052Z',NULL,171,4,105.07665741496471,6.83,125.2979729204872,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15620,'2020-01-22T03:54:16.516Z',NULL,70,1,57.493003808959784,3.74,82.30046185610306,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15621,'2019-12-09T12:59:21.649Z',5.023101007677196,84,1,81.87627832636537,5.32,93.5363340770789,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15622,'2018-01-10T15:07:37.834Z',NULL,89,1,63.719612755399886,4.14,71.28685481937856,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15623,'2018-07-04T02:28:00.495Z',NULL,68,2,115.24343882309758,7.49,52.27871308640753,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15624,'2018-08-04T08:00:04.994Z',NULL,72,3,142.20381898788685,9.24,80.02808743405812,2096); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15625,'2017-10-10T20:10:34.816Z',5.023101007677196,27,2,85.01647453836077,3.4,133.96283793551137,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15626,'2016-11-11T06:41:27.381Z',NULL,3,1,35.388744881539054,1.42,70.19460752792531,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15627,'2018-06-10T07:06:44.914Z',NULL,13,4,112.62925391105566,4.51,57.63220135984092,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15628,'2019-01-18T12:33:27.177Z',NULL,111,1,55.526746186906664,2.22,84.51788899132943,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15629,'2018-12-17T04:44:10.325Z',NULL,64,1,143.4221774571866,5.74,189.5744149312798,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15630,'2019-12-12T22:39:50.195Z',NULL,182,1,84.48940370476112,3.38,43.68768577786136,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15631,'2019-09-27T17:19:16.660Z',5.023101007677196,48,32,123.20884248534108,4.93,110.56729029169128,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15632,'2016-12-26T01:31:26.870Z',NULL,193,1,33.587182645381546,1.34,11.043814860548595,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15633,'2019-04-03T11:45:38.366Z',NULL,57,2,122.4223933583994,4.9,78.05369309193266,2097); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15634,'2018-06-17T15:44:20.072Z',6.923851181962485,181,5,143.88940370476112,6.48,160.7825316498684,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15635,'2017-08-14T09:27:36.937Z',NULL,110,4,37.01783079127111,1.67,71.29266605327403,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15636,'2019-05-12T05:04:23.922Z',NULL,42,3,38.00410713690931,1.71,60.79845451674483,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15637,'2016-12-22T20:52:54.195Z',NULL,146,2,84.03151414144409,3.78,124.28686050557893,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15638,'2020-02-03T16:50:24.395Z',NULL,142,2,70.34853057210945,3.17,100.53940823278735,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15639,'2020-03-26T13:56:17.234Z',NULL,100,1,67.83486485383094,3.05,112.1076112484395,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15640,'2017-12-09T17:05:04.554Z',NULL,66,2,90.77417514071306,4.08,97.10298922318574,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15641,'2018-12-03T01:11:40.055Z',NULL,7,2,148.22900526552291,6.67,97.83483997348131,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15642,'2017-09-21T16:01:23.930Z',NULL,6,4,64.95747510229587,2.92,112.07559961096709,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15643,'2020-01-10T19:28:07.416Z',NULL,75,1,125.81276373452337,5.66,180.45894511843662,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15644,'2018-01-24T05:40:38.174Z',NULL,47,1,84.0766209826718,3.78,57.50272239531785,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15645,'2017-06-29T22:09:27.462Z',6.923851181962485,133,5,45.654646865558064,2.05,13.66006209308559,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15646,'2018-01-27T17:58:20.710Z',NULL,57,2,122.4223933583994,5.51,147.17732234938225,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15647,'2018-06-23T13:38:55.106Z',NULL,87,7,117.25536340498041,5.28,129.32666093399544,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15648,'2018-05-19T05:18:22.466Z',NULL,146,4,126.04727121216614,5.67,192.82251866609894,2098); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15649,'2019-06-14T21:22:45.571Z',NULL,123,5,110.93145648834248,5.55,122.02886881643437,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15650,'2019-05-28T14:58:16.673Z',NULL,172,5,122.3651993029456,6.12,221.77155160375554,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15651,'2017-05-26T07:27:23.183Z',NULL,96,5,69.88096572393577,3.49,77.2778221447798,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15652,'2018-09-05T20:37:34.859Z',NULL,81,6,43.9329842322118,2.2,39.79099551154767,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15653,'2016-12-10T21:41:13.275Z',NULL,43,2,50.90170136783837,2.55,81.62501974060883,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15654,'2018-07-14T20:00:27.070Z',NULL,85,30,54.90104734428525,2.75,59.33025839256113,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15655,'2019-12-03T08:49:04.311Z',NULL,139,2,76.77768319177018,3.84,148.99947512404876,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15656,'2020-04-14T15:49:54.083Z',NULL,97,3,112.41825444654248,5.62,208.18254459356027,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15657,'2019-10-23T10:58:21.324Z',NULL,103,3,47.04215255778118,2.35,50.046213035956164,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15658,'2017-06-06T18:40:48.544Z',6.923851181962485,154,4,54.58353035541507,2.73,52.54908524178008,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15659,'2019-07-25T12:22:50.659Z',NULL,23,3,116.86672609493307,5.84,73.61954751912924,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15660,'2017-02-01T06:24:43.113Z',NULL,163,1,22.378598800110105,1.12,25.714638255768204,2099); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15661,'2017-08-12T15:21:09.588Z',NULL,80,4,36.60883787357609,2.29,39.60685646927207,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15662,'2019-09-09T03:07:18.957Z',2.4238511819624846,180,3,68.32408657333919,4.27,83.00937372055456,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15663,'2019-12-18T09:46:49.401Z',NULL,64,1,143.4221774571866,8.96,231.63109092801238,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15664,'2019-10-01T23:16:22.305Z',NULL,38,3,66.06937283839378,4.13,98.91693529118517,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15665,'2019-10-14T05:46:55.209Z',NULL,73,5,71.6287722595695,4.48,62.9882429350993,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15666,'2018-10-04T09:23:29.804Z',NULL,169,6,59.53172693453274,3.72,16.04303642332575,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15667,'2018-09-10T02:48:06.110Z',NULL,82,57,60.89545738030947,3.81,89.25429849552717,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15668,'2019-07-11T20:32:58.604Z',2.4238511819624846,14,4,37.648145389078365,2.35,19.85009925382625,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15669,'2018-12-18T13:29:10.383Z',6.923851181962485,27,2,127.52471180754115,7.97,121.51437211172785,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15670,'2019-09-01T01:01:26.248Z',NULL,170,4,105.07665741496471,6.57,187.4074812169257,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15671,'2019-02-23T20:11:37.871Z',6.923851181962485,97,1,112.41825444654248,7.03,135.76302987252438,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15672,'2019-07-01T21:37:55.284Z',NULL,78,3,41.616917284159726,2.6,13.072769455527313,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15673,'2018-09-09T15:51:42.929Z',NULL,158,3,139.8942352373801,8.74,47.50364844811963,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15674,'2019-04-07T11:17:06.144Z',NULL,122,3,99.84528328808108,6.24,170.85133139274882,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15675,'2019-10-15T21:16:26.088Z',NULL,192,6,69.18418520579327,4.32,23.39698505743147,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15676,'2018-06-16T00:18:16.648Z',NULL,42,5,38.00410713690931,2.38,41.81087058079831,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15677,'2019-07-31T02:25:16.178Z',NULL,98,4,112.41825444654248,7.03,103.29698021167493,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15678,'2019-06-17T09:28:48.630Z',NULL,145,6,61.1983004605443,3.82,101.1183895599697,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15679,'2020-01-22T01:41:37.261Z',NULL,102,2,47.04215255778118,2.94,65.60577308060151,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15680,'2019-08-23T14:59:52.369Z',NULL,184,7,116.09741230191975,7.26,165.11499512202622,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15681,'2017-11-08T04:26:00.372Z',1.4249385658571294,176,3,38.616539622351056,2.41,70.2245452496961,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15682,'2018-03-17T23:20:46.839Z',NULL,24,1,112.30643674729413,7.02,42.21517064211288,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15683,'2017-01-17T18:02:52.911Z',NULL,133,1,45.654646865558064,2.85,33.480143793067626,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15684,'2019-05-08T20:00:43.469Z',NULL,46,3,118.0495173798411,7.38,187.12415587629923,2100); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15685,'2019-02-17T20:51:49.802Z',NULL,100,1,67.83486485383094,3.73,89.45351943203175,2101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15686,'2017-11-16T20:48:50.697Z',NULL,124,1,73.95430432556165,4.07,20.215395388549,2101); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15687,'2018-01-10T11:39:47.519Z',NULL,8,1,98.83823503993958,4.69,120.97688494457978,2102); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15688,'2017-10-08T07:14:45.863Z',NULL,68,3,76.82895921539838,3.65,153.10120533951994,2102); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15689,'2020-02-14T14:11:57.021Z',NULL,99,1,67.83486485383094,3.22,111.497009831139,2102); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15690,'2018-06-18T09:01:53.383Z',NULL,145,3,61.1983004605443,3.98,22.755313263190285,2103); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15691,'2018-04-20T12:04:29.185Z',NULL,81,1,43.9329842322118,2.86,12.961173487213811,2103); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15692,'2019-04-04T08:54:23.536Z',NULL,66,1,136.16126271106958,8.85,54.06448155158399,2104); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15693,'2017-08-05T21:43:25.038Z',NULL,194,3,33.587182645381546,1.6,34.59273663341501,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15694,'2017-04-28T07:20:39.192Z',NULL,45,2,78.6996782532274,3.74,34.74181602157889,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15695,'2018-05-08T21:20:02.829Z',NULL,136,3,105.20402317157343,5,110.33235653219306,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15696,'2018-11-17T13:34:22.663Z',NULL,32,1,107.1448636959614,5.09,206.0294982927533,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15697,'2020-04-13T12:52:36.999Z',NULL,1,2,44.19489169601981,2.1,13.961702889395978,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15698,'2020-03-25T17:31:07.723Z',NULL,86,1,92.31436670850246,4.38,66.52094330130627,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15699,'2017-08-15T15:22:42.661Z',NULL,175,5,78.21653962235106,3.72,109.53139088213213,2105); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15700,'2018-01-10T11:24:59.332Z',NULL,64,2,143.4221774571866,8.61,101.87253684404216,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15701,'2016-06-18T14:56:41.294Z',NULL,38,6,44.04624855892918,2.64,36.54585033104797,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15702,'2017-10-19T10:50:50.889Z',NULL,101,4,93.21658710786936,5.59,79.38369049071805,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15703,'2016-11-23T07:57:49.377Z',NULL,146,1,84.03151414144409,5.04,135.48702001778645,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15704,'2017-03-29T01:15:47.512Z',NULL,168,0,79.28781795635516,4.76,99.1814237516543,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15705,'2017-06-22T10:53:59.033Z',NULL,199,3,76.95334253952366,4.62,105.63177873804034,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15706,'2018-08-05T15:10:50.451Z',NULL,56,5,36.37128575934436,2.18,31.39113977396316,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15707,'2020-03-12T21:11:18.936Z',NULL,199,1,115.4300138092855,6.93,41.821496077623785,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15708,'2017-10-07T09:07:35.036Z',NULL,5,4,82.7450976850356,4.96,123.3547615181241,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15709,'2018-01-19T18:00:54.040Z',NULL,2,1,105.11984419607644,6.31,59.23639982420955,2107); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15710,'2020-04-10T11:14:19.874Z',NULL,3,2,53.08311732230858,2.92,85.83604814440432,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15711,'2019-03-17T06:48:58.524Z',NULL,150,1,128.55415037577922,7.07,172.85751965836988,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15712,'2019-12-16T03:40:21.493Z',NULL,81,1,43.9329842322118,2.42,52.535952079864444,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15713,'2018-05-14T22:47:16.544Z',NULL,109,3,119.04991068193098,6.55,67.08337537084884,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15714,'2017-09-17T17:47:04.677Z',NULL,134,4,28.328223666657742,1.56,29.477593747826983,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15715,'2018-07-31T04:04:31.579Z',NULL,78,4,41.616917284159726,2.29,49.750009025293274,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15716,'2020-02-12T23:07:20.727Z',NULL,83,1,81.87627832636537,4.5,127.71663133098507,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15717,'2018-06-28T15:06:12.589Z',NULL,12,6,116.01427581618326,6.38,37.4671759099997,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15718,'2018-09-13T14:19:09.636Z',NULL,24,5,112.30643674729413,6.18,45.39083824439625,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15719,'2016-08-02T00:21:56.480Z',4.02024686070681,125,5,53.59799471993963,2.95,56.194780119894126,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15720,'2018-12-28T10:38:55.220Z',NULL,58,2,78.14578007078882,4.3,44.0777918764793,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15721,'2019-06-23T15:37:29.537Z',NULL,96,8,104.82144858590365,5.77,167.60966289903374,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15722,'2018-03-20T09:45:31.421Z',NULL,74,1,51.12804227386549,2.81,25.44017160128155,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15723,'2019-09-14T07:24:55.188Z',NULL,148,4,138.9817182254566,7.64,275.03702968706807,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15724,'2018-04-06T06:14:24.941Z',NULL,36,2,130.93687730741433,7.2,220.81813706236946,2108); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15725,'2019-12-27T23:57:22.939Z',NULL,144,2,61.1983004605443,0,96.12440809220493,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15726,'2018-10-08T06:20:32.273Z',NULL,60,7,29.80214751859149,0,33.75881267454568,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15727,'2019-03-10T14:06:26.216Z',NULL,35,1,71.53687730741436,0,43.28110861336641,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15728,'2020-02-06T05:41:34.538Z',NULL,22,1,32.136779940663494,0,20.723645553467833,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15729,'2016-08-19T12:21:04.954Z',NULL,192,5,46.122790137195516,0,12.290204386551645,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15730,'2020-04-16T06:32:57.522Z',NULL,123,2,110.93145648834248,0,148.17264781006511,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15731,'2019-12-18T00:11:21.661Z',NULL,100,2,67.83486485383094,0,22.034360278895463,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15732,'2018-07-24T22:56:17.702Z',NULL,151,4,91.61302306843446,0,51.39900528683766,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15733,'2019-07-03T02:20:01.017Z',NULL,21,5,60.57501609456816,0,25.329826699932134,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15734,'2020-02-05T19:12:23.721Z',NULL,170,2,105.07665741496471,0,196.19364311654968,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15735,'2017-08-21T03:22:40.235Z',NULL,166,9,25.536330427467956,0,46.51119638714404,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15736,'2017-05-20T02:53:41.983Z',NULL,42,5,25.336071424606207,0,32.33672915645253,2110); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15737,'2016-11-25T00:35:10.211Z',NULL,5,2,82.7450976850356,4.96,108.38657248878236,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15738,'2018-06-17T23:17:28.835Z',NULL,174,5,111.61430894181083,6.7,114.32103607957279,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15739,'2018-01-29T16:24:12.501Z',NULL,146,2,126.04727121216614,7.56,57.6816841902093,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15740,'2017-03-28T05:20:47.687Z',NULL,18,1,54.60204747398195,3.28,53.47690106256309,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15741,'2019-01-21T04:06:23.051Z',NULL,117,2,55.024851254077866,3.3,21.33984001353208,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15742,'2017-04-07T06:23:01.938Z',NULL,18,2,54.60204747398195,3.28,107.88737878655667,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15743,'2020-03-03T07:28:22.416Z',NULL,186,1,98.9770008385166,5.94,124.87937640764419,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15744,'2017-08-18T21:20:31.328Z',NULL,6,9,64.95747510229587,3.9,129.56453495313446,2111); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15745,'2020-02-16T13:50:06.480Z',NULL,39,2,114.58158180283459,4.58,153.07239665312727,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15746,'2018-05-09T23:42:21.057Z',8.520246860706811,76,5,63.82421061366486,2.55,31.461353626815363,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15747,'2020-03-02T12:40:50.433Z',4.02024686070681,21,1,60.57501609456816,2.42,20.070041255070716,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15748,'2020-03-05T19:14:57.454Z',NULL,137,1,67.77247956807186,2.71,74.58426473784257,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15749,'2019-02-05T15:30:41.469Z',NULL,144,1,61.1983004605443,2.45,35.353504612903414,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15750,'2019-08-16T10:37:04.819Z',NULL,32,5,107.1448636959614,4.29,88.44051227260881,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15751,'2019-12-06T11:31:48.868Z',NULL,105,2,52.723521442619514,2.11,43.94793672649603,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15752,'2017-10-05T08:33:12.670Z',NULL,13,6,75.0861692740371,3,120.29061246370192,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15753,'2019-01-05T23:26:17.503Z',4.02024686070681,168,2,118.93172693453273,4.76,217.14923410368257,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15754,'2019-02-23T06:08:52.573Z',NULL,61,1,23.537915510955656,0.94,29.76508350690456,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15755,'2019-07-09T16:32:42.887Z',NULL,65,53,68.22769726470014,2.73,54.24628484853907,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15756,'2019-11-12T02:45:10.263Z',NULL,63,4,133.5202262591817,5.34,172.27333688825573,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15757,'2019-03-09T01:17:54.518Z',NULL,158,1,139.8942352373801,5.6,161.59850149129096,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15758,'2018-12-29T08:38:40.244Z',NULL,98,2,112.41825444654248,4.5,144.89363523173617,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15759,'2020-01-21T14:26:26.553Z',NULL,197,2,70.14610686710009,2.81,40.35982707211434,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15760,'2018-06-11T04:30:24.557Z',NULL,117,7,55.024851254077866,2.2,32.975775770834396,2112); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15761,'2017-03-02T00:46:39.057Z',NULL,84,1,54.58418555091025,3.82,101.46580139404989,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15762,'2018-05-10T20:04:06.440Z',NULL,50,4,53.64019616819762,3.75,36.90347143127056,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15763,'2018-01-27T08:21:54.682Z',NULL,89,2,63.719612755399886,4.46,114.18171199382695,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15764,'2018-06-27T14:37:11.085Z',NULL,79,4,41.616917284159726,2.91,70.25197021226464,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15765,'2019-09-24T09:17:57.640Z',NULL,110,4,55.526746186906664,3.89,46.077799415169665,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15766,'2018-08-11T21:41:16.931Z',NULL,13,6,112.62925391105566,7.88,95.43240260460425,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15767,'2017-03-25T05:56:50.276Z',2.5500481875970484,43,1,50.90170136783837,3.56,92.53606931179283,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15768,'2017-08-01T06:32:06.190Z',7.050048187597048,180,6,45.549391048892794,3.19,93.7812859642698,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15769,'2018-07-03T19:56:01.770Z',NULL,28,4,68.12471180754113,4.77,110.20824057804727,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15770,'2019-04-27T11:59:51.416Z',NULL,111,3,55.526746186906664,3.89,48.68386665116991,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15771,'2020-01-26T07:31:04.169Z',NULL,159,2,35.53017445377361,2.49,51.901315565071975,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15772,'2019-08-02T17:33:34.577Z',NULL,7,8,148.22900526552291,10.38,289.9220507030123,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15773,'2019-02-17T10:32:53.688Z',NULL,40,1,99.66240044231697,6.98,100.8150854816813,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15774,'2019-06-09T23:40:14.311Z',NULL,143,6,61.1983004605443,4.28,46.010923336951954,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15775,'2019-04-15T00:14:26.747Z',NULL,172,3,122.3651993029456,8.57,195.15259255427952,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15776,'2020-01-26T07:09:49.544Z',NULL,73,1,71.6287722595695,5.01,53.204491378852715,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15777,'2018-07-22T05:41:46.907Z',NULL,14,4,37.648145389078365,2.64,12.256989137273985,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15778,'2019-09-22T01:48:30.194Z',NULL,9,4,87.46968147789205,6.12,129.906874813511,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15779,'2018-11-28T18:15:59.444Z',NULL,181,3,143.88940370476112,10.07,79.66564102096099,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15780,'2019-09-16T16:13:13.900Z',NULL,130,6,75.02573869315137,5.25,150.31176865324204,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15781,'2019-03-04T14:34:07.862Z',NULL,167,1,97.70449564120193,6.84,42.08510732325987,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15782,'2018-11-22T20:41:40.172Z',NULL,91,3,65.09432810381134,4.56,97.39679400222573,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15783,'2018-08-23T00:12:12.806Z',NULL,91,6,65.09432810381134,4.56,78.65148688287923,2113); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15784,'2018-10-28T06:37:07.663Z',NULL,104,5,106.44215255778118,7.45,139.55734515687197,2114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15785,'2019-01-24T03:49:05.158Z',7.050048187597048,52,2,103.67587240151535,7.26,156.73630297549013,2114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15786,'2018-07-04T15:35:00.979Z',NULL,180,4,68.32408657333919,4.78,89.84054413896374,2114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15787,'2019-01-07T19:23:27.084Z',NULL,49,1,131.42865839323724,9.2,184.2862001491637,2114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15788,'2016-09-17T02:26:00.177Z',NULL,92,3,83.2616179105333,5.83,28.548062079183957,2114); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15789,'2020-03-25T14:05:23.906Z',NULL,108,1,50.094887884945365,3.13,40.931616996390886,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15790,'2017-11-10T20:24:42.270Z',NULL,47,2,56.05108065511453,3.5,54.56566690029496,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15791,'2019-01-02T08:39:41.947Z',NULL,83,1,81.87627832636537,5.12,81.83560742675726,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15792,'2016-11-08T22:17:37.883Z',NULL,122,2,66.56352219205405,4.16,35.198041996600054,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15793,'2019-08-29T04:09:15.896Z',2.5500481875970484,196,4,70.14610686710009,4.38,92.21038958191677,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15794,'2018-04-11T17:47:07.306Z',NULL,148,2,138.9817182254566,8.69,234.22390441079295,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15795,'2017-02-10T13:25:55.569Z',NULL,51,1,50.433725012700116,3.15,55.25678498394118,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15796,'2018-07-26T19:42:08.828Z',NULL,134,4,42.49233549998661,2.66,41.96631895565281,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15797,'2019-04-22T08:54:20.947Z',NULL,106,2,52.723521442619514,3.3,61.19136545845333,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15798,'2017-07-07T15:20:09.860Z',NULL,189,3,62.18492169821006,3.89,66.99298528279607,2115); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15799,'2019-08-31T16:44:33.680Z',NULL,130,6,75.02573869315137,4.69,62.22440146331633,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15800,'2019-05-23T05:50:39.566Z',NULL,112,4,41.329386510090345,2.58,69.59884345132657,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15801,'2017-11-26T06:15:41.052Z',NULL,127,2,89.65344209669612,5.6,130.2585714524232,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15802,'2018-07-27T09:58:08.181Z',NULL,1,4,44.19489169601981,2.76,21.778777473551717,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15803,'2020-02-19T16:20:04.682Z',NULL,63,1,133.5202262591817,8.35,254.20880402921244,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15804,'2018-02-09T01:50:54.125Z',7.050048187597048,85,1,54.90104734428525,3.43,93.63273727550444,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15805,'2019-03-14T06:57:28.119Z',NULL,105,1,52.723521442619514,3.3,42.02845456750102,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15806,'2018-10-27T22:16:10.739Z',NULL,155,6,43.77574310182776,2.74,40.448914437521225,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15807,'2018-07-19T21:41:02.634Z',NULL,50,5,53.64019616819762,3.35,33.76018858448992,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15808,'2019-10-02T01:29:22.865Z',NULL,87,6,117.25536340498041,7.33,231.70585285046846,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15809,'2019-12-10T17:09:21.932Z',NULL,108,3,50.094887884945365,3.13,47.976053452251826,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15810,'2017-04-06T07:50:05.139Z',NULL,55,4,63.84752383956291,3.99,33.43280480266377,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15811,'2020-03-18T08:25:56.076Z',3.4358588674134087,133,1,68.4819702983371,4.28,85.63683645554464,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15812,'2020-04-09T14:55:40.673Z',NULL,186,4,98.9770008385166,6.19,183.43534244995504,2116); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15813,'2019-10-07T16:08:44.285Z',NULL,50,7,53.64019616819762,2.68,95.94601030122779,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15814,'2018-05-04T02:46:50.029Z',NULL,187,4,98.9770008385166,4.95,81.32602229562137,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15815,'2017-12-07T05:08:52.834Z',NULL,10,2,31.78621880685793,1.59,49.807552498495085,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15816,'2018-01-14T07:27:11.981Z',NULL,92,3,124.89242686579996,6.24,44.129576277842865,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15817,'2017-09-21T04:52:47.629Z',NULL,86,5,61.54291113900164,3.08,38.436590233729,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15818,'2016-12-02T07:33:42.893Z',NULL,139,1,51.18512212784679,2.56,37.98184077163194,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15819,'2018-04-21T11:56:04.467Z',NULL,185,2,39.57700083851661,1.98,59.88291756699748,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15820,'2018-06-01T13:18:41.645Z',NULL,152,5,48.89568729900663,2.44,95.01626550376258,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15821,'2019-06-16T20:06:26.370Z',7.935858867413408,167,6,97.70449564120193,4.89,154.75872388709982,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15822,'2017-08-01T23:16:52.971Z',NULL,73,7,47.752514839713,2.39,84.28459834605114,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15823,'2019-01-25T22:01:25.007Z',NULL,143,1,61.1983004605443,3.06,92.08250888554875,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15824,'2018-05-11T22:08:41.886Z',NULL,104,4,106.44215255778118,5.32,186.28009502195277,2117); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15825,'2019-02-02T09:12:44.250Z',NULL,79,2,41.616917284159726,2.29,17.04251944628923,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15826,'2018-07-29T02:45:00.113Z',NULL,62,6,133.5202262591817,7.34,46.63185982173381,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15827,'2018-07-19T04:10:31.781Z',NULL,129,6,148.1672972165937,8.15,189.23133498730377,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15828,'2018-11-29T13:57:21.692Z',NULL,189,4,93.27738254731509,5.13,170.77390297129332,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15829,'2020-03-06T13:58:52.494Z',NULL,73,1,71.6287722595695,3.94,71.84206772518372,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15830,'2018-03-18T19:37:03.728Z',NULL,197,1,70.14610686710009,3.86,133.31796355066845,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15831,'2018-06-20T05:00:55.477Z',NULL,72,6,142.20381898788685,7.82,275.3645902011396,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15832,'2016-12-22T17:57:56.456Z',NULL,150,1,85.70276691718615,4.71,124.68245915594208,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15833,'2020-03-13T06:40:46.328Z',NULL,191,1,128.5841852057933,7.07,121.40658299000744,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15834,'2018-08-17T03:55:18.702Z',NULL,86,9,92.31436670850246,5.08,99.92063179694178,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15835,'2020-03-05T16:28:34.222Z',NULL,86,1,92.31436670850246,5.08,140.8244522660165,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15836,'2018-12-23T04:34:23.775Z',NULL,31,1,105.65346467128523,5.81,74.77222629212426,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15837,'2017-11-24T08:54:38.461Z',3.4358588674134087,120,2,55.668009001928525,3.06,101.16142037680522,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15838,'2018-07-31T10:31:19.441Z',NULL,114,5,77.91196471862148,4.29,63.55204906484562,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15839,'2019-06-17T13:11:02.216Z',NULL,144,6,61.1983004605443,3.37,99.61916700696895,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15840,'2018-09-03T13:50:52.733Z',NULL,76,4,63.82421061366486,3.51,99.95662257300641,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15841,'2018-01-25T03:35:52.426Z',NULL,171,1,105.07665741496471,5.78,147.00261437484917,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15842,'2020-02-05T07:47:24.375Z',3.4358588674134087,166,1,38.30449564120193,2.11,46.225951571458744,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15843,'2018-11-24T14:46:28.034Z',NULL,177,2,128.8192981944599,7.09,73.84077368363349,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15844,'2016-09-10T17:34:39.947Z',NULL,189,4,62.18492169821006,3.42,107.1960072020463,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15845,'2018-10-02T18:14:34.145Z',NULL,44,6,76.35255205175756,4.2,23.23081648824564,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15846,'2019-12-17T11:10:35.810Z',NULL,26,2,68.12471180754113,3.75,109.95841776803641,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15847,'2019-01-09T10:39:14.248Z',NULL,120,1,83.5020135028928,4.59,34.25678900060357,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15848,'2016-09-24T13:05:37.833Z',NULL,26,4,45.41647453836076,2.5,69.19132222498308,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15849,'2018-08-10T21:44:28.959Z',NULL,180,5,68.32408657333919,3.76,138.5430720025157,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15850,'2020-02-19T14:59:23.561Z',NULL,161,1,47.59120561297272,2.62,65.6143455474097,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15851,'2017-01-13T12:59:48.025Z',NULL,96,2,69.88096572393577,3.84,80.66317895980143,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15852,'2017-01-29T02:34:03.412Z',NULL,111,2,37.01783079127111,2.04,74.48587880070892,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15853,'2017-10-22T15:19:28.284Z',NULL,17,5,53.290720311951766,2.93,80.62579006750701,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15854,'2017-02-21T18:32:48.182Z',NULL,189,1,62.18492169821006,3.42,56.52600001049693,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15855,'2020-04-11T07:55:16.664Z',NULL,38,2,66.06937283839378,3.63,96.36080464504609,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15856,'2017-08-17T20:59:54.075Z',NULL,161,2,31.727470408648482,1.75,32.44405624188903,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15857,'2018-08-17T01:32:22.149Z',NULL,6,4,97.43621265344382,5.36,84.94899673181396,2118); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15858,'2018-02-22T11:35:14.522Z',NULL,82,1,60.89545738030947,3.65,34.57639966568086,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15859,'2020-03-01T20:21:17.013Z',NULL,20,1,37.32649625046575,2.24,24.22690617766025,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15860,'2017-12-08T09:17:27.991Z',NULL,96,1,69.88096572393577,4.19,125.95135864521154,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15861,'2019-06-06T18:15:38.599Z',NULL,191,4,128.5841852057933,7.72,152.03666175493308,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15862,'2018-11-26T19:07:33.336Z',NULL,20,2,37.32649625046575,2.24,15.067663324607338,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15863,'2018-06-04T19:03:03.696Z',NULL,105,2,52.723521442619514,3.16,49.659444820863264,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15864,'2019-02-02T09:02:48.723Z',NULL,153,1,66.79892314178237,4.01,68.29751650752227,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15865,'2020-02-11T22:20:07.135Z',NULL,59,1,89.20214751859149,5.35,102.54677341890175,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15866,'2019-12-13T14:52:29.480Z',NULL,28,2,68.12471180754113,4.09,101.33226088718862,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15867,'2019-12-06T20:50:31.023Z',NULL,17,2,79.93608046792765,4.8,121.64499630193554,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15868,'2018-12-30T02:00:47.048Z',NULL,60,1,29.80214751859149,1.79,13.184299779469661,2119); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15869,'2019-03-28T15:27:02.879Z',NULL,57,1,122.4223933583994,7.35,231.41507953893478,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15870,'2019-04-07T11:56:24.862Z',NULL,102,2,47.04215255778118,2.82,43.35681321985682,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15871,'2019-09-09T23:20:53.203Z',NULL,142,2,70.34853057210945,4.22,41.297050383091204,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15872,'2017-03-06T05:40:09.663Z',NULL,155,1,29.183828734551838,1.75,35.00064170933293,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15873,'2018-08-18T04:43:05.074Z',NULL,99,6,67.83486485383094,4.07,117.50352954348968,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15874,'2019-01-27T18:48:23.328Z',NULL,151,1,91.61302306843446,5.5,85.04526244240265,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15875,'2019-08-22T14:27:06.965Z',NULL,148,2,138.9817182254566,8.34,163.76334199875754,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15876,'2017-09-16T18:29:36.755Z',NULL,158,2,93.26282349158673,5.6,124.26228887137002,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15877,'2018-05-17T14:41:16.396Z',NULL,136,3,105.20402317157343,6.31,54.21219155476267,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15878,'2019-01-31T02:48:48.440Z',NULL,22,1,32.136779940663494,1.93,27.10447388635374,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15879,'2018-07-31T07:48:08.255Z',NULL,142,3,70.34853057210945,4.22,60.06015589358378,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15880,'2018-09-20T22:28:29.613Z',NULL,92,3,124.89242686579996,7.49,216.24488972894176,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15881,'2019-08-28T19:27:01.792Z',NULL,108,2,50.094887884945365,3.01,34.45534173557727,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15882,'2019-09-28T02:50:37.485Z',NULL,144,2,61.1983004605443,3.67,90.97793699644414,2121); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15883,'2019-04-21T00:34:06.376Z',NULL,41,1,63.50890855689462,2.54,68.50862187422918,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15884,'2018-12-31T05:56:45.576Z',NULL,60,1,29.80214751859149,1.19,41.25930545091904,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15885,'2018-05-18T05:07:08.298Z',NULL,170,4,105.07665741496471,4.2,33.22441797858565,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15886,'2020-01-20T16:23:21.689Z',NULL,60,1,29.80214751859149,1.19,51.62050610341288,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15887,'2019-03-09T02:11:30.257Z',NULL,75,1,125.81276373452337,5.03,48.32349194112362,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15888,'2019-10-19T18:41:54.923Z',NULL,164,3,92.96789820016517,3.72,138.76900213013576,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15889,'2018-10-13T16:01:42.481Z',NULL,95,3,49.81864156655383,1.99,60.853103335280316,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15890,'2018-10-21T09:03:50.720Z',NULL,163,3,33.56789820016516,1.34,40.01361976376556,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15891,'2019-08-25T12:19:56.067Z',0.14840867651130196,115,2,77.91196471862148,3.12,44.40144445382452,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15892,'2018-04-28T14:57:57.053Z',NULL,58,2,78.14578007078882,3.13,57.858964027676535,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15893,'2019-08-11T10:38:52.771Z',NULL,81,6,43.9329842322118,1.76,64.69796478354552,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15894,'2020-02-17T16:06:47.171Z',NULL,29,1,123.57448218067185,4.94,165.67702228941567,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15895,'2018-11-28T18:37:46.944Z',2.8374674024624733,167,2,97.70449564120193,3.91,137.96613815171588,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15896,'2018-01-28T23:29:46.196Z',NULL,198,2,70.14610686710009,2.81,114.55780166579105,2122); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15897,'2018-05-25T05:19:36.013Z',NULL,14,5,37.648145389078365,1.09,35.2184848820001,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15898,'2017-06-17T09:45:57.046Z',NULL,125,6,53.59799471993963,1.55,25.798390640510185,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15899,'2018-09-11T16:52:45.585Z',NULL,164,5,92.96789820016517,2.7,150.28146630449322,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15900,'2017-08-13T13:31:38.072Z',NULL,149,6,46.10276691718616,1.34,78.9283134024178,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15901,'2019-09-21T09:27:51.178Z',NULL,27,5,127.52471180754115,3.7,162.9894534051035,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15902,'2017-12-27T06:42:49.722Z',NULL,8,2,65.89215669329305,1.91,30.756961555863956,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15903,'2017-08-27T09:02:52.029Z',NULL,84,4,54.58418555091025,1.58,70.3375161724288,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15904,'2019-07-12T07:21:06.812Z',NULL,150,3,128.55415037577922,3.73,225.6476345685203,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15905,'2019-04-10T10:32:41.627Z',NULL,53,2,44.27587240151534,1.28,40.36066476173242,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15906,'2018-01-08T23:05:20.835Z',NULL,58,2,78.14578007078882,2.27,105.13324994203967,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15907,'2017-02-14T20:55:48.696Z',NULL,17,2,53.290720311951766,1.55,16.675906598756384,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15908,'2020-03-13T18:59:16.424Z',NULL,9,1,87.46968147789205,2.54,166.92221873493494,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15909,'2019-08-28T16:36:01.104Z',NULL,144,6,61.1983004605443,1.77,89.42103003379854,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15910,'2016-11-24T15:00:23.383Z',NULL,185,2,26.384667225677738,0.77,41.903529986311156,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15911,'2018-10-26T10:26:17.647Z',NULL,130,5,75.02573869315137,2.18,73.22959433070389,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15912,'2020-02-18T12:18:49.792Z',7.337467402462473,106,2,52.723521442619514,1.53,43.48288855693159,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15913,'2018-11-14T16:59:12.891Z',7.337467402462473,37,3,80.10774204020768,2.32,44.02118824056504,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15914,'2019-06-07T21:44:04.557Z',7.337467402462473,171,6,105.07665741496471,3.05,203.63053325275723,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15915,'2017-10-25T21:59:44.317Z',NULL,174,5,74.40953929454055,2.16,30.475260285022927,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15916,'2020-03-21T04:52:35.385Z',NULL,47,1,84.0766209826718,2.44,89.76687156832712,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15917,'2020-02-08T20:35:54.637Z',NULL,92,2,124.89242686579996,3.62,144.60861901123403,2123); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15918,'2018-12-20T17:07:08.569Z',NULL,66,24,136.16126271106958,8.17,250.07826625236754,2124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15919,'2018-01-30T17:00:25.704Z',NULL,161,2,47.59120561297272,2.86,43.8993765913847,2124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15920,'2018-01-06T20:51:15.863Z',NULL,185,2,39.57700083851661,2.37,52.273489161380326,2124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15921,'2019-10-30T17:37:04.015Z',NULL,24,5,112.30643674729413,6.74,141.5887514789129,2124); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15922,'2018-01-07T05:47:13.395Z',NULL,107,2,50.094887884945365,3.13,76.81934514125473,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15923,'2017-12-17T03:02:06.614Z',NULL,1,2,29.463261130679875,1.84,37.58767142812492,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15924,'2019-02-04T23:09:32.603Z',NULL,68,2,115.24343882309758,7.2,57.003601830227296,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15925,'2017-02-02T22:49:40.628Z',NULL,173,2,81.57679953529707,5.1,62.88099623633626,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15926,'2019-06-23T23:32:47.258Z',7.337467402462473,19,6,64.00675097561322,4,54.32406319982504,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15927,'2018-08-02T21:40:52.429Z',NULL,75,4,125.81276373452337,7.86,216.72240018556784,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15928,'2019-09-24T16:13:30.472Z',NULL,145,5,61.1983004605443,3.82,64.90108082672705,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15929,'2020-03-10T20:26:51.482Z',NULL,180,1,68.32408657333919,4.27,115.46672269714851,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15930,'2017-12-20T13:28:38.746Z',NULL,38,2,44.04624855892918,2.75,66.43496807553367,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15931,'2019-01-24T13:52:47.859Z',NULL,121,2,40.44528328808107,2.53,63.60144663357183,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15932,'2016-08-03T09:33:21.269Z',NULL,175,8,78.21653962235106,4.89,150.53877839814518,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15933,'2018-02-26T18:12:33.054Z',NULL,94,2,109.21864156655383,6.83,141.34597345136575,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15934,'2017-06-21T23:52:54.134Z',NULL,21,7,40.38334406304544,2.52,69.92778822689716,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15935,'2018-10-06T05:32:08.889Z',NULL,59,5,89.20214751859149,5.58,61.59800914009312,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15936,'2018-01-15T00:41:13.130Z',NULL,45,1,118.0495173798411,7.38,136.30285595549122,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15937,'2018-07-05T21:26:55.898Z',NULL,163,5,33.56789820016516,2.1,54.613379990528635,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15938,'2018-05-16T17:54:49.408Z',NULL,197,4,70.14610686710009,4.38,119.27860753327974,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15939,'2018-07-05T13:54:14.866Z',NULL,105,5,52.723521442619514,3.3,103.6446351836069,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15940,'2018-07-09T10:52:38.254Z',NULL,91,6,65.09432810381134,4.07,64.15955536216289,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15941,'2019-10-26T13:13:51.898Z',NULL,171,7,105.07665741496471,6.57,61.89783983439954,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15942,'2018-08-20T15:55:53.188Z',NULL,34,8,74.30391386913199,4.64,43.29338237946761,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15943,'2017-08-13T05:47:26.513Z',NULL,106,7,35.149014295079674,2.2,21.83239751027428,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15944,'2019-11-29T07:45:50.063Z',NULL,92,3,124.89242686579996,7.81,36.86853073818599,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15945,'2017-03-03T05:37:02.726Z',NULL,34,1,49.535942579421324,3.1,75.38419876962769,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15946,'2018-09-27T02:14:20.914Z',NULL,40,5,99.66240044231697,6.23,58.300324499799686,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15947,'2019-05-26T09:33:23.251Z',NULL,111,4,55.526746186906664,3.47,82.08639725087959,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15948,'2019-11-04T11:50:54.114Z',NULL,97,3,112.41825444654248,7.03,129.51455615191344,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15949,'2019-03-27T13:12:22.174Z',NULL,26,1,68.12471180754113,4.26,21.14651705192123,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15950,'2019-01-25T12:52:27.475Z',NULL,170,1,105.07665741496471,6.57,75.8068969490487,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15951,'2019-01-12T11:14:15.691Z',NULL,99,2,67.83486485383094,4.24,85.18101321514298,2125); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15952,'2017-05-31T16:59:36.338Z',NULL,36,5,87.29125153827623,6.11,162.28405829746944,2126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15953,'2017-07-31T20:42:55.664Z',NULL,38,6,44.04624855892918,3.08,60.46212020550768,2126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15954,'2017-01-04T03:54:02.087Z',NULL,68,2,76.82895921539838,5.38,121.00497281265069,2126); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15955,'2018-10-23T12:30:35.536Z',NULL,174,7,111.61430894181083,4.46,158.27398183427033,2127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15956,'2020-02-10T08:14:18.462Z',NULL,26,2,68.12471180754113,2.72,78.64533397823678,2127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15957,'2019-06-10T20:06:27.362Z',NULL,138,6,113.95078476718615,4.56,90.92909936287458,2127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15958,'2018-12-25T14:04:11.502Z',NULL,50,2,53.64019616819762,2.15,27.781973617390463,2127); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15959,'2019-09-13T19:18:50.136Z',NULL,121,5,40.44528328808107,2.53,67.68648330849119,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15960,'2020-02-24T08:16:59.481Z',NULL,50,1,53.64019616819762,3.35,51.38683552337484,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15961,'2018-11-12T14:42:35.716Z',NULL,147,2,66.64727121216615,4.17,80.30730886912816,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15962,'2017-12-11T08:26:18.951Z',NULL,128,1,50.053442096696116,3.13,69.30243881521743,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15963,'2018-12-02T21:29:22.320Z',NULL,31,1,105.65346467128523,6.6,51.940704259803326,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15964,'2020-02-05T12:52:34.547Z',7.61294354477631,145,1,61.1983004605443,3.82,58.6062246320521,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15965,'2018-08-30T22:17:10.513Z',NULL,111,5,55.526746186906664,3.47,45.05311950811973,2128); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15966,'2020-02-18T23:55:05.396Z',NULL,3,1,53.08311732230858,0,97.82505965758095,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15967,'2017-02-14T23:58:47.469Z',NULL,40,1,66.44160029487797,0,59.7275998080093,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15968,'2017-03-16T20:51:19.446Z',NULL,121,1,26.96352219205405,0,18.02524200733706,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15969,'2018-08-09T21:34:27.145Z',NULL,117,8,55.024851254077866,0,35.963160294360726,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15970,'2019-08-17T21:00:52.257Z',NULL,55,7,95.77128575934437,0,74.48160041531779,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15971,'2019-07-28T06:38:26.817Z',7.61294354477631,29,5,123.57448218067185,0,60.304455028188286,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15972,'2020-01-26T21:52:16.247Z',NULL,19,2,64.00675097561322,0,61.03900895728472,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15973,'2017-11-11T09:18:32.067Z',NULL,66,3,90.77417514071306,0,101.26494950420417,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15974,'2017-05-17T02:27:14.067Z',NULL,58,4,52.097186713859216,0,27.38467326839866,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15975,'2016-10-29T05:51:13.397Z',NULL,159,5,23.686782969182406,0,25.364244875119553,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15976,'2017-06-27T07:04:07.706Z',NULL,139,8,51.18512212784679,0,95.06294484756873,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15977,'2019-12-27T01:24:01.209Z',NULL,185,2,39.57700083851661,0,31.101548429014763,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15978,'2018-03-29T16:59:42.392Z',NULL,20,1,37.32649625046575,0,18.61777347623324,2130); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15979,'2019-12-30T09:54:45.111Z',NULL,140,1,66.80312547576881,4.18,63.99268461160442,2132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15980,'2020-02-25T11:13:29.121Z',NULL,151,1,91.61302306843446,5.73,181.53039159739902,2132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15981,'2020-03-03T03:58:27.138Z',NULL,29,1,123.57448218067185,7.72,247.18578446630363,2132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15982,'2020-04-08T15:37:34.827Z',NULL,20,3,37.32649625046575,2.33,53.27189643785691,2132); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15983,'2019-05-15T05:16:51.567Z',NULL,30,4,64.17448218067184,4.01,41.75295982185711,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15984,'2017-04-14T21:10:55.833Z',NULL,171,2,70.05110494330981,4.38,43.92056355603539,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15985,'2020-03-13T20:45:20.388Z',NULL,194,1,50.38077396807232,3.15,40.73487711945877,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15986,'2017-12-30T16:19:04.041Z',NULL,28,2,45.41647453836076,2.84,57.86718806712068,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15987,'2020-01-17T23:28:26.796Z',NULL,55,2,95.77128575934437,5.99,30.91203983283838,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15988,'2018-11-30T09:48:59.251Z',NULL,147,2,66.64727121216615,4.17,119.39248789721287,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15989,'2019-06-30T06:33:54.918Z',NULL,191,6,128.5841852057933,8.04,255.53457016667153,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15990,'2018-07-14T11:39:08.136Z',NULL,162,6,33.56789820016516,2.1,35.92545139188445,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15991,'2019-11-05T04:24:40.801Z',NULL,18,3,81.90307121097293,5.12,101.87117358202363,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15992,'2018-03-30T04:07:03.917Z',NULL,107,1,50.094887884945365,3.13,49.96005180944042,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15993,'2017-10-12T12:20:16.355Z',2.6059201840591375,139,5,51.18512212784679,3.2,62.91045884387645,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15994,'2018-01-25T15:23:42.082Z',NULL,18,2,81.90307121097293,5.12,111.65275681632241,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15995,'2019-12-15T19:22:49.864Z',NULL,99,2,67.83486485383094,4.24,84.98322825009762,2133); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15996,'2017-03-29T08:02:05.251Z',NULL,6,1,64.95747510229587,2.6,91.12883186692801,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15997,'2016-12-11T14:12:52.505Z',NULL,166,2,25.536330427467956,1.02,31.94250322655564,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15998,'2019-10-16T01:22:19.427Z',NULL,1,5,44.19489169601981,1.77,17.798403948900532,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (15999,'2019-12-17T19:51:53.178Z',NULL,175,18,117.3248094335266,4.69,140.5609258505152,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16000,'2019-03-10T17:30:07.556Z',NULL,93,1,49.81864156655383,1.99,24.20718524225594,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16001,'2019-06-23T01:15:01.927Z',NULL,193,4,50.38077396807232,2.02,15.719851032567467,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16002,'2018-03-10T06:21:06.349Z',NULL,120,1,83.5020135028928,3.34,42.96677106023839,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16003,'2018-07-06T12:16:42.054Z',NULL,136,4,105.20402317157343,4.21,112.62583091052872,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16004,'2019-10-15T21:09:44.335Z',NULL,116,5,114.42485125407785,4.58,187.29570667789355,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16005,'2020-04-18T03:03:29.941Z',NULL,128,3,75.08016314504417,3,98.51619782540371,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16006,'2018-02-27T13:57:37.196Z',NULL,1,2,44.19489169601981,1.77,29.608880007333994,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16007,'2018-03-07T06:01:17.626Z',NULL,176,9,57.92480943352658,2.32,41.78780689031789,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16008,'2017-04-01T15:02:57.890Z',NULL,133,2,45.654646865558064,1.83,19.91905627712138,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16009,'2020-01-23T11:30:10.456Z',NULL,182,1,84.48940370476112,3.38,60.03092298691179,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16010,'2019-07-16T17:41:44.872Z',NULL,30,4,64.17448218067184,2.57,16.665903145051917,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16011,'2019-08-09T19:50:42.706Z',NULL,50,8,53.64019616819762,2.15,64.95922174713546,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16012,'2020-01-15T13:00:38.393Z',NULL,190,2,128.5841852057933,5.14,82.7764522958495,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16013,'2020-01-06T06:46:37.983Z',NULL,16,1,66.11029954877317,2.64,125.61915144676576,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16014,'2019-12-22T15:08:05.754Z',NULL,188,2,33.87738254731509,1.36,43.41155706947735,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16015,'2019-12-28T10:26:39.410Z',NULL,32,2,107.1448636959614,4.29,194.6360145464981,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16016,'2019-09-26T10:52:22.988Z',NULL,113,4,110.47725376186015,4.42,84.12714617273816,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16017,'2020-01-15T03:32:35.065Z',NULL,66,2,136.16126271106958,5.45,224.83960594260552,2135); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16018,'2017-05-09T17:55:04.777Z',NULL,10,5,31.78621880685793,2.07,60.78920798919755,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16019,'2017-05-18T22:52:20.454Z',NULL,26,4,45.41647453836076,2.95,86.36549298739733,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16020,'2018-06-18T12:43:09.411Z',NULL,74,4,51.12804227386549,3.32,54.23926934860709,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16021,'2018-04-29T11:30:03.553Z',NULL,74,2,51.12804227386549,3.32,44.042804876608805,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16022,'2019-08-04T13:21:39.932Z',NULL,190,4,128.5841852057933,8.36,160.30985842081495,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16023,'2019-12-16T13:00:22.640Z',NULL,142,1,70.34853057210945,4.57,80.3099338051013,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16024,'2017-01-30T04:30:35.260Z',NULL,45,2,78.6996782532274,5.12,152.79324267248592,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16025,'2018-02-03T02:27:18.183Z',NULL,121,1,40.44528328808107,2.63,24.1302316795129,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16026,'2020-02-12T19:03:39.349Z',NULL,109,1,119.04991068193098,7.74,49.2523568201808,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16027,'2016-11-10T10:10:02.100Z',NULL,21,3,40.38334406304544,2.62,79.52644269184613,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16028,'2017-05-08T16:06:51.137Z',NULL,27,3,85.01647453836077,5.53,114.82306065668433,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16029,'2018-08-29T21:19:20.153Z',NULL,77,6,101.01691728415972,6.57,74.75861162095303,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16030,'2016-12-09T15:34:53.543Z',2.6059201840591375,193,2,33.587182645381546,2.18,10.628865757788159,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16031,'2019-05-19T01:29:54.543Z',NULL,8,4,98.83823503993958,6.42,180.1881821910388,2136); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16032,'2019-12-24T04:34:14.371Z',NULL,131,1,113.11722203337729,6.79,171.66518003158686,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16033,'2018-08-12T06:11:35.836Z',7.093172778918711,166,6,38.30449564120193,2.3,51.53449274187675,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16034,'2017-12-12T04:00:47.324Z',NULL,42,2,25.336071424606207,1.52,38.57901582132071,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16035,'2018-04-03T00:11:29.098Z',NULL,178,3,117.32963250370614,7.04,58.753401178725454,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16036,'2019-01-09T14:49:00.092Z',2.5931727789187113,63,1,133.5202262591817,8.01,93.69526657792349,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16037,'2020-04-16T08:34:26.679Z',NULL,43,2,76.35255205175756,4.58,52.18297851867483,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16038,'2019-04-23T05:21:52.180Z',NULL,66,2,136.16126271106958,8.17,149.49038627481704,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16039,'2018-12-07T04:16:53.853Z',NULL,34,2,74.30391386913199,4.46,50.17091595443504,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16040,'2016-11-13T04:07:28.382Z',NULL,133,3,45.654646865558064,2.74,40.04186881220294,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16041,'2018-09-25T08:18:04.723Z',NULL,105,3,52.723521442619514,3.16,97.64652031077536,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16042,'2019-11-11T05:12:38.048Z',NULL,100,3,67.83486485383094,4.07,93.253952632466,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16043,'2019-10-21T01:34:29.066Z',NULL,74,7,51.12804227386549,3.07,26.198435860316614,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16044,'2019-09-24T20:08:03.211Z',NULL,187,4,98.9770008385166,5.94,31.67822967933833,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16045,'2019-04-07T02:55:55.126Z',NULL,109,2,119.04991068193098,7.14,175.59529715117063,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16046,'2019-01-14T01:27:54.921Z',NULL,114,2,77.91196471862148,4.67,115.10315373556716,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16047,'2017-12-11T21:41:50.626Z',NULL,32,2,71.42990913064094,4.29,90.31984142995826,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16048,'2017-07-22T16:11:45.955Z',NULL,1,4,29.463261130679875,1.77,29.913021893040288,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16049,'2018-12-26T07:39:38.195Z',NULL,60,2,29.80214751859149,1.79,20.507462550983632,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16050,'2019-05-01T02:35:24.669Z',NULL,8,5,98.83823503993958,5.93,54.02764423385537,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16051,'2018-11-06T11:04:31.654Z',NULL,194,3,50.38077396807232,3.02,77.83379514332712,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16052,'2018-07-31T08:12:47.943Z',NULL,143,3,61.1983004605443,3.67,40.70620497647484,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16053,'2017-09-09T11:29:18.198Z',NULL,126,3,83.49598746872304,5.01,90.5270970388083,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16054,'2018-06-08T00:25:01.118Z',NULL,129,4,148.1672972165937,8.89,170.89389556633424,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16055,'2020-02-09T11:25:11.330Z',NULL,150,1,128.55415037577922,7.71,44.12251765856598,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16056,'2019-07-20T16:24:27.925Z',NULL,62,6,133.5202262591817,8.01,39.83318863386406,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16057,'2018-08-26T20:22:54.337Z',NULL,50,6,53.64019616819762,3.22,87.29470322074984,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16058,'2018-03-16T17:06:15.487Z',NULL,29,1,123.57448218067185,7.41,208.39681089185302,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16059,'2018-04-20T05:09:17.743Z',NULL,167,3,97.70449564120193,5.86,79.91161126423644,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16060,'2019-05-22T03:06:09.199Z',NULL,133,5,68.4819702983371,4.11,133.60204531184058,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16061,'2019-05-01T12:31:14.034Z',NULL,102,4,47.04215255778118,2.82,57.19267328861874,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16062,'2019-08-26T04:15:15.048Z',NULL,2,4,105.11984419607644,6.31,46.00275705263019,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16063,'2018-09-27T07:29:33.769Z',NULL,160,4,47.59120561297272,2.86,91.36010495771129,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16064,'2016-10-22T11:06:03.044Z',NULL,109,7,79.36660712128732,4.76,114.43824216037356,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16065,'2018-12-15T22:31:02.867Z',NULL,94,2,109.21864156655383,6.55,78.64009142093427,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16066,'2019-05-07T11:19:19.615Z',NULL,97,3,112.41825444654248,6.75,215.69852208807742,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16067,'2019-01-05T12:52:35.292Z',NULL,160,2,47.59120561297272,2.86,58.514092305716595,2138); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16068,'2018-05-17T01:26:32.126Z',NULL,119,5,43.43814329652384,2.61,44.78343483194661,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16069,'2018-01-08T17:03:04.012Z',NULL,134,2,42.49233549998661,2.55,28.27590702333317,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16070,'2017-03-03T19:41:26.412Z',NULL,107,1,33.39659192329691,2,32.99984286987136,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16071,'2016-11-05T16:26:39.173Z',3.1581644464364187,194,2,33.587182645381546,2.02,41.72619442239274,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16072,'2020-02-17T22:30:08.042Z',NULL,157,2,139.8942352373801,8.39,176.42416287925843,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16073,'2019-04-09T15:45:47.894Z',NULL,77,3,101.01691728415972,6.06,86.46472405981582,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16074,'2018-11-02T20:59:28.112Z',NULL,146,2,126.04727121216614,7.56,99.88852733342637,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16075,'2017-12-01T04:00:02.118Z',3.1581644464364187,39,1,76.38772120188973,4.58,113.25863424962431,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16076,'2017-02-26T23:37:38.991Z',NULL,105,2,35.149014295079674,2.11,68.96629217396212,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16077,'2016-10-13T21:02:41.141Z',NULL,15,7,25.09876359271891,1.51,18.223892324358747,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16078,'2017-05-06T01:49:16.944Z',NULL,180,4,45.549391048892794,2.73,19.55768101795694,2139); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16079,'2019-02-16T12:29:00.588Z',3.1581644464364187,17,1,79.93608046792765,3.2,100.97431668369354,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16080,'2018-12-25T06:33:51.806Z',7.658164446436419,135,1,45.80402317157342,1.83,27.32647713840612,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16081,'2019-01-23T18:23:38.332Z',NULL,175,1,117.3248094335266,4.69,147.37343223572307,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16082,'2018-02-24T21:07:18.552Z',NULL,175,1,117.3248094335266,4.69,167.90614537929076,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16083,'2020-01-02T08:36:36.662Z',NULL,72,2,142.20381898788685,5.69,34.586568262923144,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16084,'2018-09-27T09:12:23.408Z',NULL,70,6,57.493003808959784,2.3,94.31048947313346,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16085,'2018-11-13T18:39:58.100Z',3.1581644464364187,66,3,136.16126271106958,5.45,155.55964917003053,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16086,'2018-07-21T00:17:54.840Z',NULL,26,3,68.12471180754113,2.72,33.18938166957807,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16087,'2017-12-01T20:34:34.558Z',NULL,116,2,76.28323416938524,3.05,101.63648224188252,2140); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16088,'2018-06-10T11:28:18.169Z',NULL,59,8,89.20214751859149,0,136.57672138615436,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16089,'2019-04-08T22:40:50.195Z',NULL,2,4,105.11984419607644,0,66.51753064937826,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16090,'2019-03-23T07:49:15.873Z',NULL,153,1,66.79892314178237,0,82.35715297866065,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16091,'2018-05-16T15:20:28.704Z',3.1581644464364187,26,4,68.12471180754113,0,90.16912055507777,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16092,'2018-02-03T06:59:07.149Z',3.1581644464364187,186,2,98.9770008385166,0,146.19088708262953,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16093,'2020-02-16T00:00:26.974Z',NULL,85,2,54.90104734428525,0,105.07747986350286,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16094,'2020-02-29T17:03:41.035Z',NULL,123,2,110.93145648834248,0,167.01889718872286,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16095,'2017-06-15T18:00:55.870Z',NULL,183,6,37.7982748679465,0,46.25355154928125,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16096,'2017-07-06T04:07:23.766Z',NULL,10,5,31.78621880685793,0,47.49181737177517,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16097,'2019-03-04T16:21:15.782Z',NULL,18,1,81.90307121097293,0,18.934591708751743,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16098,'2019-03-25T11:12:31.360Z',NULL,170,1,105.07665741496471,0,146.83608816123748,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16099,'2019-02-11T10:40:38.227Z',NULL,135,1,45.80402317157342,0,22.729391466563072,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16100,'2017-04-27T07:00:42.002Z',NULL,174,2,74.40953929454055,0,137.71178010334407,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16101,'2017-04-07T04:10:27.878Z',6.5331697172746495,155,2,29.183828734551838,0,43.80871985060363,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16102,'2018-03-21T22:55:15.365Z',NULL,58,1,78.14578007078882,0,50.2662562654604,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16103,'2018-01-04T22:01:09.099Z',NULL,6,1,97.43621265344382,0,161.95343285524925,2141); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16104,'2019-01-25T20:29:00.063Z',NULL,59,2,89.20214751859149,5.8,36.72301399287461,2144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16105,'2019-07-02T17:01:25.451Z',NULL,82,5,60.89545738030947,3.96,64.18164058721307,2144); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16106,'2019-04-30T14:57:41.375Z',NULL,152,2,48.89568729900663,3.36,77.0760825854759,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16107,'2018-02-15T21:29:01.773Z',NULL,96,1,104.82144858590365,7.21,55.58929335000442,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16108,'2019-08-04T14:04:21.107Z',NULL,117,4,55.024851254077866,3.78,114.08895633401548,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16109,'2018-11-12T00:32:48.132Z',NULL,173,2,122.3651993029456,8.41,144.50723172995666,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16110,'2018-07-14T05:03:25.541Z',NULL,75,5,125.81276373452337,8.65,98.55710102190994,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16111,'2019-11-23T16:15:34.192Z',NULL,157,3,139.8942352373801,9.62,197.75918846714504,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16112,'2017-10-18T01:12:27.473Z',NULL,152,46,32.59712486600442,2.24,38.24195082065828,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16113,'2018-07-04T07:40:44.051Z',NULL,145,3,61.1983004605443,4.21,57.40598474271985,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16114,'2020-03-24T20:04:34.034Z',NULL,141,1,126.20312547576883,8.68,84.00033191524494,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16115,'2017-03-02T15:05:40.131Z',NULL,146,1,84.03151414144409,5.78,97.72878887041053,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16116,'2019-11-11T21:35:34.971Z',NULL,42,2,38.00410713690931,2.61,51.5538557803871,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16117,'2018-11-04T12:14:17.115Z',NULL,190,2,128.5841852057933,8.84,99.18642967569488,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16118,'2019-02-10T23:07:11.157Z',NULL,21,1,60.57501609456816,4.16,53.64992533264744,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16119,'2018-08-08T14:33:59.035Z',NULL,22,6,32.136779940663494,2.21,43.97756508541507,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16120,'2020-03-16T15:54:00.637Z',NULL,152,1,48.89568729900663,3.36,73.23375909441646,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16121,'2017-04-19T20:44:55.254Z',NULL,10,2,31.78621880685793,2.19,26.467614267650724,2146); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16122,'2020-04-19T02:40:45.880Z',NULL,195,2,109.78077396807234,4.64,125.92814192955686,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16123,'2017-05-18T20:56:52.435Z',NULL,110,5,37.01783079127111,1.56,10.226902995610885,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16124,'2019-03-01T23:31:50.530Z',NULL,80,1,54.91325681036414,2.32,37.41610704980731,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16125,'2020-04-12T00:35:31.980Z',NULL,199,2,115.4300138092855,4.88,87.51626928301611,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16126,'2020-01-23T23:35:22.854Z',NULL,26,2,68.12471180754113,2.88,62.00080643801279,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16127,'2019-03-12T03:43:29.486Z',NULL,130,1,75.02573869315137,3.17,47.73153802402902,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16128,'2018-03-04T22:31:35.071Z',NULL,89,1,63.719612755399886,2.69,105.08882604261817,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16129,'2019-05-10T02:03:44.008Z',8.581226551880405,129,6,148.1672972165937,6.26,192.33899727486292,2148); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16130,'2019-01-31T17:38:41.910Z',NULL,97,2,112.41825444654248,7.03,110.8929030875232,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16131,'2019-01-02T10:16:31.419Z',NULL,186,2,98.9770008385166,6.19,169.1123838175973,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16132,'2019-01-26T20:35:30.527Z',NULL,182,3,84.48940370476112,5.28,142.9041270668211,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16133,'2018-02-07T13:03:04.813Z',NULL,66,2,136.16126271106958,8.51,262.605075637568,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16134,'2019-09-25T11:43:06.027Z',NULL,190,7,128.5841852057933,8.04,74.70825041331325,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16135,'2019-07-16T20:57:56.130Z',NULL,16,5,66.11029954877317,4.13,70.29611662487427,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16136,'2018-03-02T12:58:28.258Z',8.581226551880405,156,1,30.615804149046195,1.91,31.038006337976952,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16137,'2018-01-17T15:49:41.973Z',NULL,165,2,38.30449564120193,2.39,69.77082540729657,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16138,'2017-09-30T23:43:03.265Z',NULL,159,7,23.686782969182406,1.48,11.506582723054352,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16139,'2019-10-09T07:17:22.204Z',NULL,104,8,106.44215255778118,6.65,100.5830235689871,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16140,'2019-12-21T08:15:25.410Z',NULL,154,3,81.87529553312261,5.12,127.12894730747529,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16141,'2019-01-21T07:46:23.510Z',NULL,2,3,105.11984419607644,6.57,151.9080424492006,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16142,'2019-01-04T04:26:34.371Z',8.581226551880405,20,2,37.32649625046575,2.33,72.92545655838991,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16143,'2017-06-21T14:08:46.345Z',NULL,96,5,69.88096572393577,4.37,38.70930264116308,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16144,'2019-02-14T19:44:19.648Z',NULL,146,2,126.04727121216614,7.88,203.88728691102168,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16145,'2019-02-27T03:40:53.052Z',NULL,162,22,33.56789820016516,2.1,19.172604820750024,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16146,'2020-01-22T19:01:47.655Z',NULL,112,2,41.329386510090345,2.58,75.34875642271939,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16147,'2019-06-21T15:22:57.195Z',NULL,165,7,38.30449564120193,2.39,43.6935152697633,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16148,'2020-04-09T04:39:00.156Z',NULL,9,4,87.46968147789205,5.47,120.23732361798618,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16149,'2019-08-09T05:19:52.492Z',NULL,121,9,40.44528328808107,2.53,10.610299004667551,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16150,'2019-11-05T06:32:25.016Z',NULL,145,4,61.1983004605443,3.82,82.14779633377707,2150); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16151,'2018-08-23T18:56:32.077Z',4.0812265518804045,7,9,148.22900526552291,8.89,292.08414494784705,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16152,'2017-02-12T04:23:24.655Z',NULL,1,2,29.463261130679875,1.77,43.41692932297244,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16153,'2016-11-19T03:54:08.356Z',NULL,191,2,85.72279013719552,5.14,134.46695136243386,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16154,'2017-01-19T21:12:38.307Z',4.401612821796055,137,2,45.18165304538124,2.71,19.555574703791933,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16155,'2018-11-04T14:35:00.730Z',NULL,5,33,124.1176465275534,7.45,58.19561097090335,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16156,'2017-08-28T15:46:30.807Z',4.401612821796055,117,6,36.683234169385244,2.2,13.453245653702943,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16157,'2018-10-28T02:21:32.422Z',NULL,50,5,53.64019616819762,3.22,13.36804391961023,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16158,'2017-06-02T14:41:32.300Z',NULL,177,5,85.87953212963993,5.15,98.38592353072224,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16159,'2020-03-25T11:09:05.618Z',4.401612821796055,85,1,54.90104734428525,3.29,33.247584265317336,2152); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16160,'2018-05-13T04:17:38.454Z',NULL,108,6,50.094887884945365,3.01,25.97546494633444,2153); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16161,'2018-07-18T10:07:05.126Z',NULL,50,5,53.64019616819762,3.22,101.97977054298279,2155); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16162,'2018-02-19T13:36:35.412Z',NULL,189,2,93.27738254731509,3.73,181.9840511563525,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16163,'2018-07-03T07:16:17.118Z',NULL,95,5,49.81864156655383,1.99,22.737997809537774,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16164,'2018-07-11T08:41:59.374Z',NULL,70,4,57.493003808959784,2.3,15.527919520570686,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16165,'2019-04-21T08:38:35.319Z',NULL,37,3,80.10774204020768,3.2,131.80485021241174,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16166,'2019-07-19T00:15:22.740Z',NULL,86,5,92.31436670850246,3.69,47.99962005998249,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16167,'2018-12-10T04:12:26.875Z',NULL,122,2,99.84528328808108,3.99,200.28484892778388,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16168,'2017-08-06T01:03:27.048Z',NULL,7,8,98.81933684368194,3.95,38.18314609379266,2156); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16169,'2018-01-13T18:46:29.313Z',NULL,144,2,61.1983004605443,3.67,69.61215957295447,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16170,'2018-07-20T21:19:47.100Z',NULL,28,4,68.12471180754113,4.09,111.30338524546842,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16171,'2018-01-04T14:54:01.583Z',NULL,36,2,130.93687730741433,7.86,159.52748965608976,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16172,'2019-04-24T06:24:33.426Z',NULL,132,25,127.88197029833711,7.67,101.20994766058911,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16173,'2016-11-15T15:07:59.339Z',8.901612821796055,125,3,53.59799471993963,3.22,43.789422656724184,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16174,'2019-05-23T21:34:40.174Z',NULL,34,5,74.30391386913199,4.46,41.56360826648527,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16175,'2017-09-05T14:57:24.219Z',NULL,77,5,67.34461152277315,4.04,123.98148942467407,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16176,'2018-08-24T12:54:06.501Z',4.401612821796055,131,8,113.11722203337729,6.79,102.0439681038832,2157); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16177,'2017-07-23T08:55:58.413Z',NULL,107,5,33.39659192329691,1.59,59.88210863501093,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16178,'2018-05-18T07:25:22.336Z',NULL,169,5,59.53172693453274,2.83,100.21870678283359,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16179,'2018-09-01T04:05:56.662Z',NULL,31,4,105.65346467128523,5.02,102.64682386162507,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16180,'2018-11-27T19:19:24.742Z',NULL,100,3,67.83486485383094,3.22,132.92700667674973,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16181,'2019-07-31T10:39:18.114Z',NULL,138,7,113.95078476718615,5.41,82.5352480267522,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16182,'2017-06-23T01:59:50.344Z',NULL,177,7,85.87953212963993,4.08,134.48146063832,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16183,'2019-02-26T21:30:10.418Z',NULL,113,1,110.47725376186015,5.25,146.3630489969657,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16184,'2017-04-02T09:14:27.691Z',NULL,53,3,29.517248267676894,1.4,58.75720300352796,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16185,'2020-03-12T19:46:41.099Z',NULL,61,1,23.537915510955656,1.12,34.94498359123098,2159); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16186,'2018-08-19T04:42:22.503Z',NULL,141,6,126.20312547576883,8.2,258.2664989441634,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16187,'2018-11-06T21:32:47.157Z',NULL,95,3,49.81864156655383,3.24,87.1427112416949,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16188,'2018-04-08T06:46:20.586Z',NULL,107,3,50.094887884945365,3.26,46.72078370369291,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16189,'2018-10-18T10:57:22.382Z',NULL,99,5,67.83486485383094,4.41,89.74527889824033,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16190,'2018-11-20T21:58:01.732Z',NULL,144,2,61.1983004605443,3.98,16.49351596833158,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16191,'2019-10-10T14:07:37.457Z',NULL,14,4,37.648145389078365,2.45,45.00259963922551,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16192,'2017-04-27T15:36:56.631Z',NULL,15,2,25.09876359271891,1.63,18.42883230953955,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16193,'2019-01-13T15:12:07.242Z',NULL,39,18,114.58158180283459,7.45,137.95702840859983,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16194,'2019-10-15T22:50:00.647Z',NULL,68,5,115.24343882309758,7.49,184.40184184779557,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16195,'2019-09-28T15:46:56.863Z',2.723188921511257,167,3,97.70449564120193,6.35,77.61562277093977,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16196,'2019-01-23T07:10:56.596Z',NULL,132,1,127.88197029833711,8.31,169.29953747388873,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16197,'2019-06-05T14:27:35.420Z',NULL,67,6,41.24480890795779,2.68,33.73819137665783,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16198,'2018-06-06T20:00:57.189Z',NULL,104,7,106.44215255778118,6.92,158.67903632603853,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16199,'2019-10-07T07:40:18.516Z',NULL,80,7,54.91325681036414,3.57,17.315196566534315,2160); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16200,'2019-01-17T23:34:46.516Z',NULL,69,2,73.38772304360626,2.94,127.4111518077754,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16201,'2018-05-22T14:10:38.437Z',NULL,57,5,122.4223933583994,4.9,49.55129412574752,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16202,'2019-03-28T19:16:48.569Z',7.223188921511257,104,1,106.44215255778118,4.26,127.91845069705217,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16203,'2018-05-14T21:15:38.589Z',NULL,72,5,142.20381898788685,5.69,267.0170018283781,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16204,'2019-01-30T09:58:17.302Z',NULL,86,2,92.31436670850246,3.69,33.31171763853976,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16205,'2020-02-21T09:58:20.947Z',NULL,20,1,37.32649625046575,1.49,51.06359446429558,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16206,'2020-03-29T10:38:40.910Z',NULL,139,1,76.77768319177018,3.07,29.58870512751976,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16207,'2019-11-12T00:42:23.181Z',7.223188921511257,114,3,77.91196471862148,3.12,95.7236578257267,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16208,'2020-04-14T23:40:35.530Z',NULL,121,3,40.44528328808107,1.62,46.13170866763653,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16209,'2016-12-18T19:14:09.691Z',NULL,36,2,87.29125153827623,3.49,81.14101355782444,2161); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16210,'2018-04-19T03:18:09.210Z',NULL,131,3,113.11722203337729,7.92,178.56067224970826,2162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16211,'2018-04-04T22:23:01.561Z',NULL,195,3,109.78077396807234,7.68,163.94386752401502,2162); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16212,'2019-03-03T16:12:33.890Z',NULL,52,1,103.67587240151535,4.92,202.6838713523396,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16213,'2018-10-19T07:26:27.151Z',NULL,148,5,138.9817182254566,6.6,102.84320828288102,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16214,'2019-07-04T14:51:02.555Z',NULL,154,6,81.87529553312261,3.89,165.98037930564874,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16215,'2019-07-25T17:58:15.956Z',NULL,74,4,51.12804227386549,2.43,60.868893854076646,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16216,'2019-12-17T09:11:02.723Z',NULL,107,1,50.094887884945365,2.38,53.37939298133313,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16217,'2019-08-20T09:22:37.248Z',NULL,162,4,33.56789820016516,1.59,53.01556618274791,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16218,'2017-11-23T18:29:56.836Z',5.178820446480383,53,2,29.517248267676894,1.4,40.071948814960976,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16219,'2018-01-04T21:25:37.449Z',NULL,133,2,68.4819702983371,3.25,29.837946813836066,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16220,'2018-08-16T21:00:33.795Z',NULL,156,6,30.615804149046195,1.45,37.73877698800199,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16221,'2016-12-15T16:23:57.958Z',NULL,117,1,36.683234169385244,1.74,57.35084922625824,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16222,'2019-05-15T06:08:35.826Z',NULL,112,2,41.329386510090345,1.96,73.80172854802106,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16223,'2016-12-07T20:52:33.597Z',NULL,188,1,22.584921698210056,1.07,37.748943028753146,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16224,'2019-10-05T12:08:59.385Z',NULL,61,5,23.537915510955656,1.12,28.26535765759125,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16225,'2018-01-02T18:48:12.990Z',NULL,21,2,60.57501609456816,2.88,73.29715175099727,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16226,'2017-01-20T21:49:31.110Z',NULL,101,1,93.21658710786936,4.43,37.76717667216205,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16227,'2019-05-06T21:44:15.794Z',NULL,102,17,47.04215255778118,2.23,14.762175348745977,2164); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16228,'2018-08-05T17:06:12.972Z',NULL,62,3,133.5202262591817,8.01,163.3991894402947,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16229,'2017-07-26T13:15:52.123Z',NULL,114,3,51.94130981241432,3.12,91.37550907041465,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16230,'2018-09-19T13:20:25.131Z',NULL,42,5,38.00410713690931,2.28,11.082020371879777,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16231,'2016-10-25T16:58:01.936Z',NULL,34,5,49.535942579421324,2.97,30.459501210049886,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16232,'2018-11-23T22:53:18.546Z',5.178820446480383,125,2,80.39699207990944,4.82,31.885295555557956,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16233,'2020-04-13T14:05:06.178Z',NULL,179,1,68.32408657333919,4.1,44.62065172197262,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16234,'2020-03-03T12:52:19.013Z',NULL,111,0,55.526746186906664,3.33,14.346574654337342,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16235,'2020-04-07T20:55:07.564Z',NULL,72,2,142.20381898788685,8.53,36.49390205843737,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16236,'2018-10-04T09:38:20.738Z',NULL,36,4,130.93687730741433,7.86,72.46028564503436,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16237,'2019-01-23T06:26:48.552Z',NULL,16,1,66.11029954877317,3.97,103.67795769260283,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16238,'2019-02-06T03:00:46.006Z',5.178820446480383,155,1,43.77574310182776,2.63,41.81736665095998,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16239,'2019-02-08T06:33:37.939Z',NULL,61,1,23.537915510955656,1.41,13.16568857423562,2167); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16240,'2018-12-17T15:13:33.125Z',NULL,23,1,116.86672609493307,3.39,43.45057710548836,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16241,'2019-07-30T15:44:51.375Z',NULL,79,5,41.616917284159726,1.21,66.4614556980799,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16242,'2019-04-15T20:19:44.026Z',NULL,10,2,47.6793282102869,1.38,34.91384576371614,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16243,'2017-07-27T17:40:42.832Z',NULL,183,3,37.7982748679465,1.1,65.34897823725724,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16244,'2020-03-02T02:48:39.725Z',NULL,65,1,68.22769726470014,1.98,68.23732881746184,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16245,'2018-11-30T08:38:45.417Z',NULL,97,3,112.41825444654248,3.26,100.66149665356423,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16246,'2019-06-30T03:20:33.400Z',NULL,126,4,125.24398120308456,3.63,92.58535082068614,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16247,'2019-10-25T13:28:05.775Z',NULL,23,4,116.86672609493307,3.39,189.25809136518512,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16248,'2016-12-07T22:02:33.803Z',NULL,4,2,73.99178100854834,2.15,47.85542352092489,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16249,'2020-02-02T03:42:05.700Z',NULL,27,2,127.52471180754115,3.7,197.41973002166097,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16250,'2020-01-27T03:52:31.053Z',NULL,109,2,119.04991068193098,3.45,119.56987355824842,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16251,'2017-02-28T20:47:41.247Z',0.6788204464803838,120,1,55.668009001928525,1.61,41.5711228770308,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16252,'2017-04-30T00:46:05.248Z',NULL,68,1,76.82895921539838,2.23,154.2754569167767,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16253,'2018-05-24T10:41:46.460Z',NULL,116,3,114.42485125407785,3.32,211.81070241344952,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16254,'2018-08-08T20:03:39.189Z',NULL,187,5,98.9770008385166,2.87,162.4124240359828,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16255,'2016-11-11T13:03:49.367Z',NULL,83,2,54.58418555091025,1.58,54.73395021322626,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16256,'2018-05-26T11:23:16.687Z',NULL,74,3,51.12804227386549,1.48,49.04679291036201,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16257,'2018-10-08T08:29:20.429Z',0.7629305979956134,82,2,60.89545738030947,1.77,86.91489211599846,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16258,'2016-10-16T09:01:09.024Z',NULL,185,2,26.384667225677738,0.77,49.131592368039676,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16259,'2019-10-13T18:14:47.509Z',NULL,146,2,126.04727121216614,3.66,209.9202156704033,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16260,'2020-03-11T12:52:18.124Z',NULL,128,1,75.08016314504417,2.18,65.0316865160719,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16261,'2017-06-12T00:39:22.430Z',NULL,182,4,56.326269136507406,1.63,74.78911080476706,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16262,'2017-09-17T05:03:06.924Z',NULL,186,3,65.98466722567774,1.91,92.0713114485607,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16263,'2018-08-01T06:26:01.764Z',NULL,169,5,59.53172693453274,1.73,50.087144758922456,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16264,'2019-02-12T21:57:20.776Z',NULL,150,1,128.55415037577922,3.73,159.455594567278,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16265,'2016-12-24T11:25:18.405Z',NULL,53,2,29.517248267676894,0.86,26.079840339492023,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16266,'2018-01-03T07:55:34.818Z',0.7629305979956134,13,2,112.62925391105566,3.27,135.4773765540629,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16267,'2017-07-16T16:21:56.693Z',NULL,87,3,78.17024226998694,2.27,126.72158013662458,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16268,'2019-02-26T20:17:50.101Z',NULL,162,1,33.56789820016516,0.97,39.99326030062981,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16269,'2020-04-06T16:08:34.715Z',NULL,94,3,109.21864156655383,3.17,97.55902097812599,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16270,'2017-11-08T11:22:47.243Z',NULL,13,3,75.0861692740371,2.18,76.616392745823,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16271,'2019-12-27T07:35:20.539Z',NULL,162,1,33.56789820016516,0.97,20.13245080861652,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16272,'2018-09-15T07:04:09.455Z',NULL,140,2,66.80312547576881,1.94,129.15438314503436,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16273,'2019-02-07T16:54:07.431Z',NULL,70,1,57.493003808959784,1.67,40.557373053081534,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16274,'2019-10-18T09:48:15.343Z',NULL,179,5,68.32408657333919,1.98,117.68359496597903,2169); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16275,'2019-01-15T00:44:09.984Z',NULL,6,1,97.43621265344382,2.83,177.3119626168456,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16276,'2017-09-08T08:28:24.659Z',NULL,15,2,25.09876359271891,0.73,15.720308558172563,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16277,'2017-05-04T07:42:34.464Z',NULL,50,3,35.76013077879841,1.04,56.19172133746056,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16278,'2017-10-29T02:53:16.654Z',NULL,112,4,27.55292434006023,0.8,43.721897935505,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16279,'2019-01-23T22:38:03.855Z',0.7629305979956134,144,1,61.1983004605443,1.77,112.54096257451718,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16280,'2017-09-08T16:43:04.219Z',NULL,89,5,42.47974183693326,1.23,39.6059065697421,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16281,'2017-03-10T17:36:48.730Z',0.7629305979956134,52,1,69.1172482676769,2,32.651726943739796,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16282,'2018-05-21T10:22:08.418Z',NULL,111,2,55.526746186906664,1.61,22.34672444646509,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16283,'2016-11-17T19:27:17.647Z',NULL,156,1,20.41053609936413,0.59,17.927839392420665,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16284,'2019-06-05T11:35:05.808Z',NULL,158,4,139.8942352373801,4.06,88.56634253876466,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16285,'2019-07-20T07:35:48.288Z',0.7629305979956134,85,5,54.90104734428525,1.59,29.803791421394276,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16286,'2018-11-16T19:46:49.676Z',NULL,174,2,111.61430894181083,3.24,134.5265287906212,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16287,'2017-10-01T07:53:23.362Z',NULL,86,2,61.54291113900164,1.78,25.26474424671283,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16288,'2016-06-24T10:21:01.296Z',NULL,114,5,51.94130981241432,1.51,85.1620437824703,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16289,'2017-09-03T09:06:05.432Z',NULL,79,6,27.74461152277315,0.8,36.099320323673886,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16290,'2016-11-04T06:51:46.368Z',NULL,147,3,44.4315141414441,1.29,52.29130062059305,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16291,'2019-10-31T18:24:41.474Z',NULL,40,5,99.66240044231697,2.89,70.58558404176837,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16292,'2018-09-29T14:17:13.970Z',NULL,183,5,56.697412301919755,1.64,77.80683155734734,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16293,'2016-11-21T18:54:19.594Z',NULL,176,3,38.616539622351056,1.12,62.8953191567314,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16294,'2019-06-28T05:17:17.664Z',NULL,187,7,98.9770008385166,2.87,168.4254336364875,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16295,'2019-08-17T03:20:18.458Z',NULL,63,7,133.5202262591817,3.87,51.17203298002579,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16296,'2017-02-16T16:16:47.454Z',6.879673212062433,139,2,51.18512212784679,1.48,34.718781225898574,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16297,'2017-01-12T03:48:28.336Z',NULL,155,2,29.183828734551838,0.85,23.583820770899376,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16298,'2019-05-04T19:18:41.683Z',NULL,160,42,47.59120561297272,1.38,75.37081262338144,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16299,'2018-07-12T16:04:54.326Z',NULL,3,5,53.08311732230858,1.54,30.299456376864107,2170); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16300,'2019-09-02T10:14:44.688Z',NULL,110,6,55.526746186906664,2.22,21.965844529250525,2171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16301,'2017-08-21T02:38:32.472Z',NULL,14,8,25.09876359271891,1,47.92289551877235,2171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16302,'2019-09-22T08:50:34.167Z',NULL,29,5,123.57448218067185,4.94,124.14655739406342,2171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16303,'2020-03-25T10:02:58.982Z',NULL,71,1,82.80381898788684,3.31,45.976484900129044,2171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16304,'2019-03-12T14:38:10.935Z',NULL,193,1,50.38077396807232,2.02,52.6356599938761,2171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16305,'2018-08-25T06:37:59.376Z',NULL,5,7,124.1176465275534,4.96,223.67927962279498,2171); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16306,'2019-11-18T00:25:52.971Z',NULL,124,3,110.93145648834248,5.55,119.48402395952813,2172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16307,'2020-04-18T06:32:29.324Z',NULL,126,3,125.24398120308456,6.26,230.47410878175296,2172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16308,'2019-02-28T14:43:13.156Z',NULL,140,2,66.80312547576881,3.34,126.29596263372832,2172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16309,'2019-04-08T20:55:03.567Z',NULL,84,3,81.87627832636537,4.09,88.8756379486254,2172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16310,'2019-08-19T14:15:22.707Z',NULL,114,7,77.91196471862148,3.9,95.98045491797654,2172); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16311,'2019-02-18T00:54:37.913Z',5.546796623059359,27,2,127.52471180754115,7.97,161.53489040046068,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16312,'2018-05-20T01:18:45.987Z',NULL,165,5,38.30449564120193,2.39,15.131561251804005,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16313,'2018-12-22T02:12:26.594Z',NULL,67,2,41.24480890795779,2.58,48.53944938163854,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16314,'2017-04-03T14:48:03.807Z',NULL,163,3,22.378598800110105,1.4,9.144872957370252,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16315,'2019-07-01T21:00:27.193Z',NULL,48,5,123.20884248534108,7.7,190.88373874272943,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16316,'2018-03-05T18:07:19.492Z',NULL,178,1,117.32963250370614,7.33,66.79906291180484,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16317,'2019-05-25T13:08:52.859Z',NULL,119,5,43.43814329652384,2.71,29.049148728066246,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16318,'2019-06-26T03:38:43.799Z',NULL,159,7,35.53017445377361,2.22,17.57169598874794,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16319,'2018-11-08T08:07:59.121Z',NULL,158,3,139.8942352373801,8.74,136.86313972937734,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16320,'2019-07-04T02:56:39.743Z',NULL,50,5,53.64019616819762,3.35,72.67306704635183,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16321,'2017-12-23T07:48:15.796Z',NULL,117,2,36.683234169385244,2.29,45.44641457639316,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16322,'2019-06-22T03:14:21.229Z',NULL,132,7,127.88197029833711,7.99,225.23966949664262,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16323,'2018-06-18T01:50:14.539Z',NULL,178,5,117.32963250370614,7.33,42.991927910574425,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16324,'2018-12-07T17:22:33.271Z',NULL,130,2,75.02573869315137,4.69,152.55558587037362,2173); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16325,'2018-06-08T18:47:43.027Z',NULL,124,5,110.93145648834248,7.77,106.70600321578466,2174); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16326,'2019-10-26T12:46:25.644Z',NULL,111,5,55.526746186906664,3.89,69.49182629291226,2174); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16327,'2020-02-25T23:49:55.237Z',NULL,167,2,97.70449564120193,6.84,132.76075938229036,2174); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16328,'2019-12-04T11:43:49.656Z',2.4813419675170794,4,2,110.98767151282252,7.77,137.0167776802243,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16329,'2019-10-25T11:18:58.868Z',NULL,157,6,139.8942352373801,9.79,264.22333590390616,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16330,'2020-03-09T20:27:16.453Z',NULL,193,1,50.38077396807232,3.53,31.352693482802568,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16331,'2017-12-11T07:31:03.985Z',NULL,13,2,75.0861692740371,5.26,19.744337154750912,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16332,'2019-03-19T19:27:22.395Z',NULL,133,1,68.4819702983371,4.79,40.38748004050855,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16333,'2019-07-25T08:29:39.126Z',NULL,144,3,61.1983004605443,4.28,73.5767929177539,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16334,'2017-11-08T07:16:49.150Z',NULL,174,3,74.40953929454055,5.21,134.6586989004167,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16335,'2019-10-06T09:17:17.688Z',NULL,100,5,67.83486485383094,4.75,80.10026463746688,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16336,'2019-02-04T01:30:24.615Z',NULL,191,1,128.5841852057933,9,48.16318223422621,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16337,'2018-06-23T22:04:10.748Z',NULL,49,4,131.42865839323724,9.2,272.97845269501397,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16338,'2019-09-03T21:12:01.779Z',NULL,132,4,127.88197029833711,8.95,77.75819051295441,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16339,'2017-05-03T14:07:26.202Z',NULL,5,4,82.7450976850356,5.79,139.16281228721866,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16340,'2018-10-15T05:49:50.512Z',NULL,21,5,60.57501609456816,4.24,111.1955373949959,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16341,'2018-09-16T01:05:47.734Z',NULL,117,4,55.024851254077866,3.85,81.8975497385975,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16342,'2018-11-19T17:30:35.746Z',NULL,50,3,53.64019616819762,3.75,93.58145459565873,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16343,'2018-09-22T00:13:49.988Z',NULL,111,6,55.526746186906664,3.89,56.45530376717076,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16344,'2016-11-19T16:14:04.437Z',NULL,109,3,79.36660712128732,5.56,138.18403083277477,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16345,'2020-03-05T02:59:09.369Z',NULL,40,1,99.66240044231697,6.98,85.2688773738718,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16346,'2018-05-05T16:58:56.425Z',NULL,115,4,77.91196471862148,5.45,96.70430597750519,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16347,'2019-11-09T23:37:35.950Z',NULL,160,3,47.59120561297272,3.33,11.28722066093851,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16348,'2018-12-06T11:42:04.975Z',NULL,190,2,128.5841852057933,9,226.07896920175207,2175); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16349,'2019-06-02T08:12:27.879Z',NULL,178,5,117.32963250370614,7.33,187.3898478280893,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16350,'2017-07-04T16:25:28.373Z',NULL,163,3,22.378598800110105,1.4,25.148461676221036,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16351,'2018-07-20T22:21:48.128Z',NULL,184,4,116.09741230191975,7.26,205.40442253732678,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16352,'2019-08-16T23:14:07.696Z',NULL,121,6,40.44528328808107,2.53,61.0313071483408,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16353,'2019-11-19T20:33:15.012Z',2.4813419675170794,25,3,68.62263967182464,4.29,28.446420875198584,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16354,'2019-09-29T02:57:26.445Z',NULL,62,6,133.5202262591817,8.35,184.38690187622345,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16355,'2019-05-17T19:04:39.333Z',NULL,16,4,66.11029954877317,4.13,111.28484013298524,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16356,'2018-06-16T17:52:45.507Z',NULL,151,4,91.61302306843446,5.73,33.95195087455551,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16357,'2017-12-21T19:42:05.523Z',NULL,189,2,62.18492169821006,3.89,107.25887358099797,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16358,'2018-12-05T17:47:09.557Z',NULL,75,2,125.81276373452337,7.86,194.60131444898911,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16359,'2019-07-21T03:33:40.989Z',NULL,10,3,47.6793282102869,2.98,63.936960427647236,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16360,'2018-10-19T14:36:39.743Z',NULL,128,4,75.08016314504417,4.69,108.52198761818028,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16361,'2019-05-25T03:02:01.967Z',NULL,182,5,84.48940370476112,5.28,132.5386239803355,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16362,'2019-05-18T17:04:28.525Z',NULL,127,5,134.48016314504417,8.41,113.7343363537529,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16363,'2019-11-10T14:36:44.308Z',NULL,198,3,70.14610686710009,4.38,127.86891900833687,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16364,'2019-11-29T21:08:38.555Z',NULL,25,2,68.62263967182464,4.29,59.498573946449405,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16365,'2018-01-15T08:12:56.044Z',NULL,49,1,131.42865839323724,8.21,142.25276853290157,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16366,'2018-11-22T23:36:52.276Z',NULL,67,2,41.24480890795779,2.58,26.473528351179493,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16367,'2017-07-23T20:23:03.422Z',NULL,46,5,78.6996782532274,4.92,100.37378047437622,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16368,'2019-11-27T05:06:17.613Z',NULL,151,2,91.61302306843446,5.73,107.56563578510736,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16369,'2019-11-21T19:46:14.030Z',NULL,42,2,38.00410713690931,2.38,38.925259815737455,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16370,'2019-07-31T16:41:48.076Z',NULL,103,3,47.04215255778118,2.94,59.18847668957211,2178); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16371,'2020-04-03T18:20:48.200Z',NULL,8,2,98.83823503993958,5.93,124.72569777044379,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16372,'2017-02-14T02:42:20.997Z',NULL,38,1,44.04624855892918,2.64,50.152011419301786,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16373,'2019-09-10T23:13:10.596Z',NULL,125,4,80.39699207990944,4.82,35.043671861859075,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16374,'2018-02-08T09:07:30.339Z',NULL,7,1,148.22900526552291,8.89,40.256214510656015,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16375,'2017-07-08T12:02:06.253Z',NULL,61,4,15.691943673970439,0.94,12.11777129827191,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16376,'2019-05-24T12:11:09.893Z',NULL,11,5,132.45679913492563,7.95,263.26883263880154,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16377,'2018-05-21T06:08:30.108Z',NULL,89,5,63.719612755399886,3.82,14.72187530598688,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16378,'2020-02-15T17:46:55.012Z',NULL,74,1,51.12804227386549,3.07,34.67401205667387,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16379,'2019-09-12T18:19:06.213Z',NULL,19,4,64.00675097561322,3.84,56.99569420141629,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16380,'2019-08-13T02:48:50.808Z',NULL,164,5,92.96789820016517,5.58,181.69014057924096,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16381,'2019-11-02T08:35:42.759Z',NULL,97,2,112.41825444654248,6.75,199.83184268261874,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16382,'2019-10-30T03:54:58.599Z',NULL,143,6,61.1983004605443,3.67,37.784101488826614,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16383,'2018-01-07T21:59:57.437Z',NULL,135,2,45.80402317157342,2.75,92.29466697123827,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16384,'2018-03-04T23:54:57.879Z',NULL,45,5,118.0495173798411,7.08,219.18553913597705,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16385,'2018-11-16T14:15:20.279Z',NULL,156,2,30.615804149046195,1.84,25.682566320167403,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16386,'2018-06-27T02:33:00.581Z',NULL,168,7,118.93172693453273,7.14,91.59375029133172,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16387,'2018-09-17T13:20:24.741Z',NULL,76,5,63.82421061366486,3.83,30.366254008080386,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16388,'2019-03-24T18:24:28.834Z',NULL,150,1,128.55415037577922,7.71,74.56150095537978,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16389,'2017-12-13T05:24:24.467Z',NULL,33,2,31.829909130640935,1.91,26.963858999396354,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16390,'2017-04-29T07:53:06.353Z',NULL,56,2,24.24752383956291,1.45,28.269897894284252,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16391,'2019-12-08T01:46:51.832Z',7.017369034679553,188,2,33.87738254731509,2.03,44.087722815675015,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16392,'2020-03-25T22:01:38.002Z',NULL,154,1,81.87529553312261,4.91,72.72614191297339,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16393,'2017-05-14T04:22:42.626Z',NULL,138,4,75.96718984479077,4.56,90.27757307868659,2179); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16394,'2018-05-15T01:44:05.283Z',NULL,52,3,103.67587240151535,5.18,144.22642651533172,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16395,'2019-08-09T15:49:34.573Z',NULL,106,4,52.723521442619514,2.64,56.76805772070369,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16396,'2019-03-01T14:38:48.857Z',NULL,184,1,116.09741230191975,5.8,59.501940504098144,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16397,'2017-10-19T15:58:37.648Z',NULL,172,6,81.57679953529707,4.08,159.53501166679024,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16398,'2018-05-06T03:22:05.861Z',NULL,62,4,133.5202262591817,6.68,51.1432857648831,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16399,'2018-09-03T04:49:02.385Z',NULL,106,3,52.723521442619514,2.64,108.4507151796278,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16400,'2017-04-25T19:02:23.592Z',NULL,111,3,37.01783079127111,1.85,65.51824917661382,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16401,'2017-11-01T23:13:41.055Z',NULL,149,3,46.10276691718616,2.31,60.789198291177534,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16402,'2019-01-01T10:49:04.637Z',NULL,51,2,75.65058751905018,3.78,51.23234800749539,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16403,'2016-07-27T23:57:56.117Z',NULL,175,3,78.21653962235106,3.91,99.76236026656645,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16404,'2017-02-19T16:29:58.912Z',NULL,135,1,30.536015447715613,1.53,50.99961603262375,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16405,'2020-04-08T15:36:03.197Z',NULL,5,3,124.1176465275534,6.21,224.4657977567929,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16406,'2017-05-10T01:51:51.310Z',NULL,41,5,42.33927237126308,2.12,48.61304142483209,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16407,'2019-02-19T12:31:38.081Z',NULL,81,2,43.9329842322118,2.2,51.035870142218,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16408,'2019-08-05T04:32:46.043Z',NULL,47,6,84.0766209826718,4.2,111.20221967616195,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16409,'2017-05-11T23:19:35.473Z',NULL,177,4,85.87953212963993,4.29,35.43494899912729,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16410,'2017-03-07T22:41:52.594Z',NULL,9,1,58.31312098526137,2.92,14.624374840552434,2180); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16411,'2019-01-19T05:21:39.763Z',NULL,65,2,68.22769726470014,4.09,112.90600607125613,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16412,'2019-09-25T12:48:03.025Z',NULL,56,6,36.37128575934436,2.18,24.588612224469127,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16413,'2019-12-27T20:39:49.819Z',NULL,100,2,67.83486485383094,4.07,140.85683533519205,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16414,'2016-12-21T16:51:13.779Z',NULL,21,2,40.38334406304544,2.42,68.71262832662181,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16415,'2017-12-13T08:40:26.381Z',2.517369034679553,158,1,93.26282349158673,5.6,180.2533384149145,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16416,'2018-03-16T16:02:29.173Z',NULL,65,1,68.22769726470014,4.09,64.24828457763259,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16417,'2019-07-30T20:16:00.336Z',NULL,180,4,68.32408657333919,4.1,28.528240701457403,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16418,'2017-01-06T06:18:46.895Z',7.017369034679553,90,2,82.07974183693327,4.92,118.60455586507774,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16419,'2016-10-27T05:48:51.575Z',NULL,74,5,34.08536151591033,2.05,38.525163010553676,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16420,'2019-09-28T07:39:07.513Z',NULL,91,4,65.09432810381134,3.91,102.7306518502135,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16421,'2019-04-02T22:10:05.119Z',NULL,59,3,89.20214751859149,5.35,32.984702245298706,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16422,'2018-06-13T07:34:26.682Z',NULL,84,7,81.87627832636537,4.91,30.24166412696726,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16423,'2017-08-08T02:58:04.476Z',NULL,188,8,22.584921698210056,1.36,20.15243685590928,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16424,'2017-10-09T09:17:30.899Z',NULL,135,7,30.536015447715613,1.83,53.62850420528697,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16425,'2019-01-19T19:59:02.960Z',7.146644785273102,157,2,139.8942352373801,8.39,134.41867016137786,2184); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16426,'2018-10-31T17:49:48.045Z',7.146644785273102,126,3,125.24398120308456,7.51,58.43358758186831,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16427,'2019-03-05T18:39:30.264Z',2.6466447852731023,102,1,47.04215255778118,2.82,31.52769383459817,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16428,'2017-06-07T14:28:28.891Z',NULL,7,6,98.81933684368194,5.93,121.38961969802888,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16429,'2019-06-20T00:17:42.366Z',NULL,46,6,118.0495173798411,7.08,238.80269919415392,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16430,'2017-05-10T03:59:11.888Z',NULL,46,4,78.6996782532274,4.72,44.715349500698174,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16431,'2017-05-29T02:09:29.735Z',NULL,147,4,44.4315141414441,2.67,35.5933827537319,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16432,'2019-03-08T00:49:39.478Z',NULL,14,1,37.648145389078365,2.26,12.36933021509389,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16433,'2017-01-21T19:03:52.903Z',NULL,107,1,33.39659192329691,2,67.29040888273819,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16434,'2017-07-18T21:57:55.043Z',NULL,197,3,46.76407124473339,2.81,29.239153005958663,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16435,'2018-06-23T18:39:38.245Z',NULL,71,4,82.80381898788684,4.97,39.536789321261196,2185); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16436,'2017-10-19T11:09:04.437Z',NULL,101,35,93.21658710786936,4.43,30.852294012844844,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16437,'2017-11-21T14:58:07.431Z',7.146644785273102,163,3,22.378598800110105,1.06,18.621565591665465,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16438,'2018-06-27T14:19:46.371Z',NULL,130,6,75.02573869315137,3.56,43.41846948088811,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16439,'2017-12-17T13:47:56.005Z',2.6466447852731023,145,2,40.7988669736962,1.94,50.780376123219824,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16440,'2019-07-03T23:12:19.485Z',2.6466447852731023,123,4,110.93145648834248,5.27,142.48775793940817,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16441,'2020-01-30T11:39:19.533Z',NULL,199,1,115.4300138092855,5.48,226.33923979484882,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16442,'2019-08-31T22:12:17.369Z',NULL,2,4,105.11984419607644,4.99,69.23398546020128,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16443,'2019-07-28T13:15:06.435Z',NULL,60,3,29.80214751859149,1.42,48.58614926876183,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16444,'2019-08-28T10:49:50.374Z',NULL,85,4,54.90104734428525,2.61,84.30945840582781,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16445,'2016-10-30T03:36:20.312Z',NULL,110,3,37.01783079127111,1.76,11.585279338586078,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16446,'2018-11-23T10:22:38.147Z',NULL,71,3,82.80381898788684,3.93,152.23883582475716,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16447,'2019-12-03T21:59:41.832Z',NULL,150,2,128.55415037577922,6.11,37.313088103073724,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16448,'2017-12-20T09:25:48.856Z',NULL,42,1,25.336071424606207,1.2,24.160895199534796,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16449,'2018-07-16T01:42:51.142Z',NULL,65,4,68.22769726470014,3.24,99.90039228527647,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16450,'2019-03-30T07:35:38.025Z',NULL,179,1,68.32408657333919,3.25,26.52037182134882,2186); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16451,'2018-06-18T18:08:51.194Z',NULL,85,5,54.90104734428525,0,67.03477338324421,2187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16452,'2017-10-03T10:20:50.770Z',1.829410174907115,190,4,85.72279013719552,0,42.352657016594804,2187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16453,'2016-08-05T05:57:29.755Z',NULL,113,6,73.65150250790677,0,23.04003028402943,2187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16454,'2017-09-01T10:20:10.536Z',NULL,53,4,29.517248267676894,0,28.29934259165622,2187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16455,'2017-04-30T17:16:07.368Z',NULL,65,3,45.4851315098001,0,74.92465893197645,2187); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16456,'2019-05-07T18:23:50.049Z',NULL,191,3,128.5841852057933,7.72,233.1040503284795,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16457,'2017-09-11T19:03:41.530Z',NULL,163,4,22.378598800110105,1.34,27.863145272760413,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16458,'2018-03-25T22:36:57.417Z',NULL,189,1,93.27738254731509,5.6,24.797510909233957,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16459,'2019-11-25T10:48:40.501Z',NULL,162,2,33.56789820016516,2.01,11.124713759438047,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16460,'2018-08-27T02:04:05.676Z',NULL,183,7,56.697412301919755,3.4,29.922673768830535,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16461,'2018-07-28T03:19:25.608Z',NULL,90,4,123.1196127553999,7.39,147.29114492709425,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16462,'2019-08-11T05:35:17.630Z',1.829410174907115,143,6,61.1983004605443,3.67,122.36890703757827,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16463,'2018-07-29T16:51:11.632Z',NULL,141,5,126.20312547576883,7.57,185.82222672218435,2188); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16464,'2018-05-28T01:47:33.886Z',NULL,114,5,77.91196471862148,4.87,128.44001215229082,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16465,'2017-07-27T04:44:33.229Z',NULL,45,5,78.6996782532274,4.92,132.66905933640143,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16466,'2018-09-18T21:53:56.357Z',1.829410174907115,95,5,49.81864156655383,3.11,91.97897254635286,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16467,'2019-08-25T11:04:33.934Z',NULL,65,6,68.22769726470014,4.26,64.73212071732678,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16468,'2019-10-15T07:08:58.705Z',NULL,2,3,105.11984419607644,6.57,213.6224889891866,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16469,'2017-11-25T09:17:55.751Z',6.329410174907115,129,2,98.7781981443958,6.17,114.20504046573627,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16470,'2018-11-03T23:00:59.370Z',NULL,56,2,36.37128575934436,2.27,55.58453601066645,2190); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16471,'2019-08-08T03:03:44.470Z',NULL,73,4,71.6287722595695,3.4,142.44390073760994,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16472,'2017-12-28T12:28:34.908Z',NULL,192,1,46.122790137195516,2.19,74.62141205436644,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16473,'2020-04-09T02:44:31.398Z',NULL,187,2,98.9770008385166,4.7,83.60112654840013,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16474,'2019-06-09T01:07:47.808Z',NULL,54,7,62.09360840402396,2.95,91.23041174168925,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16475,'2018-02-18T17:46:17.839Z',NULL,38,2,66.06937283839378,3.14,53.887111602195496,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16476,'2019-06-07T13:29:29.872Z',NULL,128,5,75.08016314504417,3.57,36.885749930069466,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16477,'2018-08-06T14:36:18.853Z',NULL,189,6,93.27738254731509,4.43,105.35823808797433,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16478,'2020-02-26T21:20:30.657Z',NULL,161,2,47.59120561297272,2.26,87.14992019728261,2191); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16479,'2020-01-20T02:38:55.389Z',NULL,168,2,118.93172693453273,0,199.32692805954412,2192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16480,'2017-08-11T20:32:35.878Z',NULL,182,7,56.326269136507406,0,105.7467224813569,2192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16481,'2020-04-02T02:02:19.970Z',NULL,6,3,97.43621265344382,0,111.8760165262403,2192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16482,'2017-11-27T17:29:51.240Z',NULL,50,3,35.76013077879841,0,64.57012390468259,2192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16483,'2019-08-25T06:48:27.736Z',NULL,3,5,53.08311732230858,0,55.182408138689695,2192); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16484,'2017-06-16T03:20:21.483Z',NULL,146,7,84.03151414144409,5.78,43.664078521403574,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16485,'2017-08-06T07:39:30.708Z',NULL,164,7,61.978598800110106,4.26,81.84943388000077,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16486,'2018-04-24T11:14:18.096Z',NULL,85,2,54.90104734428525,3.77,71.53556874100197,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16487,'2019-01-23T16:40:24.121Z',NULL,11,2,132.45679913492563,9.11,257.44490524502595,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16488,'2018-12-20T11:07:29.907Z',NULL,158,2,139.8942352373801,9.62,102.95057707805589,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16489,'2020-01-13T21:33:14.529Z',NULL,105,2,52.723521442619514,3.62,26.442786315675836,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16490,'2019-10-31T20:04:18.826Z',NULL,85,6,54.90104734428525,3.77,79.73481069002307,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16491,'2020-03-21T20:31:37.845Z',NULL,77,1,101.01691728415972,6.94,77.86033275181947,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16492,'2019-03-11T22:05:17.325Z',NULL,85,1,54.90104734428525,3.77,28.476939811986433,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16493,'2018-11-14T23:24:28.653Z',NULL,16,3,66.11029954877317,4.55,16.202164883988,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16494,'2019-05-06T12:07:36.000Z',NULL,149,3,69.15415037577924,4.75,46.89854054359912,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16495,'2017-10-12T01:23:55.986Z',NULL,93,6,33.212427711035886,2.28,69.50401609509748,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16496,'2019-03-24T21:24:16.702Z',NULL,19,1,64.00675097561322,4.4,37.57750472213211,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16497,'2019-06-23T02:29:49.980Z',NULL,195,5,109.78077396807234,7.55,33.851403144605634,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16498,'2017-08-09T14:16:16.204Z',NULL,51,7,50.433725012700116,3.47,66.98574900431365,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16499,'2018-01-14T06:53:04.620Z',NULL,125,3,80.39699207990944,5.53,77.63191664525891,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16500,'2017-04-02T14:19:11.363Z',NULL,185,4,26.384667225677738,1.81,45.28472228231305,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16501,'2018-03-01T04:16:14.758Z',4.037422661821907,52,1,103.67587240151535,7.13,102.74704137497982,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16502,'2018-02-12T18:07:57.366Z',NULL,38,1,66.06937283839378,4.54,84.44387265343524,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16503,'2020-03-03T02:25:11.705Z',NULL,141,1,126.20312547576883,8.68,128.99849314581618,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16504,'2018-05-27T12:16:03.003Z',NULL,187,5,98.9770008385166,6.8,132.96225472072098,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16505,'2020-01-26T16:09:50.167Z',NULL,141,2,126.20312547576883,8.68,171.07471925394566,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16506,'2019-06-30T21:29:26.887Z',NULL,194,7,50.38077396807232,3.46,63.31703598620982,2194); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16507,'2020-01-04T19:50:10.217Z',NULL,85,2,54.90104734428525,3.29,15.335314433154274,2197); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16508,'2017-05-20T20:48:39.684Z',NULL,185,4,26.384667225677738,1.58,54.6595837968916,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16509,'2019-11-05T19:54:46.949Z',NULL,37,3,80.10774204020768,4.81,26.607222271521692,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16510,'2020-02-13T01:04:43.134Z',NULL,150,2,128.55415037577922,7.71,221.25880285959283,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16511,'2016-11-11T18:53:07.132Z',NULL,15,4,25.09876359271891,1.51,14.928221343867328,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16512,'2019-12-28T09:14:26.160Z',NULL,62,3,133.5202262591817,8.01,34.287599661312505,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16513,'2017-06-08T21:50:21.403Z',NULL,6,6,64.95747510229587,3.9,71.79400280022006,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16514,'2019-12-08T13:41:46.312Z',NULL,50,1,53.64019616819762,3.22,110.7576392316317,2199); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16515,'2019-06-01T01:38:25.296Z',NULL,109,5,119.04991068193098,5.12,205.13255276780555,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16516,'2019-09-19T15:37:50.476Z',NULL,77,5,101.01691728415972,4.34,203.4878229148513,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16517,'2019-11-08T00:10:19.700Z',NULL,72,3,142.20381898788685,6.11,257.75435338815936,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16518,'2020-03-10T11:45:20.127Z',NULL,25,1,68.62263967182464,2.95,137.0423926641998,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16519,'2017-10-29T20:03:46.011Z',NULL,163,7,22.378598800110105,0.96,43.535202711324274,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16520,'2017-10-07T14:24:41.687Z',NULL,134,6,28.328223666657742,1.22,37.92388458698576,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16521,'2018-05-15T04:14:09.604Z',NULL,132,4,127.88197029833711,5.5,141.9709942185674,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16522,'2020-03-03T19:15:11.418Z',NULL,1,1,44.19489169601981,1.9,65.27035041183854,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16523,'2019-09-04T17:00:36.203Z',NULL,107,5,50.094887884945365,2.15,20.255889454628417,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16524,'2018-08-27T00:13:58.604Z',NULL,193,7,50.38077396807232,2.17,17.17586624192835,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16525,'2018-08-22T10:59:34.280Z',NULL,90,5,123.1196127553999,5.29,238.52628296453244,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16526,'2019-10-05T06:16:46.784Z',8.186576995656234,153,4,66.79892314178237,2.87,47.63317556780224,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16527,'2018-10-11T02:16:26.149Z',NULL,14,6,37.648145389078365,1.62,25.88570074148756,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16528,'2018-05-16T11:45:49.569Z',NULL,125,4,80.39699207990944,3.46,79.62282841866231,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16529,'2019-10-25T21:36:23.824Z',NULL,49,4,131.42865839323724,5.65,194.7787857771805,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16530,'2019-03-01T17:44:59.957Z',NULL,17,1,79.93608046792765,3.44,85.88965976761843,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16531,'2018-12-12T02:15:32.417Z',NULL,118,2,57.627613096978735,2.48,64.98055186175668,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16532,'2018-06-21T03:56:31.711Z',NULL,106,8,52.723521442619514,2.27,102.60371022240166,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16533,'2019-04-12T17:23:50.484Z',NULL,72,3,142.20381898788685,6.11,268.21138551818797,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16534,'2020-02-29T22:25:35.842Z',8.186576995656234,103,2,47.04215255778118,2.02,78.87977208145794,2200); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16535,'2019-07-29T20:06:51.328Z',NULL,89,6,63.719612755399886,4.46,38.96232758086362,2201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16536,'2019-01-09T23:04:36.087Z',NULL,65,2,68.22769726470014,4.78,134.36470673185883,2201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16537,'2017-09-02T16:39:44.285Z',NULL,152,4,32.59712486600442,2.28,59.58175054399367,2201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16538,'2019-10-21T22:40:22.489Z',NULL,2,6,105.11984419607644,7.36,186.32830301611747,2201); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16539,'2017-03-03T08:16:01.313Z',NULL,13,1,75.0861692740371,3,86.35951626068058,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16540,'2020-04-05T18:09:31.545Z',NULL,129,3,148.1672972165937,5.93,151.65399141536724,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16541,'2018-07-26T23:40:09.277Z',NULL,61,5,23.537915510955656,0.94,26.907969449064456,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16542,'2018-03-07T18:04:24.690Z',3.6865769956562335,10,1,47.6793282102869,1.91,44.90393100950446,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16543,'2018-12-31T17:31:33.578Z',NULL,92,3,124.89242686579996,5,219.6069802784051,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16544,'2017-11-24T20:38:01.898Z',NULL,16,4,44.07353303251545,1.76,82.40720446763552,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16545,'2019-03-05T12:37:01.328Z',NULL,104,1,106.44215255778118,4.26,207.442758091471,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16546,'2019-12-04T12:23:14.605Z',4.974560229080472,74,2,51.12804227386549,2.05,71.84614535432027,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16547,'2019-01-17T14:03:07.409Z',NULL,86,2,92.31436670850246,3.69,72.30548205911761,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16548,'2020-01-29T03:41:41.136Z',NULL,177,2,128.8192981944599,5.15,56.13875584476145,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16549,'2020-04-07T04:17:59.018Z',NULL,124,4,110.93145648834248,4.44,206.85959887707386,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16550,'2019-05-19T06:19:55.249Z',NULL,107,5,50.094887884945365,2,23.593598524387833,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16551,'2016-07-08T12:50:37.524Z',NULL,45,7,78.6996782532274,3.15,21.34922717639315,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16552,'2018-12-23T11:20:27.498Z',NULL,156,2,30.615804149046195,1.22,8.1862096292467,2203); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16553,'2017-08-30T03:42:56.498Z',NULL,159,6,23.686782969182406,1.48,22.21860813216248,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16554,'2016-06-01T19:35:23.787Z',NULL,84,6,54.58418555091025,3.41,67.3406193606894,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16555,'2017-06-05T04:17:23.320Z',NULL,55,7,63.84752383956291,3.99,131.87825494520808,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16556,'2017-02-24T11:01:53.478Z',NULL,63,2,89.0134841727878,5.56,29.93086711787153,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16557,'2019-05-09T03:56:45.024Z',NULL,172,5,122.3651993029456,7.65,217.39308469312027,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16558,'2019-06-28T08:40:32.295Z',NULL,63,6,133.5202262591817,8.35,245.16533756376253,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16559,'2017-07-03T03:33:54.815Z',NULL,44,58,50.90170136783837,3.18,17.557335265694483,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16560,'2018-09-01T07:54:29.007Z',NULL,155,72,43.77574310182776,2.74,80.11972590769237,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16561,'2018-02-16T11:09:27.492Z',NULL,13,2,112.62925391105566,7.04,39.04527255169797,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16562,'2017-05-20T06:35:52.891Z',NULL,156,5,20.41053609936413,1.28,16.995888823408883,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16563,'2018-10-08T21:28:36.171Z',NULL,80,7,54.91325681036414,3.43,106.04892149541409,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16564,'2018-12-15T11:14:22.649Z',NULL,94,2,109.21864156655383,6.83,170.35880053033534,2204); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16565,'2018-07-10T01:49:47.726Z',NULL,161,6,47.59120561297272,3.27,68.99235920563902,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16566,'2018-09-03T21:15:41.685Z',NULL,13,58,112.62925391105566,7.74,167.16589581566012,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16567,'2017-10-13T22:46:25.231Z',NULL,136,7,70.13601544771562,4.82,115.6509993849791,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16568,'2018-05-15T08:07:49.342Z',NULL,101,5,139.82488066180403,9.61,37.28078892260822,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16569,'2019-06-29T09:21:21.512Z',NULL,66,9,136.16126271106958,9.36,163.82326717194505,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16570,'2019-07-30T12:10:11.621Z',NULL,163,6,33.56789820016516,2.31,57.5259240954661,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16571,'2019-05-09T16:43:36.363Z',NULL,37,5,80.10774204020768,5.51,28.835042542423498,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16572,'2019-01-25T06:27:43.157Z',9.474560229080472,116,2,114.42485125407785,7.87,187.1762208919832,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16573,'2019-09-11T19:39:53.363Z',NULL,116,6,114.42485125407785,7.87,172.58456453342686,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16574,'2019-02-13T01:55:42.278Z',NULL,21,2,60.57501609456816,4.16,62.93059355954125,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16575,'2019-08-25T03:40:00.885Z',NULL,108,6,50.094887884945365,3.44,103.52947058489387,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16576,'2019-05-16T18:05:25.612Z',NULL,6,5,97.43621265344382,6.7,170.94514285870173,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16577,'2019-09-24T03:22:14.425Z',NULL,36,6,130.93687730741433,9,185.62839526031715,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16578,'2018-12-18T01:15:24.217Z',NULL,43,2,76.35255205175756,5.25,128.36849859026017,2205); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16579,'2018-03-28T11:50:51.667Z',NULL,113,1,110.47725376186015,6.08,107.70119739304788,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16580,'2019-11-13T23:02:16.001Z',NULL,122,2,99.84528328808108,5.49,59.23347301022162,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16581,'2019-12-25T11:12:06.163Z',NULL,57,2,122.4223933583994,6.73,152.64517758406734,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16582,'2017-12-26T03:47:33.109Z',NULL,60,2,19.86809834572766,1.09,26.70198555855097,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16583,'2019-10-14T12:05:08.810Z',NULL,31,5,105.65346467128523,5.81,204.4420654988299,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16584,'2016-10-22T18:20:49.527Z',NULL,188,5,22.584921698210056,1.24,25.404325449918854,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16585,'2019-06-08T05:44:32.969Z',NULL,147,5,66.64727121216615,3.67,117.73083636367015,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16586,'2017-04-18T19:13:40.071Z',NULL,163,2,22.378598800110105,1.23,8.62038126403022,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16587,'2017-07-27T18:50:31.476Z',NULL,76,4,42.54947374244324,2.34,53.11329837764763,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16588,'2017-03-21T22:00:23.718Z',4.4464452468570625,64,1,95.61478497145774,5.26,88.99517217390687,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16589,'2020-02-20T10:45:51.995Z',NULL,87,1,117.25536340498041,6.45,120.51674555153181,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16590,'2017-08-13T13:49:59.905Z',NULL,101,6,93.21658710786936,5.13,178.1554805840567,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16591,'2019-10-12T20:18:56.535Z',NULL,186,5,98.9770008385166,5.44,112.60806779203074,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16592,'2019-01-17T13:06:26.183Z',NULL,175,2,117.3248094335266,6.45,242.00838626527283,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16593,'2019-06-02T02:19:26.077Z',NULL,3,5,53.08311732230858,2.92,77.07508002967482,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16594,'2016-10-30T04:20:44.878Z',NULL,94,5,72.81242771103588,4,146.26818331325535,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16595,'2018-10-15T20:28:10.388Z',NULL,166,5,38.30449564120193,2.11,51.152245112241715,2207); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16596,'2019-07-16T13:04:01.943Z',4.1556160931294785,14,4,37.648145389078365,2.45,31.99216240069214,2208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16597,'2018-05-16T08:55:26.328Z',NULL,121,4,40.44528328808107,2.63,34.22083980664958,2208); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16598,'2017-07-12T20:25:30.145Z',NULL,158,4,93.26282349158673,6.06,151.0942343907585,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16599,'2018-02-06T12:31:08.140Z',NULL,44,1,76.35255205175756,4.96,103.2876301478607,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16600,'2016-09-29T03:38:01.855Z',NULL,74,4,34.08536151591033,2.22,64.89033652708352,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16601,'2018-01-20T03:17:15.313Z',NULL,186,2,98.9770008385166,6.43,46.88139860220158,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16602,'2018-10-29T04:44:05.430Z',NULL,107,5,50.094887884945365,3.26,94.86492001656131,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16603,'2019-06-24T04:05:58.571Z',NULL,72,5,142.20381898788685,9.24,204.86933921199906,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16604,'2017-06-25T21:57:58.788Z',4.1556160931294785,173,5,81.57679953529707,5.3,144.15227168000965,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16605,'2019-09-23T08:27:23.903Z',NULL,87,4,117.25536340498041,7.62,209.27439058883175,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16606,'2017-02-15T07:48:22.361Z',4.4464452468570625,141,1,84.13541698384589,5.47,73.22502107673094,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16607,'2019-10-13T02:54:59.961Z',NULL,96,5,104.82144858590365,6.81,80.43462743200631,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16608,'2017-10-02T17:21:59.943Z',NULL,127,5,89.65344209669612,5.83,145.8989747422214,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16609,'2019-11-07T21:46:29.128Z',NULL,83,3,81.87627832636537,5.32,64.57416357161425,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16610,'2016-09-04T16:48:04.059Z',NULL,69,4,48.925148695737505,3.18,28.11393336604321,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16611,'2018-02-14T10:25:30.635Z',NULL,109,1,119.04991068193098,7.74,99.63412550577331,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16612,'2019-03-17T14:55:56.204Z',NULL,49,1,131.42865839323724,8.54,55.80500956974825,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16613,'2018-09-10T20:14:51.741Z',NULL,164,4,92.96789820016517,6.04,189.52266857709975,2210); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16614,'2018-02-17T19:17:31.531Z',4.5831456826332175,110,1,55.526746186906664,1.61,14.720166172365573,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16615,'2019-11-05T06:58:23.877Z',NULL,86,3,92.31436670850246,2.68,181.1358689318921,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16616,'2017-01-25T04:52:20.290Z',9.083145682633218,98,3,74.94550296436165,2.17,38.9628015886242,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16617,'2016-08-06T22:21:17.261Z',9.083145682633218,155,8,29.183828734551838,0.85,53.704956508054956,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16618,'2018-08-09T16:59:21.059Z',NULL,103,6,47.04215255778118,1.36,60.71869829956141,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16619,'2018-12-20T08:37:59.455Z',NULL,34,2,74.30391386913199,2.15,94.59678993164518,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16620,'2016-12-07T22:57:58.496Z',NULL,33,2,31.829909130640935,0.92,9.533854585809877,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16621,'2018-02-17T23:40:27.295Z',NULL,48,2,123.20884248534108,3.57,55.587480573836636,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16622,'2019-09-28T15:33:27.474Z',NULL,165,6,38.30449564120193,1.11,14.131482076206675,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16623,'2016-10-30T13:51:04.456Z',NULL,40,6,66.44160029487797,1.93,29.77632188154792,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16624,'2017-04-10T12:15:34.939Z',4.5831456826332175,181,4,95.92626913650741,2.78,81.64791292050909,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16625,'2017-04-18T12:22:18.998Z',NULL,183,4,37.7982748679465,1.1,10.461543831058922,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16626,'2019-10-21T22:11:28.710Z',NULL,191,6,128.5841852057933,3.73,175.48425500063072,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16627,'2017-06-27T13:28:41.593Z',NULL,92,7,83.2616179105333,2.41,69.88528883274063,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16628,'2019-09-25T01:05:26.482Z',NULL,143,7,61.1983004605443,1.77,35.52628176322057,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16629,'2016-08-17T00:46:19.187Z',NULL,94,8,72.81242771103588,2.11,40.02783281663793,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16630,'2016-11-18T10:49:22.904Z',NULL,47,3,56.05108065511453,1.63,26.455612192407425,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16631,'2018-05-22T07:36:24.726Z',NULL,126,5,125.24398120308456,3.63,135.2485120657577,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16632,'2017-09-17T04:28:35.208Z',NULL,68,4,76.82895921539838,2.23,130.79617348781213,2212); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16633,'2019-09-09T06:46:29.498Z',NULL,119,4,43.43814329652384,2.61,36.97784951422182,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16634,'2016-07-30T08:39:41.480Z',NULL,21,4,40.38334406304544,2.42,65.47703539231046,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16635,'2019-02-27T04:10:07.188Z',NULL,58,1,78.14578007078882,4.69,153.84730181691725,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16636,'2019-03-11T12:40:54.555Z',NULL,58,1,78.14578007078882,4.69,21.70350936576144,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16637,'2019-08-26T08:06:45.773Z',NULL,116,8,114.42485125407785,6.87,55.81617318184336,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16638,'2019-03-21T19:55:52.351Z',9.083145682633218,77,1,101.01691728415972,6.06,31.927411390152862,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16639,'2018-07-20T01:01:02.179Z',NULL,162,6,33.56789820016516,2.01,14.75617738398371,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16640,'2018-03-24T06:22:44.334Z',NULL,29,1,123.57448218067185,7.41,165.18397310954745,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16641,'2019-04-13T01:24:11.966Z',NULL,130,3,75.02573869315137,4.5,139.41143472278702,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16642,'2018-04-08T10:30:35.633Z',NULL,184,4,116.09741230191975,6.97,88.03502857314813,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16643,'2017-01-08T22:29:22.736Z',NULL,42,3,25.336071424606207,1.52,18.469985922131055,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16644,'2017-01-11T06:01:44.911Z',9.083145682633218,127,2,89.65344209669612,5.38,84.80328758662444,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16645,'2019-05-28T11:52:50.748Z',NULL,83,5,81.87627832636537,4.91,41.1751579061262,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16646,'2018-04-28T07:48:22.666Z',NULL,195,3,109.78077396807234,6.59,155.07637344680165,2213); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16647,'2019-10-29T22:15:34.627Z',NULL,190,5,128.5841852057933,5.14,114.57146470950762,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16648,'2019-12-08T19:25:14.132Z',NULL,188,2,33.87738254731509,1.36,17.05928473625194,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16649,'2019-05-11T00:21:58.876Z',NULL,37,4,80.10774204020768,3.2,144.17760580289115,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16650,'2020-02-21T18:20:22.386Z',NULL,104,2,106.44215255778118,4.26,195.94120670025336,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16651,'2017-12-25T01:08:58.276Z',NULL,56,2,24.24752383956291,0.97,18.608493790856226,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16652,'2018-07-21T12:26:03.808Z',NULL,130,5,75.02573869315137,3,128.54872361222132,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16653,'2016-05-10T09:38:58.385Z',NULL,80,3,36.60883787357609,1.46,50.040055061908916,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16654,'2018-05-31T18:25:07.344Z',NULL,114,3,77.91196471862148,3.12,136.5432623061704,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16655,'2018-06-12T05:53:06.415Z',NULL,157,4,139.8942352373801,5.6,138.07751388531125,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16656,'2019-08-08T10:34:42.278Z',NULL,19,5,64.00675097561322,2.56,105.14942935099587,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16657,'2018-05-21T12:12:08.244Z',NULL,158,4,139.8942352373801,5.6,44.00575584562472,2214); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16658,'2017-03-17T16:54:50.876Z',NULL,112,1,27.55292434006023,1.65,49.24071181166664,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16659,'2017-08-24T05:11:03.859Z',NULL,73,7,47.752514839713,2.87,21.578348437592986,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16660,'2019-03-31T09:08:38.806Z',NULL,199,1,115.4300138092855,6.93,115.5631323755119,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16661,'2018-01-09T10:57:58.929Z',3.1459144901509672,139,2,76.77768319177018,4.61,121.18546580320003,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16662,'2019-06-04T17:42:29.554Z',NULL,92,6,124.89242686579996,7.49,49.69415462604969,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16663,'2019-04-18T03:05:59.490Z',NULL,127,2,134.48016314504417,8.07,208.6104687494951,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16664,'2018-08-23T00:05:03.957Z',NULL,180,7,68.32408657333919,4.1,34.730051385191835,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16665,'2020-01-18T01:08:01.500Z',7.645914490150967,51,2,75.65058751905018,4.54,39.15026170361305,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16666,'2020-04-10T06:19:28.307Z',NULL,145,2,61.1983004605443,3.67,72.36843677976805,2216); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16667,'2019-01-20T16:12:53.140Z',NULL,123,2,110.93145648834248,5.55,192.15249151285087,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16668,'2016-09-05T15:53:46.530Z',NULL,73,5,47.752514839713,2.39,38.05206492303956,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16669,'2017-03-31T03:27:31.116Z',NULL,123,1,73.95430432556165,3.7,94.42363778936583,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16670,'2016-12-14T05:46:20.061Z',NULL,56,2,24.24752383956291,1.21,7.9700085622987205,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16671,'2016-10-28T20:17:55.063Z',NULL,102,7,31.361435038520785,1.57,59.42648506705881,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16672,'2019-04-09T00:00:42.889Z',NULL,64,4,143.4221774571866,7.17,164.4853283946515,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16673,'2018-03-03T23:42:56.946Z',NULL,194,1,50.38077396807232,2.52,82.91383784875896,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16674,'2019-01-25T08:47:15.534Z',NULL,134,1,42.49233549998661,2.12,81.10521404677755,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16675,'2017-09-14T19:08:10.020Z',NULL,119,3,28.95876219768256,1.45,54.58264754779213,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16676,'2018-02-27T07:38:54.313Z',NULL,87,2,117.25536340498041,5.86,217.9192846568076,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16677,'2019-09-07T10:46:11.427Z',NULL,114,5,77.91196471862148,3.9,143.73988817820657,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16678,'2019-08-05T13:51:04.822Z',NULL,149,5,69.15415037577924,3.46,125.07257937827484,2217); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16679,'2018-11-25T16:22:50.866Z',NULL,129,2,148.1672972165937,10.37,240.3664461927435,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16680,'2018-01-22T21:27:53.982Z',NULL,7,2,148.22900526552291,10.38,131.39653072186684,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16681,'2017-04-20T21:29:43.088Z',NULL,42,3,25.336071424606207,1.77,36.30472153462922,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16682,'2018-01-19T05:04:07.968Z',NULL,85,1,54.90104734428525,3.84,96.35627745341507,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16683,'2018-07-21T17:21:34.551Z',3.3246014082401003,102,5,47.04215255778118,3.29,92.96038524126124,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16684,'2018-12-02T07:09:02.108Z',NULL,66,19,136.16126271106958,9.53,124.25518906037858,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16685,'2019-02-07T02:15:58.385Z',NULL,181,2,143.88940370476112,10.07,269.7357734889749,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16686,'2017-12-13T02:42:10.564Z',NULL,29,2,82.3829881204479,5.77,106.29660166663878,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16687,'2018-12-09T23:34:56.001Z',NULL,169,2,59.53172693453274,4.17,38.34765230539214,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16688,'2019-11-13T19:14:42.034Z',NULL,190,2,128.5841852057933,9,240.01370097625426,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16689,'2019-12-22T12:36:02.910Z',NULL,113,1,110.47725376186015,7.73,96.50407826061466,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16690,'2019-12-08T09:27:06.936Z',NULL,100,1,67.83486485383094,4.75,51.110845703638404,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16691,'2019-01-26T10:18:30.980Z',NULL,59,2,89.20214751859149,6.24,139.45398947890894,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16692,'2020-03-25T10:30:43.427Z',NULL,180,1,68.32408657333919,4.78,85.09960050472806,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16693,'2018-08-29T23:08:01.726Z',NULL,48,7,123.20884248534108,8.62,198.58062683920787,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16694,'2018-12-08T05:13:50.417Z',NULL,62,2,133.5202262591817,9.35,210.88693680259985,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16695,'2019-03-02T06:32:19.580Z',NULL,87,1,117.25536340498041,8.21,216.19815342310693,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16696,'2019-05-07T15:16:37.325Z',NULL,167,5,97.70449564120193,6.84,93.88264856223833,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16697,'2020-02-10T01:03:39.144Z',NULL,157,2,139.8942352373801,9.79,177.19927239750118,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16698,'2020-02-28T20:18:38.571Z',NULL,23,1,116.86672609493307,8.18,116.57905152119811,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16699,'2017-05-18T10:00:16.399Z',NULL,196,4,46.76407124473339,3.27,13.470465028739993,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16700,'2020-02-10T01:58:16.183Z',NULL,106,2,52.723521442619514,3.69,59.02641351840101,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16701,'2017-11-05T10:36:17.966Z',NULL,37,3,53.40516136013846,3.74,99.64393945317852,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16702,'2020-01-26T02:18:51.636Z',NULL,199,2,115.4300138092855,8.08,203.01894167919033,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16703,'2017-06-22T07:09:22.221Z',NULL,159,6,23.686782969182406,1.66,44.742547568948545,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16704,'2017-05-01T17:28:45.239Z',NULL,138,4,75.96718984479077,5.32,83.8086379438063,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16705,'2018-03-28T02:15:29.442Z',NULL,114,1,77.91196471862148,5.45,89.9515348775176,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16706,'2018-05-09T03:02:21.381Z',NULL,69,4,73.38772304360626,5.14,79.7528011501937,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16707,'2017-10-03T08:54:19.181Z',NULL,187,5,65.98466722567774,4.62,18.93303913044934,2218); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16708,'2017-12-04T15:02:05.807Z',NULL,157,2,93.26282349158673,3.73,127.64378852146858,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16709,'2019-07-02T18:06:57.902Z',NULL,75,6,125.81276373452337,5.03,202.16082932828462,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16710,'2016-12-30T07:02:01.457Z',NULL,184,2,77.3982748679465,3.1,50.05242150733799,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16711,'2017-07-27T05:26:54.573Z',NULL,12,3,77.34285054412217,3.09,131.8380782424365,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16712,'2019-05-25T12:49:45.541Z',3.3246014082401003,82,3,60.89545738030947,2.44,85.40607244058762,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16713,'2019-11-04T00:51:29.687Z',NULL,37,3,80.10774204020768,3.2,77.7833007702788,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16714,'2020-03-08T14:18:44.119Z',NULL,110,1,55.526746186906664,2.22,106.50054110941558,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16715,'2019-07-04T06:23:12.235Z',NULL,19,6,64.00675097561322,2.56,67.03444854271024,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16716,'2017-04-29T06:33:47.983Z',NULL,108,3,33.39659192329691,1.34,55.625052151134945,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16717,'2016-12-20T16:08:05.251Z',NULL,110,1,37.01783079127111,1.48,25.30075191988243,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16718,'2017-08-28T05:40:22.121Z',NULL,4,7,73.99178100854834,2.96,34.12876606900873,2219); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16719,'2020-02-27T05:17:31.086Z',NULL,35,2,71.53687730741436,5.01,103.81071532634964,2220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16720,'2020-03-15T18:30:38.021Z',NULL,10,1,47.6793282102869,3.34,78.04762643214802,2220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16721,'2016-08-23T17:44:07.659Z',NULL,140,8,44.53541698384588,3.12,9.776543886000159,2220); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16722,'2018-12-21T15:10:24.839Z',NULL,127,2,134.48016314504417,9.41,71.58639371643731,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16723,'2017-12-15T14:40:50.836Z',NULL,87,2,78.17024226998694,5.47,91.339513285753,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16724,'2019-05-01T12:58:01.162Z',NULL,26,4,68.12471180754113,4.77,94.75670746662585,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16725,'2020-04-10T01:04:44.589Z',6.93954092646255,181,3,143.88940370476112,10.07,172.68431538627536,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16726,'2019-04-09T17:08:56.361Z',NULL,90,3,123.1196127553999,8.62,33.06589033018905,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16727,'2020-04-08T09:33:04.386Z',NULL,169,3,59.53172693453274,4.17,78.39723275499482,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16728,'2018-07-08T06:40:26.967Z',2.4395409264625503,103,4,47.04215255778118,3.29,48.76450997835608,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16729,'2017-12-21T12:23:38.483Z',NULL,52,1,69.1172482676769,4.84,34.46713437910929,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16730,'2018-11-20T15:31:26.288Z',NULL,186,2,98.9770008385166,6.93,125.43963921688966,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16731,'2019-04-25T18:04:48.065Z',NULL,7,2,148.22900526552291,10.38,64.76968690403967,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16732,'2018-02-08T04:34:56.809Z',2.4395409264625503,89,1,63.719612755399886,4.46,109.87488948755941,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16733,'2019-01-08T18:29:34.041Z',NULL,168,2,118.93172693453273,8.33,231.4396747763948,2222); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16734,'2019-03-17T05:28:43.489Z',NULL,113,1,110.47725376186015,6.9,77.93225757960184,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16735,'2019-04-11T11:49:22.653Z',NULL,152,3,48.89568729900663,3.06,13.611592718060576,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16736,'2018-02-18T02:49:16.560Z',NULL,30,1,64.17448218067184,4.01,40.47014216981053,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16737,'2018-04-02T12:44:15.169Z',NULL,68,2,115.24343882309758,7.2,128.80867678610065,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16738,'2017-12-20T09:03:23.856Z',NULL,32,2,71.42990913064094,4.46,53.91766492930111,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16739,'2018-11-16T16:43:19.928Z',2.4395409264625503,46,3,118.0495173798411,7.38,181.9769568537399,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16740,'2018-07-07T22:05:46.069Z',2.4395409264625503,164,4,92.96789820016517,5.81,194.0536548830092,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16741,'2020-04-15T22:43:32.951Z',NULL,126,2,125.24398120308456,7.83,180.6682039475095,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16742,'2019-07-26T00:54:18.966Z',NULL,105,3,52.723521442619514,3.3,71.7694904961033,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16743,'2019-06-02T00:15:47.630Z',2.4395409264625503,197,4,70.14610686710009,4.38,75.13768930772352,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16744,'2019-01-09T03:47:58.339Z',NULL,165,2,38.30449564120193,2.39,32.9220811252695,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16745,'2019-04-19T03:31:45.760Z',NULL,83,3,81.87627832636537,5.12,99.18376639061255,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16746,'2019-11-30T19:04:45.779Z',NULL,13,3,112.62925391105566,7.04,112.7583821753672,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16747,'2017-07-24T08:23:52.176Z',NULL,53,6,29.517248267676894,1.84,45.63117260977714,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16748,'2018-08-14T20:05:48.184Z',NULL,1,8,44.19489169601981,2.76,30.207171495082708,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16749,'2019-07-17T23:02:36.864Z',2.4395409264625503,42,4,38.00410713690931,2.38,10.275488564478122,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16750,'2019-09-28T14:59:18.835Z',NULL,69,4,73.38772304360626,4.59,95.93099110962646,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16751,'2019-03-02T10:10:53.950Z',NULL,158,1,139.8942352373801,8.74,57.83204182641951,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16752,'2019-07-26T10:24:50.270Z',NULL,98,4,112.41825444654248,7.03,29.548453180791924,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16753,'2017-10-07T20:29:23.243Z',NULL,54,5,41.395738936015974,2.59,52.723610945459285,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16754,'2019-05-24T11:45:44.188Z',NULL,26,4,68.12471180754113,4.26,99.40739727300688,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16755,'2019-05-30T23:51:30.436Z',NULL,103,4,47.04215255778118,2.94,68.5833152505853,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16756,'2018-01-21T04:13:56.550Z',5.614890644329273,85,2,54.90104734428525,3.43,57.06225941637706,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16757,'2018-09-10T13:06:40.164Z',NULL,50,4,53.64019616819762,3.35,50.82278025365456,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16758,'2020-02-11T04:32:32.968Z',NULL,106,2,52.723521442619514,3.3,37.168830606483574,2224); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16759,'2019-04-20T19:44:48.705Z',NULL,109,2,119.04991068193098,7.14,202.70567170532644,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16760,'2019-07-11T21:01:31.235Z',NULL,91,2,65.09432810381134,3.91,32.40793160783117,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16761,'2018-12-10T03:33:30.955Z',NULL,192,1,69.18418520579327,4.15,54.40695591780558,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16762,'2019-11-30T10:58:08.053Z',NULL,37,3,80.10774204020768,4.81,17.800031467345725,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16763,'2017-03-07T02:18:34.870Z',NULL,173,1,81.57679953529707,4.89,94.21213609533086,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16764,'2019-10-03T09:27:23.242Z',NULL,9,4,87.46968147789205,5.25,155.57672745397443,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16765,'2018-07-29T17:48:08.224Z',1.1148906443292739,163,2,33.56789820016516,2.01,22.35343511307692,2225); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16766,'2017-05-26T19:27:29.526Z',1.1148906443292739,81,3,29.288656154807867,1.17,46.62580768851711,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16767,'2019-12-22T23:16:57.779Z',NULL,98,1,112.41825444654248,4.5,85.42753847385093,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16768,'2017-05-19T07:00:29.344Z',NULL,126,3,83.49598746872304,3.34,67.96320230831974,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16769,'2017-10-21T03:34:25.949Z',NULL,196,6,46.76407124473339,1.87,23.573368628155368,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16770,'2018-09-12T16:55:07.928Z',NULL,4,4,110.98767151282252,4.44,88.86125538529438,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16771,'2019-05-31T19:03:07.948Z',NULL,58,2,78.14578007078882,3.13,56.723821200156586,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16772,'2019-01-13T10:09:47.445Z',NULL,62,1,133.5202262591817,5.34,43.350748798439064,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16773,'2018-11-08T20:35:33.481Z',NULL,42,1,38.00410713690931,1.52,26.452844265196397,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16774,'2018-07-22T09:06:05.265Z',1.1148906443292739,171,4,105.07665741496471,4.2,114.12395921143458,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16775,'2019-07-04T02:33:48.078Z',NULL,179,5,68.32408657333919,2.73,136.19186572712508,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16776,'2020-01-30T08:39:37.540Z',NULL,165,2,38.30449564120193,1.53,67.69239916611063,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16777,'2019-01-20T06:03:35.555Z',NULL,92,1,124.89242686579996,5,178.42758445269965,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16778,'2018-11-02T09:22:44.035Z',NULL,41,2,63.50890855689462,2.54,49.95750565671358,2227); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16779,'2019-01-24T14:08:45.060Z',NULL,142,1,70.34853057210945,4.84,96.6867910703306,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16780,'2018-10-02T04:04:52.407Z',1.1148906443292739,35,4,71.53687730741436,4.92,148.8731221529011,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16781,'2020-02-01T15:39:20.031Z',NULL,72,2,142.20381898788685,9.78,299.25503085661444,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16782,'2020-03-13T11:37:04.077Z',NULL,18,1,81.90307121097293,5.63,25.312896485107185,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16783,'2018-11-11T20:17:50.100Z',NULL,124,2,110.93145648834248,7.63,160.97462379485222,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16784,'2017-12-05T04:47:11.945Z',NULL,32,1,71.42990913064094,4.91,23.22268267383528,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16785,'2019-06-21T18:08:11.156Z',1.1148906443292739,49,3,131.42865839323724,9.04,76.84575170700317,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16786,'2019-12-15T07:29:43.498Z',NULL,144,1,61.1983004605443,4.21,89.31416647398413,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16787,'2017-05-16T21:20:31.957Z',1.1148906443292739,178,2,78.21975500247076,5.38,80.7579978206951,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16788,'2018-12-21T15:06:46.405Z',NULL,106,1,52.723521442619514,3.62,16.631010088695966,2230); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16789,'2017-03-22T12:37:38.094Z',NULL,32,1,71.42990913064094,2.07,68.79576141048483,2232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16790,'2020-02-03T09:08:52.403Z',NULL,158,1,139.8942352373801,4.06,123.08549620633553,2232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16791,'2019-11-30T21:35:47.592Z',NULL,24,1,112.30643674729413,3.26,27.412749785732874,2232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16792,'2020-02-24T21:23:55.414Z',5.614890644329273,58,1,78.14578007078882,2.27,44.33228532238051,2232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16793,'2017-01-15T01:54:36.417Z',NULL,156,1,20.41053609936413,0.59,17.55337898334917,2232); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16794,'2019-07-01T17:14:12.779Z',NULL,86,2,92.31436670850246,5.77,38.49617296029084,2235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16795,'2019-07-28T08:57:58.828Z',NULL,92,2,124.89242686579996,7.81,259.3347247063956,2235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16796,'2017-11-11T02:14:41.408Z',NULL,106,1,35.149014295079674,2.2,42.01579599005054,2235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16797,'2018-02-11T05:11:50.860Z',NULL,76,1,63.82421061366486,3.99,121.45896047263952,2235); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16798,'2018-03-26T15:44:16.315Z',NULL,108,1,50.094887884945365,3.26,16.66807415564335,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16799,'2019-01-21T15:00:42.676Z',NULL,130,2,75.02573869315137,4.88,156.28009016850777,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16800,'2020-02-11T09:18:04.904Z',3.086856175098497,21,2,60.57501609456816,3.94,75.20093326464463,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16801,'2017-10-19T05:28:25.100Z',7.5868561750984975,9,5,58.31312098526137,3.79,48.38397750838906,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16802,'2017-11-28T13:32:58.501Z',NULL,48,3,82.13922832356072,5.34,162.85463065855666,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16803,'2017-04-18T12:06:10.402Z',NULL,56,2,24.24752383956291,1.58,6.632145206481899,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16804,'2017-07-06T13:36:05.922Z',NULL,194,5,33.587182645381546,2.18,26.853686807368714,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16805,'2020-01-10T06:00:19.105Z',NULL,103,2,47.04215255778118,3.06,11.893478573748148,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16806,'2017-06-27T17:41:50.527Z',NULL,101,4,93.21658710786936,6.06,141.79370543051218,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16807,'2019-03-13T14:16:21.473Z',NULL,122,1,99.84528328808108,6.49,121.84311031592576,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16808,'2019-03-13T18:05:10.081Z',NULL,82,1,60.89545738030947,3.96,75.99525939041916,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16809,'2017-09-27T11:32:35.267Z',NULL,3,6,35.388744881539054,2.3,20.43523367821183,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16810,'2019-01-16T05:04:20.274Z',NULL,82,2,60.89545738030947,3.96,117.46599035727506,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16811,'2018-09-01T09:53:26.630Z',NULL,157,3,139.8942352373801,9.09,229.14563267518392,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16812,'2019-04-29T15:21:51.665Z',NULL,138,2,113.95078476718615,7.41,121.84633141607134,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16813,'2019-02-25T23:27:11.994Z',3.086856175098497,28,2,68.12471180754113,4.43,66.60452111252714,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16814,'2017-08-05T01:09:38.203Z',NULL,53,8,29.517248267676894,1.92,10.505410770759342,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16815,'2017-03-14T14:56:13.508Z',3.086856175098497,135,1,30.536015447715613,1.98,37.20822528536579,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16816,'2017-03-22T07:48:09.666Z',NULL,69,1,48.925148695737505,3.18,48.517164242393015,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16817,'2019-07-17T03:54:34.340Z',NULL,180,5,68.32408657333919,4.44,39.88816794141493,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16818,'2018-01-10T05:57:31.004Z',NULL,7,2,148.22900526552291,9.63,251.52084592066612,2236); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16819,'2019-06-26T18:17:48.723Z',NULL,200,6,73.20395711799151,4.03,121.74774564231487,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16820,'2019-05-17T12:43:48.739Z',NULL,131,5,113.11722203337729,6.22,142.67705090729635,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16821,'2019-05-20T00:12:04.429Z',NULL,128,5,75.08016314504417,4.13,72.80696992239268,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16822,'2019-01-17T09:33:32.415Z',NULL,200,2,73.20395711799151,4.03,128.65114831960167,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16823,'2019-05-01T12:11:36.263Z',NULL,2,5,105.11984419607644,5.78,37.716057192088535,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16824,'2018-07-07T09:15:12.975Z',NULL,10,6,47.6793282102869,2.62,12.567883840017693,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16825,'2019-07-04T12:35:58.561Z',NULL,29,6,123.57448218067185,6.8,63.00171840473091,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16826,'2020-03-11T09:25:12.099Z',NULL,197,1,70.14610686710009,3.86,18.17716197772136,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16827,'2019-03-12T10:26:58.106Z',NULL,13,1,112.62925391105566,6.19,103.84091741498716,2237); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16828,'2020-01-22T18:33:45.051Z',NULL,169,2,59.53172693453274,2.38,67.17341990461232,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16829,'2018-01-22T11:41:37.304Z',NULL,138,2,113.95078476718615,4.56,111.37775317047696,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16830,'2019-07-17T14:51:02.426Z',NULL,134,5,42.49233549998661,1.7,74.07851998502255,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16831,'2018-04-25T12:29:41.166Z',NULL,68,2,115.24343882309758,4.61,128.2124783417869,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16832,'2020-02-03T07:47:51.964Z',NULL,171,2,105.07665741496471,4.2,104.41871614543753,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16833,'2019-06-22T10:39:50.172Z',NULL,172,6,122.3651993029456,4.89,182.37058654254167,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16834,'2019-01-17T23:13:25.977Z',NULL,23,2,116.86672609493307,4.67,37.006633862338774,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16835,'2017-04-14T18:33:45.938Z',NULL,139,4,51.18512212784679,2.05,88.66624102099996,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16836,'2017-11-23T23:21:06.937Z',NULL,71,3,55.202545991924566,2.21,56.79274790116056,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16837,'2019-08-03T04:02:48.629Z',NULL,104,7,106.44215255778118,4.26,58.859161413427,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16838,'2017-12-31T00:39:05.394Z',NULL,43,2,50.90170136783837,2.04,43.16419125114888,2239); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16839,'2019-03-07T20:33:07.749Z',4.031262754887517,36,1,130.93687730741433,0,32.66272929111641,2241); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16840,'2020-04-18T10:01:41.196Z',8.531262754887518,2,3,105.11984419607644,4.2,30.266593458572533,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16841,'2019-04-17T11:20:44.140Z',NULL,76,4,63.82421061366486,2.55,119.34514327335923,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16842,'2018-07-04T08:32:21.497Z',NULL,191,5,128.5841852057933,5.14,129.25372045606298,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16843,'2020-04-03T12:23:03.247Z',NULL,170,3,105.07665741496471,4.2,50.208961862899734,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16844,'2017-05-21T10:21:31.619Z',4.031262754887517,89,5,42.47974183693326,1.7,76.12090070407359,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16845,'2018-07-17T02:22:10.904Z',NULL,79,4,41.616917284159726,1.66,23.396833567448716,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16846,'2017-05-16T11:07:42.435Z',NULL,58,3,52.097186713859216,2.08,10.587835796412318,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16847,'2017-08-10T21:25:53.902Z',NULL,188,5,22.584921698210056,0.9,5.782838623219764,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16848,'2017-06-03T20:53:01.315Z',NULL,132,5,85.25464686555807,3.41,112.55806231925033,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16849,'2019-10-07T08:15:06.505Z',NULL,49,4,131.42865839323724,5.26,191.13806170142996,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16850,'2017-04-21T17:38:03.995Z',NULL,87,2,78.17024226998694,3.13,110.00706358681289,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16851,'2018-06-09T22:00:11.721Z',NULL,187,7,98.9770008385166,3.96,53.80674430847929,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16852,'2017-12-02T05:55:41.181Z',NULL,164,3,61.978598800110106,2.48,21.572266371966986,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16853,'2018-01-31T20:37:15.790Z',4.031262754887517,55,2,95.77128575934437,3.83,48.248616968205845,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16854,'2018-04-14T00:14:42.910Z',NULL,95,2,49.81864156655383,1.99,68.77952489972844,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16855,'2017-06-03T20:43:37.427Z',NULL,95,7,33.212427711035886,1.33,63.02240891551597,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16856,'2017-01-21T21:01:35.030Z',4.031262754887517,159,3,23.686782969182406,0.95,14.671450420919722,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16857,'2018-04-14T19:58:04.002Z',NULL,133,4,68.4819702983371,2.74,123.26277110107702,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16858,'2017-12-16T12:54:45.231Z',NULL,109,3,79.36660712128732,3.17,101.17688095464555,2244); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16859,'2018-12-24T02:11:24.941Z',4.031262754887517,17,3,79.93608046792765,5,82.36425660719387,2245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16860,'2020-04-04T11:49:40.907Z',NULL,148,4,138.9817182254566,8.69,206.93835043556714,2245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16861,'2020-02-14T11:01:09.188Z',NULL,17,2,79.93608046792765,5,48.82641725421221,2245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16862,'2018-01-04T22:53:00.423Z',NULL,198,2,70.14610686710009,4.38,19.924632538664984,2245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16863,'2019-02-22T15:55:29.105Z',8.531262754887518,83,2,81.87627832636537,5.12,54.8951878589193,2245); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16864,'2018-01-29T12:08:40.243Z',8.531262754887518,48,3,123.20884248534108,4.93,71.07733458089464,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16865,'2020-01-17T00:33:36.677Z',8.531262754887518,141,3,126.20312547576883,5.05,200.4640788237849,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16866,'2017-06-08T18:45:21.116Z',8.531262754887518,38,7,44.04624855892918,1.76,59.00642494881659,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16867,'2018-12-14T04:31:33.101Z',NULL,94,2,109.21864156655383,4.37,35.39242127768938,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16868,'2018-08-20T09:05:54.434Z',NULL,33,7,47.7448636959614,1.91,61.32497957383514,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16869,'2018-01-20T17:32:38.777Z',NULL,50,2,53.64019616819762,2.15,33.20788359094709,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16870,'2019-11-05T11:11:46.031Z',NULL,11,3,132.45679913492563,5.3,261.79500889190126,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16871,'2017-05-24T12:13:11.955Z',NULL,163,5,22.378598800110105,0.9,5.125460897449043,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16872,'2018-02-11T18:18:18.794Z',NULL,131,1,113.11722203337729,4.52,136.9414207386705,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16873,'2018-07-24T21:49:00.799Z',NULL,47,4,84.0766209826718,3.36,140.3504655640566,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16874,'2019-11-08T20:49:31.645Z',NULL,185,3,39.57700083851661,1.58,10.956991857329944,2246); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16875,'2018-02-05T22:15:46.517Z',NULL,127,2,134.48016314504417,8.41,106.91520585441067,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16876,'2017-06-24T06:15:28.003Z',NULL,24,8,74.87095783152942,4.68,126.22946708778048,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16877,'2018-06-01T04:53:52.151Z',NULL,199,8,115.4300138092855,7.21,105.26940239456188,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16878,'2016-09-28T04:56:29.011Z',NULL,69,6,48.925148695737505,3.06,76.68988917692381,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16879,'2017-10-04T08:31:19.341Z',NULL,66,6,90.77417514071306,5.67,109.9127184103423,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16880,'2017-07-09T02:45:26.124Z',6.455183646352273,188,5,22.584921698210056,1.41,8.24845312079883,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16881,'2017-02-25T08:59:42.362Z',1.9551836463522734,5,2,82.7450976850356,5.17,97.03877682546673,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16882,'2018-10-23T08:41:57.033Z',NULL,170,6,105.07665741496471,6.57,89.5272039690435,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16883,'2018-04-07T06:48:08.684Z',6.455183646352273,41,2,63.50890855689462,3.97,113.56357237000448,2247); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16884,'2017-06-11T16:38:56.382Z',NULL,123,5,73.95430432556165,4.81,24.164038572263717,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16885,'2018-10-24T04:41:57.935Z',NULL,48,5,123.20884248534108,8.01,254.65341719053652,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16886,'2019-08-26T17:39:10.283Z',NULL,119,4,43.43814329652384,2.82,62.361240444378055,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16887,'2018-08-13T20:37:19.295Z',NULL,37,37,80.10774204020768,5.21,128.12388352657936,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16888,'2018-03-12T15:53:15.575Z',7.351921842244672,15,1,37.648145389078365,2.45,8.691794284635614,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16889,'2017-09-17T17:25:45.372Z',NULL,156,5,20.41053609936413,1.33,39.13999333730519,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16890,'2017-08-17T14:53:16.246Z',NULL,162,5,22.378598800110105,1.45,16.07033739613907,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16891,'2019-11-09T20:02:31.948Z',NULL,187,2,98.9770008385166,6.43,206.19859663829854,2249); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16892,'2019-09-28T00:27:41.859Z',NULL,51,4,75.65058751905018,4.73,24.773311292249517,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16893,'2019-01-27T21:35:15.493Z',NULL,79,2,41.616917284159726,2.6,14.366621620558254,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16894,'2018-07-21T14:20:29.421Z',NULL,18,5,81.90307121097293,5.12,169.2100689628866,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16895,'2017-08-06T00:35:28.662Z',NULL,190,7,85.72279013719552,5.36,166.2526304418002,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16896,'2019-10-26T04:17:38.563Z',8.399773187026197,26,7,68.12471180754113,4.26,127.7360925830192,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16897,'2019-08-30T02:18:07.333Z',NULL,82,9,60.89545738030947,3.81,108.62205242051327,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16898,'2019-11-08T14:51:35.259Z',NULL,162,4,33.56789820016516,2.1,9.645180582564443,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16899,'2018-01-15T21:37:27.326Z',NULL,149,2,69.15415037577924,4.32,14.314257981200488,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16900,'2017-05-07T23:22:58.758Z',NULL,66,4,90.77417514071306,5.67,127.38025264558814,2250); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16901,'2017-12-09T15:01:57.817Z',NULL,10,2,31.78621880685793,0,30.076562240523852,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16902,'2019-06-25T05:50:58.254Z',3.899773187026197,160,7,47.59120561297272,0,78.75254583883869,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16903,'2019-04-25T16:56:30.431Z',NULL,49,4,131.42865839323724,0,256.30634226165944,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16904,'2019-02-20T10:13:37.180Z',NULL,87,2,117.25536340498041,0,128.57554124945494,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16905,'2017-11-22T00:28:23.679Z',NULL,149,3,46.10276691718616,0,34.923169471382714,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16906,'2019-03-04T22:53:05.527Z',NULL,139,1,76.77768319177018,0,147.42339967062674,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16907,'2020-02-18T19:30:10.232Z',NULL,91,2,65.09432810381134,0,71.99158234500455,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16908,'2018-09-25T16:18:36.381Z',NULL,4,4,110.98767151282252,0,57.7074511502509,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16909,'2019-11-02T03:09:52.335Z',NULL,71,2,82.80381898788684,0,121.86432938470585,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16910,'2018-09-05T12:10:45.264Z',NULL,40,5,99.66240044231697,0,130.4587221476236,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16911,'2018-09-09T05:06:00.235Z',NULL,118,7,57.627613096978735,0,96.02006701255975,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16912,'2019-06-20T07:57:49.142Z',NULL,78,8,41.616917284159726,0,45.39452285456094,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16913,'2018-07-16T19:18:00.056Z',NULL,98,5,112.41825444654248,0,140.61903553421686,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16914,'2016-09-26T06:37:56.709Z',NULL,133,4,45.654646865558064,0,23.5933709975327,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16915,'2018-12-26T03:57:56.477Z',NULL,118,2,57.627613096978735,0,101.75147784435602,2251); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16916,'2019-03-08T06:47:03.747Z',8.399773187026197,151,1,91.61302306843446,5.04,156.29093831796217,2252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16917,'2019-07-24T06:53:32.539Z',NULL,179,7,68.32408657333919,3.76,58.22020462089845,2252); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16918,'2019-10-25T19:25:06.555Z',NULL,133,6,68.4819702983371,4.11,20.868475015593358,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16919,'2018-09-02T05:25:26.519Z',NULL,76,5,63.82421061366486,3.83,65.10455262402562,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16920,'2019-11-04T08:02:47.988Z',NULL,16,4,66.11029954877317,3.97,25.52928394444278,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16921,'2020-01-20T00:40:59.065Z',NULL,171,3,105.07665741496471,6.3,84.00758288193799,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16922,'2020-02-14T10:12:46.439Z',NULL,132,2,127.88197029833711,7.67,184.77792201653722,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16923,'2018-02-08T04:07:07.335Z',NULL,100,2,67.83486485383094,4.07,61.680615909235165,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16924,'2017-01-18T14:33:33.248Z',NULL,110,3,37.01783079127111,2.22,69.63738323561395,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16925,'2019-08-04T00:54:13.220Z',NULL,82,9,60.89545738030947,3.65,127.92053277801884,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16926,'2016-06-26T14:04:03.542Z',NULL,173,7,81.57679953529707,4.89,51.95495704954878,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16927,'2019-10-15T17:37:54.291Z',NULL,151,6,91.61302306843446,5.5,160.10470355114913,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16928,'2018-04-09T17:44:35.924Z',3.899773187026197,35,4,71.53687730741436,4.29,93.38998995293932,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16929,'2019-06-26T12:39:01.615Z',NULL,199,8,115.4300138092855,6.93,128.97884251244656,2253); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16930,'2019-03-26T17:01:00.733Z',NULL,39,1,114.58158180283459,7.16,86.25356189697128,2254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16931,'2019-12-25T08:39:50.392Z',NULL,105,2,52.723521442619514,3.3,24.22457066546652,2254); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16932,'2019-02-01T18:28:20.577Z',NULL,179,2,68.32408657333919,4.27,134.90864193043203,2255); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16933,'2017-03-07T05:38:22.099Z',NULL,58,1,52.097186713859216,3.26,85.74737953415791,2255); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16934,'2017-12-23T05:24:34.340Z',NULL,91,2,43.39621873587423,2.71,68.42429480713164,2255); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16935,'2019-09-11T14:06:19.749Z',NULL,45,5,118.0495173798411,7.38,217.3174793953135,2255); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16936,'2019-12-19T19:28:01.699Z',NULL,165,1,38.30449564120193,2.39,52.59204429690732,2255); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16937,'2017-12-28T20:16:19.317Z',NULL,195,2,73.18718264538155,3.44,117.27181604999454,2256); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16938,'2019-12-09T17:14:36.574Z',NULL,3,2,53.08311732230858,2.39,104.01584431875315,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16939,'2019-09-24T23:57:40.919Z',NULL,195,5,109.78077396807234,4.94,90.22279085684362,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16940,'2018-06-21T02:49:37.785Z',NULL,196,6,70.14610686710009,3.16,93.8912740435639,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16941,'2018-02-22T14:50:34.676Z',3.116424147333663,192,2,69.18418520579327,3.11,103.46410704473651,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16942,'2019-08-01T07:35:05.402Z',NULL,23,7,116.86672609493307,5.26,213.75018642920364,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16943,'2019-12-06T18:34:04.498Z',NULL,200,2,73.20395711799151,3.29,110.11418915138987,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16944,'2018-10-29T10:30:01.098Z',NULL,83,4,81.87627832636537,3.68,37.26945543884986,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16945,'2018-02-19T16:42:51.481Z',7.616424147333663,106,2,52.723521442619514,2.37,35.75176351744249,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16946,'2020-02-11T15:07:53.711Z',NULL,11,2,132.45679913492563,5.96,207.71439441884345,2257); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16947,'2018-11-14T03:01:56.756Z',NULL,158,3,139.8942352373801,8.39,53.943652332386655,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16948,'2020-02-22T20:54:38.486Z',7.616424147333663,78,2,41.616917284159726,2.5,19.097144104275824,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16949,'2017-02-05T20:48:55.258Z',NULL,26,2,45.41647453836076,2.72,9.32870819255834,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16950,'2019-10-27T18:18:41.322Z',NULL,35,5,71.53687730741436,4.29,42.806473823228046,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16951,'2019-10-22T06:24:20.167Z',NULL,107,5,50.094887884945365,3.01,28.599287945377185,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16952,'2019-02-22T20:57:08.066Z',NULL,7,2,148.22900526552291,8.89,221.21796515737256,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16953,'2019-09-23T01:29:20.713Z',NULL,2,6,105.11984419607644,6.31,73.78499546898085,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16954,'2020-01-11T14:55:38.768Z',NULL,20,2,37.32649625046575,2.24,68.0641719341446,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16955,'2019-01-02T05:05:49.044Z',NULL,158,2,139.8942352373801,8.39,61.558490341316194,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16956,'2020-02-07T12:37:14.576Z',NULL,97,2,112.41825444654248,6.75,201.85217639388375,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16957,'2019-01-21T10:09:59.991Z',NULL,1,2,44.19489169601981,2.65,27.335885309363352,2258); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16958,'2019-01-08T02:26:22.531Z',NULL,110,2,55.526746186906664,3.61,21.740566847528694,2259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16959,'2018-07-22T23:53:00.286Z',NULL,5,5,124.1176465275534,8.07,179.52798571181245,2259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16960,'2020-02-21T07:57:25.015Z',NULL,44,1,76.35255205175756,4.96,43.96699618685754,2259); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16961,'2019-03-21T09:23:27.898Z',7.616424147333663,147,1,66.64727121216615,4,15.930749871865938,2260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16962,'2018-04-02T14:58:53.312Z',NULL,139,2,76.77768319177018,4.61,138.80806662719695,2260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16963,'2019-11-26T06:59:26.588Z',NULL,46,3,118.0495173798411,7.08,244.3482195502551,2260); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16964,'2017-09-18T01:29:51.272Z',NULL,160,5,31.727470408648482,1.27,14.315527651236485,2261); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16965,'2018-03-31T17:37:31.483Z',NULL,183,1,56.697412301919755,1.64,12.478348365125036,2263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16966,'2020-01-15T00:07:24.465Z',NULL,120,2,83.5020135028928,2.42,144.077017177718,2263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16967,'2019-08-25T18:33:03.360Z',NULL,108,8,50.094887884945365,1.45,84.24408100545394,2263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16968,'2018-02-08T12:49:53.512Z',NULL,118,2,57.627613096978735,1.67,109.61210100629188,2263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16969,'2019-02-19T08:15:55.587Z',NULL,132,2,127.88197029833711,3.71,214.95230009811925,2263); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16970,'2016-07-30T00:13:12.884Z',NULL,115,6,51.94130981241432,1.51,99.15953455329607,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16971,'2017-09-04T11:21:31.383Z',NULL,34,6,49.535942579421324,1.44,52.52450273440856,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16972,'2019-08-02T15:05:57.169Z',NULL,77,7,101.01691728415972,2.93,131.3306830113847,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16973,'2017-08-18T05:12:58.818Z',NULL,154,5,54.58353035541507,1.58,76.83651720673747,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16974,'2018-02-08T13:38:56.731Z',NULL,107,1,50.094887884945365,1.45,83.48041757977578,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16975,'2019-03-24T16:51:55.204Z',NULL,183,1,56.697412301919755,1.64,89.75452902236887,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16976,'2018-12-21T01:11:51.693Z',NULL,75,2,125.81276373452337,3.65,184.31232373195928,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16977,'2018-08-02T14:58:51.746Z',NULL,188,9,33.87738254731509,0.98,7.390762607288649,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16978,'2019-12-31T18:38:18.845Z',NULL,142,2,70.34853057210945,2.04,15.24165039997207,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16979,'2018-04-23T12:29:36.390Z',NULL,88,3,105.41292031622555,3.06,165.42691666330916,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16980,'2018-03-26T20:06:16.977Z',NULL,193,1,50.38077396807232,1.46,64.49797325963236,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16981,'2017-09-11T17:11:17.506Z',NULL,13,7,75.0861692740371,2.18,34.52745236271373,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16982,'2018-07-11T11:10:03.480Z',NULL,58,5,78.14578007078882,2.27,105.37812089815463,2264); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16983,'2018-08-10T19:26:10.803Z',NULL,65,5,68.22769726470014,2.73,63.33218458802514,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16984,'2019-01-04T07:07:03.094Z',NULL,43,2,76.35255205175756,3.05,123.64732023264473,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16985,'2017-10-03T10:23:47.186Z',NULL,18,6,54.60204747398195,2.18,90.30497839290798,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16986,'2018-11-23T13:50:47.828Z',NULL,150,3,128.55415037577922,5.14,118.13508742748193,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16987,'2019-01-13T23:24:19.642Z',NULL,166,3,38.30449564120193,1.53,69.38717910302415,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16988,'2019-06-08T20:13:10.426Z',NULL,18,8,81.90307121097293,3.28,130.42330614940693,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16989,'2019-08-15T01:31:48.990Z',NULL,165,9,38.30449564120193,1.53,47.9276696862838,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16990,'2018-07-17T08:47:58.798Z',NULL,41,7,63.50890855689462,2.54,32.14945216540149,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16991,'2019-11-15T09:40:59.863Z',NULL,174,3,111.61430894181083,4.46,113.87767973356982,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16992,'2017-06-15T19:33:56.549Z',NULL,18,5,54.60204747398195,2.18,32.70369590245248,2265); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16993,'2018-05-29T13:40:04.597Z',NULL,43,5,76.35255205175756,3.63,71.03713930910057,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16994,'2018-12-05T19:05:35.395Z',NULL,79,2,41.616917284159726,1.98,20.133895089300445,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16995,'2019-03-25T03:48:05.010Z',NULL,148,1,138.9817182254566,6.6,32.78522442235006,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16996,'2020-02-04T05:58:25.995Z',NULL,142,2,70.34853057210945,3.34,65.8851672002866,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16997,'2018-11-12T20:22:59.184Z',NULL,125,3,80.39699207990944,3.82,41.425433766056784,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16998,'2020-01-14T19:13:45.073Z',NULL,154,2,81.87529553312261,3.89,143.9839698270301,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (16999,'2019-03-24T14:16:58.823Z',NULL,5,1,124.1176465275534,5.9,65.79403820488656,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17000,'2017-11-07T07:13:29.907Z',NULL,54,2,41.395738936015974,1.97,29.666701762542033,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17001,'2019-05-15T12:09:00.971Z',NULL,104,3,106.44215255778118,5.06,137.64064698990464,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17002,'2018-04-01T10:21:48.784Z',3.9454538548268383,33,3,47.7448636959614,2.27,12.13775153248627,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17003,'2019-02-26T12:45:10.366Z',NULL,110,2,55.526746186906664,2.64,89.07730532238361,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17004,'2019-09-23T20:55:18.818Z',NULL,124,5,110.93145648834248,5.27,113.17259170682074,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17005,'2019-04-05T22:09:38.741Z',NULL,48,2,123.20884248534108,5.85,85.8293735142224,2267); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17006,'2017-07-17T06:40:10.242Z',NULL,74,4,34.08536151591033,2.05,50.76438465532272,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17007,'2019-03-06T05:05:54.196Z',NULL,142,1,70.34853057210945,4.22,76.41611316833469,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17008,'2017-07-11T07:05:38.720Z',8.445453854826837,90,5,82.07974183693327,4.92,48.735045354136545,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17009,'2018-10-12T04:28:13.125Z',NULL,85,6,54.90104734428525,3.29,63.807302061146615,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17010,'2019-08-16T15:33:42.110Z',NULL,133,7,68.4819702983371,4.11,22.016447769738214,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17011,'2018-07-28T15:37:46.085Z',NULL,156,7,30.615804149046195,1.84,41.7391133685405,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17012,'2019-04-14T17:54:46.210Z',NULL,148,3,138.9817182254566,8.34,162.5528983312173,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17013,'2019-03-23T12:36:11.951Z',NULL,11,1,132.45679913492563,7.95,257.77608352344384,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17014,'2019-11-24T04:07:34.385Z',NULL,152,2,48.89568729900663,2.93,34.36270874473774,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17015,'2019-11-01T01:05:34.062Z',NULL,72,2,142.20381898788685,8.53,218.28260614258284,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17016,'2018-12-12T21:47:56.809Z',NULL,75,2,125.81276373452337,7.55,195.02346376223625,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17017,'2020-01-23T06:40:33.170Z',NULL,69,3,73.38772304360626,4.4,126.57880231291465,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17018,'2018-11-06T14:17:30.552Z',NULL,68,3,115.24343882309758,6.91,77.81907630886988,2270); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17019,'2020-01-25T13:19:50.897Z',NULL,16,2,66.11029954877317,2.79,67.53086089398873,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17020,'2019-03-18T12:49:55.503Z',2.620635223155837,70,1,57.493003808959784,2.43,48.540014614121084,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17021,'2019-07-28T03:01:40.628Z',NULL,84,3,81.87627832636537,3.46,162.78340423756725,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17022,'2018-02-03T21:33:20.278Z',NULL,107,1,50.094887884945365,2.12,22.297343905444023,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17023,'2020-01-16T04:11:19.913Z',NULL,165,1,38.30449564120193,1.62,58.861030455221936,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17024,'2018-07-15T12:44:58.973Z',NULL,57,3,122.4223933583994,5.17,218.64664357121165,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17025,'2019-09-14T16:51:46.252Z',NULL,24,3,112.30643674729413,4.74,68.35312061313589,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17026,'2018-04-06T06:21:45.213Z',NULL,163,3,33.56789820016516,1.42,22.86234883036338,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17027,'2018-10-30T19:13:32.803Z',NULL,31,7,105.65346467128523,4.46,215.5651533656844,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17028,'2019-01-30T10:21:43.866Z',7.120635223155837,125,2,80.39699207990944,3.4,118.20081787604752,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17029,'2019-08-20T07:50:23.118Z',NULL,129,8,148.1672972165937,6.26,302.4794138449598,2271); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17030,'2018-06-06T06:38:26.318Z',NULL,107,7,50.094887884945365,0,41.28862570865054,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17031,'2018-03-31T21:56:54.529Z',NULL,86,1,92.31436670850246,0,155.3944404541783,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17032,'2019-03-10T06:40:40.215Z',NULL,58,1,78.14578007078882,0,14.741656304055397,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17033,'2019-08-01T10:00:48.789Z',7.120635223155837,22,8,32.136779940663494,0,46.213050793799376,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17034,'2018-04-10T13:35:51.745Z',NULL,128,3,75.08016314504417,0,110.24575727071011,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17035,'2017-11-19T09:40:28.052Z',NULL,164,3,61.978598800110106,0,58.77704561982636,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17036,'2019-12-31T06:48:01.574Z',7.120635223155837,95,1,49.81864156655383,0,17.155199944521456,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17037,'2018-02-16T04:09:47.929Z',NULL,63,1,133.5202262591817,0,66.26113272031377,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17038,'2018-08-11T11:19:46.664Z',NULL,87,6,117.25536340498041,0,164.80459939751412,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17039,'2018-03-07T05:15:13.434Z',NULL,35,1,71.53687730741436,0,81.52064511499823,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17040,'2018-03-25T08:25:34.646Z',2.620635223155837,122,1,99.84528328808108,0,89.02729190494316,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17041,'2018-04-30T12:59:37.620Z',NULL,78,3,41.616917284159726,0,60.552248034953855,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17042,'2019-07-15T10:21:42.141Z',7.120635223155837,65,6,68.22769726470014,0,92.14061476480175,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17043,'2019-06-23T05:33:01.598Z',NULL,43,7,76.35255205175756,0,72.90435864334253,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17044,'2017-05-23T09:40:08.362Z',7.120635223155837,100,4,45.22324323588729,0,63.12476487368904,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17045,'2017-12-17T20:46:28.749Z',NULL,131,2,75.41148135558485,0,33.91300498618873,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17046,'2020-03-04T05:16:59.710Z',NULL,109,1,119.04991068193098,0,42.771677197723484,2272); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17047,'2018-10-16T17:20:40.256Z',NULL,53,5,44.27587240151534,2.48,50.34069788773703,2273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17048,'2018-12-21T15:20:22.525Z',NULL,200,2,73.20395711799151,4.1,18.203344700024346,2273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17049,'2020-04-03T17:06:58.434Z',NULL,162,3,33.56789820016516,1.88,35.381806918800784,2273); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17050,'2019-07-05T19:08:44.838Z',NULL,155,4,43.77574310182776,2.41,25.501470800997918,2274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17051,'2017-05-15T19:13:04.928Z',NULL,56,4,24.24752383956291,1.33,23.380089485784328,2274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17052,'2019-01-30T08:37:39.996Z',NULL,81,2,43.9329842322118,2.42,40.47339055726972,2274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17053,'2019-08-28T21:24:26.864Z',NULL,116,4,114.42485125407785,6.29,73.53598836621134,2274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17054,'2018-12-27T20:24:40.512Z',NULL,190,1,128.5841852057933,7.07,254.55051213377934,2274); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17055,'2018-12-01T05:03:41.217Z',NULL,143,1,61.1983004605443,0,116.76989808427062,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17056,'2019-02-26T11:19:03.909Z',NULL,103,1,47.04215255778118,0,39.34137168157375,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17057,'2019-08-27T22:57:24.231Z',NULL,62,6,133.5202262591817,0,73.21871154175928,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17058,'2019-09-16T00:17:05.252Z',NULL,106,4,52.723521442619514,0,71.54330536085031,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17059,'2018-06-15T19:52:57.909Z',NULL,62,7,133.5202262591817,0,81.63577229214873,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17060,'2019-01-31T05:58:04.395Z',NULL,98,2,112.41825444654248,0,117.83040829244115,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17061,'2018-05-12T17:00:39.657Z',NULL,112,4,41.329386510090345,0,72.5895426353436,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17062,'2018-05-31T15:33:58.483Z',NULL,52,4,103.67587240151535,0,139.85910118040258,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17063,'2019-07-18T03:09:16.272Z',NULL,123,4,110.93145648834248,0,135.57049750601377,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17064,'2019-12-21T20:46:56.714Z',NULL,37,2,80.10774204020768,0,133.50218629840825,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17065,'2017-09-18T15:20:12.740Z',NULL,10,6,31.78621880685793,0,43.96113135775166,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17066,'2018-06-16T18:21:40.804Z',NULL,109,7,119.04991068193098,0,58.59560824188647,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17067,'2019-03-21T06:04:46.926Z',NULL,6,1,97.43621265344382,0,147.78250658535916,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17068,'2017-12-09T02:39:50.158Z',NULL,38,3,44.04624855892918,0,40.441350328443086,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17069,'2019-04-14T18:23:05.749Z',NULL,196,4,70.14610686710009,0,133.1940171248389,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17070,'2018-12-15T13:24:12.154Z',NULL,61,2,23.537915510955656,0,7.320984165874267,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17071,'2020-01-27T02:08:11.415Z',NULL,108,2,50.094887884945365,0,45.325364758026595,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17072,'2018-07-21T07:58:59.118Z',NULL,132,5,127.88197029833711,0,27.028442021900215,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17073,'2018-04-01T05:15:20.990Z',NULL,48,4,123.20884248534108,0,109.51013862535194,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17074,'2019-03-03T22:21:57.516Z',NULL,171,1,105.07665741496471,0,65.3506825530305,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17075,'2017-08-21T13:58:45.351Z',NULL,101,10,93.21658710786936,0,91.04435534068897,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17076,'2018-03-15T13:57:52.042Z',NULL,71,1,82.80381898788684,0,165.15223534140426,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17077,'2018-08-23T18:19:55.732Z',NULL,193,7,50.38077396807232,0,44.74821908261966,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17078,'2019-06-22T01:43:54.003Z',5.33036085447905,59,8,89.20214751859149,0,154.428308813182,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17079,'2018-08-15T11:59:51.924Z',NULL,16,8,66.11029954877317,0,70.50214884845285,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17080,'2017-11-10T20:06:42.361Z',5.33036085447905,19,4,42.67116731707548,0,42.05416447989792,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17081,'2019-10-15T22:41:30.522Z',NULL,91,8,65.09432810381134,0,79.40008899086462,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17082,'2019-03-22T13:47:48.995Z',NULL,62,1,133.5202262591817,0,108.75102345666178,2275); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17083,'2017-06-05T12:59:33.273Z',NULL,117,8,36.683234169385244,2.57,51.705803569662166,2276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17084,'2019-06-17T23:32:09.276Z',NULL,183,9,56.697412301919755,3.97,112.59283633274725,2276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17085,'2017-01-19T21:05:27.197Z',NULL,44,3,50.90170136783837,3.56,34.32372208441004,2276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17086,'2017-08-27T10:05:47.723Z',NULL,182,10,56.326269136507406,3.94,17.107578607611547,2276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17087,'2018-02-02T17:48:41.634Z',NULL,39,2,114.58158180283459,8.02,87.8440700197406,2276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17088,'2018-08-02T06:48:49.056Z',NULL,120,8,83.5020135028928,5.85,135.8120272925608,2276); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17089,'2019-02-09T02:14:03.739Z',NULL,152,2,48.89568729900663,3.42,70.57401516049053,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17090,'2017-12-22T13:46:03.378Z',NULL,164,2,61.978598800110106,4.34,58.31555754840059,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17091,'2017-10-01T14:47:30.729Z',NULL,70,7,38.32866920597319,2.68,52.79230319150655,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17092,'2019-09-23T01:30:16.410Z',NULL,113,7,110.47725376186015,7.73,165.30272578693967,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17093,'2017-10-08T08:01:28.906Z',NULL,135,7,30.536015447715613,2.14,8.23703855758018,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17094,'2019-08-19T23:53:14.021Z',NULL,146,7,126.04727121216614,8.82,129.47677902122024,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17095,'2017-08-20T05:22:17.695Z',NULL,169,8,39.68781795635516,2.78,83.63859722125538,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17096,'2019-09-30T09:50:33.778Z',NULL,172,6,122.3651993029456,8.57,261.45031006251185,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17097,'2018-06-13T01:40:58.279Z',NULL,103,6,47.04215255778118,3.29,61.90754117865692,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17098,'2018-07-10T02:17:32.017Z',NULL,197,5,70.14610686710009,4.91,28.04022913675081,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17099,'2019-07-23T15:15:58.673Z',NULL,47,5,84.0766209826718,5.89,126.71372984154044,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17100,'2018-03-22T04:09:06.818Z',NULL,177,1,128.8192981944599,9.02,168.7631020241365,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17101,'2019-10-12T02:25:24.721Z',NULL,110,5,55.526746186906664,3.89,37.51863606733946,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17102,'2019-09-08T07:21:48.508Z',NULL,82,6,60.89545738030947,4.26,98.4770296244486,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17103,'2017-11-29T03:05:07.400Z',NULL,99,4,45.22324323588729,3.17,20.45459530403137,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17104,'2019-06-24T03:28:12.980Z',NULL,135,6,45.80402317157342,3.21,71.92032637206655,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17105,'2018-02-14T02:46:26.725Z',NULL,100,2,67.83486485383094,4.75,127.74580500171929,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17106,'2016-11-04T02:21:14.247Z',NULL,45,4,78.6996782532274,5.51,68.71106101068852,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17107,'2018-02-28T14:33:43.961Z',NULL,186,2,98.9770008385166,6.93,69.56135473515539,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17108,'2017-02-28T01:38:22.261Z',NULL,109,2,79.36660712128732,5.56,108.36657810139876,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17109,'2018-01-06T05:19:42.060Z',NULL,138,2,113.95078476718615,7.98,45.266994153308566,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17110,'2020-01-09T02:08:29.837Z',NULL,102,2,47.04215255778118,3.29,14.552450817858752,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17111,'2019-04-23T13:15:48.191Z',NULL,141,3,126.20312547576883,8.83,173.5454473888732,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17112,'2017-10-18T18:53:51.155Z',NULL,109,7,79.36660712128732,5.56,38.55352628747492,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17113,'2018-12-11T14:03:58.416Z',NULL,29,2,123.57448218067185,8.65,139.10388495112855,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17114,'2017-07-29T01:24:39.463Z',NULL,151,5,61.07534871228964,4.28,123.46778980873343,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17115,'2018-08-12T19:40:30.576Z',NULL,131,7,113.11722203337729,7.92,71.8197484503415,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17116,'2019-06-27T07:58:35.411Z',NULL,38,4,66.06937283839378,4.62,134.8286879975236,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17117,'2019-03-14T09:19:33.155Z',NULL,29,0,123.57448218067185,8.65,47.97736857620548,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17118,'2018-06-05T07:18:55.960Z',NULL,194,4,50.38077396807232,3.53,26.108848640369064,2277); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17119,'2018-01-28T22:37:50.315Z',NULL,138,2,113.95078476718615,5.7,127.86976450521828,2278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17120,'2019-03-03T09:36:05.237Z',NULL,14,1,37.648145389078365,1.88,42.16789318992532,2278); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17121,'2019-05-29T11:09:47.385Z',5.643614456615886,140,3,66.80312547576881,4.01,53.5826920435995,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17122,'2019-02-15T21:55:35.190Z',NULL,200,1,73.20395711799151,4.39,84.38563312180828,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17123,'2018-05-23T03:32:49.632Z',NULL,146,3,126.04727121216614,7.56,95.57393682558873,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17124,'2017-12-27T01:35:34.629Z',NULL,58,1,52.097186713859216,3.13,76.50889511182422,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17125,'2019-09-18T15:29:48.767Z',NULL,198,4,70.14610686710009,4.21,129.4452037319914,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17126,'2018-05-01T00:43:37.114Z',NULL,94,4,109.21864156655383,6.55,44.251111949530554,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17127,'2018-10-22T15:15:41.465Z',NULL,128,6,75.08016314504417,4.5,68.66549766368841,2279); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17128,'2019-05-07T00:16:45.818Z',NULL,39,4,114.58158180283459,8.02,204.4069718193206,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17129,'2018-10-14T05:50:54.682Z',NULL,88,6,105.41292031622555,7.38,224.12901597301635,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17130,'2017-03-06T03:43:23.970Z',NULL,144,1,40.7988669736962,2.86,55.820703151149765,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17131,'2017-09-25T06:29:16.056Z',NULL,100,4,45.22324323588729,3.17,11.88205366608581,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17132,'2018-04-30T13:31:38.659Z',NULL,147,3,66.64727121216615,4.67,120.36503657417057,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17133,'2017-04-08T08:59:34.905Z',NULL,4,3,73.99178100854834,5.18,55.17225633156311,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17134,'2019-10-29T05:40:22.872Z',NULL,134,4,42.49233549998661,2.97,75.93157420466117,2280); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17135,'2016-09-11T20:35:26.599Z',NULL,141,4,84.13541698384589,5.05,90.62443399961919,2282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17136,'2017-02-07T23:04:27.211Z',NULL,110,1,37.01783079127111,2.22,71.55217732224506,2282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17137,'2019-09-25T23:05:39.655Z',5.643614456615886,21,2,60.57501609456816,3.63,118.12212617435922,2282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17138,'2016-07-20T14:48:11.054Z',NULL,141,4,84.13541698384589,5.05,168.62966760569688,2282); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17139,'2018-01-07T10:25:15.235Z',NULL,174,2,111.61430894181083,6.14,234.47357096504265,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17140,'2020-04-13T01:24:54.026Z',NULL,193,3,50.38077396807232,2.77,13.193330375120617,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17141,'2018-05-08T19:57:06.559Z',NULL,93,3,49.81864156655383,2.74,28.072960797537263,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17142,'2018-02-19T12:06:48.337Z',NULL,81,1,43.9329842322118,2.42,37.166175333337726,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17143,'2018-01-15T21:06:31.481Z',NULL,165,1,38.30449564120193,2.11,16.627247520237134,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17144,'2019-08-13T13:25:38.102Z',NULL,93,3,49.81864156655383,2.74,48.449177653194475,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17145,'2018-12-26T15:50:59.026Z',NULL,86,1,92.31436670850246,5.08,194.77943862925576,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17146,'2018-01-15T18:21:34.165Z',NULL,12,1,116.01427581618326,6.38,120.40794577071739,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17147,'2018-01-23T23:07:53.633Z',NULL,31,1,105.65346467128523,5.81,172.6906126009541,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17148,'2018-01-15T10:13:46.568Z',NULL,145,2,61.1983004605443,3.37,33.26662502898276,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17149,'2019-08-30T17:18:19.911Z',NULL,181,5,143.88940370476112,7.91,235.45506539841367,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17150,'2017-09-28T00:01:10.189Z',NULL,67,2,27.496539271971862,1.51,54.45253245962854,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17151,'2017-12-20T08:43:39.114Z',NULL,26,1,45.41647453836076,2.5,14.45487735996286,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17152,'2018-09-21T19:34:08.588Z',NULL,8,5,98.83823503993958,5.44,168.7958857218381,2284); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17153,'2019-11-15T14:22:46.138Z',NULL,145,2,61.1983004605443,3.98,77.71557507148458,2285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17154,'2017-09-13T06:21:04.372Z',NULL,175,4,78.21653962235106,5.08,105.94877478865762,2285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17155,'2019-05-24T11:53:24.215Z',NULL,32,4,107.1448636959614,6.96,44.871634848609666,2285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17156,'2018-04-04T12:42:48.861Z',NULL,20,2,37.32649625046575,2.43,64.17751378136356,2285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17157,'2019-01-18T15:56:37.996Z',NULL,161,1,47.59120561297272,3.09,49.71146178925104,2285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17158,'2020-02-08T07:21:14.616Z',NULL,69,1,73.38772304360626,4.77,37.022703886717665,2285); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17159,'2019-09-14T20:45:25.600Z',NULL,147,4,66.64727121216615,2.82,22.468611221677868,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17160,'2019-10-17T13:15:30.551Z',NULL,2,2,105.11984419607644,4.44,60.40796162454818,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17161,'2019-09-12T17:17:43.651Z',NULL,128,3,75.08016314504417,3.17,23.726275537935596,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17162,'2020-01-12T10:43:57.314Z',NULL,115,2,77.91196471862148,3.29,64.7385744274515,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17163,'2019-06-03T19:48:05.567Z',NULL,104,4,106.44215255778118,4.5,163.51760428405387,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17164,'2019-11-01T00:20:40.509Z',NULL,142,1,70.34853057210945,2.97,66.22918567434392,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17165,'2019-12-27T23:47:36.997Z',NULL,50,1,53.64019616819762,2.27,57.344692241847504,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17166,'2020-02-03T11:41:42.106Z',0.5231927250884421,73,2,71.6287722595695,3.03,118.38709611141714,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17167,'2019-07-09T20:15:15.036Z',NULL,186,5,98.9770008385166,4.18,34.86528217850469,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17168,'2019-10-26T16:18:26.348Z',NULL,106,4,52.723521442619514,2.23,19.618046994685347,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17169,'2018-12-28T12:11:02.901Z',NULL,69,1,73.38772304360626,3.1,151.06217789256638,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17170,'2018-08-22T11:38:10.903Z',5.0231927250884425,49,3,131.42865839323724,5.55,79.85440726377792,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17171,'2019-07-04T04:06:42.254Z',NULL,19,3,64.00675097561322,2.7,79.03010890381758,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17172,'2016-10-20T11:37:51.063Z',NULL,146,5,84.03151414144409,3.55,148.0141414004187,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17173,'2019-12-25T12:20:07.533Z',NULL,60,2,29.80214751859149,1.26,46.79894731444353,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17174,'2017-10-03T16:04:27.045Z',NULL,72,4,94.80254599192457,4.01,185.81179105483469,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17175,'2018-11-23T05:23:45.776Z',NULL,121,2,40.44528328808107,1.71,12.12181068738658,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17176,'2020-02-15T17:36:52.878Z',NULL,94,1,109.21864156655383,4.61,83.83214453223357,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17177,'2018-03-21T12:01:44.456Z',NULL,91,1,65.09432810381134,2.75,102.93122430143336,2286); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17178,'2019-06-21T19:08:39.301Z',NULL,193,6,50.38077396807232,2.02,91.60230884123521,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17179,'2020-01-20T04:34:23.349Z',NULL,41,1,63.50890855689462,2.54,79.79333898685303,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17180,'2019-08-29T01:01:06.177Z',NULL,82,3,60.89545738030947,2.44,31.345273503336507,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17181,'2017-11-06T04:28:11.646Z',NULL,191,1,85.72279013719552,3.43,146.23471379220103,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17182,'2018-09-15T07:18:03.823Z',NULL,52,2,103.67587240151535,4.15,41.055695266160726,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17183,'2016-07-16T18:32:07.046Z',NULL,34,2,49.535942579421324,1.98,86.23435522862249,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17184,'2018-11-29T03:49:15.344Z',NULL,84,1,81.87627832636537,3.28,145.07124801440844,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17185,'2018-06-03T04:18:37.822Z',NULL,41,2,63.50890855689462,2.54,81.10723016909732,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17186,'2017-12-08T03:41:04.036Z',NULL,58,1,52.097186713859216,2.08,84.4709329595686,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17187,'2020-01-25T08:52:49.859Z',NULL,10,1,47.6793282102869,1.91,8.81776584417793,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17188,'2019-11-26T00:19:55.217Z',NULL,175,2,117.3248094335266,4.69,231.65611574324424,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17189,'2017-11-17T08:07:25.589Z',NULL,181,1,95.92626913650741,3.84,118.37165508792918,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17190,'2017-09-27T22:11:46.123Z',NULL,111,3,37.01783079127111,1.48,61.54424426701247,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17191,'2018-10-23T04:12:31.802Z',5.0231927250884425,92,5,124.89242686579996,5,248.0121564593937,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17192,'2019-09-21T11:37:06.025Z',NULL,96,5,104.82144858590365,4.19,155.51443818672146,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17193,'2017-09-27T02:58:47.866Z',NULL,175,5,78.21653962235106,3.13,161.80585618678074,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17194,'2018-02-05T09:10:41.671Z',NULL,144,1,61.1983004605443,2.45,14.157203068963199,2287); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17195,'2018-10-20T13:55:55.896Z',NULL,177,2,128.8192981944599,0,71.84993665642064,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17196,'2019-05-21T14:30:07.332Z',NULL,169,3,59.53172693453274,0,88.86308767876281,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17197,'2018-07-07T01:09:11.808Z',NULL,76,5,63.82421061366486,0,51.15081493964938,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17198,'2018-11-14T13:26:51.915Z',NULL,172,2,122.3651993029456,0,138.57922597714028,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17199,'2019-01-27T14:31:02.724Z',NULL,101,1,139.82488066180403,0,100.38926904944528,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17200,'2019-08-20T07:46:00.014Z',NULL,164,4,92.96789820016517,0,74.30918870746936,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17201,'2017-04-21T14:35:09.777Z',NULL,61,1,15.691943673970439,0,22.948759227865114,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17202,'2019-10-26T22:42:25.337Z',NULL,80,2,54.91325681036414,0,75.88844598710428,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17203,'2019-10-06T05:12:26.921Z',NULL,145,4,61.1983004605443,0,43.16979416922548,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17204,'2019-02-03T21:59:45.748Z',NULL,87,1,117.25536340498041,0,66.78164790887465,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17205,'2017-05-22T08:55:34.342Z',NULL,144,3,40.7988669736962,0,76.9626520734365,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17206,'2019-11-29T09:44:44.765Z',NULL,74,2,51.12804227386549,0,52.36276149155891,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17207,'2018-05-15T00:52:41.279Z',NULL,105,2,52.723521442619514,0,84.84873840367963,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17208,'2017-04-05T01:28:17.661Z',NULL,137,2,45.18165304538124,0,76.82618026253118,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17209,'2018-05-25T17:43:09.815Z',NULL,72,5,142.20381898788685,0,180.4202869535167,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17210,'2017-04-05T19:50:13.028Z',NULL,147,4,44.4315141414441,0,30.706514270679644,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17211,'2017-12-19T08:14:31.716Z',NULL,10,2,31.78621880685793,0,36.52029171482716,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17212,'2017-11-02T08:16:09.938Z',NULL,118,3,38.418408731319154,0,49.36246177705282,2289); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17213,'2019-04-17T07:06:51.930Z',NULL,66,2,136.16126271106958,8.85,170.9314326299492,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17214,'2018-07-05T10:02:51.384Z',NULL,161,4,47.59120561297272,3.09,95.1359079517524,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17215,'2016-09-13T11:15:21.767Z',NULL,161,5,31.727470408648482,2.06,34.36720817769415,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17216,'2017-01-20T13:48:38.208Z',NULL,30,2,42.7829881204479,2.78,45.203195554768605,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17217,'2020-04-11T07:27:27.335Z',NULL,174,2,111.61430894181083,7.25,35.485064642389545,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17218,'2018-09-26T16:17:18.792Z',NULL,164,4,92.96789820016517,6.04,130.24613170451897,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17219,'2018-07-21T21:48:12.504Z',NULL,8,5,98.83823503993958,6.42,151.60592543859488,2290); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17220,'2019-12-11T22:26:20.505Z',NULL,124,2,110.93145648834248,7.77,125.04659598078443,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17221,'2018-01-18T08:49:36.786Z',NULL,103,2,47.04215255778118,3.29,74.1811153094313,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17222,'2017-03-23T14:53:57.965Z',NULL,17,1,53.290720311951766,3.73,92.17972832575272,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17223,'2017-06-05T11:09:01.612Z',NULL,175,6,78.21653962235106,5.48,29.839846466080846,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17224,'2019-05-19T18:07:27.332Z',NULL,128,4,75.08016314504417,5.26,91.42628765821242,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17225,'2018-01-02T17:13:42.481Z',NULL,60,2,29.80214751859149,2.09,40.19503318825337,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17226,'2017-07-09T04:45:12.741Z',NULL,38,6,44.04624855892918,3.08,15.992207836569408,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17227,'2017-09-21T03:50:19.152Z',NULL,131,5,75.41148135558485,5.28,84.53203934215645,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17228,'2020-02-13T01:39:29.126Z',3.386741842484342,144,1,61.1983004605443,4.28,117.40095190875057,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17229,'2017-03-22T14:24:44.024Z',NULL,189,1,62.18492169821006,4.35,108.56884608012702,2292); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17230,'2019-09-14T12:21:06.559Z',NULL,2,6,105.11984419607644,4.2,213.43400465229192,2293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17231,'2020-04-10T04:26:29.871Z',NULL,25,3,68.62263967182464,2.74,109.2289192491162,2293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17232,'2019-05-02T05:00:48.707Z',NULL,93,4,49.81864156655383,1.99,98.90040355206672,2293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17233,'2019-01-25T12:22:21.963Z',NULL,84,2,81.87627832636537,3.28,100.45083541627464,2293); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17234,'2018-11-11T16:10:42.120Z',NULL,8,2,98.83823503993958,6.18,55.51920640829931,2294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17235,'2019-09-07T14:28:37.237Z',NULL,48,35,123.20884248534108,7.7,225.51705067070102,2294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17236,'2018-05-17T11:32:44.998Z',NULL,31,3,105.65346467128523,6.6,60.47356355473134,2294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17237,'2019-04-06T15:44:13.878Z',NULL,112,3,41.329386510090345,2.58,44.305670530874494,2294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17238,'2017-02-11T12:26:25.032Z',NULL,179,2,45.549391048892794,2.85,8.799072179337612,2294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17239,'2018-03-29T12:24:12.673Z',3.386741842484342,85,1,54.90104734428525,3.43,108.70230508370568,2294); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17240,'2018-03-02T21:40:44.118Z',NULL,41,1,63.50890855689462,2.68,30.540516329808252,2295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17241,'2018-09-12T08:28:26.554Z',NULL,153,5,66.79892314178237,2.82,86.4371410237678,2295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17242,'2018-08-21T15:41:57.460Z',NULL,11,7,132.45679913492563,5.6,203.73027665182295,2295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17243,'2018-10-24T14:43:28.688Z',NULL,39,7,114.58158180283459,4.84,224.39737009853528,2295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17244,'2019-03-23T03:29:07.271Z',NULL,86,1,92.31436670850246,3.9,174.90128905251427,2295); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17245,'2018-12-02T02:37:58.064Z',7.886741842484342,41,1,63.50890855689462,3.97,49.40429328089567,2296); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17246,'2019-10-13T02:30:15.231Z',7.886741842484342,199,6,115.4300138092855,6.93,163.65348874906218,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17247,'2018-03-31T06:28:01.655Z',NULL,84,1,81.87627832636537,4.91,110.81712829600315,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17248,'2017-11-16T22:15:59.084Z',NULL,12,3,77.34285054412217,4.64,154.98129677689195,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17249,'2017-05-01T16:15:16.516Z',NULL,178,4,78.21975500247076,4.69,20.643698050248585,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17250,'2017-08-29T12:34:20.499Z',7.886741842484342,7,7,98.81933684368194,5.93,174.96649609449594,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17251,'2019-02-11T06:45:34.632Z',NULL,102,2,47.04215255778118,2.82,75.90726920397933,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17252,'2017-11-25T13:23:14.812Z',NULL,55,3,63.84752383956291,3.83,55.84097750778407,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17253,'2017-05-22T09:36:59.141Z',NULL,184,4,77.3982748679465,4.64,96.63219188047049,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17254,'2017-03-12T09:58:16.098Z',NULL,32,1,71.42990913064094,4.29,126.16933625719072,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17255,'2017-11-17T13:32:23.750Z',NULL,31,2,70.43564311419016,4.23,143.7865129455361,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17256,'2018-03-12T17:25:28.636Z',NULL,166,1,38.30449564120193,2.3,21.05919300886333,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17257,'2018-07-08T08:30:46.868Z',NULL,41,4,63.50890855689462,3.81,45.81284583708547,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17258,'2018-10-29T07:42:46.167Z',NULL,197,4,70.14610686710009,4.21,97.24029724655975,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17259,'2016-12-01T12:27:53.830Z',NULL,126,2,83.49598746872304,5.01,163.75205714587165,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17260,'2017-11-29T19:14:39.765Z',NULL,66,2,90.77417514071306,5.45,76.21876182413021,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17261,'2017-06-19T21:15:22.533Z',NULL,144,5,40.7988669736962,2.45,43.371107432148676,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17262,'2018-08-08T05:10:49.626Z',NULL,168,5,118.93172693453273,7.14,180.83811514761427,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17263,'2019-09-09T16:27:01.351Z',NULL,15,4,37.648145389078365,2.26,45.46174203472995,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17264,'2020-01-04T01:53:12.962Z',NULL,159,2,35.53017445377361,2.13,40.62480593152671,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17265,'2018-04-20T05:31:00.334Z',NULL,65,2,68.22769726470014,4.09,122.11436188866124,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17266,'2020-03-02T06:07:38.502Z',NULL,90,1,123.1196127553999,7.39,206.92875372878447,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17267,'2018-08-26T08:53:22.040Z',NULL,5,5,124.1176465275534,7.45,79.29034288468407,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17268,'2019-09-26T12:06:33.581Z',NULL,101,4,139.82488066180403,8.39,239.9840386127286,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17269,'2017-02-06T04:31:08.048Z',4.155247208876179,10,1,31.78621880685793,1.91,57.41249742394749,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17270,'2020-02-06T02:47:21.615Z',NULL,96,1,104.82144858590365,6.29,87.77914117345112,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17271,'2018-01-13T14:56:07.594Z',NULL,113,2,110.47725376186015,6.63,125.08664586645601,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17272,'2019-01-14T22:10:01.592Z',NULL,132,2,127.88197029833711,7.67,70.6519938960993,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17273,'2018-04-22T06:52:45.940Z',3.743089292493721,108,2,50.094887884945365,3.01,85.77753654674714,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17274,'2016-11-29T12:43:46.037Z',NULL,171,2,70.05110494330981,4.2,27.524251304043542,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17275,'2019-10-30T15:18:27.984Z',NULL,50,4,53.64019616819762,3.22,73.11828417878742,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17276,'2017-01-13T00:21:56.502Z',NULL,13,1,75.0861692740371,4.51,16.034796698074025,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17277,'2018-12-10T00:31:20.394Z',NULL,134,2,42.49233549998661,2.55,85.89072535699317,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17278,'2018-10-31T11:21:48.464Z',NULL,14,4,37.648145389078365,2.26,34.038223639288276,2298); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17279,'2019-10-14T05:30:24.188Z',NULL,26,4,68.12471180754113,4.26,136.6935675470609,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17280,'2017-12-05T01:54:48.920Z',NULL,81,2,29.288656154807867,1.83,17.372880723365395,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17281,'2019-02-18T14:36:18.838Z',NULL,115,1,77.91196471862148,4.87,151.6952116274379,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17282,'2017-01-15T18:22:58.251Z',NULL,80,2,36.60883787357609,2.29,45.06921842769454,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17283,'2019-07-27T16:20:33.145Z',NULL,178,4,117.32963250370614,7.33,185.39370478033553,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17284,'2019-01-06T02:30:31.483Z',NULL,128,2,75.08016314504417,4.69,88.71194490851094,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17285,'2019-09-28T23:17:14.007Z',NULL,130,4,75.02573869315137,4.69,79.2167352830365,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17286,'2018-09-23T00:29:29.422Z',NULL,169,4,59.53172693453274,3.72,89.70559640115593,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17287,'2018-08-12T07:26:43.422Z',NULL,77,5,101.01691728415972,6.31,110.52007310129532,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17288,'2019-12-02T20:14:03.277Z',NULL,65,2,68.22769726470014,4.26,143.59096907068357,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17289,'2019-08-05T07:20:49.737Z',4.155247208876179,125,5,80.39699207990944,5.02,38.947831324344094,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17290,'2019-04-03T07:52:04.403Z',NULL,64,2,143.4221774571866,8.96,176.80737163373638,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17291,'2018-06-08T20:31:42.871Z',NULL,21,5,60.57501609456816,3.79,90.52610637318787,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17292,'2019-09-04T08:26:50.818Z',NULL,188,4,33.87738254731509,2.12,62.537026552069364,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17293,'2019-10-11T12:37:40.657Z',NULL,109,4,119.04991068193098,7.44,110.03884992709388,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17294,'2020-03-10T04:48:19.079Z',NULL,123,1,110.93145648834248,6.93,216.58310273922132,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17295,'2017-07-28T17:53:26.272Z',NULL,19,4,42.67116731707548,2.67,52.865004418187645,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17296,'2019-07-18T07:06:57.288Z',NULL,39,4,114.58158180283459,7.16,35.11594078159116,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17297,'2018-06-07T18:56:35.875Z',NULL,77,5,101.01691728415972,6.31,191.05085665909905,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17298,'2018-05-23T18:14:43.965Z',3.743089292493721,122,3,99.84528328808108,6.24,31.12370522930005,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17299,'2019-07-08T04:23:38.032Z',NULL,172,4,122.3651993029456,7.65,75.17683272529217,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17300,'2019-02-02T21:55:26.992Z',NULL,54,1,62.09360840402396,3.88,73.95484560890122,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17301,'2017-03-24T22:25:04.519Z',NULL,19,1,42.67116731707548,2.67,28.600475918965866,2299); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17302,'2018-03-26T08:42:50.495Z',NULL,1,1,44.19489169601981,1.77,48.76771353557257,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17303,'2019-03-22T01:26:58.750Z',1.5095620624518227,75,0,125.81276373452337,5.03,86.23418477513253,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17304,'2017-09-11T09:05:59.440Z',NULL,166,2,25.536330427467956,1.02,22.785979480769097,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17305,'2019-09-11T07:39:17.963Z',NULL,88,4,105.41292031622555,4.22,156.25266869441538,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17306,'2017-01-09T00:16:22.030Z',NULL,181,2,95.92626913650741,3.84,151.57590845175267,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17307,'2017-11-18T09:20:06.754Z',6.009562062451822,2,2,70.07989613071763,2.8,66.60411648645793,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17308,'2017-11-18T08:35:19.182Z',NULL,148,3,92.65447881697106,3.71,119.20791509463524,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17309,'2019-04-10T11:50:51.776Z',NULL,27,2,127.52471180754115,5.1,194.3753181257012,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17310,'2020-04-01T13:50:20.718Z',NULL,67,2,41.24480890795779,1.65,27.84940375104919,2300); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17311,'2020-03-10T17:37:27.578Z',NULL,157,1,139.8942352373801,5.6,205.59193916226747,2304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17312,'2020-03-31T22:46:54.912Z',NULL,196,0,70.14610686710009,2.81,31.718961209366757,2304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17313,'2016-11-24T22:06:07.948Z',NULL,46,1,78.6996782532274,3.15,133.45726143667116,2304); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17314,'2019-08-30T02:56:05.784Z',NULL,162,5,33.56789820016516,2.01,35.76447719909531,2306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17315,'2019-06-10T11:26:13.440Z',NULL,34,5,74.30391386913199,4.46,118.03192546106833,2306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17316,'2019-01-10T18:24:35.836Z',NULL,183,2,56.697412301919755,3.4,68.05625295185696,2306); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17317,'2019-02-23T02:19:08.614Z',1.5095620624518227,76,1,63.82421061366486,3.67,60.7260704710596,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17318,'2016-10-20T20:34:18.307Z',NULL,2,4,70.07989613071763,4.03,20.35709193805297,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17319,'2018-07-28T12:03:53.001Z',NULL,79,5,41.616917284159726,2.39,60.353142056388286,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17320,'2019-08-16T08:01:53.584Z',NULL,196,7,70.14610686710009,4.03,148.57680280750552,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17321,'2017-06-01T08:16:37.738Z',NULL,37,6,53.40516136013846,3.07,56.34460187567028,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17322,'2020-01-19T21:08:59.994Z',NULL,15,2,37.648145389078365,2.16,11.367492629186133,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17323,'2019-12-19T06:06:37.740Z',NULL,123,2,110.93145648834248,6.38,62.3221904639509,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17324,'2017-12-20T02:13:09.988Z',1.5095620624518227,89,2,42.47974183693326,2.44,66.0557815636427,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17325,'2017-06-25T07:04:01.567Z',NULL,158,3,93.26282349158673,5.36,18.08203703723883,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17326,'2016-09-05T10:27:35.586Z',NULL,61,2,15.691943673970439,0.9,25.00353197543531,2307); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17327,'2018-11-23T20:27:55.194Z',NULL,180,1,68.32408657333919,2.73,13.46151586944305,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17328,'2018-06-13T18:23:04.647Z',NULL,197,3,70.14610686710009,2.81,109.62141506902884,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17329,'2019-06-19T04:29:32.913Z',NULL,150,5,128.55415037577922,5.14,154.7623535215834,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17330,'2018-04-08T21:07:08.252Z',NULL,72,3,142.20381898788685,5.69,166.73612192863604,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17331,'2019-10-19T19:16:28.381Z',NULL,105,4,52.723521442619514,2.11,100.94412918671098,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17332,'2018-10-03T08:53:06.712Z',NULL,45,4,118.0495173798411,4.72,70.85018842124659,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17333,'2016-12-20T19:04:44.520Z',NULL,82,2,40.59697158687298,1.62,48.33917344533369,2309); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17334,'2017-08-22T22:16:51.008Z',NULL,42,5,25.336071424606207,1.01,28.81654737178766,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17335,'2019-01-26T07:07:01.538Z',NULL,172,1,122.3651993029456,4.89,124.54972156922211,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17336,'2019-10-23T10:13:44.487Z',NULL,161,4,47.59120561297272,1.9,75.09095607251368,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17337,'2018-08-11T19:25:34.716Z',NULL,159,5,35.53017445377361,1.42,50.611084091771424,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17338,'2019-08-09T03:51:00.227Z',NULL,70,5,57.493003808959784,2.3,84.85419036684966,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17339,'2019-10-28T19:32:13.540Z',NULL,18,6,81.90307121097293,3.28,143.27092857608034,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17340,'2019-02-16T18:53:30.001Z',NULL,114,1,77.91196471862148,3.12,36.740847456870284,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17341,'2019-02-14T01:27:07.153Z',NULL,155,1,43.77574310182776,1.75,28.599269117618164,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17342,'2019-08-19T22:19:17.204Z',NULL,46,5,118.0495173798411,4.72,190.97191182969286,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17343,'2018-08-26T00:44:53.913Z',NULL,171,7,105.07665741496471,4.2,72.79996143998927,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17344,'2018-11-18T17:12:34.488Z',NULL,166,2,38.30449564120193,1.53,19.588279035038493,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17345,'2019-05-09T04:53:17.371Z',6.009562062451822,140,3,66.80312547576881,2.67,34.45273029911437,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17346,'2019-10-28T12:00:02.574Z',NULL,186,4,98.9770008385166,3.96,173.3995341567164,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17347,'2018-12-15T19:19:40.605Z',NULL,93,1,49.81864156655383,1.99,15.965350457580227,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17348,'2020-03-31T16:29:30.806Z',4.073906693997945,61,1,23.537915510955656,0.94,26.097958624623377,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17349,'2020-03-21T09:28:54.932Z',NULL,143,1,61.1983004605443,2.45,23.50713473331685,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17350,'2018-12-25T19:08:21.550Z',NULL,169,2,59.53172693453274,2.38,55.37992805431348,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17351,'2018-12-20T12:44:23.132Z',NULL,189,2,93.27738254731509,3.73,76.29217608572114,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17352,'2019-05-05T16:05:06.326Z',NULL,68,5,115.24343882309758,4.61,77.05023094700448,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17353,'2018-11-03T17:38:42.393Z',NULL,184,4,116.09741230191975,4.64,51.298348131799344,2310); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17354,'2019-05-21T09:13:14.837Z',NULL,13,5,112.62925391105566,5.63,103.33606360064285,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17355,'2019-09-27T11:50:22.165Z',NULL,195,5,109.78077396807234,5.49,22.6903790529555,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17356,'2018-06-02T19:32:29.960Z',NULL,161,8,47.59120561297272,2.38,23.018650599003486,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17357,'2020-01-28T17:58:22.209Z',NULL,32,2,107.1448636959614,5.36,83.88111551475286,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17358,'2020-01-30T16:27:13.265Z',NULL,35,2,71.53687730741436,3.58,94.46717310283823,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17359,'2019-01-03T07:15:57.656Z',NULL,26,2,68.12471180754113,3.41,56.337955260501616,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17360,'2017-06-14T09:23:28.115Z',NULL,175,7,78.21653962235106,3.91,51.585980860960554,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17361,'2019-01-15T07:34:36.888Z',NULL,90,2,123.1196127553999,6.16,227.97443972995407,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17362,'2019-03-31T17:14:05.313Z',NULL,60,1,29.80214751859149,1.49,37.08319816579706,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17363,'2018-12-10T11:34:17.829Z',NULL,39,2,114.58158180283459,5.73,149.14719721411228,2311); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17364,'2018-10-11T17:57:30.860Z',NULL,77,6,101.01691728415972,6.57,27.97126767824396,2314); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17365,'2018-12-18T05:09:03.137Z',NULL,182,3,84.48940370476112,4.86,76.01325301898304,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17366,'2018-02-24T14:23:13.517Z',NULL,199,2,115.4300138092855,6.64,134.30625268097552,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17367,'2017-12-23T05:32:31.503Z',NULL,56,2,24.24752383956291,1.39,26.936471061184374,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17368,'2018-06-14T01:40:00.878Z',NULL,62,7,133.5202262591817,7.68,66.35512958533056,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17369,'2018-06-15T21:41:20.173Z',NULL,27,7,127.52471180754115,7.33,209.7892945353131,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17370,'2019-08-26T03:07:37.391Z',NULL,181,6,143.88940370476112,8.27,223.33770420779467,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17371,'2019-03-05T10:29:27.658Z',8.573906693997944,123,1,110.93145648834248,6.38,219.22567055230007,2316); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17372,'2019-12-21T15:34:54.408Z',NULL,41,3,63.50890855689462,4.13,119.08494208527155,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17373,'2018-01-25T02:18:16.070Z',NULL,68,2,115.24343882309758,7.49,242.43146405531948,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17374,'2019-09-24T10:13:43.282Z',NULL,51,4,75.65058751905018,4.92,44.69634114748518,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17375,'2020-02-29T22:35:10.264Z',NULL,164,1,92.96789820016517,6.04,77.87593842492565,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17376,'2018-08-03T09:55:53.634Z',NULL,128,7,75.08016314504417,4.88,39.24249062375819,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17377,'2020-04-12T00:46:03.975Z',NULL,135,4,45.80402317157342,2.98,70.13850292731688,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17378,'2020-03-07T07:39:56.731Z',NULL,23,1,116.86672609493307,7.6,218.71487297998988,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17379,'2019-09-01T14:44:52.091Z',NULL,170,5,105.07665741496471,6.83,84.96161003941181,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17380,'2018-12-17T19:35:05.714Z',NULL,89,2,63.719612755399886,4.14,32.164509129107344,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17381,'2019-02-24T02:47:45.372Z',NULL,61,1,23.537915510955656,1.53,22.600714167106375,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17382,'2020-04-05T03:02:00.780Z',NULL,36,2,130.93687730741433,8.51,34.819608755804936,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17383,'2019-02-05T11:02:35.913Z',NULL,2,2,105.11984419607644,6.83,52.67832683491354,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17384,'2019-07-27T17:17:38.911Z',NULL,162,7,33.56789820016516,2.18,17.929211591485185,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17385,'2020-01-13T04:01:09.880Z',4.073906693997945,191,3,128.5841852057933,8.36,242.46458380936002,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17386,'2019-04-28T12:12:51.678Z',NULL,46,3,118.0495173798411,7.67,158.30783527035334,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17387,'2016-10-23T23:28:57.299Z',NULL,192,4,46.122790137195516,3,79.01253194628487,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17388,'2019-12-28T13:32:28.569Z',NULL,170,2,105.07665741496471,6.83,48.63453430582291,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17389,'2018-10-04T00:40:18.206Z',NULL,63,6,133.5202262591817,8.68,88.34237122932363,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17390,'2017-06-24T23:52:16.830Z',NULL,15,7,25.09876359271891,1.63,4.554045168836702,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17391,'2017-02-22T11:51:35.071Z',8.573906693997944,168,13,79.28781795635516,5.15,36.88826487719833,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17392,'2018-02-14T13:37:56.715Z',NULL,147,2,66.64727121216615,4.33,29.10250126136849,2317); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17393,'2019-06-09T18:14:31.828Z',NULL,120,8,83.5020135028928,4.28,27.404825356225874,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17394,'2020-03-14T09:11:27.578Z',3.959890069569911,171,1,105.07665741496471,5.39,35.130925691509944,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17395,'2019-12-11T02:08:35.396Z',NULL,8,2,98.83823503993958,5.07,177.88299364283145,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17396,'2018-07-07T02:42:12.509Z',NULL,56,5,36.37128575934436,1.86,58.064965299751606,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17397,'2018-06-23T06:28:19.439Z',NULL,113,7,110.47725376186015,5.66,201.56551318449027,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17398,'2017-10-27T14:33:41.235Z',NULL,124,6,73.95430432556165,3.79,150.00743625949255,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17399,'2018-12-18T15:40:10.206Z',NULL,8,2,98.83823503993958,5.07,69.64272608867124,2320); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17400,'2019-04-03T21:12:30.653Z',NULL,86,2,92.31436670850246,3.69,16.750828362195666,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17401,'2020-02-03T02:48:29.451Z',NULL,31,1,105.65346467128523,4.23,169.07882643183612,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17402,'2017-01-17T11:54:26.468Z',NULL,45,2,78.6996782532274,3.15,57.754987004110646,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17403,'2018-11-23T11:18:21.560Z',NULL,114,3,77.91196471862148,3.12,89.54713490673936,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17404,'2018-01-25T10:09:36.007Z',NULL,96,2,104.82144858590365,4.19,55.86000516605078,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17405,'2019-12-30T09:32:54.687Z',NULL,66,2,136.16126271106958,5.45,171.9650074163336,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17406,'2019-01-28T12:49:43.725Z',NULL,147,2,66.64727121216615,2.67,110.4556029275478,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17407,'2019-08-30T06:37:48.027Z',NULL,54,7,62.09360840402396,2.48,112.85350625625824,2321); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17408,'2019-05-05T13:40:08.205Z',NULL,87,3,117.25536340498041,7.04,148.56838582279732,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17409,'2020-02-29T00:09:34.109Z',NULL,8,2,98.83823503993958,5.93,54.807607407438084,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17410,'2018-12-15T10:17:49.148Z',NULL,83,2,81.87627832636537,4.91,75.55845566070178,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17411,'2017-10-19T18:44:55.442Z',NULL,158,4,93.26282349158673,5.6,95.50878204472856,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17412,'2017-09-14T06:43:16.404Z',NULL,15,4,25.09876359271891,1.51,23.26668427609685,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17413,'2018-11-23T05:45:51.231Z',8.45989006956991,140,3,66.80312547576881,4.01,114.59918540304335,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17414,'2017-12-29T10:39:04.052Z',NULL,77,3,67.34461152277315,4.04,104.74376343724549,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17415,'2019-09-09T22:15:21.984Z',NULL,126,5,125.24398120308456,7.51,236.05664273180346,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17416,'2019-09-13T01:41:51.917Z',NULL,45,4,118.0495173798411,7.08,71.27715777914463,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17417,'2018-03-18T05:55:50.350Z',NULL,196,1,70.14610686710009,4.21,22.844916108164227,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17418,'2019-08-30T01:25:19.224Z',NULL,89,7,63.719612755399886,3.82,121.88639725282039,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17419,'2018-08-17T12:49:12.863Z',NULL,66,7,136.16126271106958,8.17,169.4818952414996,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17420,'2019-05-30T14:54:54.120Z',NULL,24,3,112.30643674729413,6.74,70.2263820989745,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17421,'2019-08-25T19:09:28.379Z',8.45989006956991,37,5,80.10774204020768,4.81,79.65815574977884,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17422,'2017-02-28T01:45:35.151Z',NULL,46,2,78.6996782532274,4.72,91.04723130232647,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17423,'2019-05-30T02:13:41.403Z',NULL,144,6,61.1983004605443,3.67,87.51805290265438,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17424,'2018-06-07T03:23:05.114Z',NULL,107,7,50.094887884945365,3.01,87.30621954077724,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17425,'2019-02-16T14:58:29.766Z',3.959890069569911,182,1,84.48940370476112,5.07,146.80269284839608,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17426,'2019-01-17T11:18:20.012Z',NULL,8,2,98.83823503993958,5.93,72.82135433122059,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17427,'2019-10-03T22:06:58.896Z',NULL,154,4,81.87529553312261,4.91,160.3897192794189,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17428,'2018-12-17T20:13:36.204Z',NULL,76,2,63.82421061366486,3.83,21.47487853133155,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17429,'2019-01-20T17:58:31.613Z',NULL,190,2,128.5841852057933,7.72,60.50107067105923,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17430,'2019-07-17T23:14:22.051Z',NULL,142,5,70.34853057210945,4.22,36.41832717681317,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17431,'2017-05-22T13:07:32.210Z',NULL,64,5,95.61478497145774,5.74,114.02716941545242,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17432,'2019-05-18T00:54:54.471Z',NULL,30,3,64.17448218067184,3.85,113.43197932742993,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17433,'2019-09-20T16:13:41.763Z',NULL,179,4,68.32408657333919,4.1,59.96357035472401,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17434,'2019-06-20T03:05:17.445Z',NULL,20,7,37.32649625046575,2.24,77.23863491058576,2324); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17435,'2019-01-05T10:58:40.072Z',NULL,186,2,98.9770008385166,5.94,121.44667408333275,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17436,'2018-03-19T00:08:29.114Z',3.959890069569911,156,1,30.615804149046195,1.84,9.841212355034115,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17437,'2018-04-03T04:34:27.048Z',NULL,29,4,123.57448218067185,7.41,212.99387704832856,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17438,'2017-11-21T20:34:36.638Z',NULL,44,4,50.90170136783837,3.05,51.2853069317204,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17439,'2018-11-09T21:34:38.842Z',NULL,155,4,43.77574310182776,2.63,61.148148166121636,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17440,'2020-01-18T16:22:53.120Z',NULL,156,3,30.615804149046195,1.84,43.21062421453031,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17441,'2019-03-15T08:43:50.700Z',NULL,109,1,119.04991068193098,7.14,57.37478142208123,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17442,'2017-08-29T15:35:32.678Z',NULL,55,7,63.84752383956291,3.83,94.57602440189453,2327); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17443,'2017-10-28T19:05:38.216Z',NULL,80,6,36.60883787357609,2.75,29.007746943330094,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17444,'2016-09-27T09:37:48.584Z',NULL,188,5,22.584921698210056,1.69,33.40870381891011,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17445,'2019-08-15T08:32:31.326Z',NULL,96,72,104.82144858590365,7.86,96.55253085189558,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17446,'2019-03-21T18:03:35.649Z',NULL,106,1,52.723521442619514,3.95,13.034003109142477,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17447,'2018-07-26T02:57:41.112Z',NULL,177,5,128.8192981944599,9.66,220.21744978557786,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17448,'2019-04-21T18:24:02.017Z',NULL,69,3,73.38772304360626,5.5,128.615463688609,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17449,'2017-02-05T20:29:36.814Z',NULL,106,2,35.149014295079674,2.64,36.26696268793454,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17450,'2017-01-18T06:56:27.685Z',NULL,185,3,26.384667225677738,1.98,57.17555062635089,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17451,'2018-10-14T16:48:52.712Z',NULL,32,7,107.1448636959614,8.04,88.39490727125064,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17452,'2020-02-21T12:13:37.836Z',NULL,98,2,112.41825444654248,8.43,202.0358631967314,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17453,'2017-12-22T17:00:02.761Z',NULL,176,2,38.616539622351056,2.9,8.48472037239836,2328); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17454,'2018-08-22T13:15:39.995Z',NULL,136,7,105.20402317157343,4.21,193.91961739249032,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17455,'2018-04-25T02:16:52.788Z',NULL,158,2,139.8942352373801,5.6,60.1620450328909,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17456,'2017-02-03T02:15:05.758Z',NULL,68,2,76.82895921539838,3.07,27.17755706404214,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17457,'2020-01-27T09:48:44.525Z',NULL,121,3,40.44528328808107,1.62,43.11186341777749,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17458,'2019-11-17T02:14:25.072Z',NULL,45,4,118.0495173798411,4.72,152.47603743758162,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17459,'2017-03-16T21:27:09.135Z',NULL,64,1,95.61478497145774,3.82,69.15133066638178,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17460,'2020-02-16T20:35:29.228Z',NULL,189,2,93.27738254731509,3.73,159.19838409267376,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17461,'2018-08-26T18:34:37.888Z',NULL,56,9,36.37128575934436,1.45,47.071908969016576,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17462,'2019-01-15T16:33:30.584Z',NULL,117,3,55.024851254077866,2.2,26.83450972926585,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17463,'2019-11-08T17:01:49.187Z',NULL,53,4,44.27587240151534,1.77,37.00117108269183,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17464,'2019-08-13T00:55:43.510Z',NULL,141,9,126.20312547576883,5.05,120.26686198684287,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17465,'2017-12-28T17:39:41.776Z',NULL,82,2,40.59697158687298,1.62,72.77468621542815,2329); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17466,'2019-05-29T07:31:41.795Z',NULL,145,3,61.1983004605443,0,105.14954460190604,2332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17467,'2018-10-15T18:05:18.940Z',8.276461160658226,20,6,37.32649625046575,0,59.741759026818215,2332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17468,'2016-11-21T04:22:25.607Z',NULL,56,3,24.24752383956291,0,15.070745796777604,2332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17469,'2018-11-09T22:53:54.464Z',NULL,113,3,110.47725376186015,0,132.7888519610079,2332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17470,'2018-06-17T16:25:17.358Z',NULL,127,8,134.48016314504417,0,113.65141351838466,2332); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17471,'2020-02-08T22:58:44.083Z',NULL,186,2,98.9770008385166,6.93,203.70185219721284,2333); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17472,'2019-11-21T17:49:56.188Z',NULL,69,2,73.38772304360626,5.14,44.64069603160457,2333); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17473,'2018-05-11T18:56:06.763Z',NULL,141,4,126.20312547576883,8.68,73.99492941032847,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17474,'2019-01-11T19:19:01.586Z',NULL,140,3,66.80312547576881,4.59,88.83477052791677,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17475,'2018-01-07T08:05:43.603Z',NULL,60,2,29.80214751859149,2.05,34.47474112307651,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17476,'2018-04-29T07:21:49.781Z',NULL,48,3,123.20884248534108,8.47,41.81514794592218,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17477,'2018-09-26T22:00:13.589Z',NULL,157,5,139.8942352373801,9.62,294.8744005455729,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17478,'2020-04-04T07:18:09.907Z',NULL,175,2,117.3248094335266,8.07,163.4609163669596,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17479,'2019-01-07T18:34:49.077Z',NULL,88,2,105.41292031622555,7.25,128.49355875460896,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17480,'2019-02-12T21:24:53.169Z',NULL,69,2,73.38772304360626,5.05,79.06334865482519,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17481,'2017-08-03T17:45:36.984Z',NULL,101,7,93.21658710786936,6.41,96.49438983143553,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17482,'2018-06-24T18:08:43.366Z',NULL,56,5,36.37128575934436,2.5,70.58437699337559,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17483,'2018-12-20T19:13:17.410Z',NULL,75,2,125.81276373452337,8.65,241.2312275108012,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17484,'2019-08-14T05:11:23.123Z',NULL,42,5,38.00410713690931,2.61,50.45795388026277,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17485,'2018-12-18T21:38:53.794Z',3.7764611606582257,160,2,47.59120561297272,3.27,10.872711936047814,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17486,'2019-03-13T12:20:36.367Z',NULL,9,1,87.46968147789205,6.01,120.68757238576283,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17487,'2018-07-04T01:17:21.138Z',NULL,53,5,44.27587240151534,3.04,88.16629187282665,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17488,'2017-05-11T21:22:59.153Z',3.7764611606582257,120,6,55.668009001928525,3.83,13.999304320558991,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17489,'2019-11-11T23:58:13.283Z',NULL,121,3,40.44528328808107,2.78,15.114193979660765,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17490,'2019-01-20T01:37:05.707Z',NULL,66,1,136.16126271106958,9.36,263.17902847564,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17491,'2018-07-17T19:33:25.120Z',NULL,123,3,110.93145648834248,7.63,144.21027620692854,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17492,'2020-03-15T09:07:23.130Z',NULL,73,1,71.6287722595695,4.92,73.71819629354508,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17493,'2018-09-29T02:51:07.035Z',NULL,77,5,101.01691728415972,6.94,176.65779877071486,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17494,'2018-09-10T08:53:49.969Z',NULL,1,5,44.19489169601981,3.04,60.520169104974485,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17495,'2017-05-14T18:09:43.849Z',NULL,68,4,76.82895921539838,5.28,44.914341090803354,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17496,'2019-07-24T20:08:55.950Z',NULL,23,5,116.86672609493307,8.03,64.76400602971417,2335); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17497,'2016-11-08T19:39:33.113Z',NULL,36,3,87.29125153827623,3.49,132.71698866119849,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17498,'2020-01-24T04:01:34.807Z',NULL,123,2,110.93145648834248,4.44,114.4808950119402,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17499,'2019-10-20T20:03:16.794Z',NULL,118,5,57.627613096978735,2.31,90.07865795936871,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17500,'2019-11-12T15:58:11.530Z',NULL,182,2,84.48940370476112,3.38,142.68072241084752,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17501,'2019-09-12T15:40:41.520Z',NULL,118,3,57.627613096978735,2.31,37.66374239186141,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17502,'2017-11-26T18:47:36.709Z',NULL,118,3,38.418408731319154,1.54,50.81823439835105,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17503,'2018-08-07T19:31:55.095Z',NULL,60,8,29.80214751859149,1.19,39.15695587762465,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17504,'2018-05-20T10:13:46.874Z',NULL,54,5,62.09360840402396,2.48,73.19540319743305,2336); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17505,'2019-04-22T15:39:17.765Z',NULL,31,3,105.65346467128523,0,211.04826134453543,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17506,'2019-10-21T09:30:49.095Z',7.51797411595229,159,5,35.53017445377361,0,70.24792166746859,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17507,'2019-06-12T22:50:55.572Z',NULL,150,8,128.55415037577922,0,57.96414597712208,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17508,'2018-09-26T06:17:48.183Z',NULL,181,5,143.88940370476112,0,161.4323046870387,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17509,'2018-04-28T09:21:22.510Z',NULL,136,3,105.20402317157343,0,105.70676338538853,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17510,'2019-09-20T17:09:49.796Z',NULL,45,6,118.0495173798411,0,29.252067557583675,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17511,'2018-11-09T21:32:12.930Z',NULL,25,3,68.62263967182464,0,32.35326048221072,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17512,'2018-05-10T02:52:38.228Z',NULL,60,4,29.80214751859149,0,23.625404525397524,2337); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17513,'2020-02-21T12:31:10.846Z',NULL,74,2,51.12804227386549,3.2,45.276497653364046,2339); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17514,'2018-11-24T23:55:40.161Z',3.0179741159522897,109,3,119.04991068193098,7.44,181.5522643846011,2339); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17515,'2020-01-12T22:24:21.662Z',NULL,171,2,105.07665741496471,6.57,170.71851885250032,2339); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17516,'2019-01-24T20:04:08.871Z',NULL,180,2,68.32408657333919,4.27,41.22085601005041,2339); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17517,'2019-11-29T03:00:04.820Z',NULL,23,4,116.86672609493307,7.01,158.23337954376885,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17518,'2020-01-09T09:50:02.041Z',NULL,152,2,48.89568729900663,2.93,72.98310142754357,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17519,'2018-04-10T10:45:31.570Z',NULL,165,4,38.30449564120193,2.3,27.159053198221564,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17520,'2019-06-04T00:57:52.462Z',NULL,155,8,43.77574310182776,2.63,75.67483708304869,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17521,'2020-02-06T06:11:50.959Z',NULL,30,2,64.17448218067184,3.85,41.62907003359781,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17522,'2018-02-14T19:17:02.969Z',NULL,34,2,74.30391386913199,4.46,29.700047075786323,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17523,'2019-02-01T10:09:22.668Z',NULL,116,2,114.42485125407785,6.87,142.62231632813447,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17524,'2019-04-05T03:12:06.553Z',NULL,39,4,114.58158180283459,6.87,178.3225818336716,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17525,'2018-08-17T02:59:59.493Z',NULL,171,7,105.07665741496471,6.3,75.6870062350493,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17526,'2020-03-09T15:58:50.341Z',NULL,151,1,91.61302306843446,5.5,39.80007500346276,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17527,'2019-07-03T02:04:02.920Z',NULL,71,6,82.80381898788684,4.97,16.216779055973245,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17528,'2020-02-21T03:24:45.535Z',NULL,86,2,92.31436670850246,5.54,141.32965293827607,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17529,'2019-10-27T09:30:47.488Z',NULL,44,4,76.35255205175756,4.58,125.89195576874842,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17530,'2019-12-03T16:07:54.745Z',NULL,190,2,128.5841852057933,7.72,226.64679603724295,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17531,'2018-11-23T22:19:25.272Z',NULL,84,4,81.87627832636537,4.91,138.9206734872413,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17532,'2017-02-17T21:18:07.857Z',NULL,166,2,25.536330427467956,1.53,52.83248044686255,2340); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17533,'2019-11-24T19:13:04.703Z',NULL,105,3,52.723521442619514,2.11,33.562497297661736,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17534,'2018-06-08T08:43:54.740Z',NULL,147,4,66.64727121216615,2.67,108.08844169833792,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17535,'2018-03-08T03:02:56.065Z',NULL,4,1,110.98767151282252,4.44,228.34766998756726,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17536,'2018-12-01T07:58:28.373Z',NULL,147,2,66.64727121216615,2.67,39.02572648616511,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17537,'2019-06-29T09:22:05.259Z',7.999224036028259,52,6,103.67587240151535,4.15,61.71163832853665,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17538,'2019-09-15T20:36:15.971Z',NULL,79,5,41.616917284159726,1.66,29.30118767724786,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17539,'2019-11-07T06:26:58.362Z',NULL,121,3,40.44528328808107,1.62,31.176494368007695,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17540,'2017-11-04T06:20:52.443Z',NULL,15,3,25.09876359271891,1,48.505306840831615,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17541,'2019-03-02T07:04:45.381Z',7.999224036028259,126,1,125.24398120308456,5.01,111.8468830910376,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17542,'2018-08-08T21:01:19.057Z',NULL,143,7,61.1983004605443,2.45,58.79202718819786,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17543,'2018-06-20T22:39:30.016Z',NULL,199,6,115.4300138092855,4.62,93.36359695956082,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17544,'2018-10-22T13:48:16.562Z',NULL,73,6,71.6287722595695,2.87,123.82266176702397,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17545,'2019-09-28T09:45:21.061Z',NULL,170,6,105.07665741496471,4.2,96.34055189670659,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17546,'2020-04-10T20:14:45.279Z',NULL,31,3,105.65346467128523,4.23,194.1216010746854,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17547,'2018-03-11T15:28:54.250Z',NULL,19,1,64.00675097561322,2.56,73.45529777825988,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17548,'2017-05-06T00:11:44.606Z',NULL,33,5,31.829909130640935,1.27,27.319489182622988,2341); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17549,'2020-03-13T00:18:47.612Z',NULL,180,1,68.32408657333919,4.78,117.8854512918001,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17550,'2019-07-16T12:23:14.331Z',NULL,83,5,81.87627832636537,5.73,80.82146188902216,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17551,'2019-06-29T01:25:50.471Z',NULL,31,6,105.65346467128523,7.4,199.3251289912439,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17552,'2019-08-14T18:07:23.593Z',NULL,133,7,68.4819702983371,4.79,131.9475715100243,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17553,'2020-02-10T15:35:42.920Z',NULL,153,1,66.79892314178237,4.68,31.84772145641413,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17554,'2019-10-14T00:13:30.919Z',NULL,120,6,83.5020135028928,5.85,172.99005256926776,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17555,'2019-08-20T11:43:11.885Z',NULL,75,7,125.81276373452337,8.81,166.85019214947252,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17556,'2018-12-27T09:44:54.176Z',3.4992240360282594,1,1,44.19489169601981,3.09,94.12151188165893,2342); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17557,'2019-11-11T13:21:32.856Z',NULL,127,3,134.48016314504417,5.78,56.32072050735576,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17558,'2018-08-12T14:05:48.145Z',NULL,197,7,70.14610686710009,3.02,137.4851556206221,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17559,'2019-03-23T09:41:17.242Z',NULL,69,1,73.38772304360626,3.16,85.38550244070572,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17560,'2017-08-15T03:46:04.072Z',NULL,171,9,70.05110494330981,3.01,56.29215863023851,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17561,'2017-09-26T05:33:08.758Z',3.4992240360282594,109,5,79.36660712128732,3.41,71.19195575840013,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17562,'2018-10-21T13:07:25.627Z',NULL,56,6,36.37128575934436,1.56,56.763811498318354,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17563,'2017-11-16T03:05:48.493Z',NULL,111,4,37.01783079127111,1.59,51.9345023386438,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17564,'2019-02-15T12:25:16.140Z',NULL,60,2,29.80214751859149,1.28,23.012253372595115,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17565,'2017-05-14T15:56:57.897Z',NULL,184,4,77.3982748679465,3.33,122.40271364320256,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17566,'2017-04-27T03:19:55.758Z',NULL,82,4,40.59697158687298,1.75,22.948920894603233,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17567,'2020-02-06T10:30:40.964Z',NULL,121,2,40.44528328808107,1.74,54.627720297066325,2344); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17568,'2019-04-12T21:35:12.329Z',NULL,172,2,122.3651993029456,0,207.89416228776284,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17569,'2018-12-23T14:03:04.624Z',NULL,107,2,50.094887884945365,0,15.713001453816974,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17570,'2017-11-18T11:57:55.980Z',NULL,34,3,49.535942579421324,0,44.841479194013374,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17571,'2017-06-29T03:40:17.789Z',NULL,197,5,46.76407124473339,0,34.35914441959917,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17572,'2019-05-31T14:53:23.561Z',NULL,22,3,32.136779940663494,0,64.74250447195115,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17573,'2019-12-10T19:56:50.458Z',NULL,125,1,80.39699207990944,0,140.7729550739145,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17574,'2018-08-07T08:21:04.876Z',7.999224036028259,64,5,143.4221774571866,0,260.0706111551383,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17575,'2017-08-28T15:16:14.723Z',NULL,184,7,77.3982748679465,0,125.57903113605869,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17576,'2019-08-07T03:13:10.982Z',NULL,104,7,106.44215255778118,0,90.40185860890804,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17577,'2016-10-09T01:03:46.426Z',NULL,80,6,36.60883787357609,0,73.77531069059154,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17578,'2018-10-20T02:01:51.945Z',NULL,65,7,68.22769726470014,0,98.54642074572874,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17579,'2019-07-01T03:50:43.164Z',NULL,113,6,110.47725376186015,0,102.67768517075518,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17580,'2019-01-08T22:44:25.249Z',NULL,129,2,148.1672972165937,0,238.64662473246548,2345); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17581,'2016-10-13T02:12:09.431Z',NULL,45,5,78.6996782532274,5.41,79.28789895482771,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17582,'2017-07-29T14:47:37.130Z',NULL,192,5,46.122790137195516,3.17,82.72555966992847,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17583,'2019-05-11T01:55:43.231Z',NULL,68,4,115.24343882309758,7.92,72.11287926138148,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17584,'2019-10-22T21:42:21.037Z',NULL,107,4,50.094887884945365,3.44,80.2319734541083,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17585,'2018-04-13T02:18:12.650Z',7.395659329883863,19,2,64.00675097561322,4.4,48.772275053838825,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17586,'2018-02-19T06:14:41.702Z',NULL,128,2,75.08016314504417,5.16,134.25765066126255,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17587,'2019-03-15T17:57:42.714Z',7.395659329883863,145,1,61.1983004605443,4.21,33.00523548716233,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17588,'2018-08-13T05:21:35.930Z',NULL,165,8,38.30449564120193,2.63,11.64885238712365,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17589,'2019-02-21T06:11:25.442Z',NULL,143,2,61.1983004605443,4.21,12.160688900030271,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17590,'2019-07-13T19:22:53.861Z',NULL,66,6,136.16126271106958,9.36,131.4851716460225,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17591,'2019-05-03T14:07:26.335Z',NULL,9,5,87.46968147789205,6.01,176.11602338976925,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17592,'2017-12-21T15:55:12.407Z',NULL,139,2,51.18512212784679,3.52,60.8347872969096,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17593,'2019-07-20T09:24:13.868Z',2.8956593298838627,18,3,81.90307121097293,5.63,24.81546434586284,2346); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17594,'2018-04-25T12:05:07.044Z',NULL,126,3,125.24398120308456,5.01,102.17279314540761,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17595,'2018-06-11T23:44:22.556Z',NULL,41,8,63.50890855689462,2.54,133.00430480260937,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17596,'2018-06-22T17:52:56.719Z',NULL,195,6,109.78077396807234,4.39,227.09285196654375,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17597,'2019-09-10T17:57:56.918Z',NULL,96,5,104.82144858590365,4.19,172.87425077988226,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17598,'2020-02-27T16:45:48.429Z',NULL,177,2,128.8192981944599,5.15,127.72528987832344,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17599,'2018-09-22T06:54:35.369Z',NULL,129,5,148.1672972165937,5.93,256.50542511653197,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17600,'2019-09-29T23:07:10.784Z',7.395659329883863,82,5,60.89545738030947,2.44,47.443080148441766,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17601,'2018-03-13T16:00:09.172Z',NULL,17,1,79.93608046792765,3.2,130.92549300117943,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17602,'2016-06-26T21:39:21.712Z',NULL,13,6,75.0861692740371,3,135.85113768775489,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17603,'2018-03-20T18:58:30.978Z',NULL,6,1,97.43621265344382,3.9,120.2161568305325,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17604,'2019-04-10T09:32:16.708Z',NULL,157,3,139.8942352373801,5.6,62.31834604142588,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17605,'2016-10-13T01:16:50.391Z',NULL,42,5,25.336071424606207,1.01,37.11391129231805,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17606,'2017-05-20T01:58:47.642Z',NULL,14,4,25.09876359271891,1,37.24085491691241,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17607,'2017-08-17T13:11:02.953Z',NULL,14,5,25.09876359271891,1,12.26998773662709,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17608,'2018-01-29T21:58:32.709Z',7.395659329883863,80,1,54.91325681036414,2.2,104.06654761079677,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17609,'2018-10-30T06:14:19.029Z',2.8956593298838627,94,5,109.21864156655383,4.37,148.0635297205125,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17610,'2019-02-03T22:46:26.236Z',NULL,9,2,87.46968147789205,3.5,170.2749955866212,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17611,'2018-09-14T19:38:57.012Z',NULL,81,3,43.9329842322118,1.76,13.688303290502464,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17612,'2016-08-08T08:05:42.593Z',NULL,161,5,31.727470408648482,1.27,58.60180629832273,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17613,'2020-03-14T09:01:05.948Z',NULL,99,1,67.83486485383094,2.71,59.93971563934422,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17614,'2019-08-17T07:16:06.625Z',NULL,181,83,143.88940370476112,5.76,293.930819530029,2347); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17615,'2019-04-30T16:08:03.782Z',NULL,197,3,70.14610686710009,2.81,104.89806119717281,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17616,'2019-08-15T08:08:54.253Z',NULL,14,5,37.648145389078365,1.51,28.797019321843724,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17617,'2020-01-23T20:07:04.229Z',NULL,67,1,41.24480890795779,1.65,9.817974828855128,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17618,'2019-10-12T18:01:39.260Z',NULL,81,5,43.9329842322118,1.76,17.482609052986323,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17619,'2018-10-18T18:50:14.595Z',NULL,48,7,123.20884248534108,4.93,236.37503856158673,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17620,'2019-07-10T01:59:25.137Z',NULL,120,6,83.5020135028928,3.34,48.73011411924819,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17621,'2017-03-03T04:26:57.566Z',2.8956593298838627,30,1,42.7829881204479,1.71,42.801477195641304,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17622,'2018-02-15T06:16:44.139Z',NULL,80,1,54.91325681036414,2.2,44.27061813599752,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17623,'2020-02-07T22:18:47.592Z',NULL,186,1,98.9770008385166,3.96,174.43140455199358,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17624,'2019-09-21T16:21:20.025Z',NULL,190,6,128.5841852057933,5.14,245.80274492135771,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17625,'2019-11-01T02:19:48.122Z',2.2080462692400666,11,3,132.45679913492563,5.3,69.1924946526335,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17626,'2018-04-17T15:44:44.472Z',NULL,123,3,110.93145648834248,4.44,232.42394136593566,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17627,'2018-04-30T15:30:48.510Z',NULL,17,3,79.93608046792765,3.2,77.30538153857374,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17628,'2019-09-22T04:40:19.561Z',NULL,67,4,41.24480890795779,1.65,28.42882003943066,2348); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17629,'2019-12-15T07:08:43.514Z',NULL,188,2,33.87738254731509,1.43,44.54036157089477,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17630,'2017-12-27T09:58:25.278Z',6.708046269240066,26,2,45.41647453836076,1.92,56.01683450775727,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17631,'2018-06-16T16:46:09.181Z',NULL,4,5,110.98767151282252,4.69,151.69452529147995,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17632,'2019-01-03T01:56:35.440Z',NULL,86,2,92.31436670850246,3.9,192.49905519743515,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17633,'2018-07-08T08:55:41.055Z',NULL,36,6,130.93687730741433,5.53,92.96999562155952,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17634,'2019-02-21T07:59:47.042Z',NULL,29,1,123.57448218067185,5.22,41.3928754638381,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17635,'2019-04-07T15:26:14.582Z',NULL,154,2,81.87529553312261,3.46,88.69868934666958,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17636,'2018-07-01T00:34:00.769Z',NULL,111,4,55.526746186906664,2.35,68.84326963932848,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17637,'2017-12-05T04:55:20.746Z',NULL,77,2,67.34461152277315,2.85,96.80116929916339,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17638,'2018-02-16T20:14:12.044Z',NULL,173,1,122.3651993029456,5.17,61.1217949542735,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17639,'2018-11-15T22:09:55.681Z',NULL,113,3,110.47725376186015,4.67,23.593368317835548,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17640,'2018-08-05T09:39:07.436Z',NULL,72,8,142.20381898788685,6.01,292.1438299856444,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17641,'2017-12-31T03:25:52.917Z',NULL,9,2,58.31312098526137,2.46,70.61587075159167,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17642,'2017-01-17T11:05:27.654Z',NULL,110,1,37.01783079127111,1.56,57.403465636173856,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17643,'2019-07-11T23:40:42.710Z',NULL,26,3,68.12471180754113,2.88,86.19689174065488,2349); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17644,'2018-09-03T15:01:01.212Z',NULL,66,3,136.16126271106958,5.45,105.88177389797612,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17645,'2018-06-26T18:44:23.662Z',NULL,74,5,51.12804227386549,2.05,97.81056524700051,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17646,'2018-03-16T22:25:29.211Z',NULL,52,1,103.67587240151535,4.15,172.2281479490806,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17647,'2019-05-22T05:47:23.640Z',NULL,165,2,38.30449564120193,1.53,30.58957612981787,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17648,'2019-08-04T17:26:58.932Z',NULL,88,6,105.41292031622555,4.22,68.71281062431243,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17649,'2017-08-04T09:39:48.952Z',NULL,90,8,82.07974183693327,3.28,112.16744748102546,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17650,'2018-10-07T16:04:44.713Z',NULL,126,6,125.24398120308456,5.01,220.84133010477493,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17651,'2019-12-20T05:36:30.483Z',NULL,96,2,104.82144858590365,4.19,92.19742170581914,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17652,'2019-06-16T02:03:48.578Z',NULL,124,5,110.93145648834248,4.44,100.9423362248815,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17653,'2018-07-19T07:17:02.018Z',NULL,165,4,38.30449564120193,1.53,19.967537320088883,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17654,'2019-03-12T01:29:20.892Z',NULL,3,1,53.08311732230858,2.12,16.233779693130913,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17655,'2019-02-10T21:25:06.101Z',NULL,159,2,35.53017445377361,1.42,24.695673633068328,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17656,'2018-07-14T08:26:31.316Z',NULL,165,6,38.30449564120193,1.53,77.90854365266848,2350); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17657,'2017-01-05T09:39:52.714Z',6.708046269240066,161,2,31.727470408648482,1.9,67.42514900705997,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17658,'2018-05-16T10:06:07.663Z',NULL,106,4,52.723521442619514,3.16,33.489782962251454,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17659,'2018-07-27T12:51:05.293Z',NULL,111,3,55.526746186906664,3.33,67.7114951038997,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17660,'2017-12-09T23:39:40.111Z',NULL,189,1,62.18492169821006,3.73,73.3645479276562,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17661,'2019-10-21T11:28:07.648Z',NULL,118,3,57.627613096978735,3.46,29.33432755594619,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17662,'2019-02-20T11:42:43.641Z',NULL,144,1,61.1983004605443,3.67,38.52478858109856,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17663,'2017-11-10T16:26:43.172Z',NULL,130,3,50.01715912876758,3,11.268715726416493,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17664,'2020-01-28T20:54:19.424Z',NULL,68,2,115.24343882309758,6.91,141.0850420050203,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17665,'2017-10-15T19:15:27.709Z',NULL,63,3,89.0134841727878,5.34,127.99841571082747,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17666,'2017-04-11T21:40:38.978Z',NULL,53,3,29.517248267676894,1.77,17.141770066656886,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17667,'2017-08-11T13:20:06.763Z',67.08046269240066,72,6,94.80254599192457,5.69,161.31748946492127,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17668,'2018-01-31T17:45:34.179Z',NULL,168,1,118.93172693453273,7.14,156.37288483209,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17669,'2019-02-05T02:12:57.406Z',NULL,52,1,103.67587240151535,6.22,76.27408243793174,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17670,'2018-04-03T18:59:16.611Z',3.9543364841361255,97,4,112.41825444654248,6.75,94.50930098467552,2351); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17671,'2019-09-28T11:58:21.670Z',NULL,12,7,116.01427581618326,5.8,30.32716581069304,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17672,'2018-08-19T00:59:05.842Z',NULL,99,9,67.83486485383094,3.39,96.69854986154138,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17673,'2019-10-04T02:08:38.142Z',NULL,141,7,126.20312547576883,6.31,34.78212864796479,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17674,'2020-01-09T12:51:44.194Z',NULL,148,2,138.9817182254566,6.95,255.18513586400297,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17675,'2018-04-07T11:01:49.335Z',NULL,171,2,105.07665741496471,5.25,156.00081588479475,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17676,'2020-01-09T09:53:32.358Z',NULL,123,2,110.93145648834248,5.55,38.400974086485554,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17677,'2018-08-05T23:48:54.862Z',NULL,18,5,81.90307121097293,4.1,72.67206328639034,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17678,'2019-03-12T01:18:18.134Z',NULL,197,1,70.14610686710009,3.51,138.47258838034514,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17679,'2019-06-01T18:42:08.074Z',NULL,63,7,133.5202262591817,6.68,125.66102907244016,2352); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17680,'2018-02-10T06:35:19.105Z',NULL,71,2,82.80381898788684,3.5,169.34512201309255,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17681,'2019-07-21T23:23:49.158Z',NULL,8,5,98.83823503993958,4.18,82.65806843983339,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17682,'2018-09-02T03:56:52.402Z',NULL,113,7,110.47725376186015,4.67,37.59414754987037,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17683,'2018-03-14T15:36:27.306Z',NULL,9,1,87.46968147789205,3.7,135.4623178173465,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17684,'2018-09-09T22:30:32.437Z',NULL,23,5,116.86672609493307,4.94,192.84914070524172,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17685,'2018-06-18T01:44:47.744Z',NULL,14,7,37.648145389078365,1.59,17.49148298212297,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17686,'2018-11-26T11:35:24.811Z',NULL,167,2,97.70449564120193,4.13,39.46974609668363,2353); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17687,'2018-04-11T06:53:43.983Z',NULL,33,3,47.7448636959614,2.02,28.655425403928444,2355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17688,'2017-10-08T04:44:02.466Z',NULL,158,6,93.26282349158673,3.94,156.6206676275565,2355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17689,'2018-04-19T04:54:58.419Z',NULL,186,2,98.9770008385166,4.18,189.50471604052638,2355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17690,'2018-04-25T01:40:04.265Z',NULL,110,2,55.526746186906664,2.35,28.278676410499934,2355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17691,'2019-04-16T07:34:44.109Z',NULL,147,2,66.64727121216615,2.82,68.42053539578198,2355); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17692,'2018-10-14T19:03:23.389Z',NULL,67,6,41.24480890795779,2.27,14.731449107250235,2356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17693,'2019-10-03T14:51:43.451Z',NULL,119,7,43.43814329652384,2.39,8.719364985076329,2356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17694,'2019-07-11T06:20:09.652Z',NULL,110,5,55.526746186906664,3.05,93.32255362149562,2356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17695,'2019-11-06T03:11:11.100Z',NULL,85,2,54.90104734428525,3.02,55.3878315540393,2356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17696,'2019-08-23T19:43:42.621Z',NULL,147,7,66.64727121216615,3.67,71.7202752856562,2356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17697,'2018-02-17T02:30:05.854Z',NULL,145,2,61.1983004605443,3.37,21.49767998112329,2356); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17698,'2018-07-22T14:36:17.013Z',NULL,14,7,37.648145389078365,1.77,62.33594822908466,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17699,'2019-09-25T12:58:13.775Z',NULL,193,5,50.38077396807232,2.37,96.26816481022362,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17700,'2018-12-29T02:03:44.863Z',3.9543364841361255,157,2,139.8942352373801,6.58,139.99809477840392,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17701,'2019-04-16T17:12:09.260Z',NULL,39,3,114.58158180283459,5.39,151.17781130423685,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17702,'2019-07-28T23:43:02.403Z',NULL,41,5,63.50890855689462,2.98,59.04616451067521,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17703,'2018-11-16T01:12:50.424Z',NULL,200,4,73.20395711799151,3.44,96.98943789167384,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17704,'2019-04-07T12:35:25.044Z',NULL,178,3,117.32963250370614,5.51,86.64613807894249,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17705,'2018-03-27T18:15:38.191Z',3.9543364841361255,2,1,105.11984419607644,4.94,198.41879759819548,2357); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17706,'2020-03-06T16:10:10.955Z',NULL,200,1,73.20395711799151,0,31.53973016406587,2358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17707,'2016-10-23T00:56:03.934Z',NULL,16,6,44.07353303251545,0,45.226119777682854,2358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17708,'2019-07-16T15:05:31.353Z',NULL,163,5,33.56789820016516,0,44.79220681018367,2358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17709,'2017-05-03T01:10:04.958Z',NULL,128,6,50.053442096696116,0,25.216280245049834,2358); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17710,'2019-11-05T01:39:28.978Z',NULL,160,4,47.59120561297272,2.97,18.412894621228542,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17711,'2018-12-26T02:13:37.319Z',NULL,94,2,109.21864156655383,6.83,198.19395275095886,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17712,'2020-04-06T12:33:13.973Z',NULL,116,2,114.42485125407785,7.15,55.163884316444275,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17713,'2019-01-10T06:59:50.125Z',NULL,198,2,70.14610686710009,4.38,22.69829461004468,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17714,'2017-09-02T14:08:27.674Z',8.454336484136125,166,4,25.536330427467956,1.6,23.84326380623272,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17715,'2019-11-15T08:30:24.290Z',NULL,65,2,68.22769726470014,4.26,25.547869089422427,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17716,'2019-04-23T12:26:56.983Z',NULL,188,2,33.87738254731509,2.12,41.3555862324084,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17717,'2017-12-11T05:43:49.460Z',NULL,153,2,44.532615427854914,2.78,31.424618377144068,2361); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17718,'2020-02-13T01:41:21.254Z',NULL,123,1,110.93145648834248,4.44,211.02711192500252,2362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17719,'2019-06-06T08:30:01.098Z',NULL,30,2,64.17448218067184,2.57,25.483799285862236,2362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17720,'2017-11-10T16:39:16.606Z',NULL,112,1,27.55292434006023,1.1,8.642481110818265,2362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17721,'2018-07-14T09:33:22.455Z',NULL,43,2,76.35255205175756,3.05,18.015005601468495,2362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17722,'2020-03-25T22:19:44.083Z',0.3430059163854806,113,0,110.47725376186015,4.42,22.81486264743512,2362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17723,'2017-12-06T04:57:05.534Z',0.3430059163854806,124,1,73.95430432556165,2.96,67.43675854337278,2362); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17724,'2019-11-22T10:44:25.986Z',NULL,103,2,47.04215255778118,2.82,88.07046043142667,2363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17725,'2019-12-17T23:20:02.505Z',NULL,28,1,68.12471180754113,4.09,41.60727363822451,2363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17726,'2020-01-20T18:40:51.476Z',NULL,25,1,68.62263967182464,4.12,63.02022432385427,2363); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17727,'2018-07-21T05:53:11.604Z',4.843005916385481,142,3,70.34853057210945,2.04,45.75703245179779,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17728,'2019-07-07T09:30:25.184Z',NULL,41,3,63.50890855689462,1.84,90.81100221492012,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17729,'2019-04-16T13:20:18.301Z',NULL,50,1,53.64019616819762,1.56,89.79255890749523,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17730,'2019-02-09T12:17:56.809Z',NULL,82,1,60.89545738030947,1.77,114.28217849809505,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17731,'2019-08-24T12:14:29.031Z',NULL,158,2,139.8942352373801,4.06,217.84856202068107,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17732,'2018-05-16T10:59:45.374Z',NULL,107,3,50.094887884945365,1.45,9.74023962847947,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17733,'2020-03-12T20:56:35.995Z',NULL,124,1,110.93145648834248,3.22,62.28408529691326,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17734,'2019-07-10T17:21:08.910Z',NULL,123,3,110.93145648834248,3.22,165.17609901551313,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17735,'2018-09-14T10:06:06.632Z',NULL,45,3,118.0495173798411,3.42,113.26101092449949,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17736,'2019-01-13T05:39:15.849Z',NULL,59,2,89.20214751859149,2.59,159.05861498915525,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17737,'2019-07-18T01:14:12.121Z',NULL,26,3,68.12471180754113,1.98,107.94138715778293,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17738,'2019-08-26T05:40:12.569Z',NULL,97,4,112.41825444654248,3.26,53.825490735075775,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17739,'2019-02-19T13:07:28.729Z',NULL,53,1,44.27587240151534,1.28,13.466875962171045,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17740,'2018-12-12T18:03:32.704Z',NULL,32,1,107.1448636959614,3.11,71.70733395614216,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17741,'2019-12-16T10:56:34.750Z',4.843005916385481,103,2,47.04215255778118,1.36,96.066295355451,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17742,'2020-02-13T14:27:48.924Z',4.843005916385481,17,1,79.93608046792765,2.32,95.63545431631502,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17743,'2020-01-31T14:29:18.114Z',NULL,22,1,32.136779940663494,0.93,9.644300883076719,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17744,'2018-08-08T15:33:38.478Z',NULL,173,4,122.3651993029456,3.55,166.46640843935208,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17745,'2018-09-21T06:58:38.166Z',NULL,42,2,38.00410713690931,1.1,75.21032324101623,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17746,'2018-11-27T20:07:04.891Z',NULL,183,1,56.697412301919755,1.64,80.59425180343491,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17747,'2019-09-22T11:34:50.594Z',NULL,162,2,33.56789820016516,0.97,49.45625867178924,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17748,'2016-10-05T08:13:04.087Z',NULL,109,2,79.36660712128732,2.3,149.48095237971086,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17749,'2017-02-28T10:18:26.384Z',NULL,34,1,49.535942579421324,1.44,80.94432269740851,2364); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17750,'2017-12-02T12:34:33.156Z',0.3430059163854806,80,1,36.60883787357609,2.2,58.73211717605177,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17751,'2017-02-28T10:35:13.795Z',NULL,19,1,42.67116731707548,2.56,75.8657284318363,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17752,'2018-02-14T06:45:56.329Z',NULL,151,1,91.61302306843446,5.5,118.23156582538472,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17753,'2019-03-09T19:16:12.667Z',NULL,140,0,66.80312547576881,4.01,13.356561136944007,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17754,'2019-01-12T03:11:44.203Z',NULL,66,1,136.16126271106958,8.17,270.1935870470206,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17755,'2016-10-02T08:42:49.449Z',NULL,173,3,81.57679953529707,4.89,118.39386836719628,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17756,'2019-10-13T03:13:50.328Z',NULL,76,2,63.82421061366486,3.83,85.44749240085288,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17757,'2020-01-21T23:36:37.541Z',NULL,181,1,143.88940370476112,8.63,248.63179365005564,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17758,'2020-02-02T12:21:27.440Z',NULL,181,1,143.88940370476112,8.63,275.74783710965676,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17759,'2019-06-14T19:13:06.927Z',2.6534362415824804,145,4,61.1983004605443,3.67,132.248739411193,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17760,'2019-02-26T01:16:12.495Z',NULL,56,1,36.37128575934436,2.18,24.88039082283815,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17761,'2020-02-24T00:18:33.760Z',NULL,48,1,123.20884248534108,7.39,149.96757895448684,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17762,'2018-03-17T13:22:13.711Z',NULL,136,1,105.20402317157343,6.31,168.90707537056002,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17763,'2020-02-16T13:56:46.685Z',NULL,86,2,92.31436670850246,5.54,129.58994161955667,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17764,'2018-12-04T23:30:33.461Z',7.15343624158248,104,2,106.44215255778118,6.39,48.348582339546304,2365); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17765,'2020-01-08T20:44:09.903Z',NULL,170,2,105.07665741496471,4.99,187.90947542120546,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17766,'2020-01-02T06:56:14.634Z',NULL,3,23,53.08311732230858,2.52,102.60366135808025,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17767,'2017-09-19T15:53:29.410Z',7.15343624158248,89,6,42.47974183693326,2.02,67.13390292273719,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17768,'2019-06-20T23:24:52.068Z',NULL,139,7,76.77768319177018,3.65,31.11963160486368,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17769,'2016-10-27T17:24:58.089Z',NULL,199,7,76.95334253952366,3.66,63.73838544545509,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17770,'2018-02-21T16:45:13.639Z',NULL,106,1,52.723521442619514,2.5,21.80324104468318,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17771,'2018-09-17T09:57:36.018Z',NULL,190,4,128.5841852057933,6.11,209.79834751580853,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17772,'2019-12-04T12:38:42.965Z',NULL,107,2,50.094887884945365,2.38,105.66812205742511,2366); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17773,'2019-11-28T04:36:57.824Z',NULL,26,3,68.12471180754113,2.72,141.84486359481423,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17774,'2017-09-18T06:19:22.056Z',NULL,192,6,46.122790137195516,1.84,58.227800589658784,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17775,'2018-03-20T16:43:16.373Z',NULL,28,1,68.12471180754113,2.72,37.2136434272016,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17776,'2018-06-09T07:15:46.572Z',NULL,155,6,43.77574310182776,1.75,18.42877515261405,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17777,'2019-05-05T07:11:38.446Z',NULL,156,5,30.615804149046195,1.22,19.26085832930916,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17778,'2016-08-05T01:11:21.996Z',NULL,189,8,62.18492169821006,2.49,113.95494861416309,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17779,'2016-06-12T14:24:10.938Z',NULL,147,6,44.4315141414441,1.78,55.833447828750444,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17780,'2019-03-06T08:23:15.746Z',NULL,45,1,118.0495173798411,4.72,91.44167384947562,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17781,'2017-01-12T18:13:54.923Z',NULL,28,2,45.41647453836076,1.82,64.23395497888123,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17782,'2017-06-07T07:27:53.121Z',NULL,69,6,48.925148695737505,1.96,27.421239435753048,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17783,'2016-05-08T15:14:58.393Z',NULL,57,3,81.6149289055996,3.26,116.59374414187236,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17784,'2017-05-01T22:32:41.540Z',NULL,200,3,48.802638078661005,1.95,47.69917036257391,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17785,'2018-08-23T01:51:00.177Z',NULL,148,6,138.9817182254566,5.56,275.3929067892502,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17786,'2018-02-26T10:23:40.328Z',NULL,27,2,127.52471180754115,5.1,258.8266998485992,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17787,'2020-02-17T02:47:05.291Z',NULL,146,1,126.04727121216614,5.04,199.64996387514776,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17788,'2020-04-18T06:05:09.542Z',NULL,55,2,95.77128575934437,3.83,190.53791045710977,2367); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17789,'2019-10-10T12:09:33.836Z',NULL,94,4,109.21864156655383,6.83,47.764764397606065,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17790,'2019-06-26T12:09:43.895Z',NULL,2,6,105.11984419607644,6.57,113.11094465999446,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17791,'2019-08-28T11:44:55.307Z',NULL,164,8,92.96789820016517,5.81,82.14818878412078,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17792,'2016-09-11T02:17:45.159Z',NULL,168,6,79.28781795635516,4.96,138.38634923674962,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17793,'2019-12-20T09:58:06.808Z',NULL,100,2,67.83486485383094,4.24,141.8868548695352,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17794,'2019-10-16T07:15:36.880Z',NULL,195,7,109.78077396807234,6.86,237.90685568686075,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17795,'2018-10-13T03:55:02.494Z',NULL,131,7,113.11722203337729,7.07,155.43633611166948,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17796,'2018-11-27T21:54:17.512Z',NULL,171,3,105.07665741496471,6.57,196.70517757193304,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17797,'2019-11-04T08:58:06.080Z',NULL,116,3,114.42485125407785,7.15,186.4211887831704,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17798,'2017-03-14T03:46:10.997Z',NULL,82,1,40.59697158687298,2.54,39.33379239901724,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17799,'2019-06-10T14:16:26.347Z',NULL,171,6,105.07665741496471,6.57,98.11642340132789,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17800,'2019-06-25T14:56:24.903Z',NULL,78,6,41.616917284159726,2.6,59.71310620325267,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17801,'2019-10-15T15:10:24.295Z',2.6534362415824804,43,4,76.35255205175756,4.77,87.20008718034269,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17802,'2020-04-11T17:56:00.398Z',NULL,33,2,47.7448636959614,2.98,19.553374043049743,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17803,'2018-06-23T06:29:33.302Z',NULL,186,4,98.9770008385166,6.19,33.366441238111186,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17804,'2018-07-14T18:04:29.227Z',NULL,94,3,109.21864156655383,6.83,92.68732531995593,2371); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17805,'2018-08-26T19:55:42.283Z',NULL,63,4,133.5202262591817,9.35,237.12869013012983,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17806,'2019-06-18T04:19:17.791Z',NULL,72,6,142.20381898788685,9.95,235.74755961273505,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17807,'2018-08-25T05:42:06.196Z',NULL,190,6,128.5841852057933,9,63.00074373049983,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17808,'2017-09-14T08:05:30.911Z',NULL,120,3,55.668009001928525,3.9,95.5641155998236,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17809,'2018-05-27T08:55:22.554Z',NULL,74,3,51.12804227386549,3.58,85.559750370318,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17810,'2019-03-20T04:06:58.599Z',2.4950846140392713,102,6,47.04215255778118,3.29,74.99125410344078,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17811,'2018-05-05T06:40:34.204Z',NULL,40,4,99.66240044231697,6.98,70.02609745810098,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17812,'2019-03-31T11:11:16.989Z',NULL,12,1,116.01427581618326,8.12,36.76967710343586,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17813,'2019-06-05T12:31:13.325Z',6.995084614039271,122,4,99.84528328808108,6.99,109.29416837258583,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17814,'2019-08-25T12:52:46.046Z',NULL,63,6,133.5202262591817,9.35,208.39566806250326,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17815,'2018-09-20T18:52:05.859Z',NULL,95,4,49.81864156655383,3.49,100.51104480452526,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17816,'2017-12-24T23:37:00.226Z',NULL,36,1,87.29125153827623,6.11,36.6270443960843,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17817,'2019-09-10T22:30:46.515Z',NULL,157,3,139.8942352373801,9.79,198.3397094636653,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17818,'2020-02-10T11:59:01.329Z',NULL,130,1,75.02573869315137,5.25,97.99898569699727,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17819,'2020-03-21T23:00:47.037Z',NULL,60,1,29.80214751859149,2.09,50.73753777765995,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17820,'2019-07-23T00:49:13.102Z',NULL,175,4,117.3248094335266,8.21,117.47691554467184,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17821,'2018-05-26T20:56:11.238Z',2.4950846140392713,114,5,77.91196471862148,5.45,12.51808809853351,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17822,'2019-03-20T13:27:45.757Z',NULL,42,1,38.00410713690931,2.66,68.8623674372821,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17823,'2019-01-25T15:33:20.970Z',NULL,114,1,77.91196471862148,5.45,125.60508893297963,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17824,'2018-05-11T22:15:09.220Z',NULL,34,3,74.30391386913199,5.2,82.29999393746104,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17825,'2019-01-31T22:10:56.137Z',6.995084614039271,165,2,38.30449564120193,2.68,70.57079575529242,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17826,'2019-10-20T10:54:21.362Z',NULL,161,5,47.59120561297272,3.33,96.91634743886073,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17827,'2017-11-14T04:57:29.685Z',2.4950846140392713,182,2,56.326269136507406,3.94,104.79363377355413,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17828,'2019-07-17T04:19:19.166Z',6.995084614039271,186,4,98.9770008385166,6.93,29.757171556102094,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17829,'2019-03-17T01:49:32.036Z',NULL,14,1,37.648145389078365,2.64,62.05015463000105,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17830,'2018-01-15T21:18:57.493Z',NULL,78,1,41.616917284159726,2.91,87.9332462062278,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17831,'2019-05-03T13:44:54.025Z',NULL,105,3,52.723521442619514,3.69,61.19180158404207,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17832,'2018-01-05T14:55:44.204Z',NULL,114,2,77.91196471862148,5.45,72.15019969581728,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17833,'2019-05-26T16:53:29.360Z',NULL,107,4,50.094887884945365,3.51,57.48224551160803,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17834,'2018-09-19T16:20:39.920Z',NULL,98,4,112.41825444654248,7.87,141.19513211395952,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17835,'2016-11-21T16:22:38.785Z',NULL,79,3,27.74461152277315,1.94,42.3085956260508,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17836,'2019-05-13T14:01:31.296Z',6.995084614039271,40,3,99.66240044231697,6.98,153.91773827045512,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17837,'2019-09-19T22:28:20.947Z',NULL,17,3,79.93608046792765,5.6,55.91720579802535,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17838,'2017-06-08T15:01:26.339Z',NULL,127,4,89.65344209669612,6.28,195.94488456319684,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17839,'2018-08-10T16:32:29.560Z',NULL,71,6,82.80381898788684,5.8,84.25853151263917,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17840,'2017-02-21T09:07:51.542Z',NULL,192,2,46.122790137195516,3.23,37.848746466009814,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17841,'2017-11-01T09:59:46.495Z',NULL,16,3,44.07353303251545,3.09,15.681050171665843,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17842,'2018-07-23T17:28:55.609Z',NULL,65,30,68.22769726470014,4.78,107.92086392203294,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17843,'2018-03-16T02:06:40.652Z',NULL,12,1,116.01427581618326,8.12,89.92077129460633,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17844,'2018-08-15T13:48:08.620Z',NULL,100,4,67.83486485383094,4.75,12.36446161126375,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17845,'2016-08-20T05:27:24.588Z',NULL,109,6,79.36660712128732,5.56,61.904852418385914,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17846,'2020-01-20T23:48:18.010Z',NULL,13,2,112.62925391105566,7.88,32.41033425538026,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17847,'2018-05-28T23:26:05.852Z',NULL,157,4,139.8942352373801,9.79,145.17771626470795,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17848,'2018-06-27T09:26:51.482Z',NULL,134,4,42.49233549998661,2.97,52.967701887204065,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17849,'2017-02-19T03:29:15.603Z',NULL,174,1,74.40953929454055,5.21,50.55098771337792,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17850,'2017-11-02T21:12:40.745Z',NULL,83,3,54.58418555091025,3.82,12.0969542944777,2372); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17851,'2020-03-13T21:32:11.384Z',7.604602340878141,143,1,61.1983004605443,2.59,31.13163028849801,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17852,'2019-10-18T07:47:09.379Z',NULL,5,5,124.1176465275534,5.24,217.08411603168818,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17853,'2019-03-12T15:55:28.259Z',NULL,12,1,116.01427581618326,4.9,107.80120569347041,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17854,'2020-02-14T12:36:00.997Z',NULL,199,2,115.4300138092855,4.88,129.1614849035913,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17855,'2019-03-15T08:19:47.909Z',NULL,135,1,45.80402317157342,1.94,79.94954201310114,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17856,'2016-12-18T13:18:35.165Z',NULL,166,2,25.536330427467956,1.08,47.974247617162035,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17857,'2018-09-11T17:21:02.078Z',NULL,28,6,68.12471180754113,2.88,91.51344996933747,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17858,'2019-04-07T07:53:29.199Z',NULL,118,4,57.627613096978735,2.43,45.09020912919447,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17859,'2018-05-17T04:08:01.528Z',NULL,26,5,68.12471180754113,2.88,59.847356286473776,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17860,'2017-06-08T07:27:43.841Z',NULL,19,6,42.67116731707548,1.8,51.926508615872095,2375); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17861,'2018-07-08T10:17:48.439Z',NULL,128,5,75.08016314504417,5.16,49.96323430076691,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17862,'2019-03-02T00:22:52.788Z',7.604602340878141,181,1,143.88940370476112,9.89,200.01134720525926,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17863,'2019-12-12T21:19:55.873Z',NULL,159,2,35.53017445377361,2.44,10.864577714191505,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17864,'2018-01-16T20:38:11.907Z',NULL,166,2,38.30449564120193,2.63,12.985806683326823,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17865,'2018-07-06T10:05:28.734Z',NULL,1,5,44.19489169601981,3.04,77.63429062563749,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17866,'2017-09-09T00:58:53.669Z',NULL,51,6,50.433725012700116,3.47,84.84188657391898,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17867,'2019-04-15T07:54:23.292Z',NULL,114,3,77.91196471862148,5.36,134.87061306981093,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17868,'2016-11-27T07:57:58.854Z',NULL,43,2,50.90170136783837,3.5,68.131679786625,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17869,'2019-03-25T12:35:36.371Z',NULL,190,1,128.5841852057933,8.84,194.3685456081758,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17870,'2018-07-04T13:03:27.019Z',NULL,124,5,110.93145648834248,7.63,46.11884404069529,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17871,'2018-11-04T19:15:07.213Z',7.604602340878141,91,3,65.09432810381134,4.48,108.03268035108256,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17872,'2019-06-07T11:46:50.971Z',NULL,4,8,110.98767151282252,7.63,41.3022197514377,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17873,'2018-09-14T22:02:19.032Z',NULL,191,5,128.5841852057933,8.84,161.92172231102978,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17874,'2019-08-26T01:36:39.492Z',NULL,104,7,106.44215255778118,7.32,86.77866224003522,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17875,'2019-04-02T09:21:02.520Z',NULL,104,3,106.44215255778118,7.32,16.32574711640598,2376); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17876,'2017-10-18T07:57:05.091Z',NULL,177,4,85.87953212963993,5.15,104.97801935797168,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17877,'2019-04-23T07:12:31.895Z',NULL,76,2,63.82421061366486,3.83,13.051217631675048,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17878,'2019-08-30T01:43:55.031Z',3.104602340878141,192,7,69.18418520579327,4.15,121.6503859879117,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17879,'2018-01-17T22:50:50.626Z',NULL,163,2,33.56789820016516,2.01,35.359258243802024,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17880,'2018-05-17T15:58:57.513Z',NULL,146,5,126.04727121216614,7.56,49.71099676183584,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17881,'2018-06-07T05:03:16.121Z',7.604602340878141,148,8,138.9817182254566,8.34,38.60861864457827,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17882,'2019-04-28T01:39:14.618Z',7.604602340878141,106,4,52.723521442619514,3.16,40.81191471396317,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17883,'2018-01-06T22:43:12.066Z',NULL,135,2,45.80402317157342,2.75,64.92777543888604,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17884,'2018-04-06T05:12:58.228Z',NULL,96,28,104.82144858590365,6.29,158.633517056145,2377); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17885,'2018-08-12T03:40:32.253Z',NULL,175,7,117.3248094335266,8.21,245.79799689992012,2378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17886,'2018-07-21T11:17:46.363Z',NULL,71,5,82.80381898788684,5.8,88.68512799621455,2378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17887,'2017-07-10T09:09:41.310Z',NULL,81,6,29.288656154807867,2.05,44.811833613830714,2378); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17888,'2017-05-22T15:16:03.106Z',NULL,87,5,78.17024226998694,4.69,132.43806983778632,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17889,'2018-04-03T23:48:19.243Z',NULL,79,3,41.616917284159726,2.5,30.908882473353756,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17890,'2018-03-19T15:23:42.067Z',7.604602340878141,55,1,95.77128575934437,5.75,203.31438310416837,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17891,'2016-11-15T14:49:04.113Z',NULL,65,3,45.4851315098001,2.73,14.95757918657738,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17892,'2016-05-22T03:56:59.243Z',NULL,31,5,70.43564311419016,4.23,140.30096816225097,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17893,'2019-12-02T20:38:44.624Z',NULL,45,2,118.0495173798411,7.08,182.20789828398574,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17894,'2018-07-11T07:27:23.290Z',NULL,151,5,91.61302306843446,5.5,163.46013731605552,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17895,'2016-11-07T20:39:21.527Z',NULL,197,3,46.76407124473339,2.81,18.52053513963902,2379); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17896,'2017-12-20T23:50:36.568Z',NULL,35,2,47.691251538276234,3.34,69.5837426484543,2380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17897,'2017-01-07T00:49:49.150Z',NULL,51,2,50.433725012700116,3.53,99.40462181496872,2380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17898,'2018-07-14T15:56:56.902Z',NULL,66,3,136.16126271106958,9.53,36.575175606446855,2380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17899,'2020-02-02T14:00:10.503Z',NULL,52,1,103.67587240151535,7.26,108.4859634439451,2380); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17900,'2017-11-02T20:15:35.186Z',NULL,198,2,46.76407124473339,2.34,59.816578496907965,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17901,'2019-03-19T04:19:32.774Z',NULL,111,1,55.526746186906664,2.78,23.941750258753157,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17902,'2020-01-29T01:29:53.515Z',NULL,5,3,124.1176465275534,6.21,142.6001172815839,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17903,'2018-04-05T12:49:51.065Z',NULL,21,3,60.57501609456816,3.03,39.613279050901355,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17904,'2018-07-09T18:14:33.373Z',NULL,86,4,92.31436670850246,4.62,175.43349147692038,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17905,'2019-10-24T14:39:48.541Z',NULL,31,6,105.65346467128523,5.28,204.115989650401,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17906,'2018-10-14T18:55:43.159Z',NULL,152,7,48.89568729900663,2.44,64.68356711857781,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17907,'2018-01-18T07:37:59.192Z',NULL,139,2,76.77768319177018,3.84,107.52249870001751,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17908,'2018-03-29T10:25:23.649Z',NULL,168,1,118.93172693453273,5.95,228.75283039496838,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17909,'2017-11-28T14:12:34.228Z',NULL,92,4,83.2616179105333,4.16,134.71523957064727,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17910,'2017-09-21T08:15:32.312Z',NULL,179,5,45.549391048892794,2.28,25.553414185867254,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17911,'2016-12-19T00:45:24.514Z',NULL,158,2,93.26282349158673,4.66,155.98544999780972,2381); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17912,'2019-06-22T20:06:24.478Z',NULL,98,7,112.41825444654248,5.62,141.95104088343913,2382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17913,'2019-02-22T13:35:44.077Z',NULL,155,17,43.77574310182776,2.19,37.432300024920714,2382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17914,'2018-12-25T02:31:17.450Z',NULL,176,2,57.92480943352658,2.9,18.605494111419343,2382); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17915,'2020-03-17T21:57:24.753Z',8.474224563745583,109,10,119.04991068193098,8.18,46.174918907215336,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17916,'2019-12-23T09:13:43.912Z',NULL,112,2,41.329386510090345,2.84,25.68971208289794,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17917,'2018-11-10T11:43:24.240Z',NULL,167,3,97.70449564120193,6.72,114.15865851282366,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17918,'2020-01-23T08:55:36.308Z',NULL,93,3,49.81864156655383,3.43,104.48491280655347,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17919,'2017-12-20T02:29:32.181Z',NULL,78,3,27.74461152277315,1.91,54.540439071866174,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17920,'2019-12-25T03:46:32.878Z',NULL,79,3,41.616917284159726,2.86,24.713878612402496,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17921,'2019-12-18T06:18:26.977Z',NULL,38,3,66.06937283839378,4.54,85.27689390092559,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17922,'2017-10-18T22:57:04.971Z',8.474224563745583,15,6,25.09876359271891,1.73,19.060249403044413,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17923,'2017-02-22T21:58:34.841Z',NULL,30,2,42.7829881204479,2.94,92.07990225606957,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17924,'2020-03-19T16:31:39.471Z',NULL,119,1,43.43814329652384,2.99,21.80855760100121,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17925,'2017-04-29T01:12:59.749Z',NULL,1,4,29.463261130679875,2.03,7.741609296414179,2384); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17926,'2018-09-24T10:17:01.162Z',NULL,82,5,60.89545738030947,3.5,116.8756345552767,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17927,'2019-08-05T22:08:08.319Z',NULL,58,5,78.14578007078882,4.49,145.6859293565712,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17928,'2018-05-23T08:27:00.951Z',NULL,185,3,39.57700083851661,2.28,62.3594847902155,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17929,'2019-04-27T19:23:50.537Z',NULL,155,2,43.77574310182776,2.52,50.67477803914607,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17930,'2020-01-25T23:23:30.411Z',NULL,190,2,128.5841852057933,7.39,246.7136090658938,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17931,'2019-10-26T23:58:01.880Z',NULL,167,7,97.70449564120193,5.62,164.29424871240244,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17932,'2019-03-24T15:46:04.374Z',NULL,183,1,56.697412301919755,3.26,13.838601993343229,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17933,'2019-03-28T01:23:33.179Z',NULL,142,1,70.34853057210945,4.05,64.59824808374955,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17934,'2017-12-25T23:56:04.420Z',NULL,152,2,32.59712486600442,1.87,6.256521991254647,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17935,'2019-07-27T13:40:17.081Z',NULL,137,5,67.77247956807186,3.9,119.77793285501404,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17936,'2018-08-17T10:45:44.064Z',NULL,52,7,103.67587240151535,5.96,35.558740646546504,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17937,'2020-04-08T06:27:12.020Z',NULL,146,3,126.04727121216614,7.25,202.96858213765196,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17938,'2018-03-07T12:27:31.358Z',NULL,91,1,65.09432810381134,3.74,108.70672241735149,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17939,'2019-06-22T19:44:30.432Z',NULL,88,5,105.41292031622555,6.06,172.53761280307356,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17940,'2018-06-01T05:35:37.254Z',3.9742245637455826,23,7,116.86672609493307,6.72,182.22425991270086,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17941,'2019-05-11T07:58:46.253Z',NULL,121,5,40.44528328808107,2.33,50.89418498647467,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17942,'2020-03-07T17:47:05.366Z',NULL,113,1,110.47725376186015,6.35,18.975403987726015,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17943,'2019-01-30T05:15:35.008Z',NULL,64,3,143.4221774571866,8.25,57.801400720871385,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17944,'2016-07-17T00:53:00.345Z',NULL,43,5,50.90170136783837,2.93,59.89407542683078,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17945,'2018-07-18T18:11:26.503Z',NULL,113,4,110.47725376186015,6.35,197.86741648884941,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17946,'2017-12-09T20:46:01.810Z',NULL,189,2,62.18492169821006,3.58,23.605011293771764,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17947,'2019-03-27T16:36:01.996Z',3.849719458680783,138,1,113.95078476718615,6.55,122.43810199032208,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17948,'2017-03-28T14:57:39.447Z',NULL,34,1,49.535942579421324,2.85,47.814357609551344,2386); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17949,'2018-06-10T01:26:33.119Z',NULL,118,3,57.627613096978735,2.48,103.99339464533335,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17950,'2017-09-14T02:48:52.733Z',NULL,47,3,56.05108065511453,2.41,78.25260904522648,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17951,'2017-11-30T14:24:38.070Z',1.887106783828366,139,2,51.18512212784679,2.2,105.46365665587955,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17952,'2019-08-30T19:05:25.203Z',NULL,1,4,44.19489169601981,1.9,92.09820446963931,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17953,'2018-10-05T17:52:24.359Z',NULL,52,3,103.67587240151535,4.46,20.99335749588508,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17954,'2019-10-31T10:23:07.657Z',1.887106783828366,39,3,114.58158180283459,4.93,56.16851040031417,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17955,'2019-06-25T14:05:21.444Z',3.849719458680783,39,3,114.58158180283459,4.93,149.85805981158478,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17956,'2019-02-06T21:14:06.221Z',NULL,68,1,115.24343882309758,4.96,78.55168240569306,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17957,'2018-12-05T05:58:45.809Z',NULL,43,1,76.35255205175756,3.28,137.83085148396628,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17958,'2019-05-25T15:49:31.812Z',NULL,118,2,57.627613096978735,2.48,80.3711246306198,2387); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17959,'2017-06-14T20:45:04.215Z',NULL,176,4,38.616539622351056,2.32,21.592333398322666,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17960,'2018-07-23T06:33:56.839Z',NULL,198,4,70.14610686710009,4.21,110.2131070430847,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17961,'2018-05-09T19:58:38.617Z',NULL,118,3,57.627613096978735,3.46,115.10264222186436,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17962,'2019-10-17T10:53:02.143Z',NULL,193,4,50.38077396807232,3.02,25.46963202258097,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17963,'2018-08-27T01:04:29.874Z',NULL,119,4,43.43814329652384,2.61,43.78939679474263,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17964,'2017-08-29T23:34:58.690Z',NULL,47,4,56.05108065511453,3.36,71.02903570923921,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17965,'2017-05-09T01:14:25.383Z',NULL,168,3,79.28781795635516,4.76,101.43721225083266,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17966,'2019-04-04T14:48:04.787Z',NULL,8,2,98.83823503993958,5.93,90.04827908226464,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17967,'2019-08-14T06:51:36.866Z',NULL,175,5,117.3248094335266,7.04,135.7446782146518,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17968,'2019-05-13T15:13:13.876Z',NULL,86,2,92.31436670850246,5.54,95.15160713176289,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17969,'2019-08-15T06:14:29.168Z',NULL,143,4,61.1983004605443,3.67,116.4852105507689,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17970,'2020-02-20T00:47:20.278Z',NULL,77,1,101.01691728415972,6.06,88.51835840183934,2388); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17971,'2017-05-25T06:05:20.947Z',NULL,86,2,61.54291113900164,3.85,107.41870880228394,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17972,'2016-12-18T10:08:24.256Z',NULL,125,1,53.59799471993963,3.35,85.78895086624345,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17973,'2017-10-21T10:54:28.929Z',NULL,112,4,27.55292434006023,1.72,37.425318771103726,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17974,'2019-01-11T08:36:25.864Z',NULL,99,1,67.83486485383094,4.24,23.996170637318944,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17975,'2019-09-04T13:42:31.031Z',NULL,146,3,126.04727121216614,7.88,242.6578173748784,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17976,'2019-08-30T02:00:14.636Z',NULL,42,5,38.00410713690931,2.38,58.417181311903924,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17977,'2017-07-30T00:54:09.064Z',NULL,11,3,88.30453275661709,5.52,16.312669894037963,2389); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17978,'2018-10-15T00:20:48.384Z',NULL,74,4,51.12804227386549,3.2,86.34527443750139,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17979,'2018-03-27T08:43:46.489Z',NULL,35,1,71.53687730741436,4.47,144.18327169108403,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17980,'2019-05-18T21:27:39.310Z',NULL,107,3,50.094887884945365,3.13,24.602858287843702,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17981,'2018-05-11T20:38:04.260Z',NULL,200,3,73.20395711799151,4.58,128.14145678306187,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17982,'2017-08-15T01:06:35.919Z',NULL,52,4,69.1172482676769,4.32,125.30610164584557,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17983,'2016-09-09T05:45:54.739Z',NULL,117,3,36.683234169385244,2.29,9.196228442308184,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17984,'2018-03-02T04:53:57.862Z',NULL,183,1,56.697412301919755,3.54,13.14518827098613,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17985,'2016-11-16T17:38:36.422Z',NULL,127,2,89.65344209669612,5.6,176.63234029301162,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17986,'2017-10-22T09:49:32.676Z',NULL,21,4,40.38334406304544,2.52,13.643289174120286,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17987,'2018-04-08T01:14:11.183Z',NULL,110,2,55.526746186906664,3.47,89.46723850924133,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17988,'2019-02-17T16:13:36.757Z',NULL,125,1,80.39699207990944,5.02,12.013222964864182,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17989,'2019-03-05T15:35:42.141Z',NULL,18,1,81.90307121097293,5.12,26.999895481311388,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17990,'2018-10-03T10:33:11.380Z',NULL,35,4,71.53687730741436,4.47,50.93514809969633,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17991,'2019-08-04T21:21:58.402Z',NULL,7,4,148.22900526552291,9.26,208.10630959960412,2390); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17992,'2019-03-19T14:38:40.877Z',1.887106783828366,64,1,143.4221774571866,8.96,297.5816510371964,2391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17993,'2020-03-05T19:18:17.051Z',NULL,25,1,68.62263967182464,4.29,104.4549110473446,2391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17994,'2020-03-10T06:48:55.741Z',NULL,72,1,142.20381898788685,8.89,70.28387203158816,2391); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17995,'2019-02-07T18:35:46.336Z',NULL,87,2,117.25536340498041,5.28,135.7704615137465,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17996,'2019-08-20T05:34:23.109Z',NULL,30,8,64.17448218067184,2.89,28.77209562669097,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17997,'2018-05-14T07:48:16.854Z',NULL,22,4,32.136779940663494,1.45,36.91400779899607,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17998,'2016-07-25T14:13:12.795Z',NULL,80,4,36.60883787357609,1.65,40.417153709343175,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (17999,'2018-02-01T03:34:39.031Z',NULL,158,1,139.8942352373801,6.3,173.33534302859167,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18000,'2018-07-02T05:07:33.909Z',NULL,161,3,47.59120561297272,2.14,52.39325849012577,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18001,'2019-10-15T06:45:14.718Z',2.748328282949689,104,4,106.44215255778118,4.79,33.83727390572944,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18002,'2018-06-18T14:58:33.643Z',NULL,67,4,41.24480890795779,1.86,43.55372640071882,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18003,'2017-04-19T16:58:31.108Z',NULL,138,3,75.96718984479077,3.42,158.01268091512188,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18004,'2017-04-10T11:46:42.518Z',NULL,79,3,27.74461152277315,1.25,49.924096896938856,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18005,'2020-01-14T21:07:27.037Z',2.748328282949689,175,1,117.3248094335266,5.28,72.27962598458039,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18006,'2018-02-16T17:37:22.871Z',NULL,155,1,43.77574310182776,1.97,56.151418052211184,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18007,'2018-09-30T18:41:37.070Z',NULL,61,6,23.537915510955656,1.06,40.81886729486906,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18008,'2019-01-07T16:31:50.372Z',NULL,144,2,61.1983004605443,2.75,23.328197806841803,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18009,'2019-03-20T10:08:58.526Z',NULL,116,1,114.42485125407785,5.15,65.50320833362274,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18010,'2020-01-16T21:08:36.678Z',NULL,172,2,122.3651993029456,5.51,215.75584181326187,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18011,'2019-11-03T22:48:24.981Z',NULL,110,3,55.526746186906664,2.5,22.56297136667956,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18012,'2018-09-28T18:49:16.402Z',NULL,61,4,23.537915510955656,1.06,9.318754249741447,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18013,'2018-07-24T06:12:11.650Z',NULL,97,6,112.41825444654248,5.06,139.43973268023183,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18014,'2018-11-29T12:17:58.502Z',NULL,25,4,68.62263967182464,3.09,36.10475765048299,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18015,'2020-04-16T18:18:04.341Z',NULL,66,3,136.16126271106958,6.13,272.3677489802471,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18016,'2018-08-20T00:36:35.420Z',NULL,179,4,68.32408657333919,3.07,89.66346537830728,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18017,'2019-12-30T16:28:20.742Z',NULL,166,2,38.30449564120193,1.72,63.055752239923336,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18018,'2017-11-21T12:57:52.044Z',NULL,190,3,85.72279013719552,3.86,105.3240965991068,2392); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18019,'2020-03-10T08:09:41.905Z',NULL,135,1,45.80402317157342,0,48.42699751996927,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18020,'2019-03-22T12:52:57.639Z',NULL,104,1,106.44215255778118,0,49.105613130005864,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18021,'2017-09-25T08:54:18.351Z',NULL,3,4,35.388744881539054,0,63.35416986285124,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18022,'2018-11-17T11:55:51.683Z',NULL,36,3,130.93687730741433,0,173.20889783586938,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18023,'2018-09-05T17:17:14.145Z',NULL,158,3,139.8942352373801,0,25.465778153421212,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18024,'2019-12-22T11:39:07.343Z',NULL,75,1,125.81276373452337,0,38.713307174916906,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18025,'2019-07-23T00:16:29.597Z',NULL,178,4,117.32963250370614,0,125.23624620406609,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18026,'2017-06-17T17:04:42.908Z',NULL,177,6,85.87953212963993,0,53.00798373256875,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18027,'2018-12-22T17:51:42.873Z',NULL,196,1,70.14610686710009,0,76.60138216797145,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18028,'2017-06-30T22:32:33.847Z',NULL,84,4,54.58418555091025,0,26.461832416123023,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18029,'2020-03-03T12:42:19.149Z',NULL,104,1,106.44215255778118,0,41.22978468144651,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18030,'2016-11-13T03:45:26.225Z',NULL,176,4,38.616539622351056,0,20.191099332874156,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18031,'2018-03-19T06:21:07.750Z',NULL,73,1,71.6287722595695,0,53.200813835238584,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18032,'2016-12-01T08:25:13.022Z',NULL,168,2,79.28781795635516,0,120.70334064805158,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18033,'2019-08-15T22:36:20.610Z',2.748328282949689,189,4,93.27738254731509,0,25.434189625044745,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18034,'2018-07-23T15:42:05.556Z',NULL,17,3,79.93608046792765,0,27.14093630373266,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18035,'2018-01-02T02:58:11.409Z',NULL,3,1,53.08311732230858,0,39.72571192965619,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18036,'2019-05-16T12:40:50.090Z',NULL,74,4,51.12804227386549,0,39.97571264704568,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18037,'2019-10-28T01:49:50.243Z',7.2483282829496885,17,5,79.93608046792765,0,98.75917596495226,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18038,'2017-07-14T10:19:41.322Z',NULL,27,3,85.01647453836077,0,173.69229928074967,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18039,'2017-05-31T19:57:23.955Z',NULL,193,3,33.587182645381546,0,22.159003357327084,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18040,'2019-03-01T08:42:53.726Z',NULL,48,1,123.20884248534108,0,192.41129216118318,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18041,'2018-04-13T09:28:18.683Z',NULL,150,3,128.55415037577922,0,99.53094371257556,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18042,'2019-08-08T21:12:13.358Z',NULL,11,8,132.45679913492563,0,158.73481855360257,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18043,'2018-01-29T22:46:43.592Z',NULL,183,2,56.697412301919755,0,37.3258079336103,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18044,'2018-03-08T05:16:31.186Z',NULL,134,1,42.49233549998661,0,32.74411618735664,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18045,'2018-12-25T15:48:03.522Z',9.297588545860627,104,2,106.44215255778118,0,53.039346726314704,2393); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18046,'2019-05-29T13:54:19.918Z',NULL,160,5,47.59120561297272,2.86,61.94044052369849,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18047,'2020-02-08T12:51:01.194Z',NULL,71,2,82.80381898788684,4.97,35.15978655161657,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18048,'2019-09-05T18:35:49.285Z',NULL,196,6,70.14610686710009,4.21,152.47258213897808,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18049,'2019-07-01T20:26:08.402Z',NULL,198,6,70.14610686710009,4.21,105.48128312046316,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18050,'2020-03-18T23:19:51.671Z',NULL,169,1,59.53172693453274,3.57,81.88051156849137,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18051,'2020-04-17T04:37:03.184Z',NULL,200,3,73.20395711799151,4.39,76.82414099149436,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18052,'2019-09-02T11:36:19.770Z',NULL,28,6,68.12471180754113,4.09,142.9852740544571,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18053,'2018-03-25T06:54:19.285Z',NULL,158,1,139.8942352373801,8.39,234.44421328945197,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18054,'2017-10-16T02:01:09.481Z',NULL,100,6,45.22324323588729,2.71,43.71064641007208,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18055,'2018-09-25T04:03:11.885Z',NULL,1,6,44.19489169601981,2.65,16.328488691290982,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18056,'2018-11-18T05:57:05.350Z',NULL,129,3,148.1672972165937,8.89,257.18073297408733,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18057,'2020-04-16T20:51:52.642Z',NULL,23,3,116.86672609493307,7.01,95.58932931602138,2394); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18058,'2019-10-23T15:46:52.134Z',NULL,194,6,50.38077396807232,2.52,25.016592808108502,2395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18059,'2018-12-19T21:11:04.700Z',NULL,141,2,126.20312547576883,6.31,172.10903272096493,2395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18060,'2016-11-01T13:48:08.233Z',4.797588545860627,42,3,25.336071424606207,1.27,13.150484574950598,2395); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18061,'2020-01-13T05:51:23.338Z',NULL,121,2,40.44528328808107,2.07,16.852526523802478,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18062,'2019-02-15T10:14:12.148Z',NULL,117,2,55.024851254077866,2.82,45.68248690500066,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18063,'2019-06-09T22:32:02.032Z',NULL,184,9,116.09741230191975,5.95,171.25288353494668,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18064,'2019-09-01T21:21:35.971Z',NULL,74,7,51.12804227386549,2.62,91.21649319451879,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18065,'2020-03-08T10:31:09.237Z',NULL,180,1,68.32408657333919,3.5,95.80431600148998,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18066,'2018-06-18T20:47:17.092Z',NULL,164,6,92.96789820016517,4.76,40.48564685438461,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18067,'2018-12-19T00:54:21.309Z',NULL,129,2,148.1672972165937,7.59,46.189628644735365,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18068,'2019-11-14T01:39:10.583Z',NULL,69,3,73.38772304360626,3.76,81.16515955500157,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18069,'2019-04-12T18:21:25.406Z',NULL,89,3,63.719612755399886,3.27,32.755733015213885,2396); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18070,'2018-05-25T05:43:58.722Z',NULL,45,4,118.0495173798411,0,237.10544610650243,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18071,'2020-03-05T10:01:23.893Z',NULL,69,1,73.38772304360626,0,105.76134036619077,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18072,'2018-02-07T14:57:22.357Z',NULL,154,1,81.87529553312261,0,35.95799048939637,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18073,'2018-06-29T13:05:28.891Z',NULL,46,7,118.0495173798411,0,77.51508069843112,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18074,'2019-06-17T13:06:42.187Z',NULL,184,7,116.09741230191975,0,34.8373634573228,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18075,'2019-10-04T09:21:05.377Z',NULL,140,5,66.80312547576881,0,68.64592846434438,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18076,'2018-11-17T21:13:16.204Z',4.797588545860627,96,3,104.82144858590365,0,88.89145656791057,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18077,'2017-01-24T23:09:34.321Z',NULL,43,2,50.90170136783837,0,55.459654805294626,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18078,'2019-06-26T10:28:58.652Z',NULL,35,7,71.53687730741436,0,13.067550435054661,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18079,'2020-03-21T12:22:44.548Z',NULL,140,1,66.80312547576881,0,71.09532635833271,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18080,'2017-10-21T14:27:28.863Z',NULL,2,5,70.07989613071763,0,48.50987251419264,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18081,'2020-03-06T19:56:52.087Z',9.297588545860627,2,1,105.11984419607644,0,125.14181661506224,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18082,'2016-11-03T13:22:27.911Z',NULL,194,3,33.587182645381546,0,60.167859404378824,2397); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18083,'2019-09-27T02:29:44.993Z',4.797588545860627,77,4,101.01691728415972,4.34,47.37147054739834,2399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18084,'2019-01-07T13:39:00.639Z',NULL,131,2,113.11722203337729,4.86,149.37861815557264,2399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18085,'2017-09-28T14:11:55.389Z',NULL,22,6,21.42451996044233,0.92,38.026836579091224,2399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18086,'2018-03-07T12:14:13.055Z',NULL,94,1,109.21864156655383,4.7,20.33903300749582,2399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18087,'2019-04-23T03:34:00.371Z',NULL,13,3,112.62925391105566,4.84,204.209439567918,2399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18088,'2019-12-12T23:04:35.660Z',NULL,25,1,68.62263967182464,2.95,91.82453531711317,2399); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18089,'2019-05-18T04:31:29.328Z',NULL,120,2,83.5020135028928,4.28,164.19182647639101,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18090,'2019-05-10T08:52:52.276Z',NULL,164,3,92.96789820016517,4.76,109.97493267992515,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18091,'2019-08-15T19:25:52.522Z',NULL,162,7,33.56789820016516,1.72,24.198204199900747,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18092,'2020-03-03T10:24:11.064Z',NULL,191,1,128.5841852057933,6.59,52.34221632548765,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18093,'2018-03-17T12:51:48.468Z',NULL,47,1,84.0766209826718,4.31,166.4787519477517,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18094,'2018-05-20T15:40:59.456Z',NULL,165,3,38.30449564120193,1.96,70.46626655113144,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18095,'2018-04-26T05:01:57.008Z',5.83811763281622,153,2,66.79892314178237,3.42,75.13921103026647,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18096,'2018-10-19T15:55:06.312Z',NULL,150,4,128.55415037577922,6.59,24.540427224543723,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18097,'2018-08-22T19:35:41.961Z',NULL,11,5,132.45679913492563,6.79,54.01145026463393,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18098,'2018-08-07T16:57:49.635Z',NULL,141,7,126.20312547576883,6.47,62.3684335200506,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18099,'2019-12-20T16:00:25.341Z',NULL,195,1,109.78077396807234,5.63,83.09042605133274,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18100,'2020-03-09T16:39:18.214Z',NULL,77,0,101.01691728415972,5.18,49.56159777188439,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18101,'2019-11-08T19:08:53.510Z',NULL,29,2,123.57448218067185,6.33,48.67897828240742,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18102,'2019-01-30T07:20:45.077Z',NULL,10,1,47.6793282102869,2.44,94.94891122380416,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18103,'2017-09-03T03:09:16.106Z',5.83811763281622,13,2,75.0861692740371,3.85,161.41233806273533,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18104,'2017-10-22T15:35:33.720Z',NULL,6,4,64.95747510229587,3.33,102.11964744274489,2400); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18105,'2018-07-06T04:21:24.852Z',NULL,200,5,73.20395711799151,4.39,73.07327105252777,2404); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18106,'2020-02-23T12:23:09.087Z',NULL,114,1,77.91196471862148,3.7,148.17342951537995,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18107,'2018-12-26T12:12:02.479Z',NULL,11,1,132.45679913492563,6.29,138.2890496152693,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18108,'2019-11-05T14:15:53.748Z',NULL,45,3,118.0495173798411,5.61,183.2536606907038,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18109,'2019-08-13T20:07:55.456Z',NULL,87,7,117.25536340498041,5.57,19.07661187815946,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18110,'2020-02-14T19:10:50.669Z',NULL,108,1,50.094887884945365,2.38,31.145729655679794,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18111,'2019-06-24T21:07:15.324Z',NULL,153,5,66.79892314178237,3.17,102.5624963443066,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18112,'2018-07-04T13:23:32.314Z',NULL,65,4,68.22769726470014,3.24,105.17405227911848,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18113,'2019-02-09T09:58:41.251Z',NULL,29,1,123.57448218067185,5.87,192.512630974716,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18114,'2019-01-02T21:27:32.188Z',NULL,61,1,23.537915510955656,1.12,26.968999910525472,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18115,'2018-05-16T13:05:57.794Z',NULL,184,2,116.09741230191975,5.51,223.9021784453414,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18116,'2019-10-22T23:49:23.039Z',NULL,184,3,116.09741230191975,5.51,61.7383043940919,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18117,'2016-12-27T01:48:15.741Z',NULL,192,1,46.122790137195516,2.19,68.16386716220603,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18118,'2017-09-25T09:44:39.725Z',NULL,195,4,73.18718264538155,3.48,69.43311426274319,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18119,'2019-09-19T21:17:39.353Z',NULL,29,2,123.57448218067185,5.87,58.469092538198474,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18120,'2019-04-08T10:07:05.403Z',NULL,194,1,50.38077396807232,2.39,28.254220005422063,2405); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18121,'2018-01-30T00:18:16.139Z',NULL,3,1,53.08311732230858,3.32,32.15854100244378,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18122,'2019-12-12T03:25:45.385Z',NULL,32,1,107.1448636959614,6.7,87.58054404659714,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18123,'2018-01-01T08:22:39.283Z',NULL,173,1,122.3651993029456,7.65,28.258014781708106,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18124,'2019-09-06T01:27:52.806Z',NULL,145,2,61.1983004605443,3.82,115.48928978237089,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18125,'2019-02-12T08:36:49.790Z',NULL,134,1,42.49233549998661,2.66,68.55844053663397,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18126,'2019-02-04T01:22:23.895Z',NULL,141,1,126.20312547576883,7.89,83.11406168444591,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18127,'2019-03-23T18:26:45.211Z',NULL,130,1,75.02573869315137,4.69,100.4716898915278,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18128,'2018-12-31T03:29:20.314Z',NULL,81,1,43.9329842322118,2.75,6.760578340564,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18129,'2019-08-13T22:39:01.319Z',NULL,78,3,41.616917284159726,2.6,30.25797511570267,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18130,'2018-12-04T00:24:06.661Z',NULL,105,1,52.723521442619514,3.3,95.64454674152617,2406); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18131,'2018-10-29T15:47:33.513Z',NULL,149,4,69.15415037577924,4.84,106.25421855567862,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18132,'2017-10-31T18:33:45.150Z',NULL,50,3,35.76013077879841,2.5,9.689528684723419,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18133,'2019-12-08T12:34:23.933Z',NULL,9,1,87.46968147789205,6.12,42.077930047708065,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18134,'2017-12-31T15:33:52.902Z',NULL,191,1,85.72279013719552,6,20.428440871588624,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18135,'2019-04-23T00:00:20.409Z',NULL,52,2,103.67587240151535,7.26,161.90315098314613,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18136,'2019-05-12T23:11:53.168Z',NULL,70,4,57.493003808959784,4.02,97.24197131207504,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18137,'2019-03-15T05:26:54.430Z',NULL,32,1,107.1448636959614,7.5,109.8619316759341,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18138,'2018-08-13T06:25:25.227Z',NULL,37,8,80.10774204020768,5.61,103.63815642898233,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18139,'2019-02-20T07:56:40.647Z',NULL,124,2,110.93145648834248,7.77,129.38463421534303,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18140,'2018-10-24T02:05:34.675Z',NULL,163,7,33.56789820016516,2.35,19.267986766747697,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18141,'2020-04-09T06:36:23.779Z',NULL,124,3,110.93145648834248,7.77,94.86428154440141,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18142,'2017-11-16T03:45:19.608Z',NULL,57,3,81.6149289055996,5.71,24.521058661725704,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18143,'2019-08-06T19:17:16.996Z',NULL,124,6,110.93145648834248,7.77,101.47869292680122,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18144,'2019-01-20T04:38:27.488Z',4.935007204267939,147,2,66.64727121216615,4.67,80.2877254655649,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18145,'2016-12-24T10:13:28.014Z',NULL,185,2,26.384667225677738,1.85,40.99055313097298,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18146,'2017-12-06T15:18:41.957Z',NULL,199,2,76.95334253952366,5.39,121.62128714148758,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18147,'2020-01-28T03:44:16.062Z',NULL,32,3,107.1448636959614,7.5,132.22936804438473,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18148,'2019-02-07T09:02:37.059Z',4.935007204267939,74,2,51.12804227386549,3.58,111.09027172443562,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18149,'2019-08-10T12:10:35.309Z',4.935007204267939,17,10,79.93608046792765,5.6,150.78892588707666,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18150,'2018-02-15T16:33:15.495Z',NULL,65,2,68.22769726470014,4.78,31.144271977140406,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18151,'2019-12-02T15:31:36.029Z',NULL,75,2,125.81276373452337,8.81,49.05227392543954,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18152,'2020-02-05T04:08:33.543Z',NULL,96,2,104.82144858590365,7.34,190.97444623781212,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18153,'2018-02-14T19:32:44.044Z',NULL,43,2,76.35255205175756,5.34,103.32219980199874,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18154,'2019-12-08T20:03:09.687Z',NULL,135,2,45.80402317157342,3.21,17.76255472734305,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18155,'2018-01-28T11:50:15.201Z',NULL,117,2,55.024851254077866,3.85,60.35795421097364,2408); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18156,'2019-02-04T05:16:47.065Z',NULL,57,1,122.4223933583994,5.26,203.33042790146564,2410); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18157,'2020-01-14T15:01:42.360Z',NULL,130,2,75.02573869315137,3,32.98345981230409,2411); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18158,'2018-06-16T18:22:21.987Z',NULL,80,7,54.91325681036414,2.61,60.41162637248696,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18159,'2019-09-02T18:20:44.778Z',9.43500720426794,50,6,53.64019616819762,2.55,82.45394143338696,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18160,'2019-05-10T09:47:10.825Z',NULL,4,5,110.98767151282252,5.27,184.78875471416603,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18161,'2019-07-09T03:24:15.033Z',NULL,90,6,123.1196127553999,5.85,24.322431270543042,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18162,'2017-11-23T06:15:41.923Z',NULL,131,3,75.41148135558485,3.58,42.13593943404679,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18163,'2017-01-13T23:39:25.954Z',NULL,53,2,29.517248267676894,1.4,42.884229964875,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18164,'2020-02-16T06:09:36.706Z',NULL,179,1,68.32408657333919,3.25,114.89424341275435,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18165,'2020-01-10T15:47:08.460Z',NULL,27,2,127.52471180754115,6.06,89.77989081772698,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18166,'2017-06-19T15:46:54.871Z',NULL,37,6,53.40516136013846,2.54,86.12550953064682,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18167,'2018-04-18T03:22:30.742Z',NULL,14,3,37.648145389078365,1.79,71.97363564859825,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18168,'2018-10-10T02:18:54.649Z',NULL,165,7,38.30449564120193,1.82,23.08276775402867,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18169,'2019-05-07T23:56:33.493Z',NULL,169,4,59.53172693453274,2.83,36.70485125648693,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18170,'2019-12-19T17:18:22.749Z',NULL,111,2,55.526746186906664,2.64,11.765556220599306,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18171,'2018-06-06T14:15:32.758Z',NULL,28,6,68.12471180754113,3.24,89.04049060111986,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18172,'2018-03-18T20:46:00.717Z',NULL,72,1,142.20381898788685,6.75,38.78372764828587,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18173,'2019-04-27T19:59:30.348Z',NULL,147,3,66.64727121216615,3.17,107.42071593752064,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18174,'2019-08-17T17:01:00.593Z',NULL,53,8,44.27587240151534,2.1,46.308942137186165,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18175,'2018-11-04T05:23:43.835Z',NULL,117,3,55.024851254077866,2.61,32.58752470195256,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18176,'2017-06-13T14:36:30.711Z',NULL,195,6,73.18718264538155,3.48,46.80187792591416,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18177,'2018-02-05T00:03:50.720Z',NULL,178,2,117.32963250370614,5.57,106.56899566024153,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18178,'2017-02-03T23:42:17.414Z',NULL,146,2,84.03151414144409,3.99,53.44332222939008,2412); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18179,'2019-11-28T23:54:03.231Z',NULL,106,4,52.723521442619514,3.69,107.64180388363104,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18180,'2017-09-28T13:47:08.031Z',4.935007204267939,139,6,51.18512212784679,3.58,71.57376316316581,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18181,'2019-08-17T14:31:12.583Z',NULL,116,6,114.42485125407785,8.01,123.46234205769179,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18182,'2019-10-01T10:44:11.777Z',NULL,1,4,44.19489169601981,3.09,6.066236820263137,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18183,'2019-08-07T13:33:12.051Z',NULL,159,6,35.53017445377361,2.49,4.9414671321536074,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18184,'2018-07-30T20:51:37.807Z',NULL,180,4,68.32408657333919,4.78,121.95678045195787,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18185,'2018-02-11T11:32:42.895Z',NULL,83,1,81.87627832636537,5.73,121.70677954183714,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18186,'2020-02-23T07:38:25.350Z',NULL,69,2,73.38772304360626,5.14,10.790445452414705,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18187,'2018-10-16T16:31:28.673Z',NULL,88,6,105.41292031622555,7.38,123.39535364351259,2413); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18188,'2018-03-31T11:56:08.787Z',NULL,14,1,37.648145389078365,1.79,65.05889333492831,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18189,'2020-01-13T21:05:20.536Z',NULL,137,1,67.77247956807186,3.22,117.26103406162157,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18190,'2018-01-10T11:23:13.451Z',NULL,5,1,124.1176465275534,5.9,193.88847199191088,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18191,'2020-02-28T21:21:51.090Z',NULL,130,1,75.02573869315137,3.56,134.00891251799018,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18192,'2019-04-14T16:11:48.810Z',NULL,27,2,127.52471180754115,6.06,237.80345188604065,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18193,'2018-03-08T16:51:15.122Z',2.506602500009523,156,1,30.615804149046195,1.45,52.69915823596333,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18194,'2018-08-19T16:26:44.901Z',NULL,189,6,93.27738254731509,4.43,157.85395747599543,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18195,'2018-07-02T00:05:54.007Z',2.506602500009523,132,4,127.88197029833711,6.07,222.3589486998285,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18196,'2017-11-18T14:17:34.854Z',NULL,187,2,65.98466722567774,3.13,59.75475767071829,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18197,'2019-11-29T09:41:58.671Z',NULL,40,2,99.66240044231697,4.73,94.75456749437681,2414); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18198,'2017-12-10T00:20:22.824Z',NULL,189,1,62.18492169821006,1.8,126.75035901252474,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18199,'2019-03-25T11:09:30.553Z',NULL,46,1,118.0495173798411,3.42,175.54663776897473,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18200,'2019-05-08T22:18:38.435Z',NULL,140,5,66.80312547576881,1.94,70.313714669864,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18201,'2019-12-19T21:53:18.508Z',NULL,29,2,123.57448218067185,3.58,102.47672677586601,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18202,'2019-12-25T06:05:45.348Z',2.506602500009523,102,2,47.04215255778118,1.36,78.2693615824351,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18203,'2018-08-23T09:56:46.483Z',NULL,103,6,47.04215255778118,1.36,78.70352599449707,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18204,'2019-06-30T02:35:10.692Z',NULL,140,6,66.80312547576881,1.94,113.93989428456162,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18205,'2018-12-28T23:03:15.355Z',7.006602500009523,37,2,80.10774204020768,2.32,140.89557942941576,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18206,'2018-11-20T21:46:40.384Z',NULL,63,2,133.5202262591817,3.87,122.24905134668391,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18207,'2019-01-08T22:43:06.771Z',NULL,135,1,45.80402317157342,1.33,47.99876353025278,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18208,'2019-05-20T00:37:59.821Z',NULL,169,4,59.53172693453274,1.73,119.76682601188134,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18209,'2020-02-29T07:57:29.539Z',NULL,75,1,125.81276373452337,3.65,105.63666414939365,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18210,'2019-04-29T12:46:24.127Z',NULL,102,3,47.04215255778118,1.36,46.87824878248,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18211,'2020-04-16T10:38:39.666Z',NULL,105,3,52.723521442619514,1.53,33.80760461232468,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18212,'2020-04-02T06:43:43.149Z',NULL,171,3,105.07665741496471,3.05,187.0700265505677,2417); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18213,'2019-03-06T18:09:30.434Z',NULL,68,1,115.24343882309758,4.61,16.53872363949623,2418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18214,'2018-06-12T19:22:22.435Z',NULL,93,6,49.81864156655383,1.99,48.60264183860853,2418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18215,'2018-06-18T11:59:36.475Z',NULL,115,6,77.91196471862148,3.12,153.03241358207106,2418); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18216,'2018-09-27T14:58:33.719Z',2.506602500009523,131,6,113.11722203337729,7.35,169.04247232619713,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18217,'2017-02-13T11:24:10.216Z',NULL,68,1,76.82895921539838,4.99,150.84809548478506,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18218,'2020-03-30T03:59:09.585Z',NULL,101,1,139.82488066180403,9.09,66.63748766349761,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18219,'2019-01-05T10:30:11.666Z',NULL,135,1,45.80402317157342,2.98,8.156869345489273,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18220,'2018-06-20T06:40:23.413Z',NULL,53,6,44.27587240151534,2.88,61.9884044489745,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18221,'2017-02-27T11:57:01.016Z',NULL,10,1,31.78621880685793,2.07,12.326916411851055,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18222,'2020-01-24T20:57:46.593Z',NULL,26,2,68.12471180754113,4.43,101.58583394981984,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18223,'2019-11-21T14:36:21.028Z',NULL,108,3,50.094887884945365,3.26,89.6653298962245,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18224,'2018-05-14T04:35:58.376Z',NULL,160,5,47.59120561297272,3.09,100.88313525107006,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18225,'2017-06-28T10:04:52.808Z',2.506602500009523,44,6,50.90170136783837,3.31,100.36816620916339,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18226,'2017-09-18T04:43:05.127Z',NULL,44,4,50.90170136783837,3.31,25.35827406692261,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18227,'2019-11-04T12:22:54.540Z',NULL,144,3,61.1983004605443,3.98,55.16580534296015,2419); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18228,'2017-07-26T10:37:43.304Z',NULL,139,6,51.18512212784679,2.05,36.42916375941134,2421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18229,'2019-05-15T11:12:43.440Z',NULL,46,5,118.0495173798411,4.72,112.30801846701269,2421); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18230,'2019-04-27T17:05:14.065Z',NULL,32,2,107.1448636959614,8.04,50.2670818987664,2422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18231,'2018-05-02T14:57:56.109Z',NULL,10,2,47.6793282102869,3.58,93.0765637295128,2422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18232,'2017-08-15T15:53:01.168Z',2.0200980238973245,126,4,83.49598746872304,6.26,42.528394048554034,2422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18233,'2018-07-20T01:59:00.219Z',NULL,169,4,59.53172693453274,4.46,52.220092832525644,2422); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18234,'2019-07-13T02:13:09.402Z',NULL,31,5,105.65346467128523,6.34,85.24297328066571,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18235,'2019-08-03T05:00:21.753Z',NULL,195,6,109.78077396807234,6.59,226.712912934303,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18236,'2019-06-10T21:43:01.249Z',NULL,127,3,134.48016314504417,8.07,174.92892959796774,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18237,'2017-03-18T04:35:18.617Z',NULL,164,1,61.978598800110106,3.72,103.86567439897658,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18238,'2018-04-09T21:02:54.170Z',NULL,198,2,70.14610686710009,4.21,71.19848248891007,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18239,'2019-12-14T00:42:03.688Z',2.0200980238973245,16,2,66.11029954877317,3.97,78.71029940671902,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18240,'2018-12-07T01:29:28.145Z',NULL,173,2,122.3651993029456,7.34,217.99433238495303,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18241,'2019-04-13T15:16:24.487Z',NULL,48,2,123.20884248534108,7.39,123.3319272813891,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18242,'2018-11-09T03:57:27.118Z',NULL,120,2,83.5020135028928,5.01,37.87089594558948,2423); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18243,'2017-04-24T18:18:51.673Z',6.520098023897324,192,2,46.122790137195516,1.98,85.57190319630709,2424); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18244,'2020-01-18T13:05:27.537Z',NULL,168,2,118.93172693453273,0,102.27150263498302,2426); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18245,'2019-05-23T04:13:34.343Z',NULL,50,4,53.64019616819762,3.35,67.88412706512086,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18246,'2017-08-01T16:00:44.710Z',NULL,145,6,40.7988669736962,2.55,51.76808537016031,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18247,'2017-07-08T00:51:12.291Z',NULL,80,4,36.60883787357609,2.29,42.87218118510523,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18248,'2017-09-29T13:17:55.945Z',NULL,125,4,53.59799471993963,3.35,28.619123201067325,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18249,'2019-02-20T15:10:16.058Z',NULL,120,1,83.5020135028928,5.22,44.8586678702717,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18250,'2016-10-31T21:49:10.199Z',NULL,64,3,95.61478497145774,5.98,117.96314810310376,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18251,'2020-01-26T01:00:50.445Z',6.520098023897324,127,1,134.48016314504417,8.41,185.7066362171786,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18252,'2019-11-08T17:49:27.120Z',NULL,171,2,105.07665741496471,6.57,35.12433321680964,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18253,'2017-06-17T03:50:25.070Z',NULL,190,7,85.72279013719552,5.36,147.2409628618653,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18254,'2019-06-18T07:36:58.197Z',NULL,34,7,74.30391386913199,4.64,17.234076668265804,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18255,'2018-07-27T12:54:48.314Z',NULL,176,4,57.92480943352658,3.62,27.199755729942126,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18256,'2018-10-16T03:00:46.180Z',6.520098023897324,57,3,122.4223933583994,7.65,154.1494190113325,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18257,'2019-06-13T20:01:32.644Z',NULL,33,3,47.7448636959614,2.98,40.221916730663935,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18258,'2017-02-23T02:48:13.064Z',NULL,35,1,47.691251538276234,2.98,69.74823379246229,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18259,'2020-03-17T17:12:07.037Z',NULL,91,1,65.09432810381134,4.07,39.64178511316834,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18260,'2018-03-27T03:07:14.437Z',NULL,99,1,67.83486485383094,4.24,27.655940353794758,2428); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18261,'2019-07-08T23:47:25.550Z',NULL,81,3,43.9329842322118,1.27,36.93773683157721,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18262,'2017-07-11T17:57:22.312Z',NULL,10,3,31.78621880685793,0.92,19.036375250582143,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18263,'2018-10-28T09:01:35.352Z',NULL,2,3,105.11984419607644,3.05,171.5216838567878,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18264,'2017-06-07T10:20:28.283Z',NULL,149,3,46.10276691718616,1.34,83.29506820423276,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18265,'2017-12-24T17:27:41.956Z',NULL,115,2,51.94130981241432,1.51,79.9928053089953,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18266,'2018-07-25T10:24:10.176Z',NULL,74,4,51.12804227386549,1.48,30.332837075993048,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18267,'2017-06-27T16:41:24.795Z',6.520098023897324,132,5,85.25464686555807,2.47,117.10378853498366,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18268,'2017-08-30T19:11:00.877Z',NULL,4,6,73.99178100854834,2.15,136.277757964369,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18269,'2017-05-21T14:19:35.286Z',NULL,166,2,25.536330427467956,0.74,26.61384469897288,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18270,'2017-09-21T11:09:07.146Z',NULL,59,4,59.46809834572766,1.72,24.8045166765496,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18271,'2020-04-17T07:39:42.622Z',NULL,49,2,131.42865839323724,3.81,277.95709837274717,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18272,'2017-05-26T07:30:01.536Z',NULL,163,4,22.378598800110105,0.65,5.056569373439926,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18273,'2020-03-08T06:25:11.538Z',NULL,192,1,69.18418520579327,2.01,76.84158252059419,2430); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18274,'2017-11-16T17:35:12.326Z',NULL,165,3,25.536330427467956,1.6,19.499820919307393,2431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18275,'2017-01-12T11:19:39.597Z',NULL,195,2,73.18718264538155,4.57,24.18374383426936,2431); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18276,'2020-02-01T00:45:51.750Z',NULL,170,2,105.07665741496471,7.36,43.6767324570479,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18277,'2019-01-27T00:26:38.544Z',NULL,1,3,44.19489169601981,3.09,8.945707485393935,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18278,'2018-10-13T03:40:37.691Z',NULL,60,8,29.80214751859149,2.09,26.347242715046242,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18279,'2020-01-12T18:39:30.956Z',NULL,83,2,81.87627832636537,5.73,13.453728829290174,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18280,'2018-02-12T16:12:25.062Z',NULL,128,2,75.08016314504417,5.26,152.20455986254188,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18281,'2019-12-11T09:25:30.308Z',NULL,66,2,136.16126271106958,9.53,255.18827105057122,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18282,'2020-02-10T23:37:36.477Z',NULL,177,1,128.8192981944599,9.02,211.98686294375017,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18283,'2019-11-08T10:03:22.830Z',NULL,153,3,66.79892314178237,4.68,87.16544570885067,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18284,'2017-03-08T12:35:04.983Z',NULL,84,1,54.58418555091025,3.82,120.46898614601359,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18285,'2019-02-19T19:51:46.533Z',NULL,185,2,39.57700083851661,2.77,76.13964453759372,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18286,'2017-03-11T08:51:31.490Z',NULL,74,1,34.08536151591033,2.39,26.399572213983877,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18287,'2019-03-13T11:07:52.853Z',NULL,12,1,116.01427581618326,8.12,51.18851138966105,2432); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18288,'2019-01-20T00:41:41.943Z',NULL,14,3,37.648145389078365,2.45,72.94141261488642,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18289,'2020-02-07T03:53:43.476Z',NULL,94,2,109.21864156655383,7.1,183.83473860418638,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18290,'2017-07-10T11:53:11.302Z',NULL,74,7,34.08536151591033,2.22,32.912589740179676,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18291,'2020-01-15T08:24:37.702Z',NULL,117,3,55.024851254077866,3.58,107.2079437008576,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18292,'2020-04-14T00:50:43.422Z',NULL,147,4,66.64727121216615,4.33,24.042322306728366,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18293,'2019-02-19T10:22:44.621Z',NULL,42,2,38.00410713690931,2.47,83.73222969904555,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18294,'2020-02-29T14:44:39.863Z',NULL,102,2,47.04215255778118,3.06,86.29259365600109,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18295,'2017-11-08T01:35:34.592Z',NULL,68,3,76.82895921539838,4.99,56.731156837812925,2434); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18296,'2017-06-15T03:17:18.737Z',NULL,137,5,45.18165304538124,2.71,20.838307897011358,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18297,'2019-02-11T01:44:52.949Z',NULL,36,1,130.93687730741433,7.86,216.27197629625067,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18298,'2016-10-19T21:15:42.168Z',4.312752434579817,17,5,53.290720311951766,3.2,7.172508448250578,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18299,'2019-12-11T04:45:02.521Z',NULL,93,2,49.81864156655383,2.99,30.202495801749063,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18300,'2017-04-09T08:33:39.943Z',NULL,10,2,31.78621880685793,1.91,16.980410690748865,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18301,'2018-12-28T08:05:58.822Z',NULL,28,2,68.12471180754113,4.09,38.61244136018754,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18302,'2020-01-03T16:19:53.013Z',NULL,194,2,50.38077396807232,3.02,11.795905917101935,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18303,'2019-11-28T22:33:23.639Z',NULL,16,3,66.11029954877317,3.97,126.55008653652669,2436); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18304,'2017-11-25T22:51:13.622Z',NULL,16,3,44.07353303251545,1.28,9.661255774012686,2437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18305,'2017-10-23T01:53:07.222Z',NULL,111,6,37.01783079127111,1.07,53.32472982233312,2437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18306,'2018-10-27T22:58:18.837Z',NULL,99,6,67.83486485383094,1.97,62.14558315338804,2437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18307,'2018-10-21T19:32:18.004Z',NULL,122,6,99.84528328808108,2.9,152.70769638572904,2437); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18308,'2017-01-31T08:47:26.421Z',NULL,55,3,63.84752383956291,4.39,74.07908982500781,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18309,'2017-12-27T12:14:59.389Z',NULL,17,2,53.290720311951766,3.66,111.14660562306935,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18310,'2019-12-28T03:06:29.157Z',NULL,18,2,81.90307121097293,5.63,18.538060857354992,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18311,'2019-07-13T23:24:04.156Z',NULL,134,7,42.49233549998661,2.92,50.147759691386035,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18312,'2017-01-05T12:58:44.642Z',NULL,80,2,36.60883787357609,2.52,57.540090824693465,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18313,'2019-11-11T01:09:12.597Z',NULL,1,2,44.19489169601981,3.04,56.11009863213366,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18314,'2017-06-06T02:47:30.735Z',NULL,52,7,69.1172482676769,4.75,43.68275678159907,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18315,'2019-07-24T14:51:41.826Z',NULL,11,7,132.45679913492563,9.11,85.08794019841814,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18316,'2018-09-08T21:19:05.603Z',NULL,39,7,114.58158180283459,7.88,230.75865760770435,2438); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18317,'2019-11-27T04:48:14.516Z',NULL,76,3,63.82421061366486,3.83,108.13042614538202,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18318,'2018-06-14T15:58:45.021Z',NULL,158,5,139.8942352373801,8.39,176.46086970707992,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18319,'2020-01-30T21:59:37.224Z',NULL,8,2,98.83823503993958,5.93,24.557778729313778,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18320,'2017-09-23T16:04:46.934Z',NULL,184,4,77.3982748679465,4.64,46.24419291246149,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18321,'2017-12-12T20:02:59.296Z',NULL,32,2,71.42990913064094,4.29,85.86384944229219,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18322,'2019-03-10T09:20:00.290Z',NULL,145,1,61.1983004605443,3.67,66.11641448364742,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18323,'2018-09-27T23:57:35.071Z',NULL,93,4,49.81864156655383,2.99,92.0144371521425,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18324,'2020-03-13T00:11:48.720Z',NULL,167,1,97.70449564120193,5.86,108.43276915459514,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18325,'2019-12-31T06:05:53.579Z',NULL,62,2,133.5202262591817,8.01,156.15203103550533,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18326,'2018-10-11T21:03:05.641Z',NULL,85,4,54.90104734428525,3.29,101.5419934917919,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18327,'2018-11-28T16:01:43.676Z',NULL,2,2,105.11984419607644,6.31,125.73191783026996,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18328,'2019-11-01T09:22:15.377Z',NULL,4,2,110.98767151282252,6.66,228.68097389520747,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18329,'2018-05-10T00:01:48.793Z',NULL,88,3,105.41292031622555,6.32,220.10163747786797,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18330,'2019-06-02T12:10:29.802Z',NULL,55,7,95.77128575934437,5.75,105.37974126861133,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18331,'2018-04-21T00:15:23.538Z',1.7977655439428524,57,2,122.4223933583994,7.35,127.38022243649513,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18332,'2020-03-04T08:08:37.022Z',NULL,153,1,66.79892314178237,4.01,49.327764471549195,2440); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18333,'2017-09-20T10:06:01.105Z',NULL,138,3,75.96718984479077,3.27,77.05577533504969,2441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18334,'2019-02-03T09:15:27.843Z',NULL,94,1,109.21864156655383,4.7,161.97942321589542,2441); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18335,'2016-09-21T09:35:01.958Z',NULL,136,3,70.13601544771562,5.26,142.43291402451555,2442); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18336,'2018-10-13T03:52:35.534Z',NULL,90,3,123.1196127553999,4.92,175.57650692266438,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18337,'2018-12-04T23:33:45.594Z',NULL,63,2,133.5202262591817,5.34,158.9626063282909,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18338,'2019-04-02T16:50:23.464Z',NULL,5,2,124.1176465275534,4.96,122.94584042911947,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18339,'2018-09-12T13:21:46.938Z',NULL,182,4,84.48940370476112,3.38,37.086269288663736,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18340,'2017-10-16T21:47:20.138Z',NULL,110,6,37.01783079127111,1.48,5.199967141406329,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18341,'2019-12-17T16:08:06.672Z',NULL,30,2,64.17448218067184,2.57,24.253108913357,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18342,'2019-01-05T18:20:30.724Z',NULL,89,2,63.719612755399886,2.55,97.18286040553629,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18343,'2018-07-07T06:46:27.556Z',NULL,132,4,127.88197029833711,5.12,109.06460174490385,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18344,'2019-11-20T06:56:35.946Z',NULL,88,2,105.41292031622555,4.22,171.19504778830623,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18345,'2018-07-19T06:39:53.632Z',NULL,96,3,104.82144858590365,4.19,218.03805908007035,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18346,'2017-08-01T01:08:34.515Z',NULL,5,6,82.7450976850356,3.31,159.68760494861894,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18347,'2017-12-24T14:45:57.518Z',NULL,79,2,27.74461152277315,1.11,35.90351259070574,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18348,'2018-05-26T13:14:05.113Z',NULL,197,3,70.14610686710009,2.81,75.72900902474235,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18349,'2019-12-08T14:23:37.578Z',NULL,69,2,73.38772304360626,2.94,152.52999289271594,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18350,'2017-12-24T08:36:04.492Z',NULL,94,2,72.81242771103588,2.91,124.56275243281168,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18351,'2017-01-09T11:41:14.054Z',NULL,54,1,41.395738936015974,1.66,74.21548168889139,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18352,'2019-10-27T12:53:38.676Z',NULL,25,3,68.62263967182464,2.74,67.32958930501438,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18353,'2019-06-13T19:57:22.900Z',1.7977655439428524,37,3,80.10774204020768,3.2,67.74952153488293,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18354,'2019-12-12T10:21:51.025Z',NULL,77,2,101.01691728415972,4.04,136.0630427081548,2443); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18355,'2018-12-16T01:01:14.715Z',NULL,154,2,81.87529553312261,0,48.607949211578095,2444); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18356,'2020-03-06T01:14:09.731Z',NULL,141,1,126.20312547576883,5.05,93.89305326700637,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18357,'2017-07-07T05:24:26.103Z',NULL,68,5,76.82895921539838,3.07,81.35716801708821,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18358,'2019-06-01T14:29:09.330Z',NULL,144,7,61.1983004605443,2.45,37.96258491935844,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18359,'2017-04-06T01:26:38.166Z',NULL,183,3,37.7982748679465,1.51,14.177214268230392,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18360,'2019-09-11T05:04:46.810Z',NULL,142,5,70.34853057210945,2.81,16.73562818526701,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18361,'2018-11-11T14:12:38.355Z',NULL,60,3,29.80214751859149,1.19,35.11364069744241,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18362,'2019-10-11T13:28:50.142Z',NULL,69,6,73.38772304360626,2.94,60.53388784365646,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18363,'2019-07-12T13:53:30.432Z',NULL,102,5,47.04215255778118,1.88,88.74643185024625,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18364,'2019-04-28T22:54:46.620Z',NULL,9,2,87.46968147789205,3.5,74.21323026714755,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18365,'2018-04-18T22:06:41.939Z',NULL,54,2,62.09360840402396,2.48,103.46401013734705,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18366,'2019-08-29T22:59:50.413Z',NULL,187,7,98.9770008385166,3.96,186.91265438305535,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18367,'2019-11-15T01:00:39.084Z',NULL,44,3,76.35255205175756,3.05,71.91562237390247,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18368,'2017-12-12T07:48:16.635Z',NULL,147,2,44.4315141414441,1.78,75.91827242832451,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18369,'2020-03-02T11:02:18.078Z',NULL,88,1,105.41292031622555,4.22,187.48043077652304,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18370,'2019-11-16T03:07:58.365Z',NULL,72,2,142.20381898788685,5.69,25.38137484647095,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18371,'2019-08-25T13:34:51.470Z',NULL,32,6,107.1448636959614,4.29,116.77510140397882,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18372,'2017-10-02T01:23:33.255Z',NULL,51,4,50.433725012700116,2.02,35.84573750692731,2446); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18373,'2019-03-05T06:37:48.878Z',NULL,142,1,70.34853057210945,2.81,147.34521051431508,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18374,'2018-04-19T19:13:31.313Z',NULL,111,4,55.526746186906664,2.22,25.487763850091476,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18375,'2017-08-14T06:44:39.057Z',9.998904017547027,15,7,25.09876359271891,1,6.450809732616448,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18376,'2017-08-30T08:20:20.929Z',NULL,131,9,75.41148135558485,3.02,120.63603121564792,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18377,'2019-05-02T22:29:58.320Z',NULL,49,5,131.42865839323724,5.26,84.63641866492617,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18378,'2019-04-23T04:22:51.549Z',NULL,84,4,81.87627832636537,3.28,90.2552879402804,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18379,'2019-12-02T08:27:51.301Z',NULL,85,2,54.90104734428525,2.2,100.17803661618073,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18380,'2017-09-28T14:29:49.561Z',NULL,37,6,53.40516136013846,2.14,98.79420674243453,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18381,'2020-03-04T10:18:27.522Z',9.998904017547027,41,1,63.50890855689462,2.54,46.74459184500191,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18382,'2018-06-07T21:34:11.458Z',NULL,162,9,33.56789820016516,1.34,30.987786172262357,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18383,'2019-09-03T17:20:07.145Z',NULL,137,6,67.77247956807186,2.71,120.36174188778888,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18384,'2017-07-13T21:33:12.362Z',NULL,135,6,30.536015447715613,1.22,35.5256845145281,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18385,'2018-06-07T21:44:42.793Z',NULL,37,8,80.10774204020768,3.2,164.29137157164703,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18386,'2019-09-11T05:59:15.559Z',NULL,174,6,111.61430894181083,4.46,158.46096560176446,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18387,'2018-04-04T23:19:52.070Z',5.4989040175470265,11,4,132.45679913492563,5.3,214.47169771791138,2447); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18388,'2017-06-04T16:51:18.924Z',NULL,181,6,95.92626913650741,6,117.52568254879336,2448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18389,'2018-08-20T00:32:14.816Z',NULL,94,9,109.21864156655383,6.83,40.37880796022226,2448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18390,'2019-05-30T21:06:24.939Z',NULL,45,5,118.0495173798411,7.38,45.560006253651096,2448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18391,'2019-01-02T09:11:06.769Z',NULL,149,2,69.15415037577924,4.32,64.39610212123847,2448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18392,'2017-12-24T21:02:04.756Z',NULL,122,3,66.56352219205405,4.16,124.75531217766842,2448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18393,'2019-07-13T07:09:10.042Z',NULL,150,7,128.55415037577922,8.03,40.80333030951932,2448); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18394,'2018-09-24T20:40:22.089Z',NULL,46,7,118.0495173798411,4.72,21.459410242126335,2449); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18395,'2019-12-25T08:11:29.593Z',NULL,171,3,105.07665741496471,5.25,223.2637839467556,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18396,'2020-01-18T05:45:57.238Z',NULL,127,3,134.48016314504417,6.72,198.5780832314754,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18397,'2016-11-26T04:58:28.555Z',NULL,14,4,25.09876359271891,1.25,19.39663819148968,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18398,'2017-09-11T19:18:37.576Z',NULL,163,6,22.378598800110105,1.12,24.924669359695834,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18399,'2017-12-01T18:51:23.666Z',NULL,75,2,83.87517582301558,4.19,25.988623701787418,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18400,'2018-05-03T14:19:30.089Z',NULL,10,4,47.6793282102869,2.38,42.46700325615462,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18401,'2016-10-19T20:36:58.935Z',NULL,115,5,51.94130981241432,2.6,25.360398016803977,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18402,'2018-10-12T16:33:14.302Z',NULL,100,5,67.83486485383094,3.39,122.88920954664972,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18403,'2018-01-12T14:39:18.449Z',NULL,130,2,75.02573869315137,3.75,34.97006530107335,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18404,'2019-01-10T21:32:23.417Z',NULL,134,3,42.49233549998661,2.12,17.76240143386224,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18405,'2017-07-14T00:32:21.428Z',NULL,194,6,33.587182645381546,1.68,53.7754260579277,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18406,'2016-12-26T10:04:50.562Z',NULL,47,2,56.05108065511453,2.8,41.923246521562014,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18407,'2018-01-07T18:50:44.700Z',NULL,180,2,68.32408657333919,3.42,38.82270470739442,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18408,'2017-07-27T13:54:53.683Z',NULL,185,5,26.384667225677738,1.32,15.980313518798132,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18409,'2018-11-09T04:54:26.087Z',NULL,134,3,42.49233549998661,2.12,9.020211829505394,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18410,'2017-06-18T20:25:40.623Z',NULL,75,6,83.87517582301558,4.19,144.41266302037312,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18411,'2017-10-01T21:21:06.271Z',NULL,107,7,33.39659192329691,1.67,53.22882633400422,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18412,'2019-04-23T09:36:42.193Z',NULL,28,4,68.12471180754113,3.41,64.17112580697862,2450); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18413,'2019-05-03T08:08:47.082Z',NULL,102,4,47.04215255778118,2.94,41.62930260030742,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18414,'2019-09-14T12:20:27.347Z',NULL,71,6,82.80381898788684,5.18,159.81341584496693,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18415,'2019-12-07T10:42:00.285Z',NULL,72,2,142.20381898788685,8.89,292.739709982263,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18416,'2017-08-01T10:38:01.073Z',NULL,138,9,75.96718984479077,4.75,134.19647895493125,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18417,'2019-10-11T15:27:24.206Z',9.998904017547027,98,8,112.41825444654248,7.03,233.7498317904653,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18418,'2019-10-21T10:28:03.084Z',NULL,110,7,55.526746186906664,3.47,111.78244900600977,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18419,'2018-07-01T23:27:18.427Z',NULL,40,6,99.66240044231697,6.23,117.22297707093738,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18420,'2018-12-07T05:44:27.425Z',5.4989040175470265,149,2,69.15415037577924,4.32,34.690631203663266,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18421,'2019-11-23T11:50:54.695Z',NULL,147,3,66.64727121216615,4.17,130.80996751038472,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18422,'2018-03-09T01:50:58.050Z',NULL,35,1,71.53687730741436,4.47,145.70708148715747,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18423,'2019-03-06T12:17:51.818Z',NULL,37,1,80.10774204020768,5.01,56.567641573402774,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18424,'2020-01-27T21:01:12.096Z',NULL,80,1,54.91325681036414,3.43,70.16853285203005,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18425,'2018-06-10T05:52:50.631Z',NULL,105,4,52.723521442619514,3.3,93.95306165367725,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18426,'2018-02-27T12:13:53.884Z',NULL,184,1,116.09741230191975,7.26,179.391802593733,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18427,'2017-03-13T08:38:46.694Z',NULL,127,1,89.65344209669612,5.6,56.255975165453144,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18428,'2017-09-21T19:59:13.361Z',NULL,118,6,38.418408731319154,2.4,35.26142807118794,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18429,'2018-09-05T22:11:08.752Z',7.210618804898286,192,6,69.18418520579327,4.32,54.00572498477119,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18430,'2019-01-20T02:34:58.879Z',NULL,49,2,131.42865839323724,8.21,52.561796983163575,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18431,'2020-01-16T14:40:15.228Z',NULL,82,1,60.89545738030947,3.81,52.85992969509557,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18432,'2018-11-21T19:42:01.881Z',NULL,143,3,61.1983004605443,3.82,59.40174849671806,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18433,'2017-12-25T13:38:17.849Z',NULL,159,2,23.686782969182406,1.48,17.91222972988741,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18434,'2018-10-01T08:22:16.174Z',2.7106188048982855,16,5,66.11029954877317,4.13,14.823058061668759,2451); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18435,'2018-03-20T23:38:32.816Z',NULL,134,1,42.49233549998661,2.55,45.919557937687145,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18436,'2019-10-08T15:10:31.905Z',NULL,91,4,65.09432810381134,3.91,139.15942017891993,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18437,'2019-03-02T09:36:18.536Z',NULL,20,1,37.32649625046575,2.24,13.764790770313386,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18438,'2019-12-19T13:31:35.290Z',2.7106188048982855,27,2,127.52471180754115,7.65,93.13018523544382,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18439,'2016-08-06T13:02:56.209Z',NULL,176,6,38.616539622351056,2.32,65.95459649267656,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18440,'2019-09-28T15:58:10.713Z',NULL,98,3,112.41825444654248,6.75,112.84438559396699,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18441,'2018-09-24T03:26:38.622Z',NULL,74,3,51.12804227386549,3.07,62.62657445448938,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18442,'2019-10-10T06:27:05.751Z',NULL,33,5,47.7448636959614,2.86,71.54398421049544,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18443,'2019-03-16T20:36:07.942Z',NULL,69,1,73.38772304360626,4.4,99.56386715921391,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18444,'2017-10-12T10:00:27.337Z',NULL,10,7,31.78621880685793,1.91,46.48289509845196,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18445,'2019-04-11T21:19:24.016Z',NULL,64,27,143.4221774571866,8.61,70.67509104908864,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18446,'2018-02-17T19:37:02.046Z',NULL,96,1,104.82144858590365,6.29,174.73710777019747,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18447,'2019-04-17T04:40:46.515Z',NULL,65,3,68.22769726470014,4.09,137.1611661599308,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18448,'2019-10-03T21:05:23.471Z',NULL,83,4,81.87627832636537,4.91,12.60040252548466,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18449,'2018-10-16T09:38:38.452Z',NULL,58,4,78.14578007078882,4.69,32.19705043574645,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18450,'2018-08-14T15:29:22.930Z',NULL,129,4,148.1672972165937,8.89,26.56917837572932,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18451,'2020-04-02T00:39:01.674Z',NULL,116,3,114.42485125407785,6.87,176.72507410559052,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18452,'2018-05-17T00:50:19.870Z',NULL,153,4,66.79892314178237,4.01,137.35152330337525,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18453,'2018-12-25T09:04:36.195Z',NULL,14,2,37.648145389078365,2.26,8.760705001754008,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18454,'2019-03-22T00:59:17.157Z',NULL,94,1,109.21864156655383,6.55,233.4477136463439,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18455,'2019-09-10T06:06:37.706Z',NULL,62,4,133.5202262591817,8.01,255.05187992317084,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18456,'2018-02-11T03:29:57.622Z',NULL,166,1,38.30449564120193,2.3,22.390603961358586,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18457,'2017-06-11T08:49:58.716Z',NULL,134,6,28.328223666657742,1.7,33.45564612104202,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18458,'2017-02-16T18:41:40.996Z',NULL,110,1,37.01783079127111,2.22,45.12023943152116,2453); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18459,'2018-06-22T12:44:07.133Z',NULL,107,7,50.094887884945365,3.13,67.77596339294455,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18460,'2017-06-05T17:42:33.841Z',NULL,94,7,72.81242771103588,4.55,114.12519062785803,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18461,'2017-08-04T01:59:45.901Z',NULL,183,8,37.7982748679465,2.36,70.51325753431362,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18462,'2018-01-03T07:23:22.677Z',NULL,131,2,113.11722203337729,7.07,93.32598624392338,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18463,'2020-01-13T00:52:24.587Z',NULL,10,2,47.6793282102869,2.98,73.70912496383808,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18464,'2019-12-02T20:12:53.530Z',NULL,198,2,70.14610686710009,4.38,51.60422031375933,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18465,'2018-08-31T00:46:51.220Z',NULL,176,6,57.92480943352658,3.62,36.31742717350881,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18466,'2019-05-14T06:16:31.278Z',NULL,10,4,47.6793282102869,2.98,51.274593080696185,2455); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18467,'2019-11-28T23:34:26.317Z',NULL,88,3,105.41292031622555,5.01,182.93090532302463,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18468,'2017-07-30T06:29:51.073Z',NULL,125,6,53.59799471993963,2.55,48.95397497034379,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18469,'2018-09-10T23:36:12.149Z',NULL,120,4,83.5020135028928,3.97,57.747172971902735,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18470,'2017-06-30T06:06:16.245Z',NULL,56,6,24.24752383956291,1.15,19.5623742377341,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18471,'2018-11-15T09:34:15.371Z',NULL,130,4,75.02573869315137,3.56,89.75851983563072,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18472,'2020-04-11T13:42:47.529Z',NULL,142,3,70.34853057210945,3.34,145.7502244740046,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18473,'2018-01-17T04:56:52.212Z',9.346680982043582,132,2,127.88197029833711,6.07,254.1437829519945,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18474,'2018-08-13T12:26:00.999Z',NULL,128,8,75.08016314504417,3.57,100.25011841613133,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18475,'2018-07-01T13:43:33.253Z',9.346680982043582,118,6,57.627613096978735,2.74,16.924786793162426,2457); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18476,'2019-12-03T06:42:18.876Z',NULL,1,2,44.19489169601981,0,46.20772332825879,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18477,'2018-11-03T20:12:24.156Z',NULL,16,3,66.11029954877317,0,24.983303404388575,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18478,'2018-10-20T13:05:22.840Z',NULL,61,7,23.537915510955656,0,41.73562708447307,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18479,'2019-08-04T07:06:23.820Z',NULL,182,10,84.48940370476112,0,158.56967844515034,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18480,'2019-01-12T03:31:22.155Z',NULL,186,3,98.9770008385166,0,189.44813839537574,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18481,'2019-06-12T18:19:22.162Z',NULL,200,9,73.20395711799151,0,151.0301589175794,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18482,'2020-01-17T02:44:57.544Z',NULL,132,2,127.88197029833711,0,241.4370129387906,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18483,'2018-09-05T05:10:13.617Z',4.846680982043582,50,6,53.64019616819762,0,104.23221732838115,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18484,'2017-11-04T15:55:52.580Z',NULL,134,3,28.328223666657742,0,49.29229020969368,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18485,'2020-03-18T14:34:00.423Z',NULL,55,1,95.77128575934437,0,166.63914357871795,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18486,'2018-05-14T15:17:27.757Z',NULL,62,4,133.5202262591817,0,96.82800328927937,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18487,'2019-10-09T11:33:11.213Z',NULL,129,5,148.1672972165937,0,279.273897823448,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18488,'2018-05-27T02:50:50.808Z',NULL,57,5,122.4223933583994,0,176.89589655115734,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18489,'2019-02-07T05:26:43.119Z',NULL,31,2,105.65346467128523,0,94.78420715193404,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18490,'2020-03-31T09:22:55.408Z',NULL,198,1,70.14610686710009,0,66.21161379566269,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18491,'2017-04-06T18:24:56.069Z',NULL,36,3,87.29125153827623,0,14.223048401929432,2458); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18492,'2019-10-19T08:14:01.610Z',4.846680982043582,186,7,98.9770008385166,5.44,25.53953040040609,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18493,'2017-03-04T14:21:40.622Z',NULL,81,1,29.288656154807867,1.61,57.01627203996833,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18494,'2018-06-19T03:08:34.159Z',NULL,51,6,75.65058751905018,4.16,141.61735177666148,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18495,'2018-12-03T19:18:20.967Z',NULL,76,2,63.82421061366486,3.51,52.164724258815795,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18496,'2017-03-06T22:29:28.204Z',NULL,92,1,83.2616179105333,4.58,95.44885827008704,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18497,'2017-02-16T17:48:04.280Z',NULL,183,1,37.7982748679465,2.08,82.82824143811787,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18498,'2017-05-02T11:01:20.638Z',NULL,78,5,27.74461152277315,1.53,26.9642576598909,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18499,'2019-07-31T14:58:38.637Z',NULL,63,7,133.5202262591817,7.34,153.00195553506083,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18500,'2017-09-25T21:02:27.940Z',NULL,70,7,38.32866920597319,2.11,15.835148302978407,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18501,'2018-08-30T14:09:39.039Z',NULL,73,10,71.6287722595695,3.94,125.27671931004159,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18502,'2020-02-01T06:55:44.267Z',9.346680982043582,58,2,78.14578007078882,4.3,99.49678797526978,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18503,'2019-02-11T16:57:06.930Z',NULL,116,2,114.42485125407785,6.29,240.20112627924303,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18504,'2018-05-02T10:34:42.612Z',NULL,81,4,43.9329842322118,2.42,17.37002845981511,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18505,'2017-02-09T08:49:01.919Z',NULL,52,2,69.1172482676769,3.8,8.837046024939058,2459); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18506,'2018-03-11T10:28:49.965Z',NULL,187,1,98.9770008385166,4.95,68.23751896809107,2460); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18507,'2018-03-10T13:48:25.793Z',NULL,94,1,109.21864156655383,5.46,200.16859686212769,2460); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18508,'2018-04-21T08:02:13.957Z',NULL,172,4,122.3651993029456,8.41,168.9178521763129,2461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18509,'2017-07-04T06:49:41.033Z',NULL,176,7,38.616539622351056,2.65,19.10377013349326,2461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18510,'2018-08-18T09:11:05.550Z',NULL,141,10,126.20312547576883,8.68,213.46732388464275,2461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18511,'2019-05-13T15:12:20.524Z',NULL,109,5,119.04991068193098,8.18,83.78542916895387,2461); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18512,'2019-09-01T05:17:47.311Z',NULL,118,6,57.627613096978735,2.43,112.78894479892615,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18513,'2016-12-07T02:11:01.500Z',NULL,38,2,44.04624855892918,1.86,29.311305967480596,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18514,'2018-01-21T19:03:23.023Z',4.846680982043582,43,2,76.35255205175756,3.23,158.87445920502094,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18515,'2017-06-12T10:42:17.863Z',NULL,154,9,54.58353035541507,2.31,38.85462490807046,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18516,'2018-05-12T18:07:53.618Z',NULL,29,6,123.57448218067185,5.22,101.60157476900156,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18517,'2018-08-16T23:09:00.091Z',NULL,98,8,112.41825444654248,4.75,134.42263340580138,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18518,'2018-07-03T13:36:53.301Z',4.846680982043582,53,6,44.27587240151534,1.87,69.39870064497569,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18519,'2016-07-24T12:03:30.253Z',NULL,65,6,45.4851315098001,1.92,78.50169274250403,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18520,'2017-11-30T06:14:38.632Z',NULL,46,3,78.6996782532274,3.33,146.19913641276605,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18521,'2016-08-24T02:15:21.981Z',NULL,19,7,42.67116731707548,1.8,65.22673030041263,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18522,'2020-03-17T21:50:37.217Z',1.5229899860505711,4,1,110.98767151282252,4.69,165.9941226705604,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18523,'2019-12-14T10:21:07.475Z',NULL,129,2,148.1672972165937,6.26,192.2818295690084,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18524,'2019-09-09T15:17:21.419Z',NULL,150,2,128.55415037577922,5.43,246.48826035302622,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18525,'2020-01-14T08:16:38.266Z',NULL,121,1,40.44528328808107,1.71,62.025033757582186,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18526,'2018-03-02T18:41:04.362Z',NULL,51,0,75.65058751905018,3.2,44.95237100740084,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18527,'2017-02-22T19:25:52.046Z',6.022989986050571,173,1,81.57679953529707,3.45,64.92340315091477,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18528,'2016-12-24T02:58:47.002Z',NULL,16,1,44.07353303251545,1.86,38.47704335371721,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18529,'2016-07-07T12:32:20.850Z',1.5229899860505711,42,4,25.336071424606207,1.07,21.695215659446628,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18530,'2016-11-02T01:53:06.259Z',NULL,8,3,65.89215669329305,2.78,45.278992952747046,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18531,'2017-02-17T14:54:57.613Z',NULL,49,1,87.61910559549149,3.7,163.73740660177128,2462); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18532,'2019-08-10T22:12:43.383Z',6.022989986050571,18,5,81.90307121097293,5.12,51.7873608479343,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18533,'2019-01-02T14:09:58.448Z',NULL,156,2,30.615804149046195,1.91,8.377101303659938,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18534,'2018-09-08T02:37:58.277Z',NULL,180,4,68.32408657333919,4.27,31.529117397427672,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18535,'2019-10-22T17:57:55.444Z',NULL,10,4,47.6793282102869,2.98,19.61120487376811,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18536,'2017-03-29T07:09:10.719Z',NULL,54,1,41.395738936015974,2.59,40.062372792306974,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18537,'2019-12-18T01:05:56.078Z',NULL,18,2,81.90307121097293,5.12,43.17394939029932,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18538,'2017-10-08T04:30:10.466Z',NULL,13,4,75.0861692740371,4.69,107.95921474109007,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18539,'2020-01-25T18:48:00.085Z',NULL,176,2,57.92480943352658,3.62,70.37952137076456,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18540,'2019-10-13T18:09:48.524Z',NULL,119,4,43.43814329652384,2.71,28.04887692023374,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18541,'2017-03-15T04:48:00.937Z',NULL,30,1,42.7829881204479,2.67,25.962511721351582,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18542,'2020-02-10T17:23:18.668Z',NULL,102,2,47.04215255778118,2.94,54.57244600176985,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18543,'2019-09-23T10:41:22.193Z',NULL,106,4,52.723521442619514,3.3,87.93504115151872,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18544,'2019-09-21T08:28:00.048Z',NULL,150,24,128.55415037577922,8.03,27.685438198205716,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18545,'2018-06-12T10:22:47.353Z',NULL,73,3,71.6287722595695,4.48,16.008672619429007,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18546,'2018-11-28T14:25:45.656Z',NULL,116,2,114.42485125407785,7.15,170.09813790960726,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18547,'2019-04-15T06:21:35.518Z',NULL,141,3,126.20312547576883,7.89,93.66394300315166,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18548,'2018-08-13T02:28:45.996Z',NULL,99,7,67.83486485383094,4.24,97.11313770106425,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18549,'2020-04-07T17:24:04.610Z',NULL,59,3,89.20214751859149,5.58,29.92682702681573,2463); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18550,'2018-12-09T18:27:44.957Z',NULL,169,2,59.53172693453274,2.38,118.28937683890521,2464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18551,'2018-03-02T11:53:53.190Z',1.5229899860505711,134,0,42.49233549998661,1.7,59.331601979501926,2464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18552,'2018-01-25T12:18:11.456Z',NULL,77,2,101.01691728415972,4.04,77.02355937920441,2464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18553,'2018-06-21T09:51:03.766Z',NULL,150,5,128.55415037577922,5.14,193.79751572215548,2464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18554,'2020-04-06T20:45:45.471Z',NULL,148,2,138.9817182254566,5.56,39.988459004474336,2464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18555,'2018-10-20T21:57:03.545Z',NULL,85,4,54.90104734428525,2.2,55.46961299999218,2464); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18556,'2019-07-29T15:43:01.511Z',6.022989986050571,16,4,66.11029954877317,2.64,35.51468564076083,2466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18557,'2019-12-07T18:48:24.489Z',NULL,12,2,116.01427581618326,4.64,83.15290340100786,2466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18558,'2017-07-01T05:04:43.808Z',NULL,101,2,93.21658710786936,3.73,156.53215255051538,2466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18559,'2018-09-18T15:17:41.395Z',NULL,148,2,138.9817182254566,5.56,189.88328727776357,2466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18560,'2018-12-08T01:29:40.541Z',NULL,39,1,114.58158180283459,4.58,81.46613934552336,2466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18561,'2017-12-30T05:25:29.446Z',NULL,100,1,45.22324323588729,1.81,5.311611290583015,2466); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18562,'2020-04-10T20:15:32.712Z',1.5229899860505711,181,1,143.88940370476112,6.19,32.1236060701857,2468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18563,'2019-12-13T19:05:17.927Z',NULL,98,1,112.41825444654248,4.83,70.86413663680544,2468); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18564,'2018-08-27T03:32:03.890Z',NULL,55,5,95.77128575934437,5.27,82.60125646185541,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18565,'2019-06-15T08:49:50.031Z',NULL,144,5,61.1983004605443,3.37,14.027971938928761,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18566,'2019-08-09T03:04:58.730Z',NULL,154,4,81.87529553312261,4.5,155.5981400344203,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18567,'2018-11-13T21:56:35.689Z',NULL,200,3,73.20395711799151,4.03,19.665748415387956,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18568,'2017-02-10T00:04:11.586Z',NULL,105,2,35.149014295079674,1.93,73.94900642075426,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18569,'2017-04-02T16:11:55.571Z',NULL,183,2,37.7982748679465,2.08,46.476239753010475,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18570,'2018-07-09T21:23:35.149Z',NULL,134,3,42.49233549998661,2.34,88.42564814313745,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18571,'2018-01-08T11:01:14.401Z',NULL,167,2,97.70449564120193,5.37,56.701867926459464,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18572,'2018-10-05T17:13:01.103Z',NULL,84,5,81.87627832636537,4.5,34.63863507887225,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18573,'2018-02-02T06:12:08.310Z',NULL,152,1,48.89568729900663,2.69,96.02848625844256,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18574,'2017-11-18T03:23:05.186Z',NULL,159,3,23.686782969182406,1.3,31.625228476177433,2470); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18575,'2019-04-09T00:58:40.091Z',NULL,13,3,112.62925391105566,6.76,152.74825926233885,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18576,'2017-10-20T07:18:15.776Z',NULL,137,5,45.18165304538124,2.71,40.32702198867681,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18577,'2016-12-27T20:31:33.392Z',NULL,20,2,24.884330833643833,1.49,51.666942851856646,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18578,'2019-12-07T15:49:29.923Z',7.443791733221199,36,2,130.93687730741433,7.86,80.1898081553278,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18579,'2017-08-26T23:36:24.102Z',NULL,8,8,65.89215669329305,3.95,52.70426155620823,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18580,'2017-06-18T04:16:33.353Z',NULL,183,8,37.7982748679465,2.27,5.372962090093778,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18581,'2018-01-14T20:27:35.227Z',NULL,164,2,92.96789820016517,5.58,183.89358808528638,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18582,'2018-08-11T01:57:14.912Z',NULL,18,5,81.90307121097293,4.91,47.43963363321376,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18583,'2018-12-08T17:36:18.629Z',NULL,145,1,61.1983004605443,3.67,91.56555212058582,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18584,'2018-08-18T08:17:26.796Z',NULL,10,5,47.6793282102869,2.86,16.677204380782122,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18585,'2017-08-26T21:48:56.367Z',NULL,133,6,45.654646865558064,2.74,8.101540191506313,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18586,'2019-01-03T10:32:42.962Z',NULL,10,2,47.6793282102869,2.86,35.295474172246756,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18587,'2019-12-05T00:36:54.648Z',NULL,131,2,113.11722203337729,6.79,108.48672883240958,2472); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18588,'2017-03-24T15:23:07.868Z',2.9437917332211994,143,1,40.7988669736962,2.55,85.98809612082597,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18589,'2019-12-20T21:17:25.155Z',NULL,114,2,77.91196471862148,4.87,60.71180538999433,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18590,'2020-02-25T17:41:22.816Z',NULL,76,1,63.82421061366486,3.99,68.2537318488307,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18591,'2016-07-27T07:34:12.577Z',NULL,41,3,42.33927237126308,2.65,48.95783844680839,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18592,'2018-01-27T20:26:30.536Z',NULL,83,2,81.87627832636537,5.12,11.016818211764248,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18593,'2017-10-17T00:57:19.544Z',7.443791733221199,90,7,82.07974183693327,5.13,148.57570510010078,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18594,'2019-08-22T01:16:34.400Z',NULL,9,8,87.46968147789205,5.47,52.772076278933085,2473); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18595,'2017-03-13T09:16:51.489Z',2.9437917332211994,33,1,31.829909130640935,1.63,49.57093668369858,2474); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18596,'2018-05-25T05:51:30.263Z',NULL,76,4,63.82421061366486,4.79,66.9452963691694,2475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18597,'2017-08-16T23:55:46.328Z',NULL,90,6,82.07974183693327,6.16,178.31493535386218,2475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18598,'2018-08-09T18:02:05.828Z',NULL,47,8,84.0766209826718,6.31,93.71936971951807,2475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18599,'2018-07-16T12:19:09.180Z',NULL,9,6,87.46968147789205,6.56,37.2920286061979,2475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18600,'2019-06-03T22:25:22.249Z',NULL,191,6,128.5841852057933,9.64,194.7346624060686,2475); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18601,'2018-12-06T21:58:29.879Z',NULL,58,1,78.14578007078882,5.37,36.03322543060958,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18602,'2018-02-22T02:11:59.349Z',NULL,165,1,38.30449564120193,2.63,31.133989268618937,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18603,'2018-09-19T06:40:11.717Z',NULL,102,5,47.04215255778118,3.23,92.67508616026683,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18604,'2019-02-06T15:13:29.039Z',NULL,161,2,47.59120561297272,3.27,74.20565053755715,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18605,'2019-02-13T10:09:56.741Z',NULL,136,2,105.20402317157343,7.23,81.41139380373042,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18606,'2019-09-06T10:39:55.475Z',NULL,8,3,98.83823503993958,6.8,44.316173516694136,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18607,'2019-05-05T01:23:35.935Z',NULL,2,3,105.11984419607644,7.23,89.04127901218168,2476); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18608,'2019-03-21T09:25:28.242Z',NULL,142,1,70.34853057210945,4.4,47.20549355502611,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18609,'2019-01-10T06:08:30.477Z',NULL,67,2,41.24480890795779,2.58,47.021628622835415,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18610,'2019-01-13T06:31:09.586Z',NULL,53,1,44.27587240151534,2.77,73.97812979432958,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18611,'2018-07-14T04:04:47.460Z',NULL,100,3,67.83486485383094,4.24,34.970357636341554,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18612,'2019-11-27T02:00:29.525Z',NULL,65,3,68.22769726470014,4.26,123.41741669761826,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18613,'2018-09-26T01:38:43.782Z',NULL,31,7,105.65346467128523,6.6,137.04813875984829,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18614,'2018-03-29T20:33:35.433Z',NULL,152,1,48.89568729900663,3.06,31.242014624878394,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18615,'2018-08-21T20:37:12.037Z',NULL,118,8,57.627613096978735,3.6,112.96115373587692,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18616,'2017-07-11T06:21:13.502Z',NULL,158,5,93.26282349158673,5.83,160.3543054165748,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18617,'2018-12-26T02:20:10.351Z',NULL,115,2,77.91196471862148,4.87,55.352317792589695,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18618,'2020-01-15T14:01:50.115Z',NULL,13,2,112.62925391105566,7.04,91.35170384712217,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18619,'2019-09-22T02:17:56.601Z',NULL,59,7,89.20214751859149,5.58,108.45458616175618,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18620,'2018-12-30T22:00:39.108Z',NULL,18,2,81.90307121097293,5.12,29.068203070172284,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18621,'2018-06-16T00:45:56.765Z',NULL,167,6,97.70449564120193,6.11,17.50840767759426,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18622,'2019-06-02T16:16:48.947Z',NULL,88,6,105.41292031622555,6.59,112.00361327902269,2477); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18623,'2018-11-13T04:59:27.977Z',NULL,179,3,68.32408657333919,2.73,62.403761616740354,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18624,'2017-05-03T16:16:38.496Z',NULL,131,4,75.41148135558485,3.02,48.56236598676327,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18625,'2020-03-16T19:38:07.601Z',NULL,115,1,77.91196471862148,3.12,81.46323187946886,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18626,'2018-03-30T13:41:41.340Z',NULL,150,1,128.55415037577922,5.14,263.63893212401183,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18627,'2017-07-03T16:10:53.040Z',NULL,92,7,83.2616179105333,3.33,98.71606618956649,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18628,'2018-05-03T13:53:15.731Z',NULL,143,6,61.1983004605443,2.45,86.44164253219182,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18629,'2020-01-22T13:20:56.638Z',NULL,74,3,51.12804227386549,2.05,58.41888818013558,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18630,'2019-11-29T21:26:00.669Z',NULL,87,4,117.25536340498041,4.69,230.20984239161822,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18631,'2018-03-05T21:22:39.152Z',NULL,92,1,124.89242686579996,5,249.6823661951993,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18632,'2019-02-21T05:32:22.896Z',NULL,188,2,33.87738254731509,1.36,21.96571446318839,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18633,'2020-01-02T07:04:32.394Z',NULL,116,2,114.42485125407785,4.58,240.32014482658818,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18634,'2019-06-19T15:25:32.212Z',5.068544406037727,182,7,84.48940370476112,3.38,82.70678302084744,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18635,'2018-06-01T02:18:57.737Z',NULL,97,7,112.41825444654248,4.5,38.131984370902,2478); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18636,'2018-11-03T15:39:13.856Z',NULL,82,4,60.89545738030947,2.89,55.705776167343366,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18637,'2019-05-28T10:28:55.951Z',NULL,37,6,80.10774204020768,3.81,85.49408716416838,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18638,'2018-11-11T03:59:31.650Z',NULL,137,4,67.77247956807186,3.22,77.40564677170175,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18639,'2017-11-18T11:03:14.722Z',NULL,105,4,35.149014295079674,1.67,42.60508903073499,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18640,'2018-09-15T01:00:52.530Z',NULL,82,7,60.89545738030947,2.89,39.76454496527659,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18641,'2019-08-22T03:32:25.796Z',NULL,41,10,63.50890855689462,3.02,134.5523094837843,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18642,'2018-10-16T14:55:43.790Z',NULL,37,8,80.10774204020768,3.81,45.75119261835835,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18643,'2018-01-04T11:04:02.359Z',NULL,157,2,139.8942352373801,6.64,15.78829032267539,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18644,'2018-06-25T05:32:53.698Z',NULL,129,6,148.1672972165937,7.04,101.58122368834478,2481); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18645,'2018-05-12T22:28:52.095Z',NULL,123,5,110.93145648834248,5.27,109.21737290199975,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18646,'2017-04-28T17:43:35.004Z',NULL,5,4,82.7450976850356,3.93,173.9129525918746,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18647,'2018-05-10T10:06:49.359Z',NULL,75,6,125.81276373452337,5.98,251.01598464415954,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18648,'2018-08-09T12:33:41.521Z',NULL,63,8,133.5202262591817,6.34,176.7951460827987,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18649,'2019-06-25T19:43:10.369Z',NULL,153,6,66.79892314178237,3.17,95.13446960452772,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18650,'2019-02-04T00:22:37.818Z',NULL,135,2,45.80402317157342,2.18,43.47037657804904,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18651,'2019-05-27T14:31:02.522Z',NULL,27,6,127.52471180754115,6.06,19.194449014888317,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18652,'2016-08-11T23:23:01.039Z',NULL,15,10,25.09876359271891,1.19,25.481014931023623,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18653,'2018-09-19T00:10:33.926Z',NULL,38,6,66.06937283839378,3.14,99.65670941274914,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18654,'2017-10-09T05:05:56.730Z',NULL,70,5,38.32866920597319,1.82,52.12160590463621,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18655,'2017-07-16T02:19:08.831Z',NULL,2,5,70.07989613071763,3.33,112.01127419033106,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18656,'2018-11-15T13:29:59.181Z',NULL,20,3,37.32649625046575,1.77,51.834407155548696,2482); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18657,'2018-01-28T04:48:15.799Z',NULL,196,2,70.14610686710009,2.81,46.09513682090821,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18658,'2019-01-26T12:06:18.210Z',NULL,26,2,68.12471180754113,2.72,50.292249233555324,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18659,'2019-06-17T03:12:47.462Z',NULL,98,7,112.41825444654248,4.5,102.61741579607197,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18660,'2019-04-11T12:06:10.597Z',NULL,75,3,125.81276373452337,5.03,120.44506788135261,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18661,'2019-03-27T20:24:39.146Z',NULL,75,1,125.81276373452337,5.03,59.18812279800199,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18662,'2019-10-30T04:53:16.187Z',NULL,99,5,67.83486485383094,2.71,41.34570875739668,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18663,'2020-03-23T14:10:08.026Z',NULL,108,1,50.094887884945365,2,16.91848155426173,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18664,'2018-07-29T00:28:50.984Z',NULL,119,7,43.43814329652384,1.74,76.19921251231942,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18665,'2019-09-04T14:41:11.160Z',NULL,37,5,80.10774204020768,3.2,82.959264536299,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18666,'2019-01-09T19:28:22.300Z',NULL,147,2,66.64727121216615,2.67,47.50445013176794,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18667,'2018-08-21T12:32:01.112Z',NULL,120,8,83.5020135028928,3.34,57.98896811427633,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18668,'2017-05-01T21:59:15.810Z',NULL,44,6,50.90170136783837,2.04,72.50185261390526,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18669,'2020-03-02T02:41:14.778Z',NULL,95,1,49.81864156655383,1.99,55.20268089504967,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18670,'2017-11-22T16:46:09.008Z',4.215726073415313,159,4,23.686782969182406,0.95,38.28828532121958,2484); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18671,'2017-05-27T17:32:54.525Z',NULL,193,6,33.587182645381546,2.02,57.57032512458745,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18672,'2019-02-03T16:58:28.345Z',8.715726073415313,106,2,52.723521442619514,3.16,6.845404332008302,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18673,'2020-03-27T08:17:19.656Z',NULL,188,1,33.87738254731509,2.03,23.27183991204922,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18674,'2019-08-07T05:38:55.361Z',NULL,152,6,48.89568729900663,2.93,34.75342848098566,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18675,'2020-01-25T12:25:10.867Z',NULL,33,2,47.7448636959614,2.86,32.011589117005755,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18676,'2017-10-16T12:12:24.725Z',NULL,106,5,35.149014295079674,2.11,74.28696952571067,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18677,'2018-04-17T19:55:44.293Z',NULL,22,2,32.136779940663494,1.93,61.5841888330946,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18678,'2019-12-01T07:53:21.099Z',NULL,61,2,23.537915510955656,1.41,49.109150891027774,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18679,'2017-10-12T14:02:24.696Z',4.215726073415313,168,5,79.28781795635516,4.76,33.00401824547375,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18680,'2018-10-08T15:18:24.375Z',NULL,14,5,37.648145389078365,2.26,22.87936577921753,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18681,'2019-03-26T18:59:19.592Z',NULL,86,1,92.31436670850246,5.54,194.5174716261773,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18682,'2019-03-20T10:51:01.865Z',NULL,37,1,80.10774204020768,4.81,177.20113039740926,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18683,'2018-05-27T08:42:17.131Z',NULL,107,5,50.094887884945365,3.01,53.16341808359355,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18684,'2019-06-14T15:08:22.719Z',NULL,78,7,41.616917284159726,2.5,19.333842836081836,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18685,'2017-03-31T16:56:54.609Z',NULL,85,1,36.6006982295235,2.2,79.66657866947232,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18686,'2018-09-01T15:01:34.463Z',NULL,48,5,123.20884248534108,7.39,93.18092478840444,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18687,'2019-08-31T09:10:59.120Z',NULL,9,8,87.46968147789205,5.25,30.69124438992798,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18688,'2019-09-16T02:58:23.880Z',NULL,118,5,57.627613096978735,3.46,80.35533503133327,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18689,'2017-05-24T16:29:29.481Z',NULL,146,6,84.03151414144409,5.04,59.944179571571695,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18690,'2018-02-07T23:20:58.824Z',NULL,193,2,50.38077396807232,3.02,14.550090654449926,2487); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18691,'2017-05-08T09:39:43.732Z',NULL,95,6,33.212427711035886,1.91,38.26844597157637,2488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18692,'2016-12-15T15:39:48.353Z',NULL,128,3,50.053442096696116,2.88,107.98727024758705,2488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18693,'2018-10-21T11:59:36.948Z',NULL,168,6,118.93172693453273,6.84,250.13872583357997,2488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18694,'2019-11-27T12:08:36.369Z',NULL,60,3,29.80214751859149,1.71,17.179562084671158,2488); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18695,'2018-01-20T04:18:55.707Z',NULL,48,3,123.20884248534108,6.78,246.04302878186863,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18696,'2019-02-03T13:25:25.166Z',NULL,193,2,50.38077396807232,2.77,31.917315926041177,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18697,'2019-11-10T15:22:53.286Z',NULL,129,3,148.1672972165937,8.15,301.7376170936226,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18698,'2017-11-30T12:58:53.865Z',NULL,108,3,33.39659192329691,1.84,49.920323799908324,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18699,'2018-03-16T13:00:33.289Z',NULL,2,1,105.11984419607644,5.78,179.28574986407565,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18700,'2019-03-02T03:59:07.747Z',NULL,53,1,44.27587240151534,2.44,60.545468669898234,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18701,'2019-05-24T11:21:00.057Z',NULL,188,6,33.87738254731509,1.86,33.38325564577525,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18702,'2018-06-06T08:54:46.397Z',NULL,157,9,139.8942352373801,7.69,252.3447355335826,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18703,'2018-01-09T09:21:20.221Z',NULL,78,2,41.616917284159726,2.29,10.342746218347237,2493); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18704,'2018-03-18T18:15:35.425Z',NULL,146,1,126.04727121216614,5.04,147.8860013524357,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18705,'2017-01-15T12:02:05.284Z',NULL,84,3,54.58418555091025,2.18,26.188346829072394,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18706,'2018-01-03T09:47:43.826Z',NULL,1,3,44.19489169601981,1.77,79.47826998105626,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18707,'2019-01-07T11:22:30.076Z',NULL,69,2,73.38772304360626,2.94,44.58617924731345,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18708,'2019-11-11T09:47:51.542Z',NULL,22,2,32.136779940663494,1.29,10.325424932452117,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18709,'2018-09-23T12:24:56.233Z',NULL,138,5,113.95078476718615,4.56,36.98813769765786,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18710,'2016-12-04T03:27:15.296Z',NULL,55,3,63.84752383956291,2.55,132.1874709104687,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18711,'2019-02-25T10:35:34.272Z',NULL,182,2,84.48940370476112,3.38,35.34736293865511,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18712,'2018-06-23T23:51:08.447Z',NULL,36,5,130.93687730741433,5.24,155.00620640672835,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18713,'2019-12-16T09:09:33.452Z',NULL,150,2,128.55415037577922,5.14,28.175239076474288,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18714,'2018-01-16T11:05:46.650Z',NULL,117,2,55.024851254077866,2.2,25.047501032156863,2494); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18715,'2017-03-25T02:56:14.618Z',NULL,127,1,89.65344209669612,5.6,33.92286126571888,2495); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18716,'2017-03-22T14:12:37.739Z',NULL,16,1,44.07353303251545,2.75,22.722952382077747,2495); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18717,'2018-09-16T01:00:28.025Z',NULL,111,4,55.526746186906664,1.61,7.500264635275065,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18718,'2019-04-26T21:33:41.592Z',NULL,165,3,38.30449564120193,1.11,52.80823185109519,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18719,'2020-04-18T02:49:49.364Z',NULL,57,3,122.4223933583994,3.55,238.055330244066,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18720,'2018-12-24T18:35:36.423Z',NULL,5,2,124.1176465275534,3.6,35.69980602593591,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18721,'2016-12-18T08:20:44.127Z',NULL,194,2,33.587182645381546,0.97,46.3399881394151,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18722,'2020-03-19T07:48:02.709Z',1.9264275333206404,77,1,101.01691728415972,2.93,124.02296475139774,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18723,'2019-07-28T14:55:36.564Z',NULL,151,5,91.61302306843446,2.66,20.501825075613322,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18724,'2019-02-24T04:22:29.074Z',NULL,56,2,36.37128575934436,1.05,69.04072308124998,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18725,'2018-08-24T01:16:51.130Z',NULL,75,6,125.81276373452337,3.65,33.41782235434613,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18726,'2019-04-29T13:02:06.765Z',NULL,101,2,139.82488066180403,4.05,252.67400957876487,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18727,'2019-09-27T22:07:13.858Z',NULL,83,4,81.87627832636537,2.37,72.63249049831106,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18728,'2019-02-22T20:35:06.141Z',NULL,197,2,70.14610686710009,2.03,78.63265520397194,2496); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18729,'2019-09-15T17:16:46.798Z',NULL,98,4,112.41825444654248,0,202.95914514492233,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18730,'2017-12-26T19:04:52.466Z',NULL,24,2,74.87095783152942,0,54.58057639774317,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18731,'2017-05-14T04:42:57.604Z',NULL,150,3,85.70276691718615,0,87.49434938355986,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18732,'2018-09-22T11:01:19.374Z',NULL,164,3,92.96789820016517,0,91.63070599827995,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18733,'2020-02-16T11:55:07.372Z',NULL,40,1,99.66240044231697,0,32.29927539707008,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18734,'2017-11-24T12:58:17.474Z',NULL,177,3,85.87953212963993,0,131.84658134281437,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18735,'2017-12-04T20:36:26.782Z',NULL,116,2,76.28323416938524,0,77.84584132254642,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18736,'2018-05-04T14:08:06.138Z',NULL,3,3,53.08311732230858,0,70.99879501330616,2497); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18737,'2019-08-27T21:19:45.883Z',NULL,84,4,81.87627832636537,3.85,141.31563031106947,2498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18738,'2018-10-24T09:06:44.079Z',NULL,30,5,64.17448218067184,3.02,139.58359670330918,2498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18739,'2017-09-09T06:03:13.715Z',NULL,46,5,78.6996782532274,3.7,97.12109258224646,2498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18740,'2016-12-29T03:56:22.956Z',1.9264275333206404,60,2,19.86809834572766,0.93,24.79542883024299,2498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18741,'2016-09-06T14:37:58.711Z',NULL,131,5,75.41148135558485,3.54,45.823176376126376,2498); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18742,'2018-09-17T05:31:43.820Z',NULL,177,5,128.8192981944599,8.37,203.34781134816322,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18743,'2018-01-25T21:41:58.314Z',NULL,2,2,105.11984419607644,6.83,70.57330423198755,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18744,'2018-03-14T00:18:18.914Z',NULL,107,1,50.094887884945365,3.26,50.136438395587824,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18745,'2018-06-28T06:10:35.387Z',NULL,73,5,71.6287722595695,4.66,47.26363915123122,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18746,'2018-01-30T18:38:54.037Z',NULL,97,2,112.41825444654248,7.31,40.363197418347255,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18747,'2017-10-12T15:16:49.623Z',NULL,87,5,78.17024226998694,5.08,137.75805827073995,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18748,'2019-10-13T06:10:59.506Z',NULL,165,3,38.30449564120193,2.49,30.929261244342285,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18749,'2016-11-19T17:16:23.093Z',NULL,82,2,40.59697158687298,2.64,22.758884155202804,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18750,'2018-10-17T05:55:03.406Z',1.9264275333206404,139,3,76.77768319177018,4.99,104.22546523911879,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18751,'2018-05-28T19:59:07.066Z',NULL,163,3,33.56789820016516,2.18,55.688534935620524,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18752,'2017-08-31T18:51:06.386Z',NULL,72,7,94.80254599192457,6.16,177.37985561768758,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18753,'2018-09-07T04:45:27.043Z',NULL,145,4,61.1983004605443,3.98,9.532789169975432,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18754,'2019-01-17T12:07:32.933Z',NULL,167,1,97.70449564120193,6.35,132.60112377393943,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18755,'2018-02-27T15:14:44.507Z',NULL,186,1,98.9770008385166,6.43,19.65976550848198,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18756,'2018-09-07T16:05:20.186Z',NULL,165,4,38.30449564120193,2.49,79.55966260740136,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18757,'2018-12-13T08:54:11.721Z',NULL,131,2,113.11722203337729,7.35,75.10323805819573,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18758,'2018-08-10T11:18:20.444Z',NULL,127,7,134.48016314504417,8.74,82.07529253933818,2499); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18759,'2019-12-25T09:40:29.152Z',NULL,45,2,118.0495173798411,7.08,103.57610006320564,2500); +INSERT INTO orders(id,created_at,discount,product_id,quantity,subtotal,tax,total,user_id) VALUES (18760,'2020-03-28T10:12:06.681Z',NULL,138,1,113.95078476718615,6.84,122.39399077233887,2500); diff --git a/sample/products.sql b/sample/products.sql new file mode 100644 index 000000000000..26d1dfff7566 --- /dev/null +++ b/sample/products.sql @@ -0,0 +1,200 @@ +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (1,'Gizmo','2017-07-19T19:44:56.582Z',1018947080336,29.463261130679875,4.6,'Rustic Paper Wallet','Swaniawski, Casper and Hilll'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (2,'Doohickey','2019-04-11T08:49:35.932Z',7663515285824,70.07989613071763,0.0,'Small Marble Shoes','Balistreri-Ankunding'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (3,'Doohickey','2018-09-08T22:03:20.239Z',4966277046676,35.388744881539054,4.0,'Synergistic Granite Chair','Murray, Watsica and Wunsch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (4,'Doohickey','2018-03-06T02:53:09.937Z',4134502155718,73.99178100854834,3.0,'Enormous Aluminum Shirt','Regan Bradtke and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (5,'Gadget','2016-10-03T01:47:39.147Z',5499736705597,82.7450976850356,4.0,'Enormous Marble Wallet','Price, Schultz and Daniel'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (6,'Doohickey','2017-03-29T05:43:40.150Z',2293343551454,64.95747510229587,3.8,'Small Marble Hat','Nolan-Wolff'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (7,'Doohickey','2017-06-03T03:07:28.061Z',0157967025871,98.81933684368194,4.3,'Aerodynamic Linen Coat','Little-Pagac'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (8,'Doohickey','2018-04-30T15:03:53.193Z',1078766578568,65.89215669329305,4.1,'Enormous Steel Watch','Senger-Stamm'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (9,'Widget','2019-02-07T08:26:25.647Z',7217466997444,58.31312098526137,4.2,'Practical Bronze Computer','Keely Stehr Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (10,'Gizmo','2017-01-09T09:51:20.352Z',1807963902339,31.78621880685793,4.3,'Mediocre Wooden Table','Larson, Pfeffer and Klocko'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (11,'Gadget','2018-05-28T08:02:54.482Z',3642408008706,88.30453275661709,0.0,'Ergonomic Silk Coat','Upton, Kovacek and Halvorson'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (12,'Gizmo','2017-11-12T14:51:16.221Z',9482467478850,77.34285054412217,4.4,'Sleek Paper Toucan','Mueller-Dare'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (13,'Gizmo','2016-05-24T23:09:46.392Z',0399569209871,75.0861692740371,0.0,'Synergistic Steel Chair','Mr. Tanya Stracke and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (14,'Widget','2017-12-31T14:41:56.870Z',8833419218504,25.09876359271891,4.0,'Awesome Concrete Shoes','McClure-Lockman'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (15,'Widget','2016-09-08T14:42:57.264Z',5881647583898,25.09876359271891,4.0,'Aerodynamic Paper Computer','Friesen-Anderson'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (16,'Gadget','2017-01-30T22:00:25.015Z',9633135585459,44.07353303251545,4.0,'Incredible Bronze Pants','Okuneva, Kutch and Monahan'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (17,'Doohickey','2017-01-31T11:05:14.863Z',6704641545275,53.290720311951766,4.3,'Enormous Wool Car','Hilpert, Jacobs and Hauck'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (18,'Gadget','2017-02-11T03:45:40.957Z',8909358907493,54.60204747398195,4.4,'Lightweight Paper Bottle','Wilkinson-Gottlieb'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (19,'Doohickey','2016-11-06T23:27:12.642Z',4307721071729,42.67116731707548,4.2,'Rustic Concrete Bottle','Gibson, Turner and Douglas'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (20,'Gizmo','2017-08-25T18:18:36.649Z',5099742600901,24.884330833643833,4.0,'Intelligent Wooden Gloves','Ora Monahan and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (21,'Gadget','2016-06-30T07:30:53.303Z',5856636800041,40.38334406304544,4.1,'Lightweight Wool Bag','Heaney-Windler'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (22,'Gizmo','2017-11-24T20:14:28.415Z',7595223735110,21.42451996044233,4.2,'Enormous Marble Shoes','Mayer, Kiehn and Turcotte'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (23,'Widget','2018-02-01T16:00:14.334Z',1576499102253,77.91115072995538,3.8,'Fantastic Aluminum Bottle','Reichert, Johnson and Roob'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (24,'Doohickey','2017-02-08T05:19:53.456Z',2820850288674,74.87095783152942,3.4,'Synergistic Marble Keyboard','Claude Thompson Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (25,'Widget','2018-10-17T03:54:33.555Z',4863291591550,45.7484264478831,0.0,'Durable Marble Watch','Ritchie, Haley and Pacocha'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (26,'Widget','2017-11-02T09:54:01.499Z',3987140172453,45.41647453836076,0.0,'Ergonomic Aluminum Plate','Tia Goyette Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (27,'Gadget','2019-01-25T13:28:28.728Z',6201199361567,85.01647453836077,2.0,'Awesome Aluminum Table','Alfredo Kuhlman Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (28,'Gizmo','2018-03-13T11:24:34.663Z',0010465925138,45.41647453836076,0.0,'Rustic Marble Bottle','Morissette, Bartoletti and Cummings'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (29,'Widget','2017-09-14T15:30:37.651Z',2434890445616,82.3829881204479,4.5,'Durable Steel Toucan','Odessa Emmerich Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (30,'Gadget','2016-10-22T11:57:21.218Z',1404411876176,42.7829881204479,3.7,'Ergonomic Paper Wallet','Miles Ryan Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (31,'Doohickey','2018-06-05T19:01:10.332Z',9095019841233,70.43564311419016,4.5,'Rustic Rubber Clock','Quigley, Von and Will'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (32,'Gadget','2017-11-15T04:21:04.291Z',4963935336179,71.42990913064094,4.0,'Ergonomic Silk Keyboard','Reid Pfannerstill and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (33,'Doohickey','2016-05-30T20:38:52.750Z',9031323475252,31.829909130640935,2.7,'Small Plastic Computer','Spinka-Stokes'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (34,'Gadget','2016-04-28T22:08:19.003Z',0743731223606,49.535942579421324,4.1,'Heavy-Duty Wooden Clock','Eugenia Kunze LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (35,'Doohickey','2017-09-14T22:13:40.971Z',3661250556340,47.691251538276234,3.6,'Mediocre Cotton Coat','Cassin-Collins'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (36,'Gizmo','2016-04-26T19:29:55.147Z',9687547218818,87.29125153827623,4.1,'Mediocre Plastic Clock','Wolf, Beahan and Thiel'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (37,'Gadget','2019-04-15T13:34:19.931Z',2890379323668,53.40516136013846,3.3,'Incredible Granite Toucan','Parker, OConnell and Beahan'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (38,'Gadget','2017-01-09T14:54:58.302Z',6154584840805,44.04624855892918,3.8,'Lightweight Leather Gloves','Bednar, Berge and Boyle'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (39,'Gizmo','2019-01-06T03:22:33.266Z',7494558044822,76.38772120188973,4.2,'Durable Rubber Computer','Carmela Douglas Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (40,'Gizmo','2018-06-22T04:29:03.642Z',0335243754848,66.44160029487797,3.9,'Small Copper Plate','Maegan Casper Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (41,'Widget','2018-07-16T01:10:38.959Z',1144906750559,42.33927237126308,4.2,'Aerodynamic Paper Coat','Robyn Padberg Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (42,'Widget','2016-09-17T18:21:58.851Z',4893655420066,25.336071424606207,4.0,'Awesome Rubber Wallet','Schamberger-Maggio'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (43,'Widget','2016-07-06T03:02:57.658Z',0236197465609,50.90170136783837,4.0,'Lightweight Marble Bag','Francis Wolff Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (44,'Widget','2016-08-25T21:35:12.524Z',4561421124790,50.90170136783837,4.0,'Gorgeous Concrete Shoes','Carol Marvin LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (45,'Doohickey','2016-05-04T13:31:42.755Z',8590367775021,78.6996782532274,2.7,'Sleek Wool Wallet','Volkman, Greenfelder and Kiehn'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (46,'Gadget','2016-09-13T06:34:33.279Z',2703547723491,78.6996782532274,4.0,'Rustic Linen Keyboard','Una Fadel Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (47,'Doohickey','2017-05-19T22:47:54.501Z',1909194306167,56.05108065511453,4.2,'Aerodynamic Cotton Bottle','Annetta Wyman and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (48,'Gizmo','2018-02-20T21:54:33.910Z',4516685534489,82.13922832356072,3.3,'Gorgeous Concrete Chair','Kiehn-Pacocha'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (49,'Gadget','2017-06-02T08:07:59.839Z',4284914664558,87.61910559549149,3.8,'Incredible Silk Shoes','Schuster-Wyman'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (50,'Widget','2018-06-19T22:53:03.609Z',0272643267465,35.76013077879841,4.1,'Durable Wool Toucan','Hartmann, Mohr and Stiedemann'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (51,'Gizmo','2016-07-07T16:23:10.515Z',4406572671024,50.433725012700116,3.7,'Awesome Granite Car','Keshaun Mueller Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (52,'Widget','2017-05-22T07:39:32.125Z',2091630691049,69.1172482676769,4.4,'Ergonomic Marble Hat','Koch-Ruecker'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (53,'Doohickey','2016-11-04T00:33:07.221Z',8825217022124,29.517248267676894,4.4,'Mediocre Cotton Toucan','Jacobson-Daniel'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (54,'Widget','2016-11-22T09:23:14.682Z',1943523619306,41.395738936015974,3.6,'Intelligent Bronze Knife','McClure-Murphy'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (55,'Gadget','2016-09-05T23:51:24.820Z',6575325360237,63.84752383956291,0.0,'Mediocre Rubber Shoes','Considine, Lehner and Maggio'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (56,'Doohickey','2017-06-28T13:30:14.212Z',8296484749050,24.24752383956291,4.1,'Awesome Silk Car','Hackett-Reynolds'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (57,'Gizmo','2018-03-01T02:39:56.671Z',3769015137275,81.6149289055996,3.8,'Gorgeous Bronze Hat','Kuphal, Schowalter and Bogan'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (58,'Gadget','2017-12-11T05:22:00.985Z',5010710584900,52.097186713859216,4.3,'Practical Steel Table','Smitham, Dach and Bode'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (59,'Gizmo','2018-07-14T13:14:37.128Z',8469939413398,59.46809834572766,3.6,'Sleek Aluminum Watch','Donnelly, Renner and Barton'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (60,'Doohickey','2017-12-16T11:14:43.264Z',4819782507258,19.86809834572766,4.1,'Rustic Paper Car','Stroman-Carroll'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (61,'Gizmo','2017-01-24T03:11:46.606Z',1726123595351,15.691943673970439,4.0,'Mediocre Paper Car','Jordi Effertz LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (62,'Widget','2018-12-06T01:14:59.820Z',1087115303928,89.0134841727878,4.0,'Awesome Iron Hat','Von-Gulgowski'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (63,'Gizmo','2018-08-28T07:45:17.744Z',9786855487647,89.0134841727878,3.8,'Enormous Granite Wallet','Hills, Fahey and Jones'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (64,'Gadget','2017-02-21T11:15:20.545Z',1960588072419,95.61478497145774,3.7,'Incredible Aluminum Knife','Noah Anderson and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (65,'Widget','2018-10-01T14:56:06.332Z',6409491343148,45.4851315098001,3.7,'Ergonomic Silk Table','Weimann-Cummings'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (66,'Widget','2018-02-07T07:35:04.099Z',7813908779724,90.77417514071306,4.4,'Fantastic Silk Bottle','Goyette-Smitham'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (67,'Gizmo','2018-11-17T15:52:35.026Z',5176352942567,27.496539271971862,4.3,'Aerodynamic Granite Bottle','Myriam Macejkovic Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (68,'Gizmo','2016-11-08T03:04:47.544Z',0096051986448,76.82895921539838,3.9,'Heavy-Duty Copper Toucan','Howe, Kiehn and Price'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (69,'Doohickey','2019-01-18T13:07:28.238Z',5592486096660,48.925148695737505,3.5,'Synergistic Leather Coat','Wiza, Abbott and Deckow'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (70,'Widget','2017-10-03T13:35:45.886Z',8207931408888,38.32866920597319,3.6,'Small Rubber Clock','Izabella Dach I and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (71,'Gadget','2017-08-31T06:01:19.229Z',3806751355669,55.202545991924566,0.0,'Sleek Granite Pants','Kirlin, Hermann and Stokes'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (72,'Widget','2018-03-26T01:19:30.735Z',9978391194435,94.80254599192457,3.5,'Rustic Paper Bench','Senger, Mertz and Murray'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (73,'Widget','2016-10-31T20:13:40.416Z',0832349515187,47.752514839713,4.1,'Aerodynamic Rubber Bench','Rowan Kautzer LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (74,'Gadget','2017-02-21T10:21:53.186Z',2084705637233,34.08536151591033,4.3,'Awesome Plastic Watch','Herman Flatley Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (75,'Gadget','2018-03-06T09:46:21.080Z',6588791601926,83.87517582301558,4.5,'Intelligent Paper Hat','Ledner-Satterfield'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (76,'Widget','2017-11-22T20:48:19.143Z',5065846711133,42.54947374244324,4.3,'Sleek Marble Clock','Koepp, Ondricka and Larkin'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (77,'Gadget','2017-06-23T01:30:23.834Z',4312472827051,67.34461152277315,4.4,'Mediocre Leather Computer','Fisher-Kemmer'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (78,'Gizmo','2018-01-08T10:49:46.434Z',9347854191845,27.74461152277315,0.0,'Mediocre Aluminum Shirt','Zemlak, Botsford and Corkery'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (79,'Gizmo','2016-11-21T13:59:05.122Z',1538211018396,27.74461152277315,4.3,'Sleek Aluminum Clock','Toy, Deckow and Nitzsche'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (80,'Widget','2016-05-02T06:05:29.339Z',9522454376759,36.60883787357609,3.7,'Small Copper Clock','Cruickshank-Abernathy'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (81,'Gizmo','2017-01-23T15:20:01.221Z',4760375596107,29.288656154807867,4.2,'Lightweight Linen Coat','Mason Bashirian and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (82,'Gadget','2016-10-08T10:26:19.492Z',9802920493181,40.59697158687298,4.5,'Heavy-Duty Steel Watch','Braeden Gislason and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (83,'Gadget','2017-12-25T15:37:40.341Z',1468999794635,54.58418555091025,3.7,'Lightweight Bronze Table','Mr. Johanna Koepp and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (84,'Gizmo','2016-12-17T15:11:24.432Z',8002754191821,54.58418555091025,3.2,'Incredible Plastic Chair','Americo Sipes and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (85,'Gizmo','2017-03-16T20:07:48.516Z',5778452195678,36.6006982295235,4.1,'Rustic Copper Knife','Reynolds, Gleason and Brekke'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (86,'Doohickey','2019-04-02T20:38:34.966Z',2529776156387,61.54291113900164,3.7,'Heavy-Duty Silk Chair','Orn, Hilpert and Pfannerstill'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (87,'Widget','2018-05-20T00:35:08.271Z',6906120611895,78.17024226998694,3.5,'Gorgeous Linen Bottle','Miss Annamae Kutch Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (88,'Gizmo','2018-10-18T15:24:37.058Z',4886504321812,70.27528021081703,3.6,'Lightweight Linen Bottle','Dorothea Balistreri Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (89,'Widget','2016-12-31T05:57:15.715Z',3084140869281,42.47974183693326,3.3,'Awesome Aluminum Keyboard','Stamm, Crist and Labadie'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (90,'Gizmo','2017-07-02T08:23:34.826Z',7532074237028,82.07974183693327,4.0,'Incredible Concrete Keyboard','Rodriguez-Kuhlman'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (91,'Gizmo','2018-09-20T14:53:54.777Z',1559730016366,43.39621873587423,4.5,'Rustic Rubber Knife','Connelly-Ritchie'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (92,'Gizmo','2016-06-20T18:01:28.219Z',7080123588503,83.2616179105333,4.2,'Small Granite Gloves','Baumbach-Hilpert'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (93,'Widget','2017-04-29T18:52:34.219Z',1613963249998,33.212427711035886,0.0,'Practical Copper Car','Medhurst-Reichert'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (94,'Widget','2017-08-19T21:28:45.957Z',9753065345920,72.81242771103588,0.0,'Awesome Bronze Plate','Nolan-Heller'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (95,'Gizmo','2017-09-16T19:33:44.597Z',4945934419923,33.212427711035886,4.1,'Durable Iron Knife','Schiller, Bogisich and Lockman'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (96,'Doohickey','2017-06-07T00:06:12.240Z',4168050315812,69.88096572393577,4.0,'Heavy-Duty Silk Car','Bernhard-Grady'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (97,'Doohickey','2018-02-02T15:38:37.723Z',0498395047364,74.94550296436165,4.0,'Durable Copper Clock','Halvorson, Lockman and Ruecker'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (98,'Gizmo','2019-04-09T16:49:29.198Z',7485639601133,74.94550296436165,4.5,'Mediocre Silk Bottle','Pacocha-Volkman'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (99,'Gadget','2018-01-09T10:07:27.255Z',2646001599860,45.22324323588729,3.3,'Enormous Plastic Coat','Kuhlman-Kuphal'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (100,'Gizmo','2017-04-27T13:06:30.921Z',7667946672475,45.22324323588729,4.0,'Lightweight Steel Knife','Legros, Lynch and Howell'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (101,'Gadget','2017-04-08T09:49:44.498Z',8368305700967,93.21658710786936,3.6,'Durable Cotton Bench','Gutmann-Breitenberg'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (102,'Gadget','2019-03-29T21:27:53.791Z',2562717359713,31.361435038520785,4.0,'Lightweight Granite Hat','Dominic Mann Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (103,'Widget','2018-05-03T07:44:56.970Z',8687358946192,31.361435038520785,0.0,'Rustic Silk Pants','Trantow-Bartell'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (104,'Widget','2018-10-22T05:51:55.845Z',4093428378987,70.96143503852079,0.0,'Sleek Leather Toucan','Senger-Doyle'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (105,'Gadget','2016-06-16T00:07:23.619Z',1790740189682,35.149014295079674,4.0,'Fantastic Wool Shirt','Jerrod McLaughlin LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (106,'Doohickey','2017-04-25T07:27:37.247Z',0848056924761,35.149014295079674,4.3,'Fantastic Steel Knife','Friesen-Langworth'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (107,'Gadget','2017-11-19T08:15:29.093Z',7059492880556,33.39659192329691,4.0,'Lightweight Wool Plate','Dora Fay and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (108,'Gadget','2019-03-03T13:38:54.705Z',3772022926992,33.39659192329691,4.0,'Practical Silk Computer','Aufderhar-Boehm'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (109,'Widget','2016-08-13T14:20:38.637Z',5528517133622,79.36660712128732,0.0,'Intelligent Iron Shirt','Price Kuhic Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (110,'Widget','2016-10-16T09:45:43.146Z',4734618834332,37.01783079127111,0.0,'Enormous Marble Gloves','Stanton-Fritsch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (111,'Gadget','2018-08-22T13:32:49.613Z',8222420544052,37.01783079127111,3.8,'Ergonomic Rubber Bench','Hane, Hamill and Jerde'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (112,'Doohickey','2017-02-05T00:51:43.939Z',1464781960745,27.55292434006023,4.1,'Small Wool Wallet','Ledner-Watsica'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (113,'Gadget','2019-01-21T08:01:53.603Z',0212722801067,73.65150250790677,3.3,'Sleek Leather Table','Ruecker, Carter and Ortiz'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (114,'Doohickey','2018-06-26T13:56:49.328Z',4785470010730,51.94130981241432,4.0,'Practical Plastic Keyboard','Wisoky, Pagac and Heaney'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (115,'Gadget','2018-01-27T11:30:35.871Z',6858015278648,51.94130981241432,4.2,'Rustic Silk Knife','Mrs. Eugenia Koelpin and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (116,'Gizmo','2018-09-12T15:23:05.184Z',5955704607626,76.28323416938524,4.2,'Aerodynamic Concrete Bench','Denesik-Ortiz'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (117,'Gizmo','2016-07-22T20:50:56.145Z',5272733645116,36.683234169385244,3.5,'Small Concrete Knife','Jefferey Volkman LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (118,'Gadget','2016-10-19T00:34:27.911Z',5291392809646,38.418408731319154,3.1,'Synergistic Rubber Shoes','Herta Skiles and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (119,'Gadget','2018-03-24T02:04:35.630Z',5433448189252,28.95876219768256,3.6,'Gorgeous Linen Keyboard','Alfreda Konopelski II Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (120,'Widget','2016-09-27T14:38:31.820Z',2484897511500,55.668009001928525,4.0,'Heavy-Duty Copper Watch','Jerrell Gulgowski Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (121,'Doohickey','2017-11-10T04:39:43.211Z',0095774502751,26.96352219205405,5.0,'Ergonomic Wool Bag','Wolff, Ebert and Hansen'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (122,'Gizmo','2017-05-08T02:53:55.356Z',4733532233696,66.56352219205405,3.6,'Gorgeous Marble Plate','Fisher-Purdy'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (123,'Gizmo','2017-11-16T13:53:14.232Z',3621077291879,73.95430432556165,2.0,'Mediocre Wooden Bench','Flatley-Kunde'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (124,'Gizmo','2018-02-09T15:51:19.689Z',8245402607613,73.95430432556165,4.0,'Durable Aluminum Bag','Zemlak-Wiegand'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (125,'Widget','2016-05-12T00:21:10.829Z',0255973714120,53.59799471993963,3.4,'Aerodynamic Granite Bench','Lon Wiegand DVM and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (126,'Widget','2016-09-27T22:45:23.439Z',9644009305424,83.49598746872304,4.5,'Practical Wool Hat','Emmerich-Nienow'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (127,'Widget','2016-10-12T17:58:13.744Z',4665903801947,89.65344209669612,4.0,'Practical Bronze Watch','Schamberger-Wehner'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (128,'Gizmo','2017-11-10T14:32:06.165Z',0001664425970,50.053442096696116,4.3,'Gorgeous Aluminum Plate','Cale Thompson V and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (129,'Gizmo','2017-12-14T23:45:19.968Z',8844419430964,98.7781981443958,3.6,'Small Marble Knife','Turner, Kiehn and Schmitt'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (130,'Gizmo','2017-10-10T02:32:39.532Z',8163753213485,50.01715912876758,4.4,'Awesome Cotton Shoes','Kuphal, Friesen and Rowe'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (131,'Widget','2017-03-23T15:06:11.999Z',5738533322232,75.41148135558485,4.0,'Practical Aluminum Coat','Batz-Schroeder'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (132,'Widget','2018-04-01T01:51:42.944Z',7668932199532,85.25464686555807,3.7,'Sleek Steel Table','Marge Effertz Jr. Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (133,'Doohickey','2016-09-16T20:51:59.814Z',0698616313838,45.654646865558064,4.3,'Sleek Wool Watch','Hauck, Ernser and Barton'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (134,'Doohickey','2017-05-25T12:10:54.080Z',2339358820724,28.328223666657742,3.8,'Practical Paper Bag','Considine, Bogisich and Bauch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (135,'Gizmo','2019-04-02T07:04:34.857Z',6248889948356,30.536015447715613,4.0,'Enormous Granite Bottle','Lorenza Mayer Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (136,'Widget','2017-07-05T17:59:19.240Z',7570673549500,70.13601544771562,4.8,'Mediocre Marble Lamp','Crona, Block and Homenick'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (137,'Gizmo','2019-02-16T22:36:43.143Z',8271165200181,45.18165304538124,3.5,'Ergonomic Granite Bottle','Morissette, Dare and Schimmel'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (138,'Doohickey','2016-12-18T20:19:28.251Z',1157194463322,75.96718984479077,4.0,'Incredible Plastic Watch','Kiel Kassulke Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (139,'Doohickey','2016-06-08T10:24:36.940Z',3301617687934,51.18512212784679,3.2,'Lightweight Steel Watch','Wuckert, Murazik and Ernser'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (140,'Gadget','2017-12-01T09:57:43.724Z',5050273180195,44.53541698384588,4.1,'Sleek Copper Watch','Daugherty-Dach'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (141,'Doohickey','2018-10-03T19:23:24.077Z',4504719641739,84.13541698384589,4.0,'Enormous Cotton Pants','Nikolaus-Hudson'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (142,'Doohickey','2017-10-14T02:59:37.713Z',4686859196154,46.8990203814063,4.3,'Ergonomic Marble Computer','Kuphal, Brown and Koss'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (143,'Gizmo','2018-02-04T22:30:01.155Z',4009053735033,40.7988669736962,0.0,'Rustic Iron Bench','McGlynn, Fay and Kertzmann'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (144,'Widget','2019-01-19T02:05:08.927Z',7760442733661,40.7988669736962,0.0,'Aerodynamic Bronze Hat','Schumm, Brown and Wehner'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (145,'Gizmo','2018-04-27T15:52:11.524Z',0899183128263,40.7988669736962,4.4,'Awesome Wool Bench','Stark-Bayer'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (146,'Widget','2016-09-14T10:14:08.091Z',9131148018211,84.03151414144409,4.3,'Lightweight Wool Computer','Theodora Terry and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (147,'Doohickey','2017-07-17T15:41:47.286Z',0006590063715,44.4315141414441,4.6,'Mediocre Wool Toucan','Bradtke, Wilkinson and Reilly'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (148,'Gadget','2018-05-26T05:12:30.806Z',3828680930458,92.65447881697106,4.1,'Sleek Plastic Shoes','Gail Bergstrom Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (149,'Widget','2017-06-15T08:50:11.957Z',2543248750439,46.10276691718616,4.1,'Incredible Aluminum Knife','Padberg, Senger and Williamson'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (150,'Gadget','2018-11-26T07:59:53.001Z',5935916054838,85.70276691718615,3.9,'Synergistic Wool Coat','Morar-Schamberger'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (151,'Gizmo','2017-10-16T00:52:50.757Z',1878073010375,61.07534871228964,4.0,'Lightweight Leather Bench','Marquardt, Crooks and Abshire'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (152,'Widget','2017-05-26T20:35:11.249Z',3988126680641,32.59712486600442,3.6,'Enormous Aluminum Clock','Thompson-Wolf'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (153,'Gadget','2017-11-24T19:13:23.304Z',1484994799123,44.532615427854914,4.1,'Aerodynamic Leather Computer','Wilkinson, Donnelly and Gulgowski'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (154,'Widget','2018-07-07T14:51:56.865Z',6875096496570,54.58353035541507,4.3,'Incredible Bronze Wallet','Hermiston, OHara and Wunsch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (155,'Gadget','2017-02-22T12:53:05.598Z',7854842811538,29.183828734551838,4.4,'Fantastic Rubber Knife','Demarcus Brakus Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (156,'Gadget','2016-09-30T07:55:10.891Z',1770178011663,20.41053609936413,4.5,'Heavy-Duty Copper Gloves','Schinner, Schmitt and Crona'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (157,'Widget','2017-12-01T08:35:33.063Z',7177157744491,93.26282349158673,3.0,'Intelligent Granite Hat','Dooley-Cummings'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (158,'Gizmo','2017-07-09T11:04:50.029Z',7345418848909,93.26282349158673,4.1,'Aerodynamic Leather Toucan','Israel Spinka and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (159,'Widget','2017-02-27T20:15:05.107Z',6403813628678,23.686782969182406,4.3,'Aerodynamic Cotton Lamp','Mueller, Mayert and Johnston'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (160,'Gadget','2018-05-03T21:43:50.227Z',3685697688891,31.727470408648482,5.0,'Lightweight Linen Hat','Oran DAmore Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (161,'Doohickey','2016-06-12T23:35:50.174Z',5626486088179,31.727470408648482,4.0,'Heavy-Duty Rubber Gloves','West, Prohaska and Wunsch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (162,'Gadget','2018-11-25T14:58:59.461Z',9458076657016,22.378598800110105,3.3,'Gorgeous Copper Knife','Connelly-Mitchell'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (163,'Widget','2016-08-01T20:39:00.996Z',2117622168280,22.378598800110105,0.0,'Ergonomic Leather Pants','Brittany Mueller Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (164,'Doohickey','2016-12-01T22:43:06.579Z',3691313722887,61.978598800110106,4.4,'Sleek Bronze Lamp','Bosco-Breitenberg'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (165,'Gizmo','2018-01-14T08:47:02.154Z',9182640035008,25.536330427467956,2.5,'Aerodynamic Copper Knife','McDermott, Kiehn and Becker'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (166,'Doohickey','2016-08-05T07:54:17.191Z',1408483808240,25.536330427467956,4.0,'Rustic Copper Hat','Kuhn-OReilly'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (167,'Doohickey','2017-10-24T14:18:17.203Z',6009279470754,65.13633042746795,3.0,'Gorgeous Paper Bag','Prohaska-Quigley'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (168,'Gadget','2016-07-29T03:49:13.673Z',6190070243323,79.28781795635516,0.0,'Intelligent Paper Car','Roscoe Oberbrunner Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (169,'Doohickey','2018-08-04T01:37:27.729Z',8933669659420,39.68781795635516,4.5,'Small Cotton Chair','Kuhlman-McKenzie'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (170,'Widget','2018-11-11T00:14:00.729Z',6966709160725,70.05110494330981,4.0,'Durable Leather Wallet','Ruecker-Jakubowski'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (171,'Doohickey','2017-07-07T19:15:07.738Z',2448500145612,70.05110494330981,4.0,'Ergonomic Iron Watch','Blake Greenfelder Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (172,'Gizmo','2018-09-02T16:45:49.880Z',4201407654834,81.57679953529707,3.8,'Practical Aluminum Table','Heathcote-Kirlin'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (173,'Gadget','2016-05-30T07:24:27.215Z',1838229841499,81.57679953529707,4.1,'Gorgeous Wooden Car','Upton, Schoen and Streich'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (174,'Gadget','2017-02-13T07:10:15.529Z',9216642429807,74.40953929454055,4.4,'Rustic Iron Keyboard','Barrows-Johns'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (175,'Doohickey','2016-07-31T13:29:50.000Z',7067375149041,78.21653962235106,0.0,'Fantastic Leather Watch','Lakin-Stroman'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (176,'Widget','2016-07-29T09:38:22.862Z',6424174443243,38.616539622351056,3.6,'Enormous Leather Wallet','Mr. Colton Mayer Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (177,'Gadget','2018-12-29T22:35:47.725Z',2125923238175,85.87953212963993,4.0,'Heavy-Duty Cotton Bottle','Ursula Collins LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (178,'Widget','2017-05-14T05:22:59.248Z',3576267834421,78.21975500247076,4.6,'Ergonomic Linen Toucan','Halle Kulas I LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (179,'Doohickey','2016-08-19T11:20:01.119Z',6372029072158,45.549391048892794,3.5,'Incredible Linen Knife','Casper-Schimmel'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (180,'Gadget','2017-07-29T09:06:00.349Z',8725228831589,45.549391048892794,4.3,'Lightweight Copper Wallet','Maxime Haley and Sons'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (181,'Widget','2019-03-31T07:59:18.764Z',8703661046340,95.92626913650741,4.4,'Awesome Steel Toucan','Berge, Mraz and Sawayn'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (182,'Gadget','2018-10-19T22:20:01.145Z',8769809778856,56.326269136507406,4.0,'Practical Silk Bottle','Devonte Gleichner Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (183,'Gizmo','2016-11-28T02:43:19.996Z',5408760500061,37.7982748679465,3.7,'Mediocre Aluminum Lamp','Powlowski, Keebler and Quigley'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (184,'Widget','2017-04-03T18:01:04.162Z',4198118078267,77.3982748679465,3.6,'Practical Granite Plate','Gaylord-Lesch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (185,'Gadget','2016-11-09T14:06:25.683Z',3307124431763,26.384667225677738,0.0,'Sleek Marble Table','Cremin-Williamson'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (186,'Gizmo','2018-04-14T15:21:02.626Z',0225815844582,65.98466722567774,4.2,'Ergonomic Concrete Lamp','Theodore Hansen Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (187,'Gizmo','2017-07-03T23:17:30.280Z',4347934129886,65.98466722567774,4.2,'Fantastic Copper Hat','Janick Harvey LLC'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (188,'Doohickey','2019-02-07T19:03:43.752Z',2315609605258,22.584921698210056,3.5,'Synergistic Copper Computer','Jones, Hayes and Kshlerin'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (189,'Widget','2017-08-16T01:01:21.914Z',0038948983000,62.18492169821006,4.3,'Gorgeous Marble Computer','Marvin, Turcotte and Wisozk'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (190,'Gadget','2019-01-22T15:58:52.848Z',1613730311804,85.72279013719552,3.2,'Ergonomic Cotton Bag','Delphia Bauch Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (191,'Gadget','2018-05-01T21:16:24.331Z',7167715379463,85.72279013719552,0.0,'Heavy-Duty Linen Gloves','Herman, Gleason and Renner'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (192,'Widget','2016-07-28T08:48:29.074Z',1272575087123,46.122790137195516,3.3,'Durable Cotton Shirt','Grady, Greenfelder and Welch'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (193,'Gadget','2017-04-24T18:33:44.161Z',4709231420798,33.587182645381546,0.0,'Ergonomic Plastic Bench','Hodkiewicz-Brekke'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (194,'Doohickey','2016-05-11T09:39:00.357Z',2952766751666,33.587182645381546,3.5,'Heavy-Duty Rubber Bottle','Rosanna Murazik Inc'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (195,'Gadget','2019-04-01T23:26:53.703Z',7384311074268,73.18718264538155,5.0,'Incredible Concrete Watch','Ford Runolfsson Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (196,'Widget','2017-03-08T20:05:27.983Z',6316992933962,46.76407124473339,0.0,'Heavy-Duty Linen Toucan','Balistreri-Muller'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (197,'Gizmo','2017-06-08T08:56:15.049Z',2516506541834,46.76407124473339,4.6,'Aerodynamic Concrete Lamp','Erika Volkman Group'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (198,'Gizmo','2017-09-06T19:28:16.574Z',7153630876392,46.76407124473339,4.1,'Enormous Copper Shirt','Considine, Schamberger and Schiller'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (199,'Widget','2016-08-19T01:21:25.232Z',5522456328132,76.95334253952366,3.6,'Mediocre Leather Coat','Gulgowski, Grimes and Mayer'); +INSERT INTO products (id, category, created_at, ean, price, rating, title, vendor) VALUES (200,'Gadget','2018-06-12T06:08:53.212Z',7317365230007,48.802638078661005,4.0,'Intelligent Steel Car','Pouros, Nitzsche and Mayer'); diff --git a/sample/reviews.sql b/sample/reviews.sql new file mode 100644 index 000000000000..6f4c1aabdd1a --- /dev/null +++ b/sample/reviews.sql @@ -0,0 +1,1112 @@ +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1,'Ad perspiciatis quis et consectetur. Laboriosam fuga voluptas ut et modi ipsum. Odio et eum numquam eos nisi. Assumenda aut magnam libero maiores nobis vel beatae officia.','2018-05-15T20:25:48.517Z',1,5,'christ'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (2,'Reprehenderit non error architecto consequatur tempore temporibus. Voluptate ut accusantium quae est. Aut sit quidem nihil maxime dolores molestias. Enim vel optio est fugiat vitae cumque ut. Maiores laborum rerum quidem voluptate rerum.','2019-08-07T13:50:33.401Z',1,4,'xavier'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (3,'In aut numquam labore fuga. Et tempora sit et mollitia aut ullam et repellat. Aliquam sint tenetur culpa eius tenetur. Molestias ipsa est ut quisquam hic necessitatibus. Molestias maiores vero nesciunt.','2018-03-30T00:28:45.192Z',1,5,'cameron.nitzsche'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (4,'Est accusamus provident non animi labore minus aut mollitia. Officiis voluptatem quo dolorem sunt qui ipsum nobis totam. Et qui et qui quia ipsa ipsam minima.','2017-11-13T22:29:12.121Z',1,4,'barbara-shields'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (5,'Id sed sint corrupti molestias ad alias aut in. Nihil debitis ipsum repellendus voluptatem facere. Fugiat fugiat necessitatibus nobis hic.','2017-11-19T07:08:54.771Z',1,5,'clement'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (6,'Omnis pariatur autem adipisci eligendi. Eos aut accusantium dolorem et. Numquam vero debitis id provident odit doloremque enim.','2018-02-11T03:05:17.346Z',1,5,'jaunita'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (7,'Non unde voluptate nam quo. Quibusdam vero doloremque ut voluptas. Sequi commodi voluptatem vero debitis velit in. Quis dolores id qui aut voluptatibus. Magnam laborum sunt sit saepe reprehenderit.','2020-01-31T12:35:59.147Z',1,5,'perry.ruecker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (8,'Quia ullam qui quae distinctio non nostrum laboriosam. Voluptatum velit et est dolore corporis sed. Dolore quia non illum quia omnis laudantium tempore.','2019-12-10T16:16:36.999Z',1,4,'cristina.balistreri'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (9,'Quo sed optio cum. Et officiis cumque quis. Facere unde porro sit voluptatem nulla incidunt. Rerum accusantium aut consequatur quae. Rerum ut eligendi vel repudiandae voluptates.','2019-11-06T10:43:14.868Z',3,4,'wilma-muller'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (10,'Est consectetur impedit sit. Distinctio corrupti ut magni provident recusandae aliquam qui error. Omnis et debitis pariatur doloribus quia blanditiis eaque. Voluptates ut eum minus quasi alias. Officiis nostrum facilis possimus.','2019-02-13T17:37:35.244Z',3,4,'herman-marquardt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (11,'Blanditiis sequi reprehenderit nesciunt eos numquam a alias quibusdam. Et alias dolor vel. Non enim corporis magni dolorem voluptatem laudantium sit.','2018-10-22T23:12:30.534Z',3,4,'carolyne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (12,'Sint sed et libero excepturi aut. Nihil tempora reprehenderit et et harum consectetur alias voluptatum. Sed et consequatur quibusdam natus nihil non illum.','2018-11-26T23:42:48.594Z',3,4,'ralph-klocko'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (13,'Enim consequatur voluptas temporibus iusto optio. Nihil et ea iste autem est. Accusamus sint corporis ullam.','2019-06-21T07:29:55.724Z',3,4,'gerry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (14,'Placeat non inventore odit. Illum ullam rerum cum corrupti maiores. Nihil sequi molestias dolore explicabo doloremque nobis omnis. Saepe id voluptatem ut nemo. Commodi laborum qui amet hic rerum omnis iste.','2019-03-26T21:16:27.557Z',3,4,'lula-pouros'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (15,'Minus minima ea fugit vero consectetur. Voluptatibus dignissimos quibusdam alias quam eos deserunt maxime. Dolorem exercitationem ex nobis et esse odit accusamus voluptatum.','2019-11-30T07:00:39.059Z',3,4,'jalon.pagac'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (16,'Sint dicta facere cumque omnis autem. Non tempora voluptatem iure. Modi quia modi voluptatem. Autem ratione tempora qui.','2019-04-20T04:57:57.910Z',4,3,'kale'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (17,'Necessitatibus voluptatem officia iusto. Repudiandae distinctio accusantium quae officiis nisi. Eveniet voluptatem non molestias tempora maxime voluptas quas reiciendis. Explicabo ea non enim temporibus. Alias aspernatur quos et quia blanditiis repudiandae.','2018-07-28T13:49:57.756Z',4,1,'kurt.labadie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (18,'Facere iusto aut autem vel qui. Velit nemo esse ipsum exercitationem est quam odit doloremque. Voluptate est molestias maxime porro. Ut exercitationem in est. Voluptates incidunt voluptatem officia.','2018-07-31T13:05:41.950Z',4,5,'creola-price'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (19,'Ad sit magnam voluptatem esse voluptatem. Natus ut quo labore soluta ex exercitationem. Sunt aperiam qui at.','2018-09-28T22:29:23.619Z',4,2,'kaley-nader'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (20,'Sit blanditiis in possimus. Ab voluptatem aliquid amet libero eos rem nemo. Sed officiis maiores id cum facere cupiditate veniam. Et magnam qui ea aliquid.','2019-10-09T01:52:47.560Z',4,4,'brock'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (21,'Eos consectetur adipisci perferendis neque laborum. Veritatis repellat eum distinctio vitae eum asperiores fuga illo. Tempora iusto aut rerum aut reprehenderit. Eos aut veritatis assumenda omnis.','2019-09-18T23:37:03.454Z',5,4,'meghan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (22,'Et libero velit recusandae voluptas adipisci voluptatem nulla. Odit minima totam vel. Est dolore porro ratione tempore.','2019-08-20T19:36:44.051Z',5,5,'pedro'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (23,'Voluptatem nulla quia ea dicta. Voluptatem vel commodi in. Quisquam architecto quas ea perferendis.','2017-09-26T22:31:06.534Z',5,5,'theresa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (24,'Non sint sit aut unde. Ullam ut delectus ipsam consequatur. Dolor sed dolor est dolorem dolores ipsa voluptatem dolor. Unde delectus optio inventore ab corporis voluptatibus.','2017-12-09T10:48:26.839Z',5,2,'yoshiko'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (25,'Fugiat corrupti perspiciatis laborum nulla debitis a soluta. Possimus ab quis laudantium amet nulla. Maiores aliquid voluptas magnam quia sunt autem.','2018-08-13T02:20:13.488Z',6,5,'davin.rowe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (26,'Odit tempore maxime vel omnis id consequatur. Ratione non repellendus eaque. Optio sit expedita est et quia alias debitis. Incidunt ab alias est repellendus vel dolores qui.','2018-02-10T15:22:39.741Z',6,4,'beatrice-ward'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (27,'Minima non hic doloribus ipsa dolore ratione in numquam. Minima eos vel harum velit. Consequatur consequuntur culpa sed eum quidem. Debitis nostrum voluptatibus et voluptatem.','2020-01-07T06:01:18.999Z',6,4,'grace'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (28,'Et non est minima praesentium est. Nesciunt ipsa omnis est voluptatem provident dolores consequatur qui. Quos est architecto exercitationem soluta delectus adipisci minima.','2018-04-29T05:54:53.293Z',6,3,'pete'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (29,'Reprehenderit est neque sapiente at dolore aut facilis. Ea reprehenderit ut dicta et quia harum repellendus. Provident facilis nostrum quidem. Velit quod nobis dolore aspernatur suscipit.','2018-10-05T18:18:12.074Z',6,3,'daryl'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (30,'Inventore qui dolorum dicta nam dolor consequatur non. Ea libero dolorum est fugiat voluptatem voluptatum qui. Quod minus maxime sequi.','2019-11-22T04:12:40.052Z',7,3,'mae.strosin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (31,'Reiciendis recusandae qui aperiam nam aperiam corporis et voluptatum. Dolor sapiente eum officiis doloribus cupiditate illum ullam soluta. Est totam provident et facere et odit quaerat.','2019-05-20T23:21:59.929Z',7,5,'abigale.harvey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (32,'Aliquam sequi doloremque animi quod quia. Quos eum eum id perferendis quos praesentium et vel. Qui voluptas et dignissimos nisi.','2018-05-14T10:41:19.568Z',7,5,'kylie.murphy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (33,'Quo animi voluptatem alias iste dolores iure asperiores accusantium. Nihil libero eum qui iure eligendi quo quis omnis. Necessitatibus et molestias ducimus aut. Maiores dolorem et est.','2018-04-18T21:32:02.295Z',7,5,'terrell.brown'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (34,'Voluptas illum officiis facere. Quas iure ut praesentium et. Sed soluta explicabo esse doloribus sed.','2019-04-15T22:18:56.792Z',7,3,'devan.buckridge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (35,'Dolorem eos tenetur soluta cumque fugit quibusdam quia dicta. Omnis debitis cupiditate ipsa in veritatis sed dolore. Cumque sit eos commodi iure. Et recusandae optio quas blanditiis quasi enim impedit error.','2017-06-04T18:52:10.978Z',7,5,'alexandrea.bartell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (36,'Et modi architecto cupiditate dolorem sapiente delectus et. Exercitationem consequatur non nihil delectus doloribus animi aliquid. Illum accusamus sed necessitatibus maxime eos. Et velit qui expedita laborum minima.','2018-02-10T18:40:43.685Z',7,4,'michel.goodwin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (37,'Facilis laboriosam et expedita. Quasi accusamus architecto voluptas repellat quam expedita quidem odit. Voluptates nemo nam consequuntur doloribus corrupti nisi. Voluptatem quo excepturi veniam culpa est et.','2019-09-13T00:30:24.224Z',7,5,'emerald-carroll'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (38,'Id sed aut quo est. Vero et nobis numquam quis. Asperiores laudantium in reprehenderit quisquam. Architecto accusantium eaque adipisci. Sequi error doloremque quaerat laboriosam incidunt.','2018-09-28T02:16:05.922Z',8,2,'skylar'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (39,'Odit error sunt ipsam nihil. Esse vero voluptatibus maiores velit omnis aut nobis. Debitis quis vitae eum enim ad. Voluptate in quas quae eveniet.','2018-05-08T06:42:14.983Z',8,4,'johnny'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (40,'Explicabo aut ex numquam. Voluptas est voluptate quod dolor quod. Deserunt est eos quo qui consequatur exercitationem. Eaque quod vel ut. Non libero commodi saepe molestias magni.','2019-02-01T08:43:39.868Z',8,4,'julio'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (41,'Id tenetur eaque incidunt perspiciatis suscipit dolor. Qui quia alias doloribus eum omnis quis sunt. Accusantium quos eos tempora. Sit quibusdam alias sed voluptas voluptatem. Ut rem similique magnam et.','2019-12-01T02:56:24.429Z',8,5,'noble'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (42,'Repudiandae quae natus maxime suscipit deleniti rerum ut incidunt. Ipsam explicabo quia quo recusandae dolorum ad est officiis. Eligendi nobis consequatur voluptas molestiae saepe.','2019-07-15T04:28:05.737Z',8,4,'juliana'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (43,'Eum omnis facilis soluta qui nihil ullam minima modi. Culpa quos explicabo perferendis. Qui et et rerum animi. Et aut quos excepturi quod ipsum consectetur.','2019-06-09T20:03:22.823Z',8,5,'alvis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (44,'Placeat est sint perspiciatis non eveniet sapiente porro voluptate. Quo est non voluptatem. Recusandae repellendus itaque id veniam. Et quam aut vitae praesentium voluptas vel sunt dolorum.','2018-11-18T02:46:20.771Z',8,5,'ethel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (45,'Reiciendis omnis corporis recusandae dicta nostrum aspernatur quas maxime. Consequuntur recusandae consectetur officia. Et et qui et odit et aut qui. Doloremque excepturi fugiat rerum rerum consequatur totam laudantium.','2019-05-07T18:34:59.926Z',9,3,'maia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (46,'Corporis perferendis aut accusantium temporibus omnis doloribus aut exercitationem. Qui sed dicta possimus omnis. Voluptas inventore ut soluta.','2019-04-23T00:40:26.426Z',9,5,'trent'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (47,'Quia eligendi amet qui omnis odit ut at. Nobis facere adipisci deserunt recusandae. Adipisci sint aspernatur enim et id. Repellat repellendus qui qui. Fuga accusantium dolorum fugiat numquam molestias qui.','2019-02-09T09:00:23.913Z',9,5,'roslyn.goldner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (48,'Aperiam vero temporibus corporis corporis maiores voluptatem expedita. Voluptas ipsum cumque consequatur. Impedit ut sapiente quis voluptatem aut.','2019-12-29T02:05:23.696Z',9,4,'reyna.davis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (49,'Incidunt totam non id laboriosam facere. Molestiae consequatur labore dignissimos voluptatem. Molestias quis autem adipisci.','2018-10-26T00:15:56.189Z',10,5,'donnie.spinka'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (50,'Omnis sed illum est maiores beatae ut corporis. Nihil iste quidem vel. Quas rerum ipsa fugiat fuga natus aliquam. Eligendi repudiandae accusantium at ea. Non numquam ut non est tenetur.','2018-03-18T17:28:46.007Z',10,5,'jettie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (51,'Et velit voluptatem blanditiis. Sunt quidem iure aut et aspernatur. Id in totam voluptas asperiores non.','2020-01-06T12:53:43.611Z',10,4,'luther'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (52,'Et est voluptatibus qui corrupti. Nostrum fugit mollitia debitis eos voluptatem quis. Quis velit facilis provident corrupti veniam soluta officia aut. Provident occaecati minus vel ea et. Et quia atque eligendi voluptate.','2017-11-12T09:30:57.613Z',10,4,'hazle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (53,'Eius voluptatem neque debitis ipsa earum et id quibusdam. Qui assumenda qui iure velit rerum ad voluptas sit. Odio at ex aperiam facere sed aut.','2019-10-18T07:00:46.983Z',10,5,'lois-romaguera'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (54,'Incidunt enim totam molestiae. Molestiae velit rerum sint est sed beatae. Officia totam tempora qui nesciunt adipisci qui.','2019-07-18T14:53:25.766Z',10,5,'maeve'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (55,'Dolor amet itaque odio at est nesciunt voluptas. Nostrum nisi nam aut est deleniti perspiciatis aut blanditiis. Nesciunt sit alias corrupti incidunt qui aut totam. Soluta corrupti qui in nulla et corrupti est.','2017-02-21T13:15:00.956Z',10,4,'elizabeth'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (56,'Fugiat dolores maiores tempora quis. Voluptate quod alias quidem saepe provident perspiciatis corrupti. Qui ut et quo non id laborum quia. Eligendi aut voluptatum omnis numquam corrupti ut.','2017-12-15T04:57:05.876Z',10,2,'lois.jakubowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (57,'Adipisci provident voluptate cum qui voluptatem. Ut quae velit velit rerum eveniet voluptas. Harum cum similique provident. Voluptatem quidem labore minima alias dolore. Molestiae voluptatem commodi ut et.','2018-11-22T01:05:33.863Z',10,5,'rhea'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (58,'Ut accusantium odit sit et nihil. Voluptatum eum voluptatibus sit et dolore sed sequi natus. Ducimus cupiditate perferendis repellat expedita quos.','2020-04-08T09:48:23.269Z',12,5,'loren'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (59,'Sed excepturi tempora saepe recusandae rerum in ex perferendis. Quia error quibusdam et omnis dolores totam. Quaerat qui ullam at omnis iusto. Voluptatem veniam optio maiores repellendus. Sunt minus ut eveniet voluptatem.','2018-05-02T07:46:44.290Z',12,5,'fidel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (60,'Aperiam autem magni sunt. Tempora voluptates vitae facere. Asperiores repellendus totam ad ullam.','2018-04-26T00:55:59.488Z',12,5,'meta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (61,'Dolorem eum dicta eum et. Laborum qui est et. Aut labore quia earum.','2020-01-01T16:50:17.060Z',12,5,'dayton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (62,'Voluptate dolores est repellat. In tempora magni magni dicta autem amet. Et saepe autem provident facilis nostrum reprehenderit vero.','2020-01-22T00:59:08.252Z',12,4,'meghan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (63,'Dicta animi pariatur totam qui necessitatibus illo omnis. Quaerat ut et nostrum rerum. Minus explicabo occaecati sed occaecati aliquid molestias dolorum. Saepe debitis velit maxime consequatur fuga.','2018-10-26T20:30:34.427Z',12,5,'summer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (64,'Aut vel earum non. Nihil harum ullam accusantium voluptate. Voluptas doloremque inventore tempore quasi. Est magni dolor ratione placeat officia in sed sit.','2019-04-01T06:35:01.914Z',12,2,'ollie-hudson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (65,'Eum nesciunt aut amet nobis. Vel rerum eligendi quae est sequi. Eaque quo ea inventore quas quo aliquam iusto est.','2020-03-29T01:22:49.789Z',14,4,'michale-howe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (66,'Veritatis dolores error nisi libero cum a ut sunt. Et possimus in dignissimos. Dolorum saepe doloribus soluta sunt a. Optio consequatur quo ratione fugiat ipsum voluptatem neque. Modi corporis rerum et deleniti.','2019-11-01T13:30:33.826Z',14,4,'tatum.williamson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (67,'Ut impedit ipsum eos. Fugiat voluptate dolor sed qui quasi aliquid sint sed. Deserunt accusamus reprehenderit aut. Esse tempora sint impedit amet eos et quaerat corrupti. Modi iure ut iure et eius temporibus dicta ut.','2019-01-26T04:20:49.869Z',14,4,'lowell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (68,'Sed aut id facere. Nihil at doloribus eaque. Est molestiae ut non sapiente distinctio facere et totam. Aut dolorem ducimus eum quasi molestiae molestiae.','2019-04-30T17:32:10.886Z',15,5,'jalen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (69,'Consectetur porro sed officia consequatur esse qui quas. In velit nemo facere sint nobis delectus qui optio. Harum iure nemo illum.','2017-02-12T15:12:41.758Z',15,4,'stewart-west'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (70,'Nobis eaque officia veritatis. Accusantium quae voluptas et harum neque facere sunt. Non iusto repudiandae ut dolorum est. Omnis delectus laboriosam soluta odio. Assumenda quod ducimus id accusantium in assumenda ut.','2019-07-01T14:38:02.218Z',15,3,'ryder.schmeler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (71,'Sunt id ea occaecati ipsam itaque qui. Consectetur eveniet et rerum quos. Est suscipit temporibus ut alias aut. Possimus blanditiis nam voluptas. Pariatur debitis officiis qui.','2019-01-09T16:46:13.739Z',15,5,'noble.bins'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (72,'Amet deserunt iusto ut optio natus quia eos qui. Optio sed ea doloribus. Mollitia vel voluptas eum commodi.','2017-01-26T12:42:53.019Z',15,3,'alan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (73,'Enim ea possimus cum. Tempora harum blanditiis facilis modi quos. Voluptas officia est itaque.','2018-10-01T17:14:12.497Z',15,4,'shawn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (74,'Nulla quibusdam ad voluptatem consequatur voluptatem blanditiis dolorem. Omnis et assumenda eum quisquam natus. Eligendi ut numquam veniam eaque tempore incidunt rerum consequatur.','2018-02-13T04:11:25.169Z',16,4,'sylvia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (75,'Hic quae officiis quas nostrum quo delectus corporis et. Sed a omnis quae blanditiis magnam et et. Asperiores neque nulla totam ea aut in possimus.','2019-12-03T10:22:06.543Z',16,4,'dalton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (76,'Hic architecto nobis adipisci inventore numquam. Nam reiciendis ut eligendi consectetur a iusto beatae. Ipsam eius ea repudiandae aut.','2017-07-31T22:46:52.399Z',16,5,'laverne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (77,'Omnis ipsam culpa voluptas repudiandae. Magnam quae veniam quia et. Laborum officia eum repudiandae id commodi.','2017-10-29T21:09:52.952Z',16,2,'kamron.hickle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (78,'Magnam tenetur voluptas nihil. Dolor similique voluptas quos hic amet in ut. Nihil aperiam non omnis tempora. Aut dolores quod voluptate quis quis itaque incidunt esse.','2017-04-21T10:28:11.664Z',16,4,'ernestina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (79,'Et enim libero accusamus et aliquid odit ratione. Sit ea error nulla aliquid facere. Est minus quibusdam iusto. Id ipsa vitae dolor minima autem quisquam odio quibusdam. Adipisci occaecati ea delectus quia.','2018-05-10T09:41:43.463Z',16,4,'darren'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (80,'Et voluptas repellat sed amet non recusandae voluptatem. Voluptatem minima corrupti sunt explicabo ut porro est. Ut dolor reiciendis eaque voluptate qui suscipit. Ipsum culpa vel molestias. Ipsa enim animi saepe autem quibusdam suscipit recusandae sequi.','2018-09-24T17:13:21.925Z',16,5,'fritz-strosin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (81,'Consequatur labore fuga aut eum sint qui earum aut. Consequatur exercitationem accusamus sunt dolor aut non ut. Ut pariatur vitae iste est quod dicta. Similique ab voluptatibus sunt dolor aliquam et voluptates.','2020-04-05T13:29:00.434Z',17,4,'joshuah'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (82,'Quia aliquid eveniet tenetur est. Et odio similique autem ipsam nihil ratione. Autem quae sit nostrum.','2018-07-30T10:22:43.084Z',17,4,'cristina.bruen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (83,'Velit alias voluptatibus soluta suscipit ipsam et non. In ducimus quia ut veniam libero et. Nostrum sequi fugiat provident.','2019-10-21T10:03:50.501Z',17,5,'vada.mcdermott'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (84,'Nihil expedita ut fuga id nesciunt rerum quam dicta. Iure quibusdam dolor labore dolorum debitis explicabo sit. Optio et deserunt quasi aut. Velit eos ut quasi quis quam.','2019-07-29T16:57:45.908Z',17,4,'sadye'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (85,'A repellat impedit explicabo ullam. Et ad quis temporibus. Voluptas tenetur aspernatur saepe sequi animi veritatis et culpa.','2020-01-21T18:52:03.420Z',17,4,'emory-franecki'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (86,'Aperiam placeat aut ab veniam id. Quisquam atque dolores voluptatibus illum. Numquam aliquid ea cumque quia minus corporis voluptatem et. Vitae delectus quidem ea iste sint. Qui aliquam ut est ipsa.','2020-03-30T07:27:53.680Z',17,4,'tiana-pfeffer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (87,'Alias saepe enim qui tempore modi. Quaerat rem mollitia quia. Aut tempora aut laborum. Et et debitis nihil atque eveniet. Et dolore perspiciatis deserunt beatae occaecati aut ex fuga.','2018-05-01T16:04:00.030Z',17,5,'destany.cremin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (88,'Odit est et et ex velit doloremque non. Commodi officiis ea maxime et enim qui eum voluptatem. Nisi autem blanditiis illo et pariatur quas.','2019-07-28T22:16:44.098Z',17,5,'jovany'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (89,'Nihil natus doloribus sit officia quidem nostrum quos minus. Quis animi officia est qui. Sunt ipsum ea modi. Quibusdam accusamus maxime reiciendis et eveniet illum eos beatae. Culpa similique ab quisquam.','2019-02-28T22:00:41.936Z',17,4,'kurt.watsica'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (90,'Voluptas repudiandae qui ut aut. Esse cumque deleniti alias quaerat est et. Quia optio unde unde pariatur et hic.','2017-08-09T06:39:07.732Z',17,4,'ethel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (91,'Dolor totam et tempora quam dolorem nemo. Voluptatem dolore exercitationem rerum accusamus quod cum. Aliquam delectus pariatur ut et consequatur id.','2017-04-19T16:27:24.305Z',17,4,'jimmy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (92,'Aut pariatur totam non delectus. Vitae dolor libero velit fugit quae dolore officiis distinctio. Sit quia ut autem eveniet aperiam. Qui ratione aliquam quis ex sapiente ab assumenda.','2019-02-03T22:07:12.049Z',17,4,'macie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (93,'Ut qui aut nemo inventore id optio vero. Omnis iusto dolores sequi ipsum reiciendis qui ipsam dolor. Ut optio quisquam non omnis harum placeat ad.','2017-10-14T20:29:26.065Z',17,5,'mckenzie-stehr'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (94,'Dolor excepturi aut ut. Officia quas laboriosam tempore. Ut praesentium laborum aut consectetur esse quae suscipit.','2019-12-30T08:09:08.127Z',18,5,'geoffrey.von'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (95,'Molestiae quisquam qui quos est aut. Occaecati nostrum est eligendi nam quia vero eius reprehenderit. Repellendus eligendi architecto ea.','2019-05-18T19:45:39.728Z',18,4,'angela-schultz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (96,'Ut molestias et architecto optio. Eius cum ut deserunt. Et magnam quasi autem ex occaecati ullam alias magni.','2018-12-05T21:47:07.095Z',18,5,'adam'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (97,'Corporis enim ea in ut. Iusto magni sequi doloribus consequatur qui. Qui in ullam debitis atque necessitatibus. Quia aut modi deserunt ratione.','2017-05-02T23:14:47.478Z',18,4,'desmond-barton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (98,'Et est fugiat velit animi cumque quis dolor. Consequuntur eius aut doloremque qui est rem deleniti ut. Nostrum nisi non ullam velit beatae fuga.','2019-07-08T11:53:28.944Z',18,4,'brennan.watsica'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (99,'Neque magnam aliquam ab qui est aspernatur autem. Vel eius eligendi exercitationem voluptatem voluptas. Enim nulla et ratione voluptatem nisi. Non in consequatur voluptatum. Beatae dolorum qui quaerat atque.','2017-02-21T00:05:47.233Z',18,5,'dale'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (100,'Incidunt totam perferendis et accusantium deserunt. Totam magnam aut ab veritatis aut aut. Perferendis ad aut ipsum qui rerum nihil. Non pariatur dolor enim voluptas fugiat natus itaque. Eum qui quia distinctio explicabo pariatur vel quam.','2018-02-19T09:40:51.384Z',18,4,'joannie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (101,'Quia et ut quia veritatis officiis veritatis molestiae. Ipsam et vitae dolor accusantium aut sed. Exercitationem et quam qui amet ut veritatis voluptatem dolores. Ut maiores et cumque rem aut. Quia deserunt qui quasi nesciunt qui animi.','2019-02-15T21:26:38.194Z',19,4,'glenna.friesen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (102,'Nemo omnis dignissimos eligendi. Quod nesciunt dolorum sit incidunt ipsam. Reiciendis odio eius blanditiis nobis quia cum veritatis sapiente. Ad rerum quasi eum corrupti. Soluta asperiores vitae placeat ipsam suscipit odit minus.','2016-12-10T15:46:07.837Z',19,3,'saul'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (103,'Delectus voluptas est a laudantium repudiandae. Enim at hic ex mollitia non sed atque officiis. Dolorum ullam et quae nihil sed aliquam cumque adipisci.','2019-02-11T07:32:34.363Z',19,5,'viviane.torphy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (104,'Ducimus debitis laudantium quae molestias. Corrupti dolor dicta omnis eius placeat. Sed dolorum inventore et. Expedita soluta ipsa eligendi nihil ea. Velit quae aut molestiae ipsum sit.','2018-05-05T23:32:43.969Z',19,5,'lucio-kuphal'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (105,'Omnis maiores quisquam hic sint facere ad. Incidunt optio rerum incidunt doloremque. Maiores est nihil est voluptas exercitationem earum molestias. Quos voluptatem qui aperiam. Qui quis molestiae vitae et aut laboriosam aut dolores.','2019-01-24T15:15:18.982Z',20,4,'janessa.durgan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (106,'Accusantium sit non ea dignissimos ut vero. Repudiandae quia eveniet consequatur ducimus. Laboriosam et quia dolore nihil mollitia voluptas amet. Dolores itaque praesentium fugiat possimus. Quo cum nesciunt et.','2018-08-20T23:57:09.280Z',20,5,'davin.marks'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (107,'Porro nobis magni dolore omnis. Sint nam et ducimus earum necessitatibus itaque quia ut. Voluptatibus aut eum nemo provident accusamus deleniti culpa impedit. Voluptas eaque sunt necessitatibus totam accusamus nemo.','2019-05-09T12:58:15.499Z',20,4,'aditya.mills'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (108,'Similique ut molestiae eligendi et placeat reiciendis sint. Quam quibusdam qui sapiente nostrum nam vel sed. Alias ut officiis molestias eaque dolorem necessitatibus.','2020-01-14T13:35:58.791Z',20,3,'camryn-homenick'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (109,'Aut occaecati voluptatem est dolor est beatae. Consequatur error id omnis. Porro occaecati et voluptates unde. Qui officia sit deleniti omnis illo tenetur. Rerum occaecati est excepturi eaque sint explicabo quas ut.','2019-11-11T03:47:13.310Z',20,4,'markus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (110,'Facilis iure libero voluptatum enim temporibus quisquam laborum aut. Delectus voluptas incidunt dicta et rerum officiis. Veniam aperiam qui consequatur ipsum rerum. Et maxime veniam magnam. Molestiae magni voluptatum amet et autem fugiat.','2018-12-01T07:57:48.650Z',20,4,'myrl-tromp'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (111,'Dicta aut et sit dolores id. Eum non sed assumenda fugiat esse eveniet. Molestias fuga est repellendus sed rerum vel. Nobis eos et sit.','2019-10-07T20:24:12.718Z',21,4,'antwon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (112,'Et ullam debitis totam. Possimus voluptate ut sit vel quo natus fugit enim. Quasi doloremque ut ullam. Dolorem culpa dolor ut dolores.','2018-02-25T08:54:38.338Z',21,4,'adella'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (113,'Dolores quo voluptatem enim sit quaerat laborum explicabo atque. Itaque eos neque aliquam qui. At et voluptatibus sed enim cupiditate. Consequatur sit sit eaque sed itaque ea fugiat ut. Et repellendus hic quas.','2018-12-24T14:48:04.023Z',21,4,'bo-lebsack'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (114,'Est fuga ex amet corrupti aliquid earum. Necessitatibus est fugit harum voluptas. Iure consequatur tempore commodi.','2016-08-26T19:15:54.665Z',21,5,'therese'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (115,'Laborum non commodi dolores qui perferendis voluptatem omnis quisquam. Dolorum et praesentium nulla saepe. Eaque sit dolorem ut laudantium consequatur nostrum autem.','2017-11-21T09:46:48.796Z',21,4,'isaac'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (116,'Qui omnis numquam quae quia. Ut voluptate modi praesentium. Aut reiciendis sit adipisci molestiae quia reprehenderit. Facilis ipsa consequatur commodi quia reprehenderit sint quae laboriosam.','2016-10-12T02:57:20.935Z',21,4,'alayna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (117,'Sed est iste libero voluptatibus aut. Velit qui pariatur soluta vero ipsa aperiam. Est nihil enim vel sed explicabo labore rem. Sint ex repudiandae vitae eaque est. Autem architecto fuga inventore ad velit quae aperiam corporis.','2017-12-02T19:42:42.974Z',22,5,'frederic-osinski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (118,'Assumenda ut sint necessitatibus. Sit vel excepturi tempore fuga error facere qui. Voluptatem magni qui non numquam repellat ut labore. Qui in consectetur quia repellat voluptas consequuntur consequatur. Nulla a eaque aliquid earum itaque accusamus atque.','2018-08-06T20:58:51.687Z',22,2,'anais.erdman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (119,'Eos explicabo iste necessitatibus illum modi tempora velit ea. Hic alias ea quisquam facere. Temporibus voluptatum reiciendis autem ut nesciunt dolore ut ex. Atque eaque placeat dignissimos voluptatem ea repellendus voluptas.','2018-04-08T11:43:53.687Z',22,4,'joanny'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (120,'Nam tempore delectus harum et. Qui distinctio accusamus in ut. Id voluptas quod eos qui deserunt non. Non eveniet rem nemo error fugiat occaecati fugiat dicta.','2018-01-30T17:57:55.368Z',22,5,'brannon.sipes'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (121,'Numquam omnis enim inventore quia nobis vel. Harum ea rerum et est. Ipsum rem quibusdam deserunt laboriosam. Eum sapiente iure quia facere quibusdam voluptatem non et.','2018-12-02T13:18:42.648Z',22,5,'river'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (122,'Ratione dolor at temporibus ut qui mollitia vitae. Qui illum reiciendis facilis. Praesentium a eligendi nihil. Labore et ut ipsum sequi et. Vel qui incidunt quo impedit nesciunt.','2019-12-06T17:49:54.431Z',22,4,'tomas.roberts'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (123,'Nobis quas quas neque quidem velit aut in qui. Quibusdam ducimus rerum est mollitia ipsum perferendis veniam velit. Nihil ut numquam qui.','2019-11-03T13:30:27.101Z',22,4,'kacie-farrell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (124,'Facere aut veniam velit officia numquam explicabo et ea. Voluptas rem autem vitae et tempora et deserunt sed. Molestiae facilis ipsum cum quia quo. Dolores ex libero nisi quis et error. Recusandae sit minima repudiandae voluptas.','2018-03-25T23:41:07.216Z',22,5,'jadyn-brakus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (125,'Molestiae optio earum quasi vitae. Nisi corrupti eos cumque debitis. Id qui dicta aut officia itaque odit id. Iusto nihil deserunt eum.','2018-02-19T08:24:21.335Z',23,4,'genesis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (126,'Iste sunt quasi dolore veniam. Beatae corporis a architecto. Voluptates dicta fugit et quisquam facere molestiae. Voluptatum nostrum sed nam dolorem delectus molestiae quis.','2018-12-31T13:25:52.734Z',23,3,'deangelo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (127,'Autem et harum vitae voluptas voluptatem quos velit rerum. Ipsum asperiores sint expedita sit. Quaerat occaecati amet iure possimus aut.','2018-05-18T15:48:14.615Z',23,5,'osbaldo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (128,'Consequatur ex consequatur qui architecto quibusdam hic. Odit cum ut id possimus. Voluptate cumque aliquam aut necessitatibus. Voluptatem dolorum amet sapiente praesentium dolore libero aut facere.','2018-02-24T15:41:50.909Z',23,4,'liam'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (129,'Dolorem saepe ipsa facilis optio sapiente. Est molestias consequatur aspernatur expedita ad hic esse maxime. Nisi voluptatem necessitatibus impedit ea voluptas sunt.','2019-11-11T01:12:31.776Z',23,4,'horace'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (130,'Est eos itaque qui quia aliquid. Cupiditate inventore deserunt amet explicabo magnam. Autem natus totam repellendus.','2019-12-29T13:56:48.477Z',23,2,'breanna-senger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (131,'Qui ipsum et similique maxime repudiandae porro consequatur. Possimus quas dicta consequuntur sit dicta omnis nisi. Dolor dolorem occaecati ut reiciendis est ipsam voluptates.','2020-02-22T18:23:12.433Z',23,5,'eliane'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (132,'Earum rerum optio consequatur quod est sit eveniet. Sint sit ut molestiae fuga saepe. Dolor odit voluptatem et voluptatum quam. Ipsum nulla soluta dolorem.','2018-03-25T20:10:19.601Z',24,4,'veda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (133,'Quia soluta aut itaque rerum fugiat mollitia id reprehenderit. Sit consectetur accusamus quaerat est. Necessitatibus voluptas nesciunt voluptatem ut qui. Molestias consequatur sed deserunt voluptatem. Velit sed eum praesentium qui et et ea.','2017-07-24T00:08:29.879Z',24,5,'aletha-raynor'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (134,'Eligendi sequi quibusdam esse qui fuga provident deleniti. Quaerat doloribus qui et. Facilis illo tempore ex. Et libero ea impedit. Odio eaque odio assumenda est et quia.','2017-05-17T15:21:00.482Z',24,2,'malcolm'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (135,'Maxime nemo omnis architecto. Doloremque sed aliquid dolor expedita aut quis. Exercitationem quis maiores qui dolores quam et provident. Eum consequuntur culpa vel sit ducimus nostrum. Commodi officia qui non fugit architecto sed provident tempora.','2019-10-13T11:27:50.725Z',24,2,'jany'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (136,'Repellendus occaecati et alias quod illum et. Ut tenetur hic quis sed non. Perspiciatis cupiditate quia cupiditate dolores minus. Dolor sed dignissimos delectus ut cum.','2019-04-15T17:32:56.424Z',24,4,'lazaro-walsh'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (137,'Ducimus dignissimos sint et consequatur enim est aut. Eaque et eum enim adipisci. Quae eos sed a.','2020-02-03T11:15:53.031Z',24,3,'nova-boyle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (138,'Odit veniam sed est perferendis odit aut recusandae. Non autem commodi praesentium voluptas. Vel illo eius voluptas culpa molestiae sapiente. Omnis quae alias sequi voluptatem et blanditiis hic. Nesciunt aperiam non occaecati atque.','2018-04-26T21:07:42.778Z',24,4,'guy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (139,'Non laboriosam quaerat illum dicta perspiciatis tenetur perferendis. Quod inventore quis qui totam quo quae sit. Eveniet consequatur adipisci similique qui sunt.','2020-01-30T14:01:12.262Z',27,2,'celestino.padberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (140,'Et quo sit eius labore. Alias qui cum id in officiis. Vero quos ipsam rerum fugiat. Illo porro dolorem similique culpa similique.','2017-10-23T19:05:24.450Z',29,4,'victoria-kunde'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (141,'Consequatur commodi soluta nesciunt sed doloremque ea impedit impedit. Dolorum nemo in accusamus laboriosam sunt. Et minima nulla officia non debitis provident placeat atque.','2018-07-28T23:47:14.169Z',29,4,'vita'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (142,'Illum sit eum molestias error velit. Et molestiae unde consequatur. Ducimus itaque tempore est.','2020-02-14T02:28:38.050Z',29,5,'alexander'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (143,'Aperiam repellendus odio accusamus. Ut vel accusamus excepturi cum quibusdam necessitatibus. Ut voluptas repellendus quo nam et aperiam explicabo distinctio. Debitis excepturi perspiciatis delectus dolores eaque nemo voluptates.','2018-10-18T11:37:52.786Z',29,4,'maegan-harris'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (144,'Voluptas voluptas dignissimos ad voluptatem quaerat aut cum. Necessitatibus labore sed distinctio amet et rerum. Adipisci omnis omnis fugiat et suscipit nostrum consequatur libero. Id adipisci assumenda voluptates sunt reiciendis est quia. Similique blanditiis excepturi ea.','2018-03-04T09:00:07.804Z',29,5,'estefania.larkin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (145,'Cumque dicta quis cum in. Et harum est et velit nesciunt ut. Aut excepturi temporibus quis qui explicabo.','2018-07-20T08:07:12.788Z',29,5,'eino-lehner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (146,'Et expedita sapiente non repudiandae tempora vitae. Asperiores in nemo exercitationem nobis et autem voluptatem soluta. Omnis a nostrum repellat doloremque repudiandae quaerat at inventore.','2019-08-06T18:32:33.677Z',30,5,'creola.moen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (147,'Qui quidem quae sed delectus id aliquam et et. Possimus numquam asperiores consequuntur dolorum velit aliquam. Qui qui molestiae libero odio a fugit. Illo earum recusandae quia consequuntur minima occaecati eum est.','2018-11-04T18:24:22.713Z',30,4,'virginia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (148,'Expedita accusantium sint voluptatem unde est. Consequatur autem animi suscipit ea aut. Qui velit nihil odio est repellendus reiciendis magnam.','2019-10-30T13:28:45.978Z',30,4,'noemy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (149,'Quibusdam sequi necessitatibus nihil quas cum aut et. Dolor officia quos accusantium ipsum est quia. Cum voluptatem possimus illum voluptas.','2018-03-27T08:06:03.602Z',30,2,'corene-okon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (150,'Quis unde laboriosam consequuntur animi sit qui dolores. Consequatur illum labore dolores veniam aut reiciendis necessitatibus. Saepe recusandae nam quibusdam non optio odit repudiandae voluptas. Inventore quod debitis explicabo ex debitis similique.','2020-01-20T20:54:09.205Z',31,5,'gabe.watsica'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (151,'Veniam aperiam ipsa consequuntur id nobis eum. Et aut sequi sit. Quia repellat sed eligendi. Ad aut libero iure ullam.','2018-12-27T07:40:16.158Z',31,4,'madge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (152,'Nemo iure consequuntur at quia labore rerum iusto ea. Natus sit natus beatae ratione quaerat excepturi. Rerum quisquam occaecati quam consequatur pariatur.','2020-01-26T05:02:32.087Z',32,4,'elsa-ruecker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (153,'Amet qui consequatur consequuntur quia animi. Aut eos impedit consequatur quibusdam aliquam quasi. At molestiae delectus id. Mollitia sed quisquam pariatur possimus labore.','2020-02-13T05:59:06.336Z',32,3,'jean'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (154,'Eos porro quasi occaecati nam et et. Porro temporibus quis doloribus quo dolores eum. Ad et et id.','2019-03-20T01:12:24.825Z',32,5,'ward-armstrong'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (155,'Suscipit autem enim laudantium aut laboriosam. Autem exercitationem delectus sunt voluptatibus rerum. Sint sapiente deleniti est.','2019-04-09T18:48:42.358Z',32,4,'vincenzo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (156,'Sunt in voluptas omnis et dolore. Et fugiat nihil et dolor molestiae occaecati. In quas cumque voluptatem vel iure et consequatur culpa. Eius incidunt aut voluptatum omnis rem.','2019-03-15T15:49:13.255Z',32,4,'darren'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (157,'Sapiente autem sed accusantium enim ipsam veritatis aut. Sunt eius molestiae sed. Nesciunt asperiores laborum omnis perferendis dicta est.','2018-09-15T16:45:33.395Z',32,4,'zander'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (158,'Veniam expedita delectus a porro ullam deleniti. Vel voluptas sint maxime sint est repellat accusamus consequatur. Reiciendis deleniti impedit non sunt qui. Numquam sit repellendus nam possimus rerum.','2016-11-06T12:12:53.603Z',33,4,'glenda.bernier'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (159,'Ut et quia sint. Sed repudiandae assumenda aspernatur. Neque ipsum incidunt possimus voluptates ut dicta ab. Dolores facilis nostrum aut sunt autem. Sint impedit et recusandae dignissimos distinctio voluptas.','2016-06-08T08:54:57.329Z',33,2,'anna.wiza'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (160,'Fugit ut accusamus eaque. Sequi ad vel vitae iure adipisci eos eligendi maiores. Dicta minima minus commodi ea reprehenderit. Voluptatem aspernatur eum sit dolor veritatis aut.','2017-04-07T23:14:36.659Z',33,1,'cristopher'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (161,'Explicabo rerum neque nam dicta tenetur nisi aut natus. Eum aut dolore voluptatem nemo labore aut non molestias. Delectus eos velit est quaerat. Qui voluptas molestias recusandae dolores. Consequuntur consectetur quas possimus non est expedita et.','2019-06-16T14:34:58.426Z',33,4,'matilde-trantow'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (162,'Distinctio recusandae non officiis. Dignissimos sunt est est hic odio alias omnis. Cumque eos sunt explicabo.','2019-08-01T11:26:44.252Z',34,4,'brayan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (163,'Dolor consequuntur natus quidem placeat voluptas sed velit. Perferendis est ut non. Accusamus et soluta id architecto ullam nemo laboriosam dolores. Quam iusto amet velit et.','2017-05-12T21:19:09.670Z',34,5,'stone'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (164,'Itaque autem rerum aspernatur rerum qui quasi et veniam. Est ipsum adipisci labore. Inventore ratione recusandae ut vel earum. Maxime hic ex dolor at culpa excepturi deserunt. Facere esse commodi natus et est.','2017-02-18T03:58:34.193Z',34,1,'dorcas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (165,'Temporibus atque vel dolor incidunt. Ipsum quia aliquid numquam qui. Nemo non sed molestiae illo blanditiis minus dolores. Sunt quis repellendus nobis. Necessitatibus excepturi eius mollitia.','2020-02-07T00:32:11.867Z',34,5,'aimee-lindgren'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (166,'Cupiditate recusandae qui vel quaerat. Placeat aut enim voluptates totam et et nihil vero. Quo mollitia incidunt qui id.','2016-11-20T04:33:14.780Z',34,4,'gina-kunze'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (167,'In sit delectus nesciunt enim rerum explicabo pariatur. Quia ipsa culpa distinctio id quae numquam voluptatum. Ea sapiente non aliquid atque. Sit consectetur corporis eveniet in.','2018-10-20T10:46:07.285Z',34,5,'amani'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (168,'Sint illum quibusdam sed facere ab officiis omnis. Expedita cum eligendi maxime nemo facere et. Nulla ut voluptatem eum nostrum sit.','2017-09-13T05:38:13.116Z',34,5,'katelyn.mohr'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (169,'Optio sed sit deleniti voluptate deleniti. Ea odio nisi odio. Soluta error quo officiis omnis quis repellat occaecati harum.','2018-07-26T06:07:48.244Z',35,4,'sydnie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (170,'Animi omnis ut tempore alias ducimus repellat dolorem quo. Delectus deserunt ratione voluptatem ea nostrum. Repellendus nihil rerum tempore repellendus minus sequi qui. Voluptatem rerum mollitia reiciendis ipsum ipsam.','2019-11-15T23:59:15.237Z',35,5,'jacynthe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (171,'Delectus quos qui itaque incidunt recusandae. Quae ea sit exercitationem quia impedit. Et voluptates explicabo velit velit. Reiciendis consectetur recusandae consequatur in.','2017-09-16T05:10:09.763Z',35,1,'naomie.cronin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (172,'Dolores quaerat nulla magni ut. Deleniti aut facere excepturi ducimus. Repellendus modi sunt molestias laboriosam dolorem ab.','2018-08-22T03:02:06.417Z',35,4,'jolie.lehner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (173,'Doloremque voluptate et laboriosam qui impedit autem. Qui cupiditate sed quaerat cupiditate quos in animi. Suscipit veritatis cupiditate ea quia. Delectus accusamus eligendi similique debitis officiis reprehenderit.','2019-09-19T15:00:02.400Z',35,4,'malika-shanahan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (174,'Architecto aut qui atque et. Exercitationem et magnam nulla aliquam optio autem natus. Consequatur aut rem itaque sit quibusdam vel tenetur fugit.','2016-12-30T01:04:01.709Z',36,4,'jaclyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (175,'Quis ab quibusdam fugiat quod consequatur. Quibusdam nihil beatae voluptatum ipsum aut non et. Deserunt sit voluptate aut quia aut. In et architecto rem at sit assumenda nihil hic. Aut qui et fugit deserunt sed rerum dignissimos voluptatum.','2019-01-24T23:23:16.485Z',36,4,'lesly-wolf'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (176,'Et esse nam quo culpa et atque. Non sit nisi qui molestiae inventore. Cupiditate voluptatem unde quis provident voluptatem. Est voluptatibus porro aspernatur eius similique ex unde. Non dignissimos id eius facilis.','2019-11-07T06:39:56.800Z',36,4,'yasmine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (177,'Voluptas dolor quia animi distinctio officiis. Architecto dolorum doloribus quasi quo id laborum. Maxime omnis eligendi debitis est rerum.','2020-02-09T16:32:56.839Z',36,5,'stephany'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (178,'Iure quae ut sapiente. Sit et cumque eos. Distinctio aliquid architecto sint ut qui laborum. Quasi quia architecto voluptate quis maxime minus architecto.','2018-05-24T02:41:13.694Z',36,4,'dax-hills'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (179,'Cum nihil mollitia magnam voluptatem dolores aliquam magni eos. Necessitatibus omnis aliquid in ex. Aliquid eos sapiente commodi tenetur enim sed eligendi.','2020-02-21T01:06:42.955Z',36,3,'novella'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (180,'Et corrupti est itaque rerum sit ex quia. Vel consequuntur omnis sint voluptatem impedit. Nesciunt beatae quo optio.','2016-11-05T10:47:03.697Z',36,5,'raina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (181,'Laudantium rerum unde tenetur voluptatem est. Et et quam cupiditate. Laudantium libero et ut et rerum harum et. Alias non nisi consequatur iste voluptatem et necessitatibus. Quidem fugit eius qui et debitis.','2020-03-10T22:40:21.875Z',37,4,'domenica'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (182,'Quisquam vel ut iusto ducimus similique ut. Aperiam illum sit sint aperiam. Asperiores dolorem fugiat nam laudantium enim. Est reprehenderit rerum fuga nihil sed labore sit. Distinctio omnis saepe numquam consequatur veniam aut.','2020-03-15T07:27:31.540Z',37,1,'hollie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (183,'Distinctio aut blanditiis voluptatibus sequi a. Enim sint quae quas. Quidem modi alias a excepturi. Animi asperiores culpa harum magni.','2019-12-04T09:29:24.064Z',37,5,'ruthe.homenick'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (184,'Amet id inventore exercitationem sunt repellat tempore et. Non labore eligendi est. Et corporis repudiandae accusamus. Est et omnis necessitatibus non consequatur voluptatem molestiae.','2019-09-09T17:30:17.274Z',37,1,'selina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (185,'Nesciunt ad quas omnis debitis sunt perferendis sed necessitatibus. Veritatis qui quo doloremque rerum quas cumque iusto sit. Soluta itaque veritatis rerum dolor. Maiores id quod tempora perspiciatis aut. Cupiditate consequatur eos ipsum animi ducimus optio et aut.','2019-11-21T02:25:50.402Z',37,3,'clifford.olson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (186,'Alias sit vitae incidunt sit rerum. Nemo mollitia neque illum minus id et quo sunt. Vel qui harum consequatur ratione ut. Laborum iusto voluptate illo. Laboriosam tempore iusto eligendi voluptas aut sit.','2019-05-15T23:05:52.361Z',37,4,'jodie.schuster'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (187,'Nihil quisquam et ad temporibus. Reiciendis inventore et tempore cupiditate et at. Consequatur qui rerum ipsa placeat. Omnis unde voluptate officia id atque. Provident voluptas aut sint consectetur unde non recusandae aut.','2020-01-05T11:17:46.212Z',37,4,'bruce'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (188,'Voluptates debitis quidem cum et quis officiis dolorum. Sed hic quia optio voluptas nobis iusto et. Enim facere rerum sit soluta.','2019-04-16T13:19:00.747Z',37,4,'vilma'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (189,'Excepturi nam iure quis. Maiores et voluptas aut aut architecto maxime. Dolores totam ducimus suscipit consequuntur ut qui facilis rem. Nemo sint quae voluptatem architecto.','2020-02-02T06:10:15.678Z',37,4,'murphy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (190,'Modi rerum ut et. Non consequatur laudantium quia. Asperiores incidunt sed debitis architecto quidem.','2018-06-05T14:27:38.891Z',38,4,'pattie-bartell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (191,'Ex quibusdam est sit quibusdam facere tenetur molestiae rem. Repellat quas nisi deleniti doloremque laborum totam. Sequi est et est quidem aut et impedit. Ut explicabo porro veniam repellat necessitatibus. Esse aliquam dolore porro sit dolorem dolorem.','2019-06-11T12:59:08.530Z',38,5,'jazmin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (192,'Dicta voluptates et quaerat perspiciatis. Aut repellat aut molestias sed doloribus omnis. Quae soluta non natus. Debitis vitae nisi pariatur nostrum ab.','2019-06-05T22:08:14.252Z',38,2,'susanna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (193,'Inventore ex officia qui. Eos et excepturi eligendi eos eum natus. Inventore aut vitae officia et consequatur qui. Vel aut harum animi velit.','2020-01-26T09:10:34.336Z',38,4,'vivienne.nikolaus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (194,'Aut placeat a tempora ullam. Autem quibusdam est ea deleniti. Quam fugiat iure aperiam fugit non. Facilis omnis quasi omnis dolores facilis excepturi voluptas. Qui nemo consequatur nihil harum nihil aspernatur.','2019-11-08T07:19:53.498Z',38,4,'ara'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (195,'Sapiente voluptatum in perspiciatis eaque. Ex et labore minus at voluptatum. Nesciunt quod porro aut officia. Nisi officiis velit totam ex enim atque ut quasi. Consectetur repellat unde minima et non.','2019-12-18T23:21:30.224Z',39,4,'summer.waelchi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (196,'Placeat veritatis rem ut perferendis sit consequuntur culpa quam. Aut ad voluptatem modi delectus ex enim. Aut consequatur iste hic quos commodi et enim.','2020-01-02T04:50:13.349Z',39,5,'maximillia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (197,'Ipsam autem aspernatur fugit. Reiciendis beatae ab est odio id accusantium a. Vero odio harum voluptatem.','2019-07-26T18:28:14.921Z',39,4,'zachery'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (198,'Voluptate nisi velit officiis. Aut omnis voluptatem sit. Qui voluptatem ratione sint provident dolores aut. Vitae reiciendis dolorum corporis quod et saepe.','2020-03-13T17:29:20.205Z',39,3,'lauren-brakus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (199,'Commodi sunt illo et eligendi est. Amet optio rem totam quo consequatur dignissimos et consequatur. Est tempora nemo non quasi.','2019-10-17T04:51:27.625Z',39,5,'jocelyn.mcglynn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (200,'Voluptatem sit nemo suscipit sunt autem neque fuga. Ipsum voluptatem nulla totam doloremque omnis. A pariatur velit vero architecto magnam est sint minima. Est consequatur possimus non voluptatibus ut ipsum sint. Quos earum autem hic reiciendis consectetur illum.','2019-10-30T13:18:50.225Z',39,4,'holly'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (201,'Omnis sint vel odit dolorem nihil eos quia. Sit qui totam illo placeat. Ut aut repellendus dolores a.','2019-12-03T20:19:46.460Z',39,5,'thalia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (202,'Doloribus impedit quod velit et qui et. Id alias optio ea. Consequatur quibusdam ipsa aliquid dolor qui magnam necessitatibus quis. Harum velit ea aut voluptas ea qui placeat. Non deserunt fugiat itaque suscipit impedit.','2020-03-20T19:38:11.387Z',40,4,'rebeca'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (203,'Adipisci minima adipisci illo sunt dignissimos dolorem ipsa sint. Est maxime itaque ullam necessitatibus ab temporibus. Nihil dolorem nostrum placeat unde sapiente. Dignissimos aut dolorum occaecati vel cum enim. Ea aperiam eveniet quam eum voluptas harum est debitis.','2019-07-11T12:11:11.829Z',40,4,'lennie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (204,'Error unde quasi quo. Laborum dolorem esse perferendis iste aut. Voluptates maiores ut voluptas rerum tempora doloribus libero. Et iusto occaecati temporibus libero ut sint ut.','2018-12-10T07:16:27.930Z',40,4,'otilia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (205,'Culpa aut doloribus voluptas. Unde quas occaecati nesciunt eum occaecati. Magni consequatur enim ipsum culpa.','2018-11-01T10:01:49.883Z',40,5,'eli'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (206,'Officiis ad odio magnam enim accusantium exercitationem. Quo eum laboriosam quis ex. Non ut sint et. Voluptas itaque quod rem labore. Tempore reiciendis et magnam.','2019-09-26T23:38:23.537Z',40,4,'cortney'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (207,'Delectus non aut est et dolorum. Non et sint amet eius ad qui aut et. Reiciendis consequuntur omnis minus non esse. Commodi blanditiis minus suscipit aliquid sint aut soluta rerum. Eos id ut quasi.','2018-10-08T10:14:59.040Z',40,5,'rod.beer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (208,'Eum ut aut architecto dignissimos ea rem qui eos. Quis aut ea totam consequatur alias ut error. Facere et est omnis dolorem voluptas. In nam corporis vel. Expedita molestiae consequatur voluptas quia doloremque.','2019-12-29T04:11:49.123Z',40,4,'lester.welch'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (209,'Voluptatum sed voluptas architecto architecto qui ipsam. Quos itaque voluptas dolores. Deserunt laudantium recusandae incidunt eveniet sed quia sint quaerat. Ea harum sit temporibus dolorum dolores non quod.','2019-12-16T21:00:41.747Z',40,5,'otha.wolff'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (210,'Omnis enim aut quos est. Ea earum aspernatur voluptatem. Qui occaecati omnis reprehenderit temporibus. Nobis veniam veniam est quam. Optio sit eos repellendus sed eos.','2019-03-17T14:04:05.369Z',40,5,'porter'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (211,'Amet iste eveniet et culpa eos eveniet. Dolore consectetur architecto ea. Qui fuga sequi corrupti. Non et est rerum et rem voluptates temporibus voluptatibus. Dolorem sapiente et quos quidem.','2020-04-14T13:29:00.067Z',40,5,'giovanna.schiller'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (212,'Sed unde error quidem. Ipsam et iste distinctio nesciunt voluptas. Alias aut sint commodi at et.','2019-12-24T17:30:47.781Z',40,1,'earline'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (213,'Ut porro voluptatem ea. Deserunt enim dignissimos aut vel eveniet minus. Alias aliquam eius eum commodi eaque saepe reprehenderit.','2020-01-08T10:59:19.756Z',40,1,'deshaun.bergstrom'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (214,'Quasi accusamus quaerat sunt. Deserunt atque ratione qui sed dolores. Amet quasi facilis molestiae aut sed ut. Omnis rem optio sequi aliquam aliquid expedita ut.','2019-07-14T16:17:08.939Z',40,4,'keshaun-renner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (215,'Laboriosam et vero consequatur. Nisi et ratione sapiente perspiciatis impedit. Sed beatae ut beatae.','2019-09-15T11:47:42.674Z',41,4,'garrick.durgan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (216,'Architecto culpa sapiente doloremque voluptas dolorem ipsum est corrupti. Laboriosam maxime aut quisquam sint non et perspiciatis. Dolorem reprehenderit soluta consequatur quia excepturi delectus. Ratione earum consequatur ea qui ut vel.','2019-10-06T16:35:49.211Z',41,5,'alexandrine.rippin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (217,'Sed molestiae saepe est enim rerum eaque cupiditate. Laudantium eos neque ullam placeat eius maxime corrupti consequatur. Distinctio ullam vitae ut rerum.','2019-02-14T05:12:08.593Z',41,4,'keara'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (218,'Veritatis fugiat et repudiandae et aut qui qui inventore. Et voluptas ad laboriosam voluptatem ut ipsam. Consequatur et consectetur quo sapiente eos magni laudantium consequatur. Quo est quis ut quo molestias eaque odit quaerat. Et dolorum nulla id ipsam quos aut enim.','2020-03-17T00:51:26.238Z',41,4,'ryley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (219,'Qui et consequatur nihil id rerum. Beatae blanditiis quam ut. Provident a recusandae minima aut incidunt ratione a. Ratione corrupti ex adipisci harum est voluptatum asperiores magnam. Omnis facilis ea dolorem cumque velit.','2018-09-22T14:41:25.089Z',42,5,'charlie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (220,'Animi libero dolorem ex velit sed autem recusandae. Alias ipsa tenetur aut fugiat. Itaque reiciendis quibusdam hic hic. Facere et enim provident.','2017-12-02T09:55:46.407Z',42,3,'frank'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (221,'Voluptatem officia pariatur voluptate. Recusandae voluptates voluptatum maiores. Doloremque beatae dolore corrupti. Sunt voluptatem et possimus dolorum. Repudiandae ut eaque placeat sapiente quia eos voluptatum aut.','2020-02-11T03:17:23.794Z',42,5,'britney'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (222,'Velit exercitationem neque perspiciatis quo tempora ut dignissimos molestias. Et ratione est deleniti eaque dolore delectus. Ab accusantium et vel fuga. Amet sit amet a aliquid praesentium ut laboriosam. Praesentium nisi enim et dolores nulla voluptates ratione.','2018-10-10T13:25:21.086Z',42,2,'benny.schowalter'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (223,'Laudantium doloribus dolore assumenda ex non totam. Corrupti aut pariatur ut libero. Dolores laboriosam excepturi hic ut voluptates et natus. Excepturi et nemo ut a numquam libero. Asperiores aliquid velit quis veritatis repellendus aut.','2017-09-05T22:41:34.789Z',42,4,'johathan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (224,'Et voluptatem dolorum consequuntur quam quas iste. Unde excepturi et odit. Vel est pariatur quia corrupti nihil.','2017-08-25T07:45:34.691Z',42,5,'vena.rosenbaum'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (225,'Nesciunt qui doloremque voluptas nulla officia. Harum esse ea nihil architecto. Laborum iusto enim beatae rerum quo enim qui dolorem.','2017-11-23T08:35:48.457Z',42,4,'karine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (226,'Vel voluptatem porro atque voluptas est dolorem. Delectus sed voluptas culpa dolor adipisci cumque. Harum iusto non assumenda. Optio sit repellat sunt pariatur consequatur ea.','2018-06-12T08:26:06.070Z',42,4,'javon-donnelly'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (227,'Et laudantium perferendis et sed voluptatem facere non vitae. Non velit et sit et vel harum. Nam voluptatem nihil nobis ut tempora. Voluptas ipsum et odit qui quia.','2017-03-31T14:43:49.893Z',42,4,'edgardo-cronin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (228,'Ut id magnam dolore incidunt enim qui voluptates. Hic eos non pariatur est. Iure temporibus fuga qui debitis dolor. Ut enim quo quae. Rem rerum eum ratione dolor mollitia rerum sit.','2019-03-30T12:14:21.841Z',43,4,'kaylah'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (229,'Id voluptatem nemo quae facere culpa enim. Sed rerum accusantium quae. Velit ea quo nam mollitia amet expedita. Sed praesentium similique quis voluptates dolorem vel dignissimos.','2017-11-16T04:28:21.727Z',43,4,'waino-funk'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (230,'Sed quas vel dolor similique. Voluptates vero eveniet qui necessitatibus velit. Nemo sunt error et et culpa. Iste consectetur veniam voluptatibus esse sed voluptate qui.','2019-03-12T14:58:49.633Z',44,4,'rylan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (231,'Dolorem dolores deleniti expedita animi vel sapiente ut molestiae. Ut eum velit velit nostrum. Eum quis et nobis dicta dicta.','2017-09-18T15:09:15.272Z',44,5,'shad'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (232,'Neque dolor dolor ullam. Ut magnam sit quaerat non eum aliquam id officia. Repellat in eum officiis asperiores consequuntur quis et enim. Commodi similique molestiae ad.','2019-09-30T15:40:53.945Z',44,5,'mireille'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (233,'Temporibus minus sequi consequatur quis et vel. Ipsum ut eos enim fugit molestiae consequatur nostrum. Qui atque soluta at molestias exercitationem perferendis labore. Praesentium laboriosam pariatur suscipit earum aliquam tempore. Laboriosam est sit accusamus nostrum placeat.','2017-03-21T13:11:16.020Z',44,2,'verdie.moen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (234,'Vel quam consequatur quo est nisi eum laudantium. Dolor corporis sequi autem. Beatae et occaecati autem sed sequi dolorem nobis.','2018-06-18T22:14:11.624Z',44,3,'jalon.bauch'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (235,'Distinctio tenetur sequi excepturi sunt aut et. Ratione qui harum illum ducimus error blanditiis laborum. Iste at eos porro facere enim exercitationem qui. Nostrum qui accusamus impedit aspernatur voluptatem quasi fugiat.','2018-07-05T18:35:53.705Z',44,5,'neha'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (236,'Et magnam autem quae nihil quia debitis est. Suscipit quia odit voluptatem id. Numquam magnam maiores quia vel fugiat est omnis. Unde explicabo consectetur qui mollitia qui aspernatur.','2019-05-06T11:57:53.249Z',44,4,'dejah-ondricka'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (237,'Quod accusantium qui itaque aut optio. Reprehenderit est quo beatae. Qui totam voluptatum nisi a qui est repellat. Quia voluptatibus dolor veritatis minima. Magni nostrum ex rerum omnis omnis.','2019-04-02T15:45:36.848Z',45,2,'jonathon.rutherford'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (238,'Repellendus sint ut qui. Praesentium officiis eligendi ut. Sit aut id velit voluptatem vero. Dolor vel aut est consequatur omnis tempore.','2019-06-01T04:27:33.743Z',45,4,'vivienne-frami'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (239,'Inventore eos aut error commodi dolor quasi id sunt. Ab consequatur eligendi et aliquam et. Laborum similique omnis ab harum.','2018-11-06T09:23:59.664Z',45,1,'filiberto-considine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (240,'Modi quibusdam aut cumque animi consequuntur sapiente. Ratione eligendi nostrum perferendis qui quia rerum. Eos quia veniam ducimus est perferendis iste quo.','2019-02-02T19:47:40.714Z',45,1,'abdul.spencer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (241,'Nesciunt qui vel voluptate repellendus sunt consequuntur voluptatem ut. A quo quia omnis laudantium enim et. Aut nobis culpa iusto perspiciatis. Aperiam sit illum enim odio perspiciatis consequuntur odio sit. Maiores qui molestias doloremque et minus.','2017-08-04T23:33:23.001Z',45,4,'lincoln.corkery'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (242,'Et voluptate ut magnam aspernatur. Cupiditate a eos nihil harum distinctio voluptatem qui quasi. Laborum aut nostrum rem odit.','2016-06-06T08:07:04.209Z',45,3,'jewell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (243,'Odio ullam voluptas quas neque vel eum. Autem voluptatum magni dignissimos rerum quos labore. Voluptatem facilis odit est.','2016-12-17T02:39:08.938Z',45,4,'evert-prohaska'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (244,'Facere vero doloribus aperiam inventore consectetur eum. Rerum fugit laudantium voluptates consequatur qui. Consectetur molestiae deleniti velit quasi enim ut nobis. Est veritatis autem ea distinctio laborum facilis. Voluptas et quas labore sapiente minima inventore omnis.','2016-10-24T12:03:04.282Z',46,4,'germaine.littel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (245,'Et ut deleniti perferendis. Iste doloribus illo quis reprehenderit assumenda quo. Est quos voluptatibus ipsam. Maiores excepturi deserunt et ut praesentium aliquam est quidem. Tempora nam nulla laborum id.','2017-04-14T12:37:20.341Z',46,4,'joel.hartmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (246,'Dolorem atque aut in id explicabo nulla nesciunt. Laudantium aliquam aut iusto consequuntur voluptas et adipisci quia. Unde reiciendis voluptatem ab. Cumque qui quis iste aut architecto. Harum explicabo nihil impedit cupiditate aut dolor eveniet.','2018-07-19T05:29:29.839Z',46,4,'rylee-wisozk'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (247,'Placeat rerum aut omnis excepturi quos sapiente ea. Optio velit voluptatum numquam eum distinctio ea dolores. Voluptatem at et sit pariatur voluptatem. Est libero autem architecto expedita expedita aut.','2019-05-23T09:43:54.997Z',46,4,'zetta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (248,'Non qui exercitationem iure aperiam aliquid qui aut. At velit velit exercitationem rem deserunt et sunt. Repellat perspiciatis porro sit quia.','2019-04-10T03:16:07.740Z',47,4,'shakira.considine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (249,'Qui suscipit natus vel eum vel recusandae. Natus perspiciatis dolorem libero ipsum nostrum. Reiciendis ipsa voluptatem quasi tempora voluptate.','2019-05-17T18:56:18.495Z',47,4,'lillie.kub'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (250,'Voluptatem voluptatem odio aut voluptatem. Velit inventore eveniet rerum adipisci et blanditiis illum. Blanditiis iure veritatis beatae enim. Sapiente quia corporis et quaerat enim.','2018-03-01T18:04:50.665Z',47,5,'kristy.bernier'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (251,'Quia magnam eum adipisci voluptatem. Eveniet animi enim id vitae sunt ex. Sit beatae qui voluptatem sit vero.','2019-09-01T04:14:41.528Z',47,4,'rafael'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (252,'Sunt quia quis vel sit sit neque nihil. Natus voluptas hic sit veniam. Expedita tempore aut vel ullam impedit est. Vitae impedit ut qui dicta omnis dolorem quia.','2019-05-29T06:11:56.534Z',47,5,'pat'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (253,'Quisquam autem quisquam neque odit odio et expedita. Accusantium ea praesentium nostrum odio qui. Aliquam aut sint sit eveniet quae voluptas suscipit blanditiis.','2018-02-19T18:37:30.157Z',47,4,'ciara'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (254,'Est blanditiis et aut vitae. Neque autem voluptatum voluptas ut quis dignissimos aut nobis. Est deserunt aut quae quisquam impedit voluptates. Possimus et quos aspernatur aut sapiente.','2018-09-23T00:44:35.501Z',47,4,'dean'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (255,'Voluptatem deserunt ut sint magni necessitatibus ex non ut. Ipsum soluta sint veritatis. Modi accusamus illum aut rerum voluptatem sed quis. Eius sed quis voluptas quis et maiores laborum.','2018-11-11T10:37:45.058Z',48,5,'obie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (256,'Aliquam sit voluptatem aliquid totam voluptates. Laudantium cupiditate molestias vitae. Beatae odio et sint. Adipisci sint laboriosam rerum eveniet voluptatibus illum.','2019-11-17T05:32:04.524Z',48,4,'thurman-grady'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (257,'Et voluptatem temporibus sed ut. Soluta quis magnam nemo. Dolores dolorem nisi est ad velit. Quo sequi non dolorem nam ab omnis ipsam. Enim enim pariatur recusandae accusamus.','2019-10-31T04:06:03.816Z',48,2,'shyanne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (258,'Eligendi autem consequatur commodi. Accusamus omnis illo commodi. Repellendus ad minima dolore pariatur at.','2019-07-20T20:44:07.311Z',48,1,'isabelle-rowe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (259,'Tenetur aut provident ullam voluptatem vel. Sit delectus aut rem magnam voluptatum et quos. Quaerat ratione aspernatur quia sint.','2019-10-16T07:52:12.842Z',48,5,'tomas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (260,'Dolores est atque dolores quis qui. Quas velit provident blanditiis laudantium reprehenderit repellendus. Nesciunt doloribus quo delectus voluptas ea repellat. Dolor accusantium ipsum est.','2019-05-15T13:25:23.778Z',48,4,'heidi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (261,'Impedit impedit aspernatur fugiat quos. Molestiae excepturi praesentium voluptatem perspiciatis ut nobis ut enim. Qui eveniet neque aliquam dolorem quod harum libero dolores. Quisquam ut eum dignissimos libero est voluptatibus. Vero magnam facere qui cum.','2018-04-17T18:28:27.369Z',48,5,'carlo.labadie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (262,'Sit iste sed aspernatur consequatur dolor. Culpa delectus facere ut eos vel tenetur quam. Eveniet sit reiciendis est adipisci laboriosam. Enim corporis non maiores quae non totam. Aut voluptatem asperiores mollitia qui sit explicabo aut qui.','2018-05-02T02:54:48.572Z',48,5,'gerardo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (263,'Nesciunt voluptatem ullam magni. Quae ea iste reprehenderit et suscipit quia ut explicabo. Omnis consequatur laborum provident sapiente sit aliquid facilis.','2019-09-25T22:03:57.423Z',48,4,'allene-feest'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (264,'Maxime voluptatibus doloremque cum. Velit et quo asperiores sit sunt doloremque. Natus ut eligendi laboriosam minima quas animi.','2018-02-25T04:04:13.268Z',48,2,'ansley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (265,'Deleniti possimus vero sint. Nesciunt natus vel repellendus officia assumenda. Rerum omnis quibusdam quidem veniam eos id. Aut quisquam alias dolorem expedita voluptatem in magnam.','2019-03-20T02:43:04.826Z',48,2,'delmer.tremblay'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (266,'Totam unde eius odio. Doloribus sed dolor incidunt iste consequatur. Adipisci id laborum eum. Cumque id magni numquam.','2020-03-17T05:38:56.175Z',48,1,'edythe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (267,'Voluptatem illum quasi eum id voluptates. Aut vel expedita distinctio corporis sed ipsa. Sed voluptatibus facere fuga quia. Deleniti qui inventore quos sed.','2018-02-03T03:53:29.947Z',49,4,'adonis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (268,'Natus sequi dolorem omnis cumque eum laudantium aut. Quo eius voluptatem nobis doloremque harum nobis quaerat. Inventore ut sapiente dolores sed reiciendis ut aut asperiores. Neque est quisquam dolores hic ratione repellat.','2018-02-18T14:41:26.671Z',49,2,'alex'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (269,'Distinctio est ut ipsum quo. Quisquam illo eveniet aut laborum veniam. Quo id quo ut consequatur. Vel dolores commodi incidunt sapiente maxime.','2018-08-28T11:08:17.245Z',49,5,'wiley.bahringer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (270,'In praesentium cupiditate ex velit nemo. Et nostrum aspernatur suscipit. Praesentium exercitationem id at nihil.','2017-11-04T09:46:30.940Z',49,4,'antone.dooley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (271,'Nam et modi recusandae recusandae soluta in accusantium. Et ea placeat tempore cumque dolorem aperiam eligendi est. Omnis mollitia delectus illum commodi.','2019-09-25T11:18:56.286Z',49,2,'ariel-rolfson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (272,'Ullam ducimus modi quam nisi rem autem. Molestias ut unde est sunt soluta dolor quis. Non quos vel laborum velit similique voluptate.','2018-12-30T14:55:45.636Z',49,5,'dewitt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (273,'Suscipit qui vero voluptas aut culpa. Magni aliquid fugit repellendus illum doloribus occaecati aspernatur. Sint error ut vel.','2019-06-10T08:25:33.637Z',49,4,'hassie.dibbert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (274,'Possimus maxime laboriosam animi ipsa non sapiente voluptatem adipisci. Impedit modi voluptatem dolor ex deleniti sed. Doloribus omnis in eius eos.','2020-01-21T01:02:34.656Z',49,4,'alize'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (275,'Corporis itaque impedit eligendi nemo aut adipisci et quasi. Est vero est enim placeat iure. Fuga inventore mollitia numquam sed dolorem.','2019-09-20T19:47:31.524Z',49,4,'jaden'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (276,'Officiis optio quasi placeat aliquam excepturi illo dignissimos. Esse veritatis vitae voluptate veniam. Quia dolorem repudiandae magni enim corporis quidem eum. Sit et laboriosam excepturi. Similique sed quae consequatur.','2017-11-29T14:00:56.186Z',49,4,'bobby.hartmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (277,'Repellendus quibusdam aperiam occaecati dignissimos consequatur mollitia unde. Et libero vitae est vel. Molestiae cupiditate omnis deleniti sit ea nisi. Quia quos dolorum quaerat dolorem earum.','2017-10-03T10:52:53.129Z',49,4,'thora.cruickshank'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (278,'Similique ratione odio illum. Placeat autem vitae nam voluptas odio voluptatem dolores et. Quis consequatur alias sit est.','2018-06-22T16:38:28.153Z',50,3,'destini-zboncak'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (279,'Et ea rerum voluptatem. Blanditiis non est omnis. Quos sunt aperiam sed et nesciunt temporibus eum. Aut autem tempore nobis et hic mollitia hic. Eaque blanditiis ab voluptas.','2019-02-28T18:30:47.797Z',50,4,'hillard'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (280,'Veniam dolores nobis ullam sequi ratione ducimus. Aspernatur aut tenetur sed rem ipsum dolore in. Quod quia facilis a in vel et voluptatem nesciunt. Natus distinctio corporis quia rerum voluptatibus officia consequatur.','2018-11-20T06:25:18.819Z',50,5,'ned'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (281,'Explicabo voluptas nemo enim. Rerum odit voluptatem voluptas eum. Quos sed est fugiat rem omnis vel accusamus.','2018-07-05T08:37:25.807Z',50,4,'enrique.adams'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (282,'Aut voluptate recusandae ducimus. Possimus et distinctio expedita cumque quas minima. Rerum deleniti iure nesciunt adipisci id pariatur harum. Harum aperiam omnis eos odit quis asperiores ea dolorem.','2019-10-07T13:43:01.670Z',50,5,'letitia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (283,'Voluptatibus molestiae provident dicta earum dolor cumque recusandae. Aut aut est velit. Vitae soluta et molestiae nihil magni non ipsa. Est sequi repudiandae praesentium fugit quod et est dolorem. Amet suscipit quis voluptatem.','2018-08-04T08:10:39.816Z',50,4,'ulises-flatley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (284,'Mollitia earum quas voluptas error dolor. Molestiae quisquam qui eligendi. Modi adipisci animi excepturi sit voluptas. Nesciunt eos dolorem aliquam natus quibusdam.','2019-05-02T15:23:17.299Z',50,4,'vicenta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (285,'Sed autem quos vitae. Eaque totam voluptas consequuntur eaque ut vel a. Dolore nostrum iure voluptatem quo maiores sint quidem. Sunt pariatur occaecati exercitationem voluptatem. Consequatur sit eius culpa voluptas molestiae ducimus.','2018-01-13T11:53:14.080Z',51,5,'rhea'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (286,'Voluptas repellat similique occaecati maiores et repellendus maxime sint. Quaerat voluptatem veritatis eveniet quidem. Molestias et rerum molestiae. Voluptas quasi quia beatae voluptatem voluptatum enim sunt nesciunt. Cum ipsam dolore distinctio molestiae dolores qui ut.','2017-06-10T20:56:22.035Z',51,4,'paul-frami'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (287,'Minima voluptas et totam. Porro ea repellendus nisi quod provident. Doloremque et eaque placeat nihil quia et qui et. Cupiditate excepturi iusto labore et. Sint necessitatibus tempora molestiae alias ut aperiam veritatis sequi.','2018-01-16T16:10:33.522Z',51,2,'alexandria.gutkowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (288,'Omnis deleniti cupiditate aperiam illo. Iste ratione at dolorum. Qui minima officia architecto eius labore. Voluptas vel aut incidunt voluptas et iste accusamus.','2016-09-17T15:23:54.628Z',51,4,'darby-trantow'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (289,'Sit quia excepturi est dolor qui. Sint sed sequi voluptatibus eos consequuntur. Quisquam aperiam voluptatem rem quibusdam eveniet et incidunt exercitationem.','2018-06-28T21:43:15.546Z',52,4,'sabryna-stark'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (290,'Quas culpa voluptatem quis officia consequatur ullam. Iste et explicabo dignissimos qui dolor rerum. Neque facere non est natus. Doloremque reprehenderit ipsum dolores quo a.','2019-05-30T12:54:19.428Z',52,5,'marshall'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (291,'Veritatis numquam qui sapiente. Id dolores iste molestiae ducimus repudiandae eos voluptas. Similique eos voluptatem saepe nemo rerum consequatur voluptatem autem. Est quos quia rem illo fuga.','2019-11-30T03:38:11.173Z',52,5,'miguel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (292,'Consequatur non reiciendis quisquam. Quae quia odit aperiam impedit dolores pariatur doloremque. Architecto quis et debitis qui consequatur ex.','2019-03-30T09:30:43.588Z',52,4,'vivian.weissnat'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (293,'Saepe voluptatem dolor voluptatem et rerum quaerat laboriosam consectetur. Magnam quis autem vero est architecto minus. Dolor deleniti a architecto. Cum ipsum adipisci modi eum ut. Veniam velit et cum consequatur voluptas.','2018-12-20T08:44:30.122Z',52,4,'beaulah-graham'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (294,'Rem numquam fuga fugit saepe tenetur ut. Nihil molestiae quisquam accusantium tempore dolor. Dolorem recusandae eum velit architecto rem animi blanditiis. Voluptates provident ut iusto.','2018-05-23T10:22:35.169Z',53,4,'barry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (295,'Neque nisi blanditiis dolor repudiandae nostrum architecto. Est ut doloremque nobis molestiae nobis. Quam tenetur porro quis.','2018-05-11T21:10:25.872Z',53,4,'lonzo.kunze'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (296,'Consectetur sint ut repudiandae. Adipisci quis nemo reprehenderit sunt. Accusamus laudantium aliquam similique quia laudantium rem non cupiditate. Ea repellendus rem voluptatem sequi quasi. Quia numquam distinctio aut odio dicta temporibus molestiae doloribus.','2018-11-10T21:45:09.192Z',53,5,'antonia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (297,'Ipsam eos cupiditate quis est dolores autem. Consequatur excepturi sed provident. Natus voluptatibus deleniti natus.','2017-06-01T10:39:14.719Z',53,5,'jackeline-goldner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (298,'Nisi ab velit sed hic. Provident distinctio quidem inventore. Laborum sint voluptatibus accusantium explicabo mollitia fugiat sint in.','2019-04-12T11:07:23.078Z',53,4,'gerardo-pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (299,'Adipisci impedit dignissimos nesciunt laboriosam ut voluptatem assumenda. Ut architecto in vel officia. Et sed accusantium fugiat atque dignissimos facere. Eos soluta nostrum autem autem. Eligendi quos quasi ratione corporis aut nemo voluptas voluptatibus.','2019-09-27T09:06:22.581Z',54,4,'alexa.leannon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (300,'Aut sed est labore laudantium odit minima. Commodi placeat ratione ab totam provident. Corrupti a et cum delectus ad. Facilis dignissimos id omnis ut ut.','2017-12-19T01:05:51.204Z',54,3,'tristin-feest'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (301,'Hic et deleniti maiores vero molestiae et et rerum. Maiores iusto quod architecto. Molestiae corporis illum enim dolor iusto esse. Dolores est sapiente et dolorem aut atque accusamus aliquid.','2018-06-15T20:40:00.344Z',54,3,'larry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (302,'Eaque aspernatur non architecto qui repudiandae veniam laboriosam. Ex est distinctio aut. Ut sunt aut aliquam ut consequatur voluptatem quaerat. Mollitia perferendis quaerat exercitationem.','2019-07-03T15:24:44.683Z',54,4,'violette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (303,'Labore labore molestias quia. Dignissimos aliquid excepturi totam facere et. Dolore officia sed dolorem et aliquam. Sit modi quaerat eius nemo nostrum illo blanditiis.','2018-01-08T13:52:53.191Z',54,5,'dion-gutmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (304,'Eius cupiditate voluptas eligendi sapiente laborum id. Temporibus esse iste repellat. Vitae esse pariatur veritatis rerum mollitia cupiditate. Possimus ea totam possimus doloremque et accusamus et.','2017-05-20T23:04:33.603Z',54,5,'shyann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (305,'Quia voluptatem est quia dolore iste quod. Consequatur deserunt rerum debitis ullam enim tempora. Dolor quia minima ipsa occaecati nihil molestiae. Et iure sit nostrum voluptatem veritatis.','2020-02-06T12:01:50.611Z',54,1,'kylee'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (306,'Dolor non possimus est. Voluptas commodi laboriosam quia ut nihil autem nostrum. Totam molestiae quaerat doloremque harum aut perferendis consequatur placeat. Assumenda tempora reprehenderit autem praesentium tempore doloribus corrupti dolorem. Aperiam enim perferendis est quibusdam illum minus.','2017-03-16T07:24:13.903Z',54,3,'caesar.rempel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (307,'Doloribus eum rem enim repellendus quas quis rerum. Quod pariatur minima aut voluptatem sint facilis. Itaque aut nihil dolore.','2016-12-09T23:40:29.401Z',54,5,'vicky'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (308,'Maxime quibusdam impedit nostrum quo. Excepturi excepturi non sed rerum dolor quo quia. Earum rerum ut animi veritatis voluptas. Dolores omnis alias dolores.','2020-01-06T12:41:13.938Z',56,2,'greta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (309,'Rerum voluptatem laboriosam qui aut. Rerum ut qui soluta aperiam fuga quam vel earum. Optio alias rerum velit omnis molestiae. Eligendi quibusdam et similique.','2019-08-27T22:39:50.609Z',56,4,'terrence'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (310,'Non est at doloremque in minima magnam amet quibusdam. Quibusdam rerum molestiae exercitationem. Voluptatem unde qui vel voluptatum.','2019-03-07T23:19:48.043Z',56,5,'eugenia.bernhard'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (311,'Ipsam quaerat expedita eligendi incidunt rerum. Voluptatem autem nihil autem tempore sunt. In explicabo optio alias quia quos maxime nihil minus.','2018-05-14T09:45:53.874Z',56,5,'laverne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (312,'Incidunt iusto et consequuntur facilis. Expedita aut ut minus. Repellat et qui incidunt hic assumenda rerum illo est.','2020-01-09T11:19:44.087Z',56,4,'miller'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (313,'Consequuntur provident quisquam voluptas nam. Esse aut laborum aut totam sit corrupti cupiditate. Iusto fugit ea temporibus et incidunt delectus error. Doloremque laudantium et quia qui.','2020-02-16T22:38:47.370Z',56,4,'vincent'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (314,'Adipisci odio nisi harum velit numquam numquam necessitatibus cum. Ipsam voluptatem quia nesciunt deserunt aut ea consequatur. Quisquam nesciunt veniam aspernatur at et esse.','2017-11-29T06:26:48.819Z',56,5,'willa-tremblay'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (315,'Occaecati veritatis iusto sunt praesentium nobis. Nesciunt non quia aperiam et. Qui nobis officiis perspiciatis magnam animi beatae.','2020-01-11T16:21:15.540Z',57,4,'kevin.douglas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (316,'Ratione eius illum ut error. Sunt in nihil dolores. Minima voluptatum ut laudantium nostrum. Accusamus aliquam alias maiores esse exercitationem amet accusantium.','2019-05-21T10:28:43.272Z',57,4,'jaron-grimes'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (317,'Est alias qui quas pariatur. Inventore nulla rerum repudiandae voluptatem modi. Dolores consequatur ea rem nostrum distinctio rem. Id nemo saepe voluptatum suscipit occaecati voluptatum sed incidunt. Laboriosam id qui voluptatem mollitia ut voluptatem rerum nulla.','2019-03-05T07:36:33.956Z',57,3,'talia.kreiger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (318,'Consequatur omnis unde velit. Odio distinctio officia expedita corrupti. Reiciendis aspernatur molestias ut quod eos mollitia sequi. Esse quaerat nam animi. Voluptas sit omnis doloremque magnam magni.','2018-06-22T01:23:44.232Z',57,5,'aisha'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (319,'Illum voluptate sed reprehenderit ut accusantium. Tempore vel at eaque et. Modi commodi inventore voluptatem. Rerum voluptatum quis aut.','2019-07-24T10:01:43.588Z',57,1,'nestor-wehner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (320,'Corporis nam ea accusamus consectetur aut qui. Voluptas iure adipisci esse ea et non laboriosam est. Repellendus quia aut asperiores tempore aut.','2020-02-16T14:36:41.366Z',57,4,'rosalinda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (321,'Assumenda perspiciatis odio ut officia tempora. Quos illo fuga culpa quam impedit doloremque placeat suscipit. Ab rerum veritatis ipsum quaerat occaecati ut.','2018-08-07T03:48:31.952Z',57,4,'murl'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (322,'Quia magnam velit velit quidem non sed adipisci voluptatem. Nam perspiciatis quaerat voluptates. Molestiae in neque voluptatem.','2019-08-12T15:52:13.022Z',57,4,'vickie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (323,'Quia expedita exercitationem illum sequi repellat. Beatae ut quia provident quod et rerum eos. Et laboriosam vel et. Aut sequi ea et et blanditiis.','2020-01-19T08:16:27.572Z',57,4,'adalberto-hilpert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (324,'Est quam saepe minus repudiandae et. Aut sed placeat molestiae alias expedita. Ea quia magni modi.','2019-10-19T17:48:32.648Z',57,4,'alva-boyer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (325,'Et praesentium ut placeat voluptatem odit fuga. Quaerat laboriosam nihil et animi amet ducimus. Sed ea id nihil est.','2018-03-12T07:23:08.943Z',57,5,'melvina-flatley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (326,'Provident exercitationem at velit repellat qui et. Deserunt ut inventore est. Facere voluptas est quod iste. Assumenda fugit optio molestiae optio molestiae quod quia.','2020-03-29T10:43:17.493Z',57,4,'marguerite'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (327,'Necessitatibus qui nam occaecati voluptatem voluptatum neque voluptatem. Culpa rerum officiis qui libero dicta voluptatem velit. Non qui occaecati ipsam facilis. Ut praesentium sed rerum magni commodi magnam magni.','2018-05-27T19:31:44.295Z',58,5,'elliott.thiel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (328,'Mollitia incidunt consequatur quisquam. Et nisi consequatur consequatur ex molestias id sed. Laboriosam ipsam sequi dolor.','2019-02-17T20:15:27.559Z',58,5,'mack'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (329,'Modi at ipsa voluptas in. Inventore aut dolore eos. Sapiente voluptatem quia et vero odio. Fugit perspiciatis et soluta eos vel natus iste.','2018-10-19T14:30:38.835Z',58,4,'felton-rodriguez'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (330,'At cupiditate tempore minima. In ea est corrupti iure quia. Qui illo omnis nulla quibusdam explicabo. Qui recusandae est nihil cum et.','2018-01-14T03:26:18.966Z',58,5,'candelario'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (331,'Hic aliquid asperiores adipisci id cum. Ea pariatur nemo est quisquam impedit ipsam ut repudiandae. Qui eos ut et cumque est saepe cum veniam. Aliquam quae dolorem voluptas maxime. Quia eaque dolores et.','2018-01-05T01:43:13.996Z',58,4,'jacques-lemke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (332,'Et vel aut dolores. Omnis consequuntur maxime officia quod eligendi fugiat cumque quia. Voluptas quis enim laboriosam eum aut beatae nobis.','2018-10-27T20:44:33.400Z',58,4,'ima-marvin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (333,'Vitae est non et necessitatibus molestiae dicta atque. Deleniti est est hic veniam. Dolor saepe omnis optio quod ut. Asperiores aut atque ipsa ad aspernatur atque.','2020-02-18T19:17:08.268Z',58,4,'rafael'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (334,'Qui commodi similique laudantium consequatur dolor natus nemo. Officia accusamus est eos. Vero laboriosam odit autem suscipit. Voluptatem optio iusto nobis ut.','2018-05-24T23:38:29.652Z',58,4,'constantin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (335,'Aut sequi iusto nesciunt dolor. Quam dolor repellat molestias ipsam. Quia dolor sed dolor et perferendis aspernatur dolores provident. Et eos ut debitis dolor ea ipsum. Accusamus consectetur et atque assumenda ducimus non fugiat eum.','2019-05-01T13:41:24.994Z',59,4,'odessa-purdy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (336,'Autem quibusdam illo non velit. Quis nemo aut nemo qui recusandae porro laboriosam. Ipsum ut aperiam voluptatem non a quidem voluptatem. Reprehenderit quisquam quo porro optio eveniet alias vel voluptatem. Exercitationem a debitis aut ut ipsa eveniet consequatur.','2020-01-31T03:15:39.408Z',59,1,'bradford-dibbert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (337,'Rem sint ut minima nam. Provident corporis sapiente asperiores maxime. Quae earum earum porro amet quos hic fuga. Occaecati est quisquam dignissimos dolores explicabo voluptatem. Suscipit harum eveniet optio aut aut.','2018-09-18T21:47:29.066Z',59,4,'abdiel.murphy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (338,'Iure magnam provident neque. Maiores qui delectus velit quae. Itaque consequatur incidunt ratione omnis eos. Iusto enim accusamus explicabo quam. Labore magnam rerum cumque eius quas vel nihil.','2019-07-14T19:58:37.673Z',59,4,'alta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (339,'Nihil eligendi et inventore eius beatae officia. Veritatis autem at perferendis explicabo qui aut sit esse. Dolorem quae est voluptas voluptas. Qui ad officia ut voluptates et reprehenderit officia quo.','2019-07-11T01:01:06.576Z',59,5,'alf-jast'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (340,'Molestias sit et quod culpa. Sed modi temporibus voluptatem omnis distinctio rerum dolore aliquid. Voluptatem et non ducimus ut non. Ullam accusantium eos et eius quae nam sunt itaque. Sint temporibus enim et tenetur.','2018-11-19T08:00:51.265Z',60,5,'myrna.ernser'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (341,'Veniam ipsa enim beatae beatae voluptas ducimus minus. Vitae voluptate iure autem voluptas eum sed nihil. Facilis atque ipsum ut perspiciatis voluptatem. Non sint voluptas magnam.','2019-01-21T22:48:56.567Z',60,5,'gus.nolan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (342,'Aliquid dolores ducimus aut error explicabo ullam. Officia hic dolores dignissimos ut quibusdam impedit suscipit. Et sed at blanditiis. Ab iure repudiandae totam sed atque omnis. Necessitatibus dolorum est libero rerum nobis quibusdam eum.','2018-11-24T13:12:29.742Z',60,5,'sheila'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (343,'Facere esse reiciendis illum iusto porro cumque qui. Ipsam debitis et excepturi ut. Dolorem id commodi alias sed a sapiente.','2018-11-28T10:43:17.027Z',60,4,'webster.anderson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (344,'Optio hic ut omnis voluptatem doloribus ut fugit aut. Necessitatibus quia consequatur corporis libero nobis. Quibusdam voluptatem et quia est architecto quasi. Cum deserunt voluptatibus aperiam a nam tenetur exercitationem.','2018-01-12T11:30:28.948Z',60,5,'watson-leannon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (345,'Perspiciatis sed a eius aut saepe repellendus deleniti error. Quia ducimus placeat eum deserunt nobis in. Dolor molestiae sunt itaque voluptate fugiat dicta ea. Et distinctio incidunt rem inventore dicta ducimus velit est.','2018-02-16T02:56:08.759Z',60,1,'verlie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (346,'Laboriosam totam cum quia autem eveniet. Quod et facere molestiae totam voluptates itaque qui. Ab voluptatibus sed voluptas impedit commodi voluptates aut incidunt. Error consequatur hic quam incidunt at. Magnam quo veritatis doloribus inventore quae dolor.','2018-07-08T02:19:36.805Z',60,4,'gertrude-ankunding'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (347,'Expedita ut corporis blanditiis nulla suscipit. Provident sequi ullam illo quisquam deleniti eius culpa vero. Et dolorem sit enim ratione totam facilis odit. Dolor molestias voluptatem nemo. Eum ipsum qui error corrupti amet ipsam distinctio.','2019-12-04T05:52:52.293Z',60,4,'polly.jacobi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (348,'Mollitia omnis aliquid velit corporis. Quae mollitia quia voluptas enim sit blanditiis. Libero pariatur rem delectus nihil placeat explicabo id dolorem. Sapiente voluptatem voluptatem qui dolorem quis delectus veniam.','2019-10-06T07:30:45.687Z',60,4,'malvina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (349,'Delectus qui voluptate pariatur modi et. Repudiandae doloribus accusamus in libero earum iure earum. Doloribus quaerat nesciunt optio cumque voluptatibus quis molestiae.','2019-01-27T04:06:12.213Z',61,3,'montana'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (350,'Deleniti hic similique consequuntur. Qui ut modi deleniti molestiae asperiores voluptatem qui. Ut inventore id assumenda unde ipsa eligendi. Quae cupiditate sit deleniti vero. Unde eum laborum perferendis nam quasi unde sed.','2018-01-03T17:51:36.475Z',61,4,'kasey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (351,'Labore pariatur non beatae labore. Voluptates magni odit cum dolor delectus iste consequatur ut. Voluptates omnis quaerat aut.','2017-06-06T08:23:54.572Z',61,4,'odell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (352,'Cum iste omnis iure delectus. Doloremque consequuntur non soluta ratione ut nam. Repudiandae voluptate voluptas dolore voluptate qui. Doloribus architecto sit voluptas. Eligendi enim dolor et incidunt saepe ab minima.','2017-04-15T09:17:01.407Z',61,5,'hector-morissette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (353,'Aut rerum earum fugit itaque tempora repellat modi sit. Eius molestiae ea voluptates consequuntur earum ut dolorem. Ducimus ut voluptas reiciendis fuga deserunt ea ipsa dignissimos.','2020-01-21T19:14:30.747Z',61,4,'cara.breitenberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (354,'Accusamus aut officia ut in. Nam voluptatem in pariatur dolorum quidem maxime odit. Doloribus ducimus sit animi est quaerat rem adipisci laborum. Sit adipisci cumque impedit asperiores nulla perspiciatis.','2019-04-25T17:42:47.100Z',62,5,'otis-keeling'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (355,'Error inventore ipsum nihil est suscipit. Delectus repudiandae qui non in sunt. Et aut minima officiis reprehenderit corporis id eum sed. In quas et aut consequatur amet eum eaque laudantium. Ullam sit rerum quisquam in aut earum.','2020-02-28T10:44:16.455Z',62,3,'suzanne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (356,'Modi pariatur doloremque commodi rem dolorum voluptatem. Esse similique suscipit sunt perspiciatis non est culpa. Nobis soluta aut natus natus qui et. Assumenda pariatur sed omnis. Natus aut rerum delectus eveniet.','2020-04-13T08:30:55.361Z',63,4,'veda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (357,'Esse maiores consectetur sequi. Ut earum voluptatem enim nulla. Impedit molestiae sunt eius illo itaque ea.','2019-05-08T12:28:00.041Z',63,4,'lurline'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (358,'Ut suscipit ea excepturi. Iste sit aliquam amet eligendi. Rerum totam optio quisquam delectus reiciendis cum accusantium vitae.','2019-09-15T11:12:46.794Z',63,2,'katelynn.nicolas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (359,'Nemo quo autem animi odio consectetur voluptatem quaerat ut. Itaque excepturi voluptate in magni. Aut quia ut nisi.','2019-08-24T22:08:49.490Z',63,2,'kory-kessler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (360,'Est dicta inventore accusantium est veritatis. Eum praesentium dolores quod nisi expedita impedit. Ullam ipsa facere non fuga est voluptatem tenetur similique.','2019-12-06T00:17:58.294Z',63,5,'skyla.bergstrom'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (361,'Aut est rerum ut beatae nihil aperiam et quibusdam. Inventore eligendi possimus aut. Sequi sed sunt id et ad voluptate quidem et. Quisquam odit quam aspernatur.','2018-09-08T21:57:32.866Z',63,5,'millie.parker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (362,'Aperiam voluptate voluptate ab. Dicta architecto accusamus repellendus. Optio quo eos quo. Modi esse cupiditate alias in quibusdam eaque ducimus. Corrupti ut quos vel commodi voluptas consequatur quis.','2019-03-08T15:07:11.923Z',63,5,'carmella-ernser'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (363,'Ipsum quia repudiandae eum rerum ipsum quis ipsa. Molestiae quo reprehenderit et. Sit rerum accusantium qui et id ipsum porro.','2019-12-30T06:55:26.669Z',63,4,'hermina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (364,'Quia perspiciatis doloribus placeat. Commodi enim veritatis et dolore non rerum ex in. Quaerat earum sequi maiores perspiciatis natus. Facere mollitia dolores a quam ut et et asperiores. Id eos voluptatem sed minus ratione alias.','2019-12-20T07:34:08.524Z',63,4,'toney'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (365,'Iure recusandae quidem necessitatibus officia ea. Quia et quia est vel eum et ut. Nobis et dolorum omnis laudantium rem sit.','2020-03-28T20:32:06.500Z',63,3,'deontae'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (366,'Rerum doloremque magni est et aut assumenda iusto est. Commodi velit animi est tempore quo. Ut ea nostrum ipsum sed accusamus perspiciatis sed esse.','2019-02-21T05:10:20.626Z',63,4,'herta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (367,'Voluptatem ex repellat recusandae aut sint veritatis. Optio ut praesentium ipsa id aspernatur. Voluptatibus officiis quo impedit aut facere. Voluptatum earum et facilis rerum. Id ut rerum cumque nostrum eius.','2019-07-11T06:46:50.369Z',64,4,'johnathan-ortiz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (368,'Voluptatem cupiditate ut voluptatum harum iure. Tenetur quae at aut omnis non blanditiis. Velit laborum magni odio sed voluptas. Occaecati qui similique dolor corporis quia dignissimos natus. Fugiat amet eos autem nesciunt voluptatem enim magnam.','2019-08-31T08:50:14.297Z',64,2,'easton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (369,'Et itaque iusto sint aut hic similique quia eligendi. Qui accusamus maiores cum unde. Ex dolorem quia soluta voluptates.','2018-06-17T15:49:15.275Z',64,5,'barney-stiedemann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (370,'Dignissimos quia autem ea unde iure quis quod magni. Molestiae consequuntur cum corporis omnis aut. Possimus soluta ut adipisci voluptas incidunt ratione facilis beatae. A ullam reprehenderit quas. Aliquid et et dicta aliquid atque dolor aspernatur quia.','2020-04-08T23:05:22.683Z',64,4,'delaney-turcotte'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (371,'Assumenda sunt et et in minima vero ea esse. Est nisi quia beatae voluptates qui pariatur ut culpa. Maxime eveniet in consectetur sint hic veniam vitae.','2020-03-12T06:18:20.812Z',65,5,'syble'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (372,'Quisquam cupiditate ut aut. Voluptas blanditiis expedita totam laudantium eos id et. Atque voluptates tempore animi. Laborum recusandae eveniet voluptatem vel mollitia veritatis. Aliquam deserunt tenetur animi ipsum.','2019-07-22T14:30:57.916Z',65,5,'cicero.herzog'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (373,'Sapiente nobis dignissimos sint et soluta reiciendis maiores. Et consequatur harum eveniet ipsum laborum in et. Praesentium commodi earum a tenetur voluptatem nam voluptatem minus.','2018-11-15T23:19:41.181Z',65,3,'newell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (374,'Harum sunt quos dolorum quia nihil. Sit consequatur autem et id exercitationem error quasi. Et possimus eaque et ut magnam blanditiis sit. Eius quia eum voluptate dolorem enim aut eum nam.','2018-10-02T11:58:11.158Z',65,1,'novella'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (375,'Accusantium quo perspiciatis dolor. Tempora ut recusandae explicabo consequatur esse amet ex. Animi nisi vitae nesciunt molestias cum assumenda deserunt veritatis. Enim consectetur impedit voluptatem sed tempora aut.','2019-03-31T07:08:35.089Z',65,4,'gwendolyn-reinger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (376,'Praesentium porro laboriosam eligendi amet consequatur sed. Pariatur numquam harum nisi quisquam laudantium et pariatur. Hic voluptas esse incidunt velit qui praesentium molestiae magnam.','2018-11-27T12:10:27.508Z',65,5,'jordan.wilderman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (377,'Maxime quo blanditiis soluta qui officia rerum perferendis quia. Soluta quis modi eaque omnis. Cumque amet ex fuga omnis dolor deleniti. Enim voluptatem illum repudiandae. Saepe voluptates dolor hic quia.','2019-03-28T15:48:59.237Z',65,4,'abelardo.gulgowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (378,'Enim esse omnis qui non commodi. Temporibus sit iusto explicabo et. Neque dolores molestiae eveniet dolorem quibusdam nam aut odio. Beatae numquam autem assumenda ipsam vitae. Deleniti earum corrupti qui natus et omnis ut in.','2018-10-04T08:13:56.365Z',65,4,'zella'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (379,'Omnis consequatur esse enim enim voluptatibus. Eligendi inventore quo quia. Aperiam quia veritatis ut earum.','2018-12-10T23:37:50.784Z',65,4,'pink'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (380,'Nulla aut qui atque enim id atque sint. Hic praesentium voluptatem natus accusamus error ipsum. Itaque non sequi sint amet illo nobis quibusdam occaecati.','2019-11-14T02:40:19.798Z',65,4,'ned'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (381,'Occaecati rem quo dignissimos. Quis sed velit voluptates recusandae eius facere. Soluta expedita cumque totam provident voluptatem vel quis. Earum qui quibusdam ad magni quia.','2020-03-28T08:52:34.054Z',65,5,'percy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (382,'Nesciunt architecto eius in asperiores. Explicabo ipsa blanditiis quae enim. Et non quod sapiente aut sequi sed aliquam quam. Voluptas quod unde voluptatem qui odit eum labore voluptatem. Quisquam et vel laboriosam ducimus et est fugiat.','2019-11-06T17:21:28.255Z',65,2,'kyleigh'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (383,'Consequatur minus voluptatum qui. Ut modi ipsa omnis. Ex est quae reiciendis quisquam sunt nemo. Est sed distinctio suscipit laborum repellendus maiores et. Ad quasi ducimus voluptatem suscipit.','2019-08-12T16:02:29.660Z',65,4,'hertha'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (384,'Beatae tempora tempora enim. Deleniti error et iusto quae quae dolorem a. Dolorum sit vitae laudantium numquam possimus nemo nihil. Non autem et amet ab porro numquam eum animi.','2019-06-18T23:58:44.248Z',65,4,'norval-legros'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (385,'Natus fuga dolor molestiae ipsum facilis nobis omnis voluptatem. Modi enim quaerat architecto quia atque sit voluptatum. Non id hic non voluptate molestiae voluptas.','2019-08-04T07:26:53.017Z',65,5,'jeffery'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (386,'Distinctio aut enim qui suscipit rerum. Totam quas sint autem porro aut eaque. Vel quos perferendis amet aut corporis eius corrupti reprehenderit. Necessitatibus qui consequuntur perspiciatis et.','2019-02-18T14:24:43.397Z',65,2,'meda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (387,'Dolor a voluptas voluptatem beatae non harum quis suscipit. Quia et culpa vel atque praesentium. Ipsa quod assumenda molestiae.','2019-08-28T10:00:02.607Z',65,5,'kip.quigley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (388,'Et aspernatur sint est pariatur quasi. Cupiditate quam ipsa cum aspernatur rerum dolorem. Consectetur itaque libero inventore occaecati recusandae ea. Cumque labore consequuntur animi voluptas ab ab. Similique totam autem laudantium est quas.','2020-03-20T21:38:58.644Z',65,2,'isabelle-kub'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (389,'Deleniti sed magni expedita. Rerum ex numquam iusto labore impedit voluptatem. Labore perspiciatis velit ad. Cumque voluptatem maxime voluptatem. Impedit quidem eum voluptatem accusantium.','2020-04-18T21:53:27.803Z',66,4,'isaias-mccullough'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (390,'Quae eos dolor nobis deserunt non et blanditiis. Sit velit quis est qui vel. Nihil optio sit laboriosam repellat dolorum nihil. Minima ut a qui tempora animi veniam enim quia.','2018-10-13T10:04:24.973Z',66,5,'angie.steuber'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (391,'Voluptate omnis doloribus deleniti. Cumque sit culpa et qui. Praesentium non temporibus et velit. Dolor aliquid eos eos expedita impedit qui eum rerum.','2019-11-16T14:11:18.443Z',66,5,'maida'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (392,'Facilis nemo fugit optio quis est. Repellat vitae occaecati porro impedit ut voluptatem. Natus eaque ex dicta a. Beatae officiis similique nostrum illo ut non.','2018-05-09T10:17:20.161Z',66,5,'clemmie.thiel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (393,'Officia illum dicta occaecati recusandae sit eos. Vero quae eaque quaerat quidem quisquam. Sed eum quis eius non consectetur.','2018-07-25T08:37:42.731Z',66,4,'ruth'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (394,'Nihil quis sed rem soluta nihil. Veritatis similique voluptatum ipsam non delectus qui vitae id. Sunt ea voluptatum tenetur eum fugit quidem nisi eum.','2019-02-04T08:48:33.274Z',66,4,'juliet.hackett'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (395,'Voluptate sapiente sint ad. Neque perspiciatis debitis cupiditate cum. Veniam sit debitis molestiae ullam dolorem. Sequi repellendus quas sint quisquam autem. Omnis et maiores temporibus eos aut.','2019-02-21T04:58:41.145Z',66,4,'christa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (396,'Est nesciunt magni quam cumque qui. Ut in suscipit illum nihil itaque deleniti consectetur. Corrupti eveniet voluptas molestias voluptatem temporibus optio sunt ut. Magnam deleniti architecto facilis quia et nostrum molestiae omnis.','2019-01-22T00:31:27.414Z',67,4,'karson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (397,'Porro ut explicabo consequatur laborum architecto et dolores. Et ipsum quia optio ut incidunt. Voluptatem doloribus omnis aperiam ut tempore expedita quibusdam. Officia quis reprehenderit in enim id.','2019-10-17T12:20:22.066Z',67,4,'demario.watsica'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (398,'Sint excepturi incidunt fuga. Blanditiis ea ea totam velit veritatis totam. Minus dolores ad temporibus.','2019-12-01T09:49:08.267Z',67,5,'gia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (399,'Et qui nemo deserunt natus quos voluptatibus distinctio. Dolor autem eum distinctio molestias ab quam. At voluptatem perferendis dolor. Quasi voluptas odio autem. Aut repudiandae ut consectetur voluptas quod iure quibusdam sed.','2020-02-23T08:17:40.331Z',68,5,'ardith'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (400,'Quia est culpa quas laborum delectus perferendis nobis facere. Iste velit impedit aliquid similique et velit id esse. Rem illo qui aut.','2019-05-10T00:12:02.420Z',68,5,'angie-kilback'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (401,'Est sed quia quo magni animi optio tempora amet. Officia animi enim cumque officiis neque officia. Error est cumque ut qui molestias error. Non maiores perferendis ea corrupti ad officia quam cumque. Eum sed ut neque sit et reprehenderit accusantium ex.','2017-07-18T08:18:57.056Z',68,5,'ines-mayert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (402,'Nihil dolorem est neque qui. Recusandae sed tempora libero eum. Molestiae nisi eius deleniti.','2017-01-22T12:24:18.355Z',68,3,'christ.dicki'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (403,'Perferendis perferendis corporis eaque aut quo velit. Aut est architecto eos aut. Necessitatibus inventore sit voluptatum minima cum ducimus.','2017-03-15T12:07:10.640Z',68,4,'elian'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (404,'Omnis hic sequi voluptatem. Animi quasi quas quo pariatur laborum natus. Consequatur corporis quia quo quis cumque magni et. Nemo tenetur voluptatum expedita animi totam.','2018-04-04T08:26:50.058Z',68,4,'hulda.smith'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (405,'Consectetur et est nesciunt. Quis architecto et et et dolorem excepturi. Dolores quo similique magni ut nulla.','2017-04-09T07:23:13.931Z',68,5,'alexane'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (406,'Soluta totam repudiandae debitis. Voluptatem blanditiis consequatur inventore repellat non aliquid. Commodi sapiente facere reiciendis vitae in odio impedit quis.','2018-10-09T22:19:03.831Z',68,3,'eryn-mcdermott'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (407,'Laboriosam illo sit expedita. Non mollitia reiciendis adipisci earum molestiae quaerat tempora nihil. Praesentium a perferendis et libero. Odit enim eum ipsa et repellat omnis illo sit.','2019-01-31T20:01:03.348Z',68,3,'owen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (408,'Qui laboriosam enim alias repellat eveniet dolores consequatur. Voluptas distinctio cupiditate dolore. Est commodi accusantium neque et unde consequatur.','2018-12-11T18:36:25.633Z',68,4,'genesis-considine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (409,'Modi incidunt voluptatum cupiditate sequi excepturi est et id. Eos ab est eos vel ut consequatur omnis earum. Esse quae non molestias sit distinctio voluptas. Sit possimus magni ducimus aut aut reiciendis magni sapiente.','2019-04-05T11:36:26.461Z',68,4,'lorenzo-rempel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (410,'Soluta rerum assumenda debitis aspernatur. Id quas ipsa ut et nisi id voluptates commodi. Hic neque laboriosam sed quasi temporibus omnis saepe minus. Illo a sunt modi. Molestiae corporis ab provident quaerat et.','2018-07-01T04:05:38.828Z',68,1,'neal-gutmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (411,'Dolor repellat ea quidem provident. Quo magnam magnam nihil. Maiores quia et asperiores. Dolorem aliquid voluptatibus repellendus.','2017-06-24T12:26:59.782Z',68,5,'madalyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (412,'Accusamus dolores omnis corporis incidunt autem corrupti. Est eaque illo deserunt omnis repellendus molestias rerum commodi. Harum sit dignissimos maiores nam beatae velit. Recusandae doloremque eum molestiae rem.','2019-08-13T09:34:08.154Z',69,4,'sabryna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (413,'Dolor nam sunt perspiciatis blanditiis quia. Quo sint consequuntur et ut fugit corporis. Vero eum quo molestias sed nemo accusantium in quam.','2019-10-09T05:17:49.444Z',69,5,'teresa.lebsack'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (414,'Quod temporibus iure ratione tenetur officiis. Consequatur architecto sunt tempore libero. Dolorem enim illo velit quisquam delectus. Quia a voluptatem ipsa optio consequuntur dolore nihil officia.','2020-04-13T05:17:55.692Z',69,5,'janet-hagenes'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (415,'Voluptas molestias eos sed. Eum autem vel sunt commodi adipisci. Et dignissimos rerum aut placeat voluptas et aut rerum.','2019-09-20T01:07:51.089Z',69,4,'kyla'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (416,'Eveniet voluptatem quaerat est recusandae eveniet aut. Nihil quas autem distinctio saepe consequatur consequatur. Ratione sed assumenda quaerat adipisci error excepturi sed. Temporibus omnis nulla sit pariatur omnis similique qui.','2019-09-14T03:22:59.781Z',69,2,'bella-jewess'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (417,'Aperiam expedita nulla dolorem quaerat cumque. Sit minima assumenda provident ut doloribus omnis. Ipsam consequuntur commodi necessitatibus voluptates dolorum. Dolore eos dolorem quaerat qui. Non consequatur consectetur explicabo voluptatum.','2019-05-28T23:21:57.888Z',69,4,'emmanuelle-pouros'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (418,'Quaerat iusto vitae consequatur dolor in ducimus odit. Fugiat illo sunt id aperiam iste enim ullam consequatur. Dolor consequatur veniam consequuntur aut ut molestiae et. Laborum qui aut debitis sequi. Aliquam eos vel dolore iure provident ut consequatur est.','2019-12-16T00:36:41.039Z',69,3,'mariana'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (419,'Adipisci alias corrupti inventore est similique voluptatibus. Qui fuga quos incidunt. Sed voluptatem ad harum omnis possimus. Cumque esse aliquam occaecati laboriosam quis. Expedita doloribus tempora eius harum.','2019-07-17T23:52:52.821Z',69,1,'olen-lueilwitz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (420,'Et asperiores ut ducimus provident doloribus rerum. Odit quae animi assumenda quo sint officiis voluptas. Voluptas incidunt iste dolorem. Harum in deleniti consequatur sed ut placeat veniam. In ut accusamus voluptatem aut sint.','2020-03-30T04:43:34.913Z',70,4,'floy-jakubowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (421,'Vitae illum et et possimus itaque cumque reiciendis. Id perspiciatis ullam nesciunt quia tenetur sed nemo harum. Omnis deleniti placeat est a quia quo atque suscipit.','2018-04-08T00:30:13.658Z',70,4,'kassandra-wolff'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (422,'Ab voluptatum iure cupiditate blanditiis animi facere repudiandae eum. Optio sequi illum error sit. Quos culpa labore molestias suscipit possimus fuga iure id.','2018-05-29T03:02:59.630Z',70,4,'nicola'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (423,'Optio facere impedit alias. Debitis autem et eum labore nobis reprehenderit. Possimus magni sed nulla sunt omnis numquam molestiae sed. Quam iure voluptas facilis totam consectetur.','2019-12-29T17:43:11.763Z',70,5,'sigrid.pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (424,'Qui labore enim dolor eligendi. Explicabo itaque voluptatem omnis. Autem ab voluptas rerum delectus aperiam commodi ut mollitia. Eum neque et voluptatem autem et neque accusantium perferendis. Velit ea voluptates dolorem.','2020-02-21T12:51:51.048Z',70,4,'monroe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (425,'Molestiae porro aut veniam. Est suscipit dicta enim ad accusantium id. Ex sit aspernatur expedita sed ut sit quos cupiditate. Atque odio facilis soluta quis laborum architecto eius.','2018-09-28T18:47:51.034Z',70,4,'ceasar-leuschke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (426,'Quo magnam et eius ab doloribus unde numquam. Ab vero qui molestias. Iusto cupiditate doloribus eum molestias exercitationem.','2019-04-09T20:03:58.392Z',70,4,'rosella'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (427,'Incidunt qui dolorem ut et blanditiis et dolor mollitia. Est et sed ut quasi doloribus. Quos iure id delectus. Ex quis ab velit. Pariatur quaerat ad aut.','2019-06-16T05:18:41.810Z',70,2,'ofelia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (428,'Deserunt accusamus ad quasi eligendi et consequatur. Necessitatibus minus deleniti natus ut atque. Corporis nostrum recusandae ut sed enim aut et consequatur.','2019-07-09T23:00:22.139Z',70,4,'euna.farrell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (429,'Officiis incidunt sint autem a rerum odio. Aut est sit eum aperiam autem. Consequatur et impedit corporis esse eos adipisci voluptas. Aut eius ducimus eligendi. Dignissimos doloribus sunt sunt sed a architecto rerum harum.','2018-06-03T08:12:18.756Z',70,4,'dee.lind'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (430,'Exercitationem voluptatibus sit sapiente repellat quos quo occaecati dolores. Nostrum perferendis est quas nemo dignissimos voluptatem autem repellat. Quia et corrupti illo necessitatibus. Ea tempore ullam accusamus quaerat magnam id quod.','2019-05-30T22:45:29.813Z',70,4,'dusty.kohler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (431,'Voluptate veniam voluptates aut quo. Est et quis possimus. Doloribus voluptas maiores laboriosam molestias ipsa. Nostrum et perspiciatis deleniti cum delectus ea quo. Exercitationem nemo ipsum aspernatur et occaecati.','2019-04-22T14:34:25.282Z',70,1,'madeline-kreiger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (432,'Animi deserunt odit rem non voluptas. Sit nobis laudantium unde ut voluptas veritatis quia. Deleniti qui soluta voluptatem. Repellat officiis facere quaerat unde.','2018-06-17T16:40:27.891Z',72,5,'roberta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (433,'Accusantium explicabo deserunt et. Sit dolorem incidunt aut non. Voluptas sit cupiditate aut.','2018-06-07T11:43:07.405Z',72,1,'sarah'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (434,'Saepe facere quasi eius numquam. Voluptas molestiae aut voluptas. Debitis laborum ad est. Sit laboriosam qui provident odio. Eligendi ut deserunt nesciunt amet ratione rerum.','2019-04-12T21:59:19.230Z',72,2,'keenan-watsica'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (435,'Officia laboriosam qui minus illum ea voluptatum. Maiores laudantium reiciendis et doloribus quos similique. Provident nisi corrupti laudantium cupiditate sunt nam blanditiis. Quidem voluptatibus veritatis quasi qui et facilis.','2019-12-27T20:54:46.955Z',72,5,'rosalee.dibbert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (436,'Sit expedita et sed ut. Qui quaerat tempore animi qui vel nam enim. Sit architecto sed nihil. Quis magnam debitis beatae hic quia laboriosam. Voluptate nihil qui voluptates doloremque sed dolores velit cumque.','2018-07-29T07:37:07.524Z',72,5,'antonette.hudson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (437,'Quia accusamus voluptatem iusto magnam officia non. Distinctio totam sunt nostrum sapiente. Ea magnam et perspiciatis dolorum.','2019-07-28T05:51:20.943Z',72,5,'sylvester-considine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (438,'Saepe est rem non et non ut eligendi voluptas. In asperiores cupiditate odit earum velit accusamus quis est. Voluptas tempora enim eaque repudiandae amet eos.','2019-06-25T22:22:33.760Z',72,2,'herta-aufderhar'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (439,'Corrupti non ullam assumenda vel inventore voluptatem. Perspiciatis est quidem id omnis. Amet voluptatem et unde hic et et iusto facilis. Impedit rem fuga molestiae minima tempore voluptatem voluptatem.','2017-02-08T07:19:14.771Z',73,4,'jorge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (440,'Consequatur alias possimus recusandae incidunt ut neque. Magni corrupti sit modi esse omnis. Est iure rerum voluptatem cum et vel. Earum repellat in illum dolorem quisquam. Voluptatem pariatur amet libero provident et earum a.','2020-02-17T11:18:44.587Z',73,4,'linnea.altenwerth'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (441,'Nesciunt rerum ipsam eum sequi ex autem saepe rerum. Non et eaque corrupti est aliquam numquam. Suscipit placeat itaque recusandae. Doloremque enim rem et et necessitatibus repellendus doloribus.','2018-05-13T09:16:32.182Z',73,5,'jermain-crona'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (442,'Laboriosam sit voluptate et qui aut. Aliquam voluptatibus necessitatibus consequatur voluptates et rerum veniam ut. Ut quos aut esse totam accusamus occaecati quaerat.','2018-08-25T08:35:28.521Z',73,4,'delbert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (443,'Fuga provident rerum nobis et recusandae. Earum asperiores veniam molestias sunt. Quam laborum nihil iste aut. Alias quo eos et debitis eos reiciendis. Voluptas ut placeat sit vel ut laudantium.','2019-01-16T11:44:38.022Z',73,2,'mack-baumbach'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (444,'Pariatur et assumenda ipsa aut aut atque. Aut saepe similique non voluptate ab accusamus in aliquam. Fugit ad temporibus nihil.','2018-10-14T12:32:52.693Z',73,4,'mozelle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (445,'Eligendi doloremque laudantium est ut et amet et neque. Placeat quia tempore unde voluptatem. Velit quas ipsum optio ea eum quae. Error eos veritatis iste vitae asperiores dolorem.','2018-04-13T13:03:28.807Z',73,5,'alexys-hartmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (446,'Non quia dolor vel ea dolor non animi. Dicta nobis consectetur ab suscipit praesentium accusantium excepturi quis. Magni molestiae neque et.','2017-06-26T02:19:49.682Z',73,5,'monserrat.dare'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (447,'Reiciendis nemo illum facere esse. Ullam quo error fugit ea quas voluptatem non. Minima quia quaerat explicabo qui aut quidem. Aut excepturi sapiente in eum et iure. Qui dicta blanditiis modi quo maxime molestias quos quisquam.','2018-05-25T15:41:16.464Z',74,5,'timmy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (448,'Est nisi dignissimos enim aut placeat voluptates. Aut fuga non voluptatem. Veniam ea quasi aut. Voluptatem autem minus deserunt repellat. Libero quo error est perferendis unde ea.','2017-06-27T07:09:45.918Z',74,4,'eddie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (449,'Minima sit vitae iusto et animi. Quia voluptates molestiae quibusdam nihil sed ipsa voluptatibus. At et nisi corrupti vitae inventore vel harum. Velit sit quasi veritatis vel aut qui.','2019-08-26T19:16:15.258Z',74,5,'delbert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (450,'Amet incidunt molestiae occaecati beatae vero vel quaerat porro. Ducimus officia laudantium aliquid dolores. Minima iusto iure et expedita eum veritatis commodi facere.','2018-07-01T02:14:51.993Z',74,5,'jimmy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (451,'Sint magni voluptatem expedita minima. Explicabo sint ut laudantium iusto culpa. Enim non maxime neque ut. Doloremque aut debitis ut.','2019-10-16T07:01:37.994Z',74,4,'louie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (452,'Vel minus nihil blanditiis repellat. Asperiores consequuntur non facilis dignissimos. Atque expedita omnis cum hic repudiandae sit ipsum. Iste voluptatem nobis laborum sed soluta eaque dolores voluptas.','2018-12-19T10:07:57.392Z',74,5,'jody'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (453,'Eos fugiat iste enim tenetur ipsam aut eius architecto. Dicta beatae quia vel. Quis aut dolor voluptatem modi non id vel. Numquam voluptatem voluptatibus quam dolorem totam temporibus labore omnis.','2018-03-14T03:11:17.297Z',74,5,'christiana-cormier'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (454,'Deleniti nihil architecto totam sint. Iusto cupiditate id sint quidem. Impedit et delectus aut veniam eius eaque. Harum enim doloribus nisi veritatis. Nemo tempore asperiores vitae esse.','2017-08-28T18:45:07.212Z',74,4,'jayme'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (455,'Fugit non voluptas cupiditate qui eos non quia nemo. Commodi optio occaecati et sequi illo quod error. Maiores quisquam iusto officia sit laudantium qui sit velit.','2019-07-16T00:04:20.678Z',74,4,'trisha-crona'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (456,'Et qui sed quibusdam ea deserunt. Dignissimos accusamus omnis autem sequi non quasi voluptas. Est voluptatem non et voluptate.','2017-10-07T15:55:23.639Z',74,4,'cloyd.kerluke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (457,'Qui illo quae hic a est aperiam doloribus nobis. Esse asperiores qui itaque. Omnis voluptatibus ea dolorum.','2019-03-14T06:25:28.364Z',74,5,'florence'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (458,'Ut quis qui ratione et. Enim omnis voluptates et dolores. Molestiae voluptates eius qui. Odit ea atque fugit non.','2019-02-09T02:50:29.603Z',74,4,'delaney.reichert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (459,'Quo voluptatibus deserunt ad quo. Recusandae sint deleniti recusandae sunt et eos fugit est. Quasi numquam quasi et veniam rerum sed sint. Et soluta sed culpa quia.','2017-11-30T20:34:28.589Z',74,4,'erwin-murazik'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (460,'In esse minus beatae qui non rerum. In soluta alias dignissimos aut reiciendis voluptatem labore sed. Qui molestias enim rerum dolores ratione. Sit in est illo debitis libero doloremque.','2017-11-03T21:02:05.488Z',74,2,'aubrey-hermiston'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (461,'Rem rem aut dolor harum accusamus libero. Consequuntur porro dolorem velit tempora et tenetur provident molestiae. Cumque dignissimos voluptates ut sequi. Eum veritatis aut aut. Rem blanditiis et exercitationem temporibus quibusdam eveniet aut.','2017-04-09T09:12:54.462Z',74,5,'javier-feest'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (462,'Earum doloribus enim incidunt commodi. Quam ullam rerum rerum mollitia quia repellendus. Aut doloribus est quo est ex.','2019-11-13T13:11:50.242Z',74,4,'icie-lebsack'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (463,'Tempore illo distinctio voluptatum optio vitae. In quas omnis cum ullam rerum consequuntur hic. Distinctio autem odit adipisci consectetur qui quis consequuntur rerum. Consequatur omnis numquam quasi aut cumque nesciunt. Error adipisci sunt possimus.','2018-03-09T13:41:29.596Z',75,4,'camille-schiller'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (464,'Quo beatae non quisquam aspernatur libero. Ab aspernatur eum rem voluptatibus nihil magni et veritatis. Nulla quia voluptate et quo autem.','2018-10-27T17:13:13.763Z',75,5,'lisa.batz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (465,'In explicabo nihil consequatur sapiente error omnis dolor et. Labore doloribus odio praesentium nihil odio modi et. Eaque repellendus possimus numquam.','2019-03-04T22:35:14.822Z',75,4,'raquel.reinger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (466,'Non velit explicabo necessitatibus hic optio. Consequuntur ipsum consequatur non eveniet cumque. Eos ullam quia id eum quia et.','2019-12-12T02:49:16.279Z',75,5,'antwan-ferry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (467,'Aut nemo eaque asperiores ipsum voluptatem qui qui. Ex molestiae porro corporis occaecati placeat necessitatibus fugiat sapiente. Explicabo dolorem enim accusamus impedit voluptatum.','2018-08-30T14:10:43.916Z',76,3,'etha'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (468,'Aliquam atque amet a. Possimus nostrum ut fugiat. Maxime commodi nulla aut aut eum nisi. Consequatur qui blanditiis delectus. Odio autem est culpa voluptatibus id et.','2018-12-10T12:05:56.475Z',76,4,'hailey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (469,'Adipisci rem eveniet deleniti. Officiis quia animi voluptatem nemo. Placeat commodi dolorem quo asperiores id omnis. Quia commodi ea exercitationem temporibus ad. Sed ipsam impedit tempore et molestiae illum tenetur beatae.','2019-04-22T23:22:03.780Z',76,5,'ruben'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (470,'Illo officia aut sit qui. Laboriosam quod eum voluptatem. Commodi error necessitatibus ut dolores aut et labore et. Alias nobis quam modi provident quis nostrum id nobis.','2018-11-21T04:24:40.202Z',76,5,'lola-monahan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (471,'Est soluta eius laudantium omnis. Consequatur non harum quia. Architecto non natus saepe voluptas cumque corporis sit.','2019-08-21T08:50:28.253Z',76,4,'esmeralda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (472,'Distinctio explicabo exercitationem delectus eum. Quia possimus fuga voluptatem impedit sunt asperiores saepe quia. Numquam fuga ratione non consequuntur minus enim.','2018-09-01T20:02:26.346Z',76,5,'dixie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (473,'Corrupti modi maiores assumenda corporis aliquid quis nihil iste. Exercitationem sunt ipsa voluptatem. Eius magnam soluta qui laudantium saepe fugit. Doloribus voluptas ut fugit quo ab qui animi.','2018-06-22T17:29:50.295Z',77,5,'fannie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (474,'Sed sit et et minima autem provident est accusamus. Porro debitis aut ea ut commodi quia eos. Reiciendis et est quam necessitatibus adipisci commodi voluptatem.','2020-03-18T21:56:27.811Z',77,4,'dorothy-kuvalis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (475,'Asperiores et sed dolor magnam quis non. Aut consequatur eaque voluptatem sit sed unde sequi iste. Expedita quibusdam eveniet qui debitis maxime quia. Excepturi fugiat provident incidunt eius consequatur maxime.','2019-02-12T00:42:37.774Z',77,4,'rachael.schamberger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (476,'Consequuntur omnis deserunt nam voluptatum alias delectus perspiciatis. Ipsum quia unde omnis et nostrum aut id. Omnis rerum dolores accusamus delectus a delectus hic quo.','2020-03-24T21:50:56.929Z',77,5,'scarlett'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (477,'Voluptates architecto officia hic ex accusamus. Repellendus minima unde blanditiis odit. Omnis reprehenderit voluptas ipsa. Animi ipsum error aut velit qui quia id. Alias ipsa saepe accusamus libero.','2018-07-24T01:32:30.852Z',77,4,'garrison.yundt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (478,'Ipsum culpa nihil et cumque blanditiis. Ex enim qui delectus vitae iste aut voluptatem ea. Rem tempora iusto commodi excepturi ab tempore quidem est. Optio aut qui voluptatem magnam dolorem similique harum.','2018-07-31T11:13:01.577Z',79,3,'kellie.hahn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (479,'Quos ratione ullam ut. Est molestiae aspernatur ipsum ipsam non neque deserunt. Non nihil et cumque alias tempora.','2019-02-27T09:39:48.180Z',79,5,'ricky'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (480,'Voluptate molestiae in ut autem. Aut et ut voluptas ut rerum nisi pariatur. Asperiores facere velit omnis sed.','2020-02-12T16:57:12.533Z',79,5,'makenna-berge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (481,'Eligendi assumenda earum repudiandae est tempora sit. Harum mollitia eum eligendi labore accusamus quo doloribus. Quia quos facere asperiores debitis reiciendis non quo. Et dolorem tempore expedita labore qui eos maiores.','2018-01-15T11:26:42.418Z',80,2,'alva-willms'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (482,'Veniam laudantium aut doloribus dolorum sint quod. Est error ipsam deserunt accusantium a omnis commodi. Voluptas ipsum doloremque illo praesentium adipisci libero. Voluptas error ea explicabo. Cupiditate sunt voluptate quia voluptas similique.','2020-04-11T16:27:31.177Z',80,4,'ward-cole'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (483,'Asperiores corrupti sit accusamus numquam sit. Et provident provident ea repellendus. Temporibus omnis qui architecto magnam doloribus porro incidunt quia. Commodi quia dolores ut possimus tempora sed. Officiis et sint dolorum aut optio molestias esse.','2017-01-07T12:34:20.093Z',80,4,'norene-becker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (484,'Dicta molestiae in dolorem et qui adipisci ea totam. Sed sit quos omnis quod sit nesciunt ipsa. Eveniet mollitia ipsum et et cumque fuga ducimus. Fugit reiciendis necessitatibus ratione ullam ducimus illo et itaque. Quia et facilis placeat.','2018-11-05T06:13:09.141Z',80,4,'marco-leffler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (485,'Rerum quaerat qui illo qui nostrum. Natus est in autem nisi. Aliquam maiores tempora quia maiores quia similique. Nihil hic ut temporibus nihil quia.','2019-02-24T03:49:30.802Z',80,4,'kailee-crooks'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (486,'Ducimus et omnis temporibus corporis omnis laborum ex. Dolores est sequi iure beatae minus doloribus dolores cupiditate. Ea nisi fuga mollitia error.','2017-11-06T21:02:46.764Z',80,5,'joaquin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (487,'In pariatur eaque aut. Distinctio aperiam ut hic ullam officia provident quam. Veritatis possimus nesciunt cumque nihil hic quo.','2020-04-19T14:15:25.677Z',80,5,'emely'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (488,'Similique vel ipsam est corrupti dolorem ratione vero fuga. Ipsa sapiente voluptatibus fuga alias. Minima et quisquam non molestiae sed. Molestiae earum dolores dolor eius qui. In voluptatem odio architecto quidem eveniet quaerat et.','2016-10-02T13:29:34.575Z',80,4,'larue.schultz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (489,'Velit aut consectetur eum explicabo sapiente dolor. Ea deleniti cumque maxime debitis eaque aut. Inventore dolores eum magnam adipisci rem minus recusandae.','2018-09-08T18:29:15.550Z',80,2,'elliot'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (490,'Cumque ipsam aut sunt rerum. Dolores ipsum quod veritatis fugiat voluptate velit placeat. Itaque ullam occaecati aliquam amet sed repudiandae veritatis sequi. Sed et accusantium ut.','2019-09-23T17:08:45.599Z',81,5,'nels-hahn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (491,'Voluptatem expedita recusandae cum dicta id et. Sint error et necessitatibus delectus. Maiores nemo dolore accusamus quidem. Dolore nobis nihil odit voluptatem placeat doloremque. Magnam nam reiciendis molestiae.','2019-06-17T07:07:39.326Z',81,4,'buck-kertzmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (492,'Ex autem ea quia ea praesentium aut iure magnam. Numquam nulla iusto sunt dolor eveniet ipsa quia a. Et optio blanditiis earum blanditiis sapiente sequi magni impedit. Possimus vitae voluptatum voluptas expedita deserunt voluptas. Sed quam sunt laudantium porro.','2017-06-05T05:03:04.397Z',81,4,'alden-jones'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (493,'Animi ad laborum est explicabo aliquam quo error nulla. Est quae consectetur qui et earum delectus. Sunt est delectus nihil nihil id. Velit architecto id harum nihil quam.','2018-10-14T17:03:21.556Z',81,4,'kailyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (494,'Omnis excepturi est ipsum voluptatem consectetur rerum. Est qui ea dolorem laboriosam quisquam in. Nisi quo ut explicabo assumenda.','2016-12-06T11:19:17.751Z',82,4,'naomi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (495,'Earum dolorum sequi sit aspernatur omnis laboriosam quia ea. Aut dolorum accusantium doloribus pariatur hic porro tempore id. Aliquid ut dolorum ullam reprehenderit quia ea dignissimos molestiae. Perferendis rem aperiam est quam quia magnam.','2018-10-25T13:46:41.617Z',82,5,'era.collins'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (496,'Commodi neque cum ut enim impedit accusamus. Et est ipsam quia itaque exercitationem illo. Consequatur tenetur necessitatibus delectus accusamus. Voluptatem iure quae incidunt neque. Veniam officiis est et occaecati qui enim quasi distinctio.','2018-05-14T11:10:45.028Z',83,2,'nicolette-cartwright'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (497,'Possimus eius tempora et ut dolor rerum qui deleniti. Tempore quam neque alias aut possimus quia ipsa laborum. Debitis pariatur quidem quia velit. Sint itaque est repudiandae libero dicta atque a et.','2018-11-30T15:24:35.155Z',83,4,'madisyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (498,'Vel consequatur deserunt sint. Voluptas voluptatem et itaque dolorem maiores voluptatibus. Repellat non nam repellat maiores tenetur nisi sed sit. Est dolore unde omnis voluptatibus sint est.','2019-01-08T02:42:24.775Z',83,5,'loyce.haley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (499,'Est est soluta assumenda et et voluptatem culpa eligendi. Quod et soluta impedit. At voluptatem doloribus eius ut veniam. Quo consequatur vel quaerat assumenda eos dolorum iure. Aspernatur ipsam esse nostrum velit.','2019-07-29T08:08:41.298Z',83,4,'terry.hickle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (500,'Ea unde ut dicta odio placeat. Animi accusamus vel cupiditate nulla. Exercitationem omnis ut ex iste dolores id repellendus aut.','2017-05-07T10:25:51.738Z',84,2,'jerrod'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (501,'Ut quia ea sint aut inventore accusantium. Vitae explicabo est aut pariatur dolor cupiditate. Ut aut et ad dolor quam quia sapiente eos. Sint non optio sunt aspernatur qui ut voluptatem quis.','2017-10-04T06:56:34.617Z',84,1,'lennie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (502,'Incidunt veritatis aut est est. Ea cumque porro qui id dignissimos facere hic quae. Cum sint quo et beatae eveniet quia dolor.','2019-12-23T08:32:31.865Z',84,4,'heath'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (503,'Unde explicabo maxime odio. Nihil magnam quisquam possimus accusantium optio. Accusantium enim non alias rem optio. Voluptas molestiae quas est. Est deserunt ea odit.','2019-10-18T05:54:40.546Z',84,5,'deangelo.nolan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (504,'Tenetur commodi placeat quo accusamus est qui fugit vel. Ut expedita sed quis. Id ut sit molestias dolores aperiam dolore. Velit saepe quis sequi quaerat voluptatem ad in.','2018-06-28T15:02:15.457Z',84,4,'drake'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (505,'Tempore aut consequatur cum accusantium dolores et molestiae cumque. Libero ab aut deserunt voluptates quisquam placeat aliquid. Assumenda corporis quis quasi illo nam consequatur nesciunt tempore. Natus sit molestiae nostrum distinctio est dolor quam facilis. Labore voluptates non ea incidunt deserunt porro.','2017-08-18T01:15:42.651Z',85,5,'judah'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (506,'Sint aspernatur amet omnis et iste aliquam. Optio itaque porro sint tempore. Dolore provident dolor qui. Repudiandae omnis eaque in.','2017-06-15T01:00:37.242Z',85,5,'natasha'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (507,'Ratione est est suscipit eaque sed neque. Quam doloremque incidunt ea quam est veritatis mollitia minima. Praesentium voluptatum sit autem eos fuga provident. Ut dignissimos itaque omnis.','2019-02-11T08:38:50.931Z',85,3,'kellie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (508,'Non consequatur sint expedita laudantium. Minus porro aliquid qui quia unde. Quis vitae dolor dolore optio. Nam asperiores neque minima molestiae vel quia maiores. Magni voluptatem est amet et.','2017-05-02T22:44:22.047Z',85,5,'destinee-pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (509,'Molestias et sit reprehenderit quo harum voluptate adipisci aut. Voluptatibus sint optio et. Aut doloremque officia sunt provident aut nesciunt. Dolor qui aut rerum magnam.','2018-02-19T09:11:20.935Z',85,2,'sigurd.ortiz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (510,'Ad maiores optio eum dignissimos. Magni repellat nobis culpa qui qui. Commodi et hic exercitationem corrupti sunt molestias omnis. Molestias nam dolore maxime molestiae. Temporibus quo quia modi sed blanditiis tenetur suscipit error.','2017-11-10T04:05:52.789Z',85,4,'zola.gusikowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (511,'Dicta nobis ea quibusdam eos deserunt. Nihil non incidunt excepturi omnis omnis et soluta rerum. Fugit dicta et consequuntur adipisci. Delectus laborum est nihil quia quia consequatur quis facilis.','2017-12-24T16:59:48.526Z',85,4,'darren.gislason'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (512,'Sit non mollitia impedit quaerat. Ea qui ea natus pariatur similique qui amet. Velit consequatur tempore sit. Ab sint atque nesciunt eos minus accusantium. Sint totam possimus unde.','2019-03-25T06:07:24.614Z',85,5,'loy.koepp'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (513,'Ut et quam sint voluptatem quidem consequuntur quo. Quaerat aut ut molestiae ut minus cupiditate quos maxime. Quia ex in quisquam sunt et omnis ut inventore.','2019-04-07T14:46:21.951Z',86,5,'rosa.kuhn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (514,'Eum quis omnis ullam adipisci voluptate vel id. Doloribus eaque eum odit aut sit voluptates et nemo. Et aliquid et reiciendis aperiam sunt enim.','2020-01-29T21:35:22.940Z',86,4,'jayde.padberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (515,'Error ex unde facilis sunt beatae consequatur. Voluptate exercitationem omnis sint. Voluptas sed et mollitia reprehenderit sit repellat explicabo esse. Atque quam qui illum illum cupiditate.','2020-03-03T19:51:23.058Z',86,2,'jaylen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (516,'Possimus eius quam voluptas nesciunt. Minus debitis perspiciatis eaque facilis commodi sed. Sunt harum quia quia et reprehenderit culpa. Consequatur vel est ex doloribus qui magni impedit porro.','2019-09-21T07:29:01.184Z',86,4,'ruth'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (517,'Sunt illo cum consequuntur. Dignissimos eius rerum deleniti. Fugiat omnis est quos. Et ut tenetur praesentium perspiciatis. Et cupiditate magni perspiciatis facere atque ab qui earum.','2019-11-04T06:33:55.181Z',86,2,'zella'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (518,'Eos quaerat aut optio fugit nisi ea maiores. Itaque inventore iste et reprehenderit odit illo. Odio nostrum et molestias dolor est accusamus sint eos. Sequi omnis alias vero.','2019-07-27T01:29:05.662Z',86,5,'arlene.crist'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (519,'Ut modi iure voluptatem aspernatur veritatis sit. Saepe dignissimos nemo sunt. Et enim sapiente quidem rerum repellat delectus aut. Consequatur dolorem aut culpa in accusamus porro veritatis.','2020-01-12T10:57:11.276Z',86,4,'horace'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (520,'Fugiat cumque accusamus debitis qui ipsam veniam natus voluptates. Inventore quas unde minus suscipit quod. Tenetur minima et dolorem harum sunt fuga non.','2018-10-13T00:36:21.715Z',87,1,'oran'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (521,'Repudiandae voluptatem necessitatibus ipsa dolorum est est eligendi. Sequi dolores voluptatem consequatur. Porro quasi consequatur autem. Nihil reprehenderit et est sunt consequatur id fuga. Quas accusantium sit dolorem nam.','2020-04-15T19:00:51.194Z',87,5,'arnulfo-wunsch'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (522,'Accusantium laboriosam eveniet iusto consectetur. Qui et quod reiciendis et modi perferendis voluptatem. Velit est ea blanditiis. Iure quia quia hic et quas.','2019-01-31T11:35:07.427Z',87,4,'carolina.wilderman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (523,'Quo sit itaque est in vero animi occaecati tempora. Laborum ut iste consequatur dicta eaque. Iusto est aperiam voluptas qui deserunt. Ea rerum non dolorem aut qui sunt dolore ex.','2018-06-24T08:55:15.545Z',87,5,'jane.miller'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (524,'Illo tempora voluptas laborum. Sequi possimus et eaque qui blanditiis consectetur. Expedita sed soluta nisi optio aut ullam.','2018-08-11T07:53:52.507Z',87,5,'alejandra'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (525,'Id at distinctio sint. Nulla similique pariatur vero libero. Vitae id eius doloribus. Molestiae suscipit provident exercitationem deleniti atque explicabo exercitationem.','2019-11-13T05:24:16.372Z',87,5,'aniyah.hoeger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (526,'Consequatur placeat alias occaecati iusto aliquid sint. Est sunt quas provident aliquid consectetur dolores quidem est. Velit quaerat et et reprehenderit inventore nihil atque. Suscipit consequatur consectetur est aliquam.','2019-10-18T12:19:58.585Z',87,5,'addison'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (527,'Quia similique qui pariatur necessitatibus molestiae voluptatibus consequatur. Dolores omnis delectus omnis quidem eaque ea iste animi. Dignissimos consequatur atque quo ratione ad. Doloremque beatae qui eius est dolore est sint quos. Tempora architecto sunt excepturi dolores.','2018-07-09T23:35:50.761Z',87,4,'adalberto'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (528,'Aperiam voluptatem consequuntur dolores qui aspernatur est culpa. Harum ut odio modi recusandae quam. Sed non sint voluptatum ut dignissimos est et molestias. Maxime voluptas iure et est placeat.','2018-09-07T01:55:41.948Z',87,1,'vella.schulist'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (529,'Delectus reiciendis quam quae inventore veniam qui. Expedita amet doloribus aut adipisci occaecati. Et dolorem inventore molestias. Iure fuga omnis omnis ut quae accusantium nisi est. Nostrum vitae et et omnis aliquam expedita inventore.','2018-12-27T06:59:29.062Z',87,2,'sibyl'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (530,'Consequatur et est enim porro qui incidunt. Porro nisi maiores ducimus officia nisi accusantium. Iusto et molestias voluptatibus quia. A ut cum nemo illo.','2019-02-05T11:32:14.066Z',87,4,'gage.goyette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (531,'Fugit adipisci ipsa optio veniam laboriosam nesciunt fuga est. Autem eos ex eveniet et iusto doloribus. Nostrum vero id id labore eligendi non voluptatem odio.','2018-10-31T08:19:45.376Z',87,5,'jacklyn-bartoletti'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (532,'Rem quis et ipsum aperiam ad consequatur consequatur in. Excepturi voluptatem consequatur necessitatibus. Quia nostrum tempora ab molestiae consequatur officiis. Sapiente sunt velit eum veniam aut.','2018-12-21T09:04:11.215Z',87,1,'cassidy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (533,'Quos odit soluta omnis qui atque doloremque ex commodi. Ad alias quidem quis fugit quos ea veritatis ut. Labore amet cum numquam deserunt aut odit odit qui.','2020-03-04T02:15:57.267Z',87,4,'serena-lind'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (534,'Suscipit vel quasi quis laudantium vel laudantium similique. Ab autem eum iure placeat quo voluptatem aut. Sint nobis mollitia consectetur ut ut illo nostrum. Explicabo nostrum a laboriosam quaerat.','2019-06-30T13:34:49.662Z',87,2,'eda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (535,'Provident repudiandae consectetur ut. Est sunt impedit ducimus totam. Eius dolor sapiente et aut hic. Et placeat nobis ipsa et. Est nesciunt necessitatibus itaque et dolorem iusto.','2020-01-27T02:09:40.918Z',87,4,'casimer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (536,'Nam architecto totam qui ullam maiores est aut. Qui fugiat quidem itaque corporis. Fugit aut provident ea fugiat ex repellat.','2019-01-18T21:19:39.082Z',88,1,'enos'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (537,'Consequatur optio sit libero est odit eveniet. Et placeat et quisquam. Aliquid consequatur modi modi ut. Enim sunt dignissimos tempore. Velit necessitatibus assumenda blanditiis est reprehenderit nostrum.','2020-02-09T06:43:48.364Z',88,4,'brisa-schimmel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (538,'Mollitia sed quo illum non sit id sunt non. Tenetur et sed nobis hic. Et accusamus et voluptates rerum amet autem. Omnis non non enim laboriosam. Repellendus nihil quis qui dignissimos fugit.','2020-01-29T07:19:43.287Z',88,5,'emil'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (539,'Iste vel eum voluptatem sequi aut. Exercitationem qui rerum aut modi. Dolor maxime dolores eius dolor laboriosam et sunt.','2019-10-08T01:45:54.158Z',88,4,'oscar'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (540,'Qui ut quo temporibus quis totam. Assumenda ratione nisi facere modi qui. Expedita qui praesentium ullam vero. Omnis illum possimus cupiditate perspiciatis delectus est. Aliquid velit mollitia cumque consectetur.','2020-03-11T22:29:08.802Z',88,4,'jamarcus-bechtelar'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (541,'Recusandae aut velit tempore suscipit est autem. Fugiat ad animi architecto sit. Ut ullam voluptatem commodi totam nihil quas. Saepe non eveniet autem. Earum aut in sunt doloribus ut quam qui maxime.','2017-03-13T11:29:11.466Z',89,2,'deangelo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (542,'Hic id quae vero ab eum aspernatur. Libero qui sit qui inventore ea. A facere sit non facilis. Veniam dolores et ducimus cumque excepturi suscipit doloribus nisi.','2017-05-24T03:09:54.635Z',89,4,'lucius.gulgowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (543,'Velit et quisquam laborum dicta odit libero voluptatibus. Omnis deleniti magni distinctio odio. Eligendi ducimus temporibus omnis quo veniam. Quos est voluptatem similique sit quam nihil.','2019-07-10T10:46:03.035Z',89,4,'armani-robel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (544,'Aut aut eum vero atque velit vel. Dolorem sunt animi facilis voluptatum aut. Aliquam rem omnis possimus.','2018-01-01T00:34:39.775Z',90,4,'deja'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (545,'Sed eos eveniet ducimus molestiae atque dolor quis commodi. Laudantium necessitatibus eligendi reiciendis itaque nesciunt et. Inventore officia id exercitationem consequatur. Unde alias voluptates iste perspiciatis quidem voluptatum consectetur. Sint id sint officia fuga minus.','2018-10-24T01:46:57.269Z',90,4,'osvaldo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (546,'Quas atque qui vero fuga ut occaecati. Unde pariatur modi dignissimos eos explicabo eos. Debitis eveniet et facilis.','2019-05-14T02:36:23.137Z',90,4,'rosalyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (547,'Molestiae quidem debitis et maiores blanditiis harum amet. Necessitatibus dolorum nostrum id eos. Quasi labore sed quasi nisi et quidem voluptate quod. Enim sunt doloribus voluptatum. Nam cupiditate odio autem voluptas totam tempore rerum molestiae.','2019-01-30T23:22:53.647Z',91,5,'norwood'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (548,'Eaque et natus cupiditate sunt. Accusamus temporibus est molestiae unde eum quisquam est. Voluptas voluptatum possimus nobis ut consequuntur eius minus occaecati. Id culpa iusto at.','2019-01-14T03:08:57.513Z',91,5,'rossie.waters'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (549,'Ducimus voluptatum est iure animi est minus eos. Ut sint nulla accusamus. Placeat eveniet omnis dignissimos.','2019-01-12T22:58:24.221Z',91,5,'webster'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (550,'Excepturi omnis qui ea placeat. Sed illum voluptate aut quia. Tenetur est odio aut. Suscipit esse accusamus eveniet itaque aperiam ad modi.','2019-02-23T01:56:54.466Z',91,5,'bradley-mohr'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (551,'Ea et eos cupiditate adipisci sed sed consequatur. Quod qui voluptatem dolor. Aut quos maiores et sit quas odio exercitationem molestiae. Distinctio corrupti nobis commodi.','2020-01-28T14:48:00.426Z',91,4,'florian-hahn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (552,'Maiores et libero iste pariatur nesciunt. Nesciunt aliquam iure odio. Et voluptate eligendi laborum dolor dolores fugit eligendi sit.','2019-10-02T03:37:19.450Z',91,4,'kenna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (553,'Suscipit ut eos officiis et velit. Sunt adipisci placeat ut unde officiis excepturi. Veniam rerum molestiae qui nesciunt nemo. Sit fuga assumenda eaque ullam enim. Animi illo libero incidunt omnis assumenda.','2019-06-26T12:33:56.667Z',91,4,'mac-schimmel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (554,'Temporibus voluptatem velit maxime. Voluptates fuga quis eos ullam culpa sed. Eum et et dignissimos. Accusantium totam laboriosam aut sed.','2019-07-15T02:21:21.246Z',92,4,'alexander'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (555,'Ipsum autem voluptatum numquam quod nostrum facilis iusto. Voluptatibus rem modi minus alias. Et id voluptas enim minima. Facere excepturi commodi adipisci.','2017-06-24T22:10:10.177Z',92,4,'mohammad.schoen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (556,'Molestiae laborum dignissimos optio dignissimos repellendus dolores. Qui aut aut et voluptatibus quis. Sed non et aliquid quia eaque magni occaecati.','2018-02-13T19:37:39.439Z',92,5,'marjolaine.rau'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (557,'Sed hic quia consequatur quis aperiam dignissimos dolorem. Autem quisquam veritatis voluptates et iste dolore. Nesciunt non non aperiam placeat quo voluptatem numquam aut. Est voluptas veritatis et at.','2018-07-05T10:27:12.522Z',92,4,'isom'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (558,'Repellendus culpa totam qui et expedita asperiores pariatur. Delectus itaque voluptatibus quia aut est quos aut perferendis. Inventore aut vero rerum explicabo adipisci ea alias. Voluptas sed mollitia laborum autem.','2017-05-29T10:17:36.194Z',92,3,'kayla.bins'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (559,'Nihil officia accusantium laboriosam et odio. Quidem in ut doloribus qui cumque recusandae. Non qui et est suscipit est consequatur natus. Similique alias sint itaque nam occaecati sed voluptatibus. Sit blanditiis autem non doloribus.','2018-11-09T22:29:45.850Z',92,5,'myles'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (560,'Laborum voluptas corporis est non rerum consequatur voluptatibus. Dolorem libero accusamus sit. Neque nihil quae amet aut occaecati laudantium quod.','2017-11-22T19:02:31.191Z',92,5,'kody.green'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (561,'Iure vel unde consequatur earum. Officiis aperiam distinctio dolorem. Cum et beatae nesciunt sunt reprehenderit. Quidem voluptatem ut dicta nemo dolorem hic possimus velit. Sit aut eum rerum dolorum nihil voluptatem.','2019-04-11T12:31:05.243Z',95,4,'ronaldo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (562,'Sunt voluptatem id natus earum dolorem voluptatem et consectetur. Saepe placeat quos sunt repudiandae voluptatem. Numquam beatae ipsam et. Quia quia perferendis deleniti aspernatur. Enim sunt ratione numquam ut minima dolor molestias laboriosam.','2019-03-20T21:55:09.151Z',95,4,'rodger.stroman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (563,'Sunt cupiditate rerum magnam inventore aperiam sed aut adipisci. Iste dolorum voluptatem dolorum maxime non voluptates. Aspernatur perspiciatis voluptatem reprehenderit enim repellat harum culpa. Quia ut est a commodi maxime. Sint eligendi possimus sint excepturi eos porro doloremque autem.','2017-10-01T20:17:14.194Z',95,4,'stevie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (564,'Dolores harum iste dolores asperiores rerum sunt consequatur numquam. Molestias perspiciatis quibusdam dolorum voluptatem facere. Quas et facilis doloremque velit asperiores molestiae dolores id. Dolor similique ut sed sint sed commodi.','2019-01-10T13:55:09.274Z',95,3,'evert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (565,'Labore error deserunt vel et voluptas dolorem. Sequi nobis nesciunt ad. Atque tempore animi et necessitatibus excepturi.','2019-06-06T13:00:01.538Z',95,4,'jarrod.leuschke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (566,'Natus atque ea porro inventore rerum. Eveniet nam fuga quos tempora voluptates quod ea. Quia sit consectetur voluptas facilis accusamus totam officiis. Aut quaerat aliquam fugiat blanditiis quaerat. Et quas iste voluptates ut et.','2017-12-27T18:42:50.048Z',95,5,'judah-okeefe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (567,'Consectetur a adipisci exercitationem eum perferendis ad ex et. Amet iste at inventore soluta veniam perferendis cumque. Reprehenderit et nisi recusandae. Molestiae aspernatur consequuntur consequatur eum nulla ut.','2018-08-17T21:44:03.871Z',95,4,'newton-deckow'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (568,'Totam qui iusto enim beatae maxime. Numquam illum voluptatum dolorem nisi quia. Ex nesciunt corrupti eveniet deserunt veniam cumque dolor.','2019-10-09T13:24:10.990Z',95,5,'brad-hand'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (569,'Voluptate quis animi maxime deleniti unde. Quis occaecati nam nulla maxime. Excepturi cupiditate quaerat mollitia quaerat aut. Sed nesciunt neque repellendus. Temporibus iste quia quia eaque qui perspiciatis.','2019-06-15T00:22:28.099Z',95,4,'camille.bailey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (570,'Non omnis enim quo magnam voluptate. Velit aut est ut labore. Doloremque voluptatem minima ratione voluptatibus ex at cumque provident. Eius reiciendis facere expedita.','2019-08-23T10:15:18.294Z',95,4,'verlie-murray'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (571,'Enim doloremque odio officiis. Alias iusto eaque optio pariatur. Aliquid non quia officia quia placeat nisi. Laudantium doloremque nobis velit quia.','2018-09-18T16:08:38.855Z',95,5,'kim'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (572,'Est ad dolorem odit vero et quas sunt. Atque voluptatem suscipit et. Placeat rerum hic esse dolor reiciendis.','2018-12-27T15:54:33.414Z',95,4,'frederique-prosacco'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (573,'Qui laudantium quo illum laboriosam et veniam aut. Id explicabo sequi expedita qui et explicabo. Hic praesentium eveniet fugiat in iure cupiditate.','2018-09-23T21:47:32.400Z',96,5,'elvie-zieme'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (574,'Totam quis officia vel omnis labore. Pariatur exercitationem voluptatibus quis ut. Qui quasi est libero voluptatem quasi aut quod.','2019-01-10T08:29:31.955Z',96,5,'kennedi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (575,'Corrupti tenetur nisi ut minima est facere nisi. Consequatur perferendis corporis vel pariatur. Et deleniti vero et aut facilis illum temporibus debitis.','2018-03-26T10:17:08.367Z',96,2,'garfield'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (576,'Beatae perspiciatis qui eius aut. Explicabo aliquam at laudantium incidunt. Nisi autem quidem et cupiditate qui. Ducimus esse cumque sunt quia ullam sed reprehenderit.','2018-10-07T22:27:03.125Z',97,4,'abbey-heidenreich'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (577,'Dicta voluptas perspiciatis in. Magni reiciendis id quod nihil at culpa nulla qui. Et enim itaque rerum dicta quaerat non.','2020-01-30T16:53:05.313Z',97,4,'alberto'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (578,'Ex non earum et est itaque pariatur. Aut nihil ipsa molestiae occaecati. Hic aut beatae dignissimos atque sed possimus enim. Provident omnis ullam magni consectetur quod fugit eos. Et velit dolores nostrum fugit.','2020-03-19T23:14:52.980Z',97,4,'alberto.feil'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (579,'Eos ut voluptatem tenetur esse ab est accusamus alias. Voluptatibus asperiores excepturi unde voluptatem laborum eaque est. Provident ut optio ipsa aut laboriosam ex. Dolor iusto nostrum maxime. Qui esse quis soluta.','2019-04-13T15:07:34.940Z',97,4,'assunta.block'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (580,'Assumenda velit voluptatem officia ex. Laboriosam et et debitis veniam. Vel sed tenetur sit et sit voluptate rerum odio. Et eum qui unde id eos qui. Accusamus voluptate voluptatem laboriosam quibusdam et exercitationem aut quaerat.','2019-08-02T04:09:59.464Z',98,5,'toni.morissette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (581,'Vel sit expedita nam hic. Tenetur veritatis incidunt saepe est. Dolorem sit quos facilis.','2019-06-03T12:21:10.160Z',98,4,'rowan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (582,'Facere eum libero delectus nostrum sequi nobis enim nulla. Praesentium consequatur voluptatibus pariatur dolor culpa corrupti. Adipisci qui iure reprehenderit corporis saepe consequuntur.','2020-02-16T07:16:43.181Z',98,5,'esperanza'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (583,'Sunt deleniti sequi sequi nesciunt et voluptas. Qui similique enim fuga corporis autem id. Assumenda sit inventore nesciunt eos modi.','2020-03-24T18:50:43.440Z',98,4,'antonetta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (584,'Qui et in vitae voluptas similique rem illo. Nemo perspiciatis eaque aperiam. Aut earum aliquid soluta dignissimos omnis.','2020-02-28T20:54:39.074Z',99,5,'nash'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (585,'Eos eligendi similique consequatur. Rerum excepturi sit ea perspiciatis voluptatum et officia itaque. Ipsum modi vel eius facere. Repellat quidem qui quia voluptatum.','2019-02-18T08:44:59.246Z',99,4,'hans'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (586,'Debitis eius reiciendis praesentium. Fugit temporibus est possimus ab quis. Sit aut error iusto impedit nesciunt.','2020-02-22T02:09:34.524Z',99,2,'kamille.dicki'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (587,'Ut aut quia harum suscipit aliquid atque. Sit doloribus ut voluptas et. Minima quam rem temporibus minima ut ea. Deleniti omnis quia sit.','2019-06-06T06:46:40.237Z',99,3,'savanna.moore'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (588,'Aliquam sed enim numquam fugiat. Dignissimos doloremque ut optio omnis temporibus necessitatibus. Deleniti odit voluptas impedit.','2019-03-20T02:13:07.669Z',99,2,'randal'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (589,'Dolorem reprehenderit qui non sint et nemo qui consequatur. Est laboriosam velit aut et et ut in fugiat. Accusantium animi reprehenderit magnam quis qui corrupti.','2019-04-24T20:20:20.811Z',99,4,'gregoria'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (590,'Maiores ex inventore doloremque debitis molestias. Quia laborum vel aut repellat mollitia. Autem neque atque consequatur et quisquam libero voluptates. Nemo autem sit autem ab amet qui. Ducimus dolorem labore aut nam.','2018-05-14T14:31:34.775Z',100,4,'tina.hilll'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (591,'Possimus ut dignissimos sint. Nobis quia ad laborum et. Cumque ex et molestias maiores occaecati est vitae.','2019-12-18T23:51:50.935Z',100,5,'esta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (592,'Dolores sit eos sit. Assumenda facere quisquam nobis. Eos enim earum fugiat optio enim inventore et. Nihil at quisquam quia et. Aut explicabo placeat ullam ducimus.','2019-11-05T15:45:30.540Z',100,5,'felix'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (593,'Sed et necessitatibus voluptas est et eum. Sit quas vel consequatur. Deserunt saepe et molestias cupiditate eveniet qui a quo. Hic voluptas quibusdam accusamus. Quasi qui quisquam magnam dolorum cumque placeat saepe et.','2018-12-16T00:19:53.482Z',100,2,'nia-lind'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (594,'Voluptatum nostrum voluptatum dolor. Beatae sit doloribus et. Quia voluptas aut temporibus voluptas in quo. Quasi similique eius explicabo sunt autem aut vero sit. Illum nisi dolore doloremque sed velit repudiandae.','2018-05-11T23:10:17.235Z',100,4,'titus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (595,'In doloremque est molestiae qui temporibus. Illo mollitia sed doloribus facilis quidem optio. Alias explicabo aspernatur in sed rem ad qui. Ea sed illo ipsa eos labore.','2017-07-16T23:10:37.515Z',101,4,'josh'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (596,'Temporibus perferendis nisi natus voluptatem. Tenetur dolore rerum ipsam. Voluptas ea alias totam fugit non consequatur nihil consectetur.','2017-10-17T20:16:11.601Z',101,4,'silas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (597,'Quia quas quo est qui minima. Molestiae eum distinctio rerum voluptatem amet. Qui eos omnis ut consectetur natus voluptatibus sit. In et tenetur delectus. Et possimus accusamus sequi earum.','2018-06-18T14:12:47.150Z',101,3,'shaniya.fadel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (598,'Occaecati aliquam vel fugit. Distinctio similique illo fuga quidem dolorem. Veritatis exercitationem in dolores dignissimos provident maxime magnam officiis.','2017-11-18T20:42:14.142Z',101,5,'asa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (599,'Exercitationem odit cupiditate consequuntur. Id sint facilis quis sed libero explicabo. Aut modi quod itaque in. Officiis suscipit tempora unde quasi qui. Reprehenderit nam ea et necessitatibus.','2020-02-04T15:04:44.196Z',101,2,'amos'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (600,'Doloremque error enim nihil dolor dolore. Natus sapiente dolorem beatae fuga harum molestiae. Quia corporis id sunt et sed eaque enim. Voluptas dignissimos illo facilis quis in. Numquam sequi tempora aut cum consectetur.','2017-07-07T16:50:40.581Z',101,4,'jarrett'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (601,'Quod iusto nesciunt facilis enim voluptatem. Quisquam corporis quasi dolores omnis exercitationem incidunt quisquam qui. Officiis placeat sed beatae nobis optio non et. Placeat doloribus et aut eos. Sequi porro assumenda officiis.','2019-09-21T03:34:04.133Z',101,4,'rhiannon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (602,'Repudiandae aut at et illum qui sint soluta. Atque perferendis voluptas est minus incidunt impedit qui. Id est velit nisi eos. Eos animi esse consequatur placeat voluptate. Aliquam eos asperiores non alias corrupti beatae voluptatem explicabo.','2019-03-08T02:15:47.032Z',101,4,'rebeka'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (603,'Nihil sint velit accusantium officiis. Explicabo quos necessitatibus nulla quia laudantium. Temporibus repellendus alias sit voluptas quia mollitia aperiam.','2017-11-25T13:28:56.894Z',101,3,'dino'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (604,'Quibusdam vitae atque molestiae et accusantium. Perspiciatis odit omnis quos nisi. Porro voluptatibus autem qui accusantium hic et. Rerum aut totam in dicta sapiente id dolor officiis.','2019-08-28T16:39:20.385Z',102,4,'myrtis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (605,'Iure quod voluptatem nemo ut beatae. Laborum est voluptate aut earum assumenda. Optio facilis voluptate adipisci ab quisquam officiis in aut. Placeat quisquam earum ea praesentium. Vel inventore dolores eos dolore deleniti odio.','2019-05-03T08:03:28.902Z',105,3,'lukas.ritchie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (606,'Quasi id ducimus ullam dignissimos nostrum exercitationem nulla. Laudantium sapiente asperiores est porro. Est adipisci reprehenderit nisi quisquam rerum.','2019-12-31T02:45:04.914Z',105,4,'laura.kuhic'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (607,'Qui exercitationem et quaerat similique voluptatibus ullam culpa labore. Culpa saepe voluptate vel fugit id. Doloremque deserunt iure consectetur sapiente eligendi. Ex ratione voluptates soluta excepturi. Aspernatur eius dolorem ea.','2019-12-30T10:05:00.415Z',105,4,'logan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (608,'Omnis velit aut eum enim ipsam doloremque. Doloremque sed molestiae et dolorem sunt nostrum. Nisi velit sit qui est. Totam nulla hic nulla dolor minus porro.','2016-06-26T14:56:14.974Z',105,5,'devon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (609,'Eveniet doloremque amet velit est odio. Aut quo distinctio voluptate maxime fugit. At ipsam aliquid ea. Sapiente est rerum ullam reiciendis qui quis consequatur earum.','2018-03-17T07:32:30.058Z',105,4,'susanna-romaguera'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (610,'Corporis id odit quo illum facilis. Repellat quae facere iusto libero quis ex. Corporis dolorem rem exercitationem neque culpa.','2017-07-22T17:37:35.936Z',106,4,'dillan-kemmer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (611,'Porro ex inventore soluta minus possimus voluptatem. Beatae sequi alias omnis perferendis omnis aperiam fuga ipsam. Earum sint est alias est quas. Accusamus culpa et vel dignissimos velit. Molestiae voluptatem nihil quia incidunt.','2018-11-09T12:57:38.472Z',106,5,'lester-reynolds'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (612,'Saepe aut dolores nihil. A amet nobis earum. Adipisci ipsa porro voluptas amet.','2018-11-09T11:00:10.587Z',106,4,'zula-douglas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (613,'Eum blanditiis aliquam accusamus labore. Recusandae distinctio ea est sunt. Veritatis sunt nesciunt exercitationem itaque necessitatibus atque. Unde velit facere deserunt. Amet delectus et sit quia amet.','2018-01-02T02:44:08.793Z',107,4,'milton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (614,'Recusandae laborum non vel voluptatibus quae ea. Natus aliquid ea ut. Ad sit corporis consequatur placeat nemo soluta. Est velit facilis id ratione tempore aut.','2017-12-04T21:51:30.986Z',107,5,'sandy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (615,'Aliquid fugit doloribus adipisci totam architecto sed voluptas tempora. Quas minus dolores et vel eum. Reprehenderit ut commodi cumque optio vitae.','2019-10-31T15:00:33.893Z',107,5,'harmony-mante'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (616,'Eum incidunt ratione distinctio ut alias ut necessitatibus rerum. Magni ut dicta eos in consequatur aut est voluptatem. Minima recusandae sapiente tenetur ut enim eos. Sit ad ut autem rerum porro qui tempore sit.','2018-02-20T12:08:39.272Z',107,2,'houston-greenfelder'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (617,'Ut non at aliquid explicabo voluptatum nesciunt. Sit et vel quam doloribus quia harum est laborum. Suscipit corporis sed qui est. Magnam quisquam eaque placeat.','2019-12-14T03:22:39.889Z',107,4,'sarina-rice'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (618,'Reprehenderit recusandae nam molestiae doloremque et voluptas aliquid. Consequatur sed voluptates est ipsa aut et. Iure ea facilis qui voluptas qui ut quis quas. Enim temporibus aut cumque tempore suscipit praesentium animi.','2019-05-14T12:21:45.082Z',108,4,'vivianne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (619,'Dolor magni sit omnis saepe. Error officiis eveniet voluptatem aut. Porro iusto unde incidunt. Exercitationem dolorum voluptatem nihil ut eos omnis rerum natus.','2020-03-12T18:38:47.065Z',108,4,'derrick'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (620,'Rerum officia amet voluptatem rerum omnis. Et quisquam dolore similique repellendus. Odit inventore maiores nesciunt similique omnis non omnis ea. Officiis quia dolores non vitae explicabo ut.','2020-03-25T16:43:20.747Z',108,3,'josefina.raynor'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (621,'Sunt magni aut magni delectus sunt ut laborum delectus. Quia quia accusantium occaecati quae veritatis consectetur. A quia cumque incidunt ex non cupiditate libero nihil. Voluptatum vitae aperiam aut. Exercitationem repellat nihil similique maxime.','2019-11-03T08:19:45.438Z',108,5,'luella-blanda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (622,'Odio sunt et delectus rem et itaque culpa ut. Voluptates hic aspernatur similique quo. A dicta libero nulla ea. Exercitationem cupiditate nobis vel illo.','2019-06-27T17:33:49.570Z',108,5,'regan.grant'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (623,'Magnam sit quod ipsum dolores dignissimos inventore. Modi a autem id pariatur nisi architecto perspiciatis. Tempore delectus labore dolores omnis molestias assumenda optio. Consequuntur sit quasi cum maiores odio. Et id et ut.','2019-05-14T17:20:24.947Z',108,4,'bret'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (624,'Ullam quisquam aut vel. Non numquam culpa doloribus non ex. Qui magni assumenda nobis. Quis expedita libero ratione. Modi distinctio et ipsa corporis tempore.','2019-05-29T07:05:49.485Z',108,4,'robert.king'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (625,'Rerum maiores illo et. Doloribus molestiae rerum vel provident. Magnam eos exercitationem placeat iste modi. In praesentium eveniet molestiae amet delectus in.','2019-04-29T08:56:17.118Z',108,5,'ettie.fahey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (626,'Eum tenetur blanditiis mollitia provident consectetur eligendi. Beatae molestias tempora at repellat iste suscipit. Commodi aspernatur voluptatem molestiae quidem ut doloribus consequatur. Sed aut voluptatem quia quia recusandae. Nemo harum sed earum.','2019-11-16T06:56:03.127Z',108,2,'alvera'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (627,'Magni id occaecati similique. Accusantium amet nihil id ratione. Provident accusamus harum ut qui veritatis officiis odit.','2020-03-16T23:50:44.869Z',111,2,'shayna-lueilwitz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (628,'Consequuntur quia consequatur cumque. Quae fugiat non ea delectus est aut ullam. Assumenda in dignissimos doloremque.','2018-12-27T16:14:51.240Z',111,2,'marge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (629,'Nesciunt similique ut repellat molestias ad aut illum consequuntur. Occaecati omnis delectus cumque consectetur. Dolor eaque cupiditate non consequuntur aperiam accusamus.','2020-03-14T18:06:40.314Z',111,5,'arielle.sawayn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (630,'Nihil voluptas et laboriosam suscipit. Perspiciatis nisi ab accusantium harum deleniti minus consectetur perferendis. Aut voluptas tempore quos. Architecto voluptatem consequatur eum et officia porro harum accusantium.','2018-12-26T03:45:58.180Z',111,4,'vella.borer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (631,'Perspiciatis ad molestiae tenetur autem sapiente cupiditate voluptas vero. Et eius qui quas vitae. Possimus quia ipsa iusto. Consequatur voluptate autem et.','2018-10-05T13:38:19.391Z',111,5,'daron'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (632,'Provident ut accusantium architecto quaerat dicta sit deleniti hic. Et et ut voluptatem voluptatem sit quam. Ut iusto earum est amet.','2020-02-06T14:18:48.885Z',111,4,'chadrick'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (633,'Nam voluptas saepe sequi quia eligendi voluptas quisquam et. Eos ut impedit est. Veritatis voluptate et rerum consequatur dolorum sit.','2019-11-16T14:57:13.386Z',111,4,'edna.runolfsdottir'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (634,'Maxime repudiandae nemo corrupti quibusdam excepturi. Doloribus in accusamus voluptatem corrupti. Assumenda nesciunt maiores neque saepe sunt. Consequatur libero adipisci velit sed et delectus provident rem.','2019-01-14T00:55:54.283Z',111,4,'gwen-balistreri'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (635,'Aut molestiae rerum nostrum officiis voluptatem omnis quo quod. Perferendis aut itaque qui nulla sed velit. Suscipit fugiat itaque dicta officia id a qui. Culpa ipsum culpa maiores porro temporibus.','2019-06-15T08:29:33.485Z',111,4,'quentin.harris'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (636,'Magnam assumenda repellat magni quas voluptate sunt quas ad. At tempore incidunt qui. Quis dolorem iusto sed in rerum autem atque. Ipsa voluptatem itaque similique et et et aperiam.','2020-02-04T12:07:44.248Z',111,4,'lora.littel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (637,'Itaque eaque ut aliquid. Est et non et minima atque iure excepturi. Consequatur repellendus atque saepe corrupti iste. Ad itaque quis magnam ut vitae fugiat ipsam.','2019-01-04T05:44:42.257Z',111,4,'ethel-pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (638,'Quos et tenetur fugit porro. Sunt molestiae omnis in. At quia aut voluptas.','2017-05-04T21:28:54.035Z',112,5,'laila'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (639,'Excepturi qui sint similique ab beatae qui. Similique et consequatur deserunt debitis quo commodi ut ipsum. Sunt corporis sapiente officiis. Dolorem consequuntur non placeat sed cum. Ducimus eos aut nam assumenda accusamus id.','2020-04-13T15:48:18.398Z',112,4,'gilbert-cummerata'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (640,'Placeat laboriosam ullam ratione rerum. Eligendi maiores delectus totam quibusdam in porro. Non sint maiores sunt odio est. Sed odit sint voluptas reprehenderit cumque.','2019-11-25T15:04:32.838Z',112,3,'cristobal-johns'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (641,'Consequatur rerum recusandae labore. In maiores aut ipsum aut tempore labore quo. Deleniti laudantium ratione repellendus ducimus ut distinctio.','2019-05-23T14:27:14.112Z',112,4,'mya-mccullough'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (642,'Cupiditate aspernatur sint ipsum incidunt laudantium exercitationem. Est doloremque minima cumque vero tempora maxime iure. Minima mollitia officiis nihil.','2019-03-30T08:23:44.136Z',112,5,'monroe-gutmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (643,'Qui iusto distinctio accusantium et et. Impedit in commodi dolorem occaecati alias. Dolorum adipisci eos explicabo odio aut facilis expedita aut. Necessitatibus odit magnam sit. Nesciunt dolorem aspernatur et.','2018-01-03T18:46:14.884Z',112,4,'sophia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (644,'Libero et sit et iure. Dolorum ut sit exercitationem quod non eum. Porro autem sint nemo doloribus sed impedit consequatur expedita. Corrupti modi culpa nam qui. Fugit et delectus nihil assumenda.','2018-04-09T20:30:12.120Z',112,4,'brett.kris'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (645,'Rerum veniam fugiat occaecati nam laborum natus quisquam. Quis velit totam dicta incidunt. Dolore sint eos doloremque.','2019-06-11T13:17:17.938Z',113,2,'jovan-hoppe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (646,'Repellat et reiciendis cum tempora est sint esse. Sed aut tempora impedit. Ab et et libero. Dolor animi iusto aut ut tempora sit quia facere.','2019-04-04T03:33:36.264Z',113,2,'jeanette.marks'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (647,'Omnis et ab recusandae et. Porro quasi minus in. Sapiente quos dolores et neque architecto quos et sed. Earum cupiditate ea optio non qui impedit et. Id reprehenderit illum optio corrupti non aspernatur.','2020-04-01T23:30:49.050Z',113,4,'rhett-schinner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (648,'Quia adipisci tempora est impedit eum fugit qui. Dignissimos porro assumenda non et doloribus dolores eos. Iure perferendis ullam quia. Porro voluptates quia qui.','2020-02-06T06:11:38.543Z',113,5,'jamison.huels'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (649,'Omnis et omnis similique facilis at. Soluta nihil accusantium explicabo sit possimus. Non explicabo incidunt illo sed.','2019-06-01T18:33:19.439Z',113,4,'samson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (650,'Magni unde temporibus aliquid itaque ipsum molestiae non earum. Quo rerum qui unde. Laudantium laborum et aliquam et provident quis non. Ut velit ipsa similique.','2019-08-30T22:31:59.931Z',113,2,'sophie.jast'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (651,'Fugiat magnam et fugit ut quas ad sequi consequatur. Fuga maxime cupiditate maiores accusamus quia. A sint quis aperiam aut eveniet. Voluptatibus velit omnis ratione quis et est.','2019-12-19T08:34:19.406Z',113,4,'johnathon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (652,'Quaerat consectetur nihil minus. Officiis sint nihil non est facere. Aut repudiandae dolorem odit modi. Et omnis et odit quis occaecati. Omnis eos blanditiis dicta ad aut laboriosam enim.','2019-06-03T11:04:02.132Z',113,4,'fermin.parisian'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (653,'Laborum quae et optio molestiae. Magnam porro dolorem nihil id exercitationem. Iste sit pariatur aliquid non.','2019-06-12T09:16:15.568Z',113,4,'willow-rohan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (654,'Dolor molestias harum ex dolorum ducimus consequuntur. Vel id illum voluptatum aut sed ut ipsa eligendi. Eum ut magni iste totam. Ut enim est modi quod officia at et.','2019-03-23T01:14:21.740Z',113,2,'jakob.bashirian'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (655,'Minus sunt nihil dolorum totam. Aspernatur et et consequuntur dicta ut. Reprehenderit maiores ullam repellendus. Architecto qui rem et autem eius sed et adipisci.','2019-11-07T08:08:40.805Z',114,5,'joelle.walker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (656,'Quas odit impedit tempora ullam quos eveniet accusantium. Quia in ratione omnis in omnis et. Non est voluptatibus ut qui et consequatur quod iusto.','2018-07-25T15:29:05.437Z',114,5,'horacio'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (657,'Est voluptatem est nihil ab. Omnis numquam consequatur rem. Cumque cum qui quia est nihil ex. Corrupti repudiandae quos sequi magnam ea.','2019-10-05T23:04:29.728Z',114,2,'lonny.walker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (658,'Dolor provident quo illum. Vel nemo recusandae sequi. Eos sed facilis rerum. Voluptatum sed mollitia ratione vel ut eligendi.','2019-01-10T23:02:17.123Z',115,4,'candido.glover'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (659,'Provident ut fugiat nobis quasi minima. Qui et quisquam officia velit dolor. Ex autem et eos sed et neque ut totam. Impedit inventore modi vitae possimus saepe. Totam architecto placeat in praesentium exercitationem.','2019-10-26T16:32:48.464Z',115,4,'duncan.von'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (660,'Nihil ut mollitia porro et et. Nobis eveniet non vel doloribus commodi accusantium ab ut. Et aut saepe repellendus amet cumque similique.','2019-05-14T17:21:26.754Z',115,4,'reina.volkman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (661,'A maxime recusandae alias rerum nihil labore beatae autem. Vitae corporis est doloribus aspernatur dolor. Repellat et sit iure.','2018-08-12T20:08:04.832Z',115,4,'rosemarie-pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (662,'Provident voluptatibus eveniet ad. Cum eum architecto et accusantium atque et veritatis vel. Quia quaerat esse earum est id. Explicabo quia incidunt est.','2020-01-14T01:11:30.345Z',115,5,'mireille'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (663,'Nulla nisi perspiciatis voluptates tempora. Architecto modi tempora quos quia. Quos veritatis ipsam nisi et. Magnam dicta at a. Dicta aut magnam ut occaecati et qui.','2019-05-04T19:05:43.238Z',115,4,'alyce'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (664,'Nobis similique reprehenderit perferendis. Aperiam voluptatibus mollitia blanditiis quasi vitae iusto. Molestiae a mollitia ut voluptate. Ea ut consequuntur explicabo.','2019-05-28T23:34:43.788Z',115,5,'ansel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (665,'Eum similique fugiat dolorem molestiae facere quos. Et quam doloribus ut. Asperiores dolores rerum doloremque porro ea. Corrupti aliquam quia veniam aut cumque in. Assumenda sed id reiciendis sint consectetur mollitia.','2019-02-16T16:34:39.625Z',116,4,'noemy.tromp'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (666,'Facere ipsum asperiores dolore ipsam ratione. Et tempore officiis perspiciatis eius fugit natus vero. Et amet deleniti et vero ut rerum eligendi similique.','2019-03-26T20:13:32.441Z',116,4,'stephan.nitzsche'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (667,'Illo fuga inventore minus ad et quia reiciendis. Voluptas minima rerum nostrum. Voluptatem similique facilis dicta sapiente facere maxime quis fuga. Nostrum quasi rerum repudiandae.','2019-09-05T06:07:04.397Z',116,4,'kendrick'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (668,'Corrupti enim sunt ducimus non eum sunt odit nemo. Enim ut aut rerum quis molestiae. Et a suscipit laboriosam.','2019-01-24T21:05:07.386Z',116,4,'randall-wisozk'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (669,'Suscipit earum quod beatae. Eius eveniet ipsum dolore blanditiis. Sed corporis explicabo optio distinctio ut minima vel. Repudiandae sunt saepe minus quaerat voluptas dolorem. Nisi ea pariatur et provident sit.','2019-04-16T20:19:35.179Z',116,5,'marjorie-wilderman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (670,'Rerum sint illo quam voluptatibus asperiores consectetur reiciendis quasi. Velit pariatur ut rerum impedit. Provident qui dolores aliquam architecto similique. Id nam dolore quis temporibus omnis animi mollitia harum. Quia eum odit similique ducimus quae.','2017-03-05T18:43:50.098Z',117,4,'alverta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (671,'Similique exercitationem sapiente sed sequi velit facilis ut est. Est impedit dolorem soluta maxime et sint repellat. Vel repudiandae ut quidem.','2018-01-07T13:21:32.694Z',117,5,'dorris-cummings'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (672,'Reprehenderit reprehenderit aut et aut sed. Distinctio alias impedit aut error omnis consequatur et corporis. In ad dolores laborum ut incidunt.','2018-01-30T22:51:18.747Z',117,4,'anais'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (673,'Quia corporis hic tenetur eum dicta omnis. Illo quia non soluta consequatur amet corrupti sint. Distinctio quod reiciendis asperiores possimus sequi quaerat. Et autem suscipit fuga nobis similique. Optio voluptatem minima ipsum qui aut officiis sit.','2018-05-09T18:11:17.013Z',117,1,'vallie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (674,'Tempore odit cum perferendis minus dolor est qui. Sit doloremque eligendi neque. Rem distinctio aut cumque nulla eum. Rerum consectetur sed a. Numquam nesciunt vitae quo adipisci.','2020-01-15T01:42:41.543Z',117,4,'vernice'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (675,'Modi quas iste dolores aut modi. Ut dignissimos et quos qui porro exercitationem. Non omnis quo sunt vel velit. Laudantium nobis saepe minus velit est dolorem quisquam. Mollitia pariatur assumenda nesciunt minima iusto omnis.','2019-04-25T14:38:17.458Z',117,4,'joel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (676,'Suscipit quidem itaque voluptatum. Consequatur qui aut vitae qui. Consectetur rerum sunt asperiores.','2019-02-05T13:47:45.081Z',117,3,'daphnee'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (677,'Ab repellendus atque sunt laborum accusantium placeat. Nemo rerum commodi nisi ullam veniam deleniti ipsa. Odio eum facere minima cum deleniti in quas sint. Sed at ex consequatur vel.','2017-03-06T23:18:14.878Z',117,2,'savanah-champlin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (678,'Voluptatem ut tenetur corporis eos quam. Voluptate velit dolor et quidem incidunt. Autem similique expedita minus alias doloremque adipisci. Dolorem suscipit eius deleniti quae itaque ut vero nemo.','2019-09-25T00:01:15.710Z',117,5,'khalid'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (679,'Eos ut enim nulla id vitae quod est necessitatibus. Ut sed commodi assumenda ea aut sunt et non. Blanditiis est pariatur dolor sunt voluptatem. Est laudantium dolores et. Vel deserunt ducimus a temporibus eaque qui cupiditate.','2019-10-24T12:28:56.727Z',118,5,'tito-murray'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (680,'Consequatur ad perferendis et. Delectus praesentium aut et eos sed. Sint exercitationem doloribus qui consequuntur occaecati ea laboriosam eius. Aliquam voluptate vel quaerat. Sed aperiam est eum dignissimos.','2019-01-27T15:27:35.818Z',118,3,'jesus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (681,'Eius ut illo nisi fugiat. Sequi in consequatur totam quis ea et ut nemo. Vitae accusamus mollitia animi voluptas distinctio tempore ad maiores. Ab earum ipsum rerum. Commodi aliquid ducimus voluptates veritatis omnis reprehenderit.','2017-06-29T14:28:04.392Z',118,2,'shea-dach'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (682,'Soluta odio tempore aut exercitationem repudiandae ea. Possimus rerum et non enim in. Sunt et earum cumque dicta placeat eligendi. Sit et numquam placeat placeat ea cum sit.','2018-04-06T11:40:10.982Z',118,4,'beth'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (683,'Enim officiis vel qui dolor reprehenderit quia voluptas. Dolore cum ab rerum nisi repellat dolor doloribus. Ea consequuntur ipsa veritatis et hic sapiente libero. Praesentium consequuntur dolorem officia. Atque non dolor et omnis.','2017-07-16T06:44:27.134Z',118,4,'lulu-ratke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (684,'Ab aperiam tempore recusandae. Pariatur labore facere recusandae impedit eos inventore. Exercitationem quia rerum non laborum.','2019-11-14T09:39:31.464Z',118,1,'salvador'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (685,'Sit quasi velit voluptatibus autem quisquam sit consequatur omnis. Illo similique voluptas occaecati facere eum quia. Et dolor vitae et sequi delectus.','2019-10-04T06:48:27.005Z',119,4,'bulah'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (686,'Provident minima tenetur temporibus iusto nesciunt. Eveniet qui ut numquam qui voluptas velit. Dolor earum est possimus vero. Autem quisquam est non incidunt quisquam qui. Quia dignissimos veniam iure quo.','2018-10-24T13:15:55.531Z',119,5,'kirsten.sanford'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (687,'Est voluptatum cupiditate quos non neque quis non nemo. Rerum facere nostrum animi qui voluptate sapiente. Quo architecto in inventore commodi error. Optio maxime minus est aut eligendi quod enim.','2019-07-02T01:44:26.180Z',119,4,'kaylin-weber'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (688,'Nobis impedit eveniet eligendi in debitis voluptatem soluta. Magni ea ut animi nulla ab esse illo ea. Qui earum sit ut. Et dolores deserunt repudiandae magnam nulla sed distinctio.','2018-03-31T13:25:16.416Z',119,1,'delphine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (689,'Quo minus officia voluptate velit ipsum soluta tenetur. Qui doloribus aliquam rem voluptate cumque perferendis perspiciatis. Eum sunt illum aliquam excepturi ut voluptatum aut. Non optio quaerat sequi.','2018-12-17T13:24:59.764Z',119,4,'aliza'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (690,'Expedita vel et autem est tempora aliquid. Nam tempore et corporis delectus est corporis possimus. In veritatis molestiae sit amet. Quisquam sit saepe aliquam modi porro unde animi nobis.','2018-05-22T03:44:49.041Z',120,4,'paolo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (691,'Ducimus inventore ut a vitae omnis deserunt repudiandae. Aut aperiam vel odio. Dolores maiores suscipit et quasi exercitationem laboriosam.','2019-02-11T18:07:27.225Z',120,5,'jace.wehner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (692,'Molestias autem dolores ab fuga sequi. Ad adipisci maiores qui. Eum optio reprehenderit quia non.','2019-03-09T16:09:28.666Z',120,5,'evan.grant'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (693,'Sapiente quia quia quod qui voluptas reprehenderit qui odio. Inventore omnis vitae necessitatibus alias aliquid in. Dolores quia magnam voluptate. Quia ut quis fugit.','2019-10-29T14:21:13.113Z',120,2,'nicolette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (694,'Illum officia ad deleniti porro doloribus ea. Quidem minima sed est ut iste pariatur fugiat. Qui ad ab quas quasi. Et qui dolores omnis debitis reprehenderit deserunt optio voluptatem. Aut sed dolore laborum dolores iure et id.','2017-12-27T19:27:00.335Z',121,5,'janessa.kihn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (695,'Beatae vel provident illum et. Repellat sit eius ratione tempore repellendus nisi beatae. A ea voluptas maiores dolores a in. Veritatis impedit quo repellendus quisquam. Maxime aut quis ut et voluptas sunt.','2020-02-14T21:38:51.481Z',122,4,'robb.marks'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (696,'Consequatur id omnis quam. Molestias consequatur consequatur nemo vel. Quia excepturi non error.','2019-11-17T23:23:15.437Z',122,4,'christ.collier'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (697,'Vel illo ab est temporibus. Blanditiis et voluptate velit aliquam. Commodi esse sed repellendus natus autem est dicta. Minima aut id dolorem recusandae totam.','2019-08-05T22:57:57.230Z',122,4,'prince'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (698,'Quis maiores occaecati quod nostrum. Et tempore consequatur commodi fuga aperiam doloribus. Voluptas accusamus optio et fugiat sunt accusamus et.','2017-10-09T03:24:41.146Z',122,5,'destin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (699,'Hic nulla quas rerum a eum velit. Esse tempore beatae ut fugit id nulla sint. Fugiat est sit odio officia eligendi. Sunt et iste esse voluptatibus earum magnam. Non et culpa libero nemo odio est.','2018-09-16T07:38:30.442Z',122,1,'owen.price'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (700,'Cum voluptatem dolores eum id ab incidunt esse. Sit saepe quia quam reiciendis eius labore doloribus quo. Qui mollitia nam veritatis fugiat rerum. Quae voluptas aut repudiandae facilis.','2018-02-19T19:21:49.514Z',123,2,'wendell-lang'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (701,'Ut nam tempore pariatur dolores natus quaerat et impedit. Ad placeat quisquam et. Iure commodi quaerat quidem. Totam quidem ipsum sed vero architecto qui nobis incidunt.','2019-03-22T11:43:58.030Z',124,4,'garrett'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (702,'A cumque pariatur quisquam cumque. Reiciendis dolor eius sed odit. Qui iste saepe voluptatem porro consectetur ab rerum. Temporibus nostrum ratione id repellendus.','2019-07-04T12:45:28.976Z',124,4,'idell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (703,'Possimus omnis porro velit aliquam iste vitae. Aliquid voluptatem sunt ab id quam voluptatem quam aut. Sapiente temporibus consequatur nihil et dolores quaerat facere. Suscipit et possimus neque aperiam.','2019-04-25T02:56:05.451Z',124,4,'barney.borer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (704,'Consectetur dolores quo a nemo. Ut rem quas sit illo voluptate enim ratione consequatur. Nobis eveniet nisi aut minus deserunt.','2018-08-25T20:16:43.111Z',124,4,'mattie-balistreri'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (705,'Perspiciatis aperiam sed enim quaerat soluta. Quae blanditiis vel et. Aut incidunt est explicabo culpa mollitia reiciendis non quos. Quia et est mollitia perspiciatis aliquam excepturi reiciendis assumenda. Quis asperiores laborum nemo rem.','2019-11-19T02:27:34.444Z',124,4,'loy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (706,'Et facere debitis consectetur ad asperiores optio aut. Sapiente fugiat expedita beatae dolores. Eveniet incidunt temporibus praesentium. Pariatur possimus eaque possimus et dolores doloribus ut dolorem. Sint cumque eum architecto.','2018-09-27T08:18:01.866Z',124,4,'blair.waelchi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (707,'Dolorum hic quia error. Sed omnis rerum aut omnis dolorum repudiandae. Ipsa quisquam vel ex error quibusdam quos minus molestiae. Sunt quas quo possimus et saepe exercitationem. Cum voluptatem et amet aliquam voluptatem ipsum.','2018-05-25T16:17:10.492Z',124,5,'sydnee-weimann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (708,'Sed dolores maiores praesentium autem sunt ad. Mollitia repudiandae ut consequatur omnis. Deleniti labore id veritatis impedit a ut. Repellat neque velit aut ut ratione numquam in sint.','2018-07-20T10:52:53.988Z',124,4,'brennan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (709,'Et illo id rerum aut odit quisquam consequuntur molestiae. Accusantium autem odit sed aut quidem tempore. Omnis vel inventore quos ut exercitationem dolore inventore sint. Voluptatem illum expedita et et illum quia. Asperiores magni temporibus maiores asperiores nihil.','2019-12-28T18:42:35.578Z',124,3,'rodrick.kuhn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (710,'Voluptatem dolorum fugit aliquid voluptates. Rem excepturi voluptatem sed. Adipisci sint placeat doloremque. Est veniam aut suscipit quo incidunt.','2018-06-06T07:18:36.432Z',125,1,'emelia.mcdermott'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (711,'Quod necessitatibus fugit ullam alias qui sit dolores. Sint dolores perspiciatis corrupti nihil et. Voluptatem placeat illum voluptate ipsa facere id quasi sapiente. Quaerat voluptas quia fugiat a itaque porro. Voluptatum libero qui voluptas dolores molestiae temporibus laudantium mollitia.','2017-12-24T08:25:32.690Z',125,4,'jakayla.schoen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (712,'Omnis laborum rerum omnis tempora dolorem molestiae alias. Veritatis dolorem necessitatibus expedita. Suscipit et corporis occaecati possimus sed nulla. Suscipit sint quis et est deserunt incidunt. Asperiores omnis est facilis quibusdam eum et ipsam.','2018-09-24T14:16:27.219Z',125,4,'merlin-runolfsdottir'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (713,'Et distinctio cupiditate error rerum tempore quas deleniti. Pariatur exercitationem officia voluptas. Perferendis qui quo eius rerum animi autem aliquid velit. Voluptate corporis necessitatibus maiores unde qui. Sequi et enim animi qui.','2018-07-15T04:00:27.250Z',125,4,'henri'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (714,'Amet dolorem et animi explicabo error. Temporibus praesentium laboriosam reprehenderit voluptatem distinctio. Non consequuntur earum sapiente rerum amet minus qui sit. Adipisci consequatur voluptatum molestiae adipisci est.','2018-12-12T05:44:21.026Z',125,4,'alexandria'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (715,'Natus eius magnam consequatur at quia placeat ipsum. Dolorem molestiae hic totam architecto id molestiae inventore quia. Voluptas autem dolores esse quibusdam perferendis totam. Quidem quos earum error magnam.','2017-07-08T14:27:42.084Z',126,4,'kayli.emard'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (716,'Beatae et vel deserunt veritatis amet iste. Voluptatem qui non et quia iusto minima vel. Tempora laboriosam animi suscipit facilis adipisci molestiae ex. Voluptas aut sit consectetur illum.','2019-07-28T22:05:16.884Z',126,5,'zechariah-rau'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (717,'Dolores sit soluta enim ut animi architecto dolores. Quia molestiae velit ut. Veritatis quisquam necessitatibus recusandae molestiae vero possimus. Facilis aut est possimus consequatur est id sit excepturi.','2019-12-02T00:18:26.953Z',127,4,'leila'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (718,'Omnis consequatur dicta aperiam temporibus velit. Ut rerum ipsam quia. Eius dolore beatae perferendis ipsum.','2019-07-10T01:40:58.646Z',127,4,'torrance'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (719,'Asperiores vitae velit quisquam qui qui. Rerum doloribus asperiores non voluptas alias fugit repellat. Minima soluta odit illum ipsum qui odio. At aliquam nam non dolorem voluptate inventore. Iure ut placeat enim et et voluptatum eum.','2019-08-02T03:31:52.886Z',128,4,'caleb'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (720,'Blanditiis quibusdam eos nam quaerat amet harum repudiandae. Nobis ullam velit odit eos est repellendus. Repellat rem voluptas quae distinctio est et.','2018-03-16T06:08:43.019Z',128,4,'jules.jacobs'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (721,'Voluptatibus quis aut molestias qui sint provident itaque quo. Quis in eaque error voluptates. Omnis rem necessitatibus velit et assumenda enim nesciunt et.','2018-08-06T12:45:24.788Z',128,5,'benny'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (722,'Ratione quasi autem illum asperiores accusamus. Voluptatem pariatur esse doloribus provident omnis nemo cum ut. Illum a maiores id consequatur quos sit earum eaque. Autem et ea aliquid.','2018-04-29T05:35:12.855Z',128,5,'thurman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (723,'Vero ut atque voluptatem nesciunt. Ipsam ab aliquid quidem. Quia placeat quos ipsam et. Ut doloremque incidunt ut voluptas adipisci quia illum ut. Et autem at asperiores.','2020-03-10T15:17:20.347Z',128,4,'walter'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (724,'Ad deleniti sed mollitia aut fugiat incidunt. Iste quasi at ipsam maiores cumque hic nesciunt. Nam rem doloremque ipsam quia nobis ipsum sapiente officia. Illum inventore voluptatibus id architecto. Similique totam minus laboriosam.','2017-11-15T22:04:11.144Z',128,4,'kevon-murphy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (725,'Deserunt laudantium corrupti nesciunt eveniet non sapiente in. Aut ab quo enim pariatur adipisci labore. Accusamus voluptas consectetur veritatis autem consequatur quasi iure accusantium.','2018-10-29T09:12:08.659Z',128,5,'stefanie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (726,'Voluptatem consectetur rem accusantium. Quia eos amet dolor et. Quia sunt nostrum ut aspernatur dolores id. Sunt quisquam rerum nisi necessitatibus fugit.','2019-07-11T19:18:23.617Z',128,4,'maurice.mccullough'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (727,'Quod minima sed temporibus voluptatem ea. Corrupti et ut temporibus quas. Aspernatur asperiores quae et. Unde aperiam dolorem neque illum architecto dolore.','2018-04-26T23:54:24.780Z',129,4,'barbara.hahn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (728,'Corporis delectus temporibus quis nemo magni assumenda asperiores. Veritatis illo omnis qui. Sed quidem excepturi molestias esse consectetur. Laboriosam sunt vitae voluptas. Facere aut velit excepturi eveniet sequi quam.','2018-06-09T20:59:35.716Z',129,2,'leland.wilkinson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (729,'Quia aspernatur amet culpa. Assumenda deserunt est est sit aliquid commodi eos deleniti. In voluptatum ut molestiae omnis in tenetur voluptas. Enim corrupti animi est suscipit omnis.','2018-02-07T03:16:23.123Z',129,4,'eulah.weissnat'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (730,'Assumenda quia consequatur quia reprehenderit ad dolorem delectus inventore. Possimus labore nemo magnam minus blanditiis. Recusandae corrupti temporibus ea ut qui eos atque alias. Quo ipsa saepe sapiente sunt amet vel. Error asperiores ipsa ea veniam et.','2019-04-19T13:00:44.618Z',129,4,'arnulfo.frami'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (731,'Numquam ipsam amet consequuntur beatae corrupti dignissimos. Nisi praesentium veritatis vitae ut eos. Doloremque et esse velit animi et. Magni et tempora nisi.','2019-03-21T19:14:41.116Z',129,5,'loyce.windler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (732,'Ratione maiores cumque quia et voluptates atque aspernatur. Esse necessitatibus architecto saepe cupiditate quisquam odio at eum. Ducimus commodi aliquid adipisci nemo sunt.','2018-09-30T00:11:23.108Z',129,2,'jermaine.damore'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (733,'Rerum quis ut earum illum. Vitae deleniti numquam ipsa aperiam qui doloremque culpa sint. Sunt quis ipsa praesentium qui. Commodi voluptates quaerat temporibus distinctio debitis omnis. Nam esse asperiores omnis aut excepturi placeat illum.','2018-04-20T06:49:46.698Z',129,5,'stan.hintz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (734,'Blanditiis ut qui deleniti occaecati vel placeat. Provident placeat qui non esse. Ut rerum aut natus. Id amet libero voluptatum amet dolorem aut. Dolore et asperiores nostrum labore dolorem.','2020-01-31T19:23:27.677Z',129,3,'lexie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (735,'Est ipsam molestiae dolores. Consequatur impedit repudiandae nihil quas. Ut quia vel laborum molestiae ea. Qui suscipit ut facere qui dolor corporis expedita. Quasi ut facilis totam.','2020-02-26T11:53:48.868Z',129,4,'autumn-oconnell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (736,'Mollitia assumenda incidunt alias. Dolore praesentium occaecati est nesciunt. Distinctio labore et vitae consequatur et. Impedit molestias facilis unde animi iure.','2018-11-06T01:30:37.620Z',130,5,'marlon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (737,'Ut voluptatem quidem aut omnis molestiae fugit vel. Et earum qui eos eligendi rerum. Aut et animi nesciunt dolores totam.','2018-01-20T06:25:13.043Z',130,5,'roxanne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (738,'Rerum quo voluptates quis voluptas inventore aut consectetur optio. Consectetur quae aut dolores est dicta. Aut officiis blanditiis adipisci exercitationem enim rerum. Illo nesciunt sint minus.','2018-07-10T00:40:37.616Z',130,5,'jed'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (739,'Porro enim nesciunt modi laborum id. Voluptatem consequatur consectetur illum dolorum necessitatibus voluptas. Voluptate optio itaque porro nihil voluptas suscipit quis nobis. Quae maxime ipsum qui in quidem mollitia.','2020-02-15T06:56:54.329Z',130,3,'lenna-swift'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (740,'Cum officiis quasi ducimus. Suscipit nisi amet adipisci aut sint vitae vel totam. Perspiciatis quia et quam fuga incidunt qui qui. Dicta aut sequi placeat ad aut enim.','2019-08-15T13:34:41.057Z',130,5,'helene'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (741,'Qui qui quibusdam doloribus. Tenetur aut in possimus nobis mollitia occaecati aut eos. Voluptas tempora at suscipit. Quia ullam voluptatum sapiente. Sed aut quidem aut.','2020-01-15T19:06:25.214Z',130,4,'magnus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (742,'Aliquid officiis dicta et ipsa aut maiores eligendi. Nostrum debitis hic eum quam. Et quidem ullam dicta ratione et.','2018-09-21T19:57:12.602Z',130,4,'arvilla.borer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (743,'Suscipit officiis maiores explicabo. Rerum aut aut commodi ipsam illo. Est reiciendis perspiciatis dolorem est. Sit voluptatem occaecati rem ducimus doloribus quia harum ratione. Ut est voluptatem et iure ab.','2019-12-09T17:06:13.737Z',131,4,'cindy-fay'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (744,'Quia soluta velit delectus non et. Non quo qui qui quibusdam qui dolor in et. Accusantium sit minus tenetur ut deserunt fugit. Quisquam non commodi quia ad magni eligendi.','2018-05-09T22:49:09.908Z',132,4,'nina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (745,'Pariatur molestiae voluptatem sed consequatur blanditiis ducimus. Sed iste ullam qui officiis. Ipsum corporis atque error. Est nulla quos distinctio quod.','2020-04-19T13:42:14.184Z',132,3,'darien-upton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (746,'Dolor natus voluptas omnis. Perspiciatis at vitae voluptas quod fugit molestiae. Quos omnis ut dolores ut. Est ea odio enim at consequatur dignissimos illo.','2018-11-11T01:45:53.025Z',132,4,'carson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (747,'Quia nulla perferendis aliquid esse itaque quasi. Quibusdam velit non quasi occaecati quaerat consequatur. Eligendi dolor incidunt architecto inventore. Non et pariatur placeat beatae consequuntur voluptatem.','2020-03-22T01:37:36.538Z',132,4,'alexys'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (748,'Tenetur aut inventore quia incidunt accusamus maxime repellat. Aut voluptatem magnam et quibusdam incidunt. Reiciendis quae accusamus enim doloremque ea. Expedita culpa minus unde dicta.','2020-01-07T07:02:55.934Z',133,4,'mac-quitzon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (749,'Omnis labore et dolorem aut voluptate natus. Qui quo est enim ratione non voluptatibus incidunt. Ex repellat qui qui expedita. Molestiae ut cumque cum et sint. Cumque modi et occaecati totam velit ipsa est sunt.','2020-01-09T02:46:59.497Z',133,5,'clara.steuber'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (750,'Reiciendis qui rem rerum. Quasi voluptatem harum ad. Tempore aut tenetur dicta autem excepturi. Est fuga placeat aliquam vitae mollitia.','2016-09-28T10:00:57.724Z',133,4,'nikita-harvey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (751,'Rerum aut quisquam ex. Consequatur rerum sunt aut quisquam voluptatem molestias exercitationem excepturi. Minus nihil nulla ad. Quaerat quidem natus odit.','2018-03-18T08:31:19.657Z',134,4,'kathlyn-white'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (752,'Est ad id harum. Aut dolore quae est architecto magni sequi quis. Ut hic quas ea debitis. Aut sed fugit ullam ullam ut.','2019-01-19T09:06:31.688Z',134,5,'velma'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (753,'Aliquam ducimus quidem blanditiis voluptatum mollitia alias aut. Quasi sed velit quae molestias non sit similique. Saepe et minima molestias. Aut voluptatem qui et. Exercitationem sit odio consequatur deleniti.','2017-11-09T08:30:18.084Z',134,5,'malinda.considine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (754,'Sint assumenda a in. Magnam quasi sunt iure. Fugiat necessitatibus iste laudantium sed.','2018-08-04T18:43:52.557Z',134,4,'marian'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (755,'Incidunt rerum et harum. Iure minus doloremque sint earum reprehenderit ipsum culpa a. Esse corporis officia et neque. Ipsa eum adipisci soluta. Odio veniam adipisci qui.','2018-07-12T15:48:41.349Z',134,4,'emiliano'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (756,'Illo voluptatem sit quod nobis inventore qui amet saepe. Blanditiis eveniet blanditiis rerum qui id. Qui cum excepturi fuga fugiat. Molestiae voluptatum error iusto eos at. Voluptas non explicabo architecto in cum officiis.','2017-10-01T01:04:25.318Z',134,1,'gerda.hagenes'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (757,'Non provident quam voluptatem eveniet ea rerum. Laboriosam repellendus aut aperiam blanditiis facilis. Incidunt molestias rerum autem qui enim corrupti aut vero.','2020-01-26T10:00:26.297Z',135,4,'donna-emmerich'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (758,'Odio harum unde est. Dolor placeat repudiandae at delectus eos non quia. Rerum sed nobis rem.','2019-04-15T11:14:26.003Z',135,5,'mitchel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (759,'Recusandae rem saepe molestias. Et aut pariatur molestiae non id quis. Perferendis facere accusantium harum. Quod qui eos vel.','2019-12-31T20:46:10.922Z',135,5,'ole-cartwright'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (760,'Placeat doloribus magnam excepturi. Qui eius quia id ea et officiis. Asperiores fugit temporibus iusto nostrum provident similique est ab. Aut provident molestias nihil saepe magnam officiis. Sit est tenetur iure iure perspiciatis aut.','2019-12-17T21:08:32.135Z',135,2,'sonya-nienow'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (761,'Nostrum aut praesentium est qui magni cum. Nesciunt debitis libero sapiente quia. Numquam alias explicabo aut voluptatibus. Exercitationem qui quo enim. Est ratione a sed facilis.','2018-06-19T00:36:56.675Z',136,4,'jocelyn.leuschke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (762,'Ratione laboriosam qui iure aspernatur ab. Voluptas ea unde eos quaerat omnis aut. Impedit ea animi voluptatem ut voluptatibus harum officiis.','2017-11-30T05:51:32.703Z',136,5,'naomie.ankunding'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (763,'Quia voluptatem exercitationem magnam. Iste libero sunt ut. Nam occaecati qui delectus vero nihil ex. Aut magni qui non quis.','2017-12-14T03:22:09.269Z',136,5,'paolo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (764,'Eum accusamus nobis aut. Officiis amet nostrum illo pariatur soluta. Aspernatur vel explicabo voluptate sit ut rerum expedita tempora. Unde magni officiis vel reprehenderit odio perferendis modi eveniet. Nihil voluptatem pariatur deleniti ipsam ut.','2017-10-28T14:42:04.275Z',136,5,'jaylin-moore'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (765,'Molestias veniam cupiditate veniam eaque eum quod. Natus nihil voluptate itaque. Repellendus at eos officia et. Mollitia tempore assumenda est sint.','2018-03-18T03:32:21.024Z',136,5,'lisette.wilkinson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (766,'Quo magnam adipisci consequuntur. Maxime dolorem aspernatur quas. Enim quas at esse velit ut pariatur est.','2017-11-17T00:43:14.534Z',136,5,'georgianna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (767,'Beatae facilis sed exercitationem facilis. Voluptatem unde sed doloribus quaerat molestiae perferendis. Possimus tempore ipsam dolores magni corrupti architecto quis.','2018-11-22T22:27:10.201Z',136,5,'mason'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (768,'Illo deleniti repudiandae eligendi suscipit. Nihil eos quos fugit et laudantium error. Eum aliquid adipisci quia iure nulla. Aut recusandae veritatis blanditiis laborum.','2018-12-31T20:12:52.062Z',136,5,'howell-greenholt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (769,'Aperiam aut aliquam qui quidem dolores sequi. Qui molestiae explicabo magnam. Voluptatem suscipit quisquam facilis officiis aspernatur consectetur. Perferendis dolore reiciendis sapiente et qui harum quo. Beatae eveniet autem et a quas voluptas nemo assumenda.','2019-09-25T07:01:35.119Z',137,4,'electa.schultz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (770,'Iusto iusto eveniet aut qui nihil consequatur. Et voluptatibus accusantium vel unde et. Quasi aliquam omnis aut quis. Non ducimus sit unde ut dolorem. Quod blanditiis repellendus a consequatur voluptatem dolorum.','2019-02-20T15:20:12.329Z',137,3,'burley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (771,'Sed at et impedit enim aspernatur ipsa. Et iste voluptatem reprehenderit voluptate qui repellendus consequatur autem. Omnis autem enim aperiam.','2017-08-19T08:05:56.402Z',138,2,'loma-mccullough'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (772,'Necessitatibus praesentium consequuntur odio debitis ut neque est quas. Et dolorem eos voluptatibus. Officia non reiciendis corrupti laboriosam.','2017-02-24T00:40:03.888Z',138,4,'emmett'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (773,'Placeat ut nobis sed et sed corporis asperiores. Laboriosam et error ut ex. Asperiores labore minima non incidunt officia exercitationem sunt.','2017-06-03T17:34:04.009Z',138,4,'hassie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (774,'Voluptas tenetur ea ut repellat dolores sit recusandae asperiores. Reiciendis dicta veniam aut quae sit culpa voluptas est. Consectetur dolore sed id dolor sed cupiditate. Velit at quam quaerat veritatis aperiam. Consequuntur illum perspiciatis commodi doloremque placeat est et.','2017-12-12T03:00:24.734Z',138,4,'danika'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (775,'Omnis a maxime non. Sint molestias totam sint et recusandae quas qui. Suscipit recusandae at aspernatur sunt. Nulla saepe hic nam illum. Et blanditiis eveniet consectetur qui.','2019-10-19T04:47:18.096Z',138,5,'kiana.abshire'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (776,'Fugit quia qui dolore molestias nisi. Iusto officiis et labore minima aliquam perferendis pariatur suscipit. Ut dolores laudantium quasi omnis. Nesciunt soluta accusantium asperiores ut incidunt omnis. Exercitationem occaecati commodi totam autem dolorem.','2020-03-21T19:35:49.744Z',138,4,'tyrique'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (777,'Laudantium earum adipisci veritatis facere quos soluta. Eligendi sed magni et est qui. Occaecati doloribus quaerat dolor sequi. Blanditiis dignissimos molestiae dolorem consequatur.','2018-10-16T03:03:12.939Z',138,5,'mustafa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (778,'Ratione praesentium dolorem aliquam enim earum est velit aperiam. Tempora et dicta ut recusandae maxime sunt fuga est. Dicta qui et repellat. Commodi in sunt eveniet explicabo laudantium.','2019-08-03T04:03:35.548Z',138,4,'otis-schumm'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (779,'Nemo non adipisci in et quam ab. Quo accusamus vel sit. Ipsum et provident fuga est quidem. Vero omnis eos molestias nulla. Qui enim nulla necessitatibus.','2017-12-20T06:34:49.464Z',138,2,'dedric-huels'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (780,'Alias eligendi vitae impedit non. Quis id aliquid sunt magnam corporis. Totam nemo asperiores voluptatem aut aut consequatur illo omnis. Iusto tenetur sunt omnis quae in.','2018-03-26T10:29:39.730Z',138,5,'lou'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (781,'Ut et porro ipsam nostrum. Ab et dolores aut sunt ullam quia. Nulla explicabo omnis accusamus suscipit veritatis qui illum. Dolores quae aut quia rerum. Eligendi optio quae possimus impedit.','2019-09-13T11:55:46.827Z',138,4,'michael.pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (782,'Culpa laborum sunt rerum. Ex inventore nisi assumenda corporis animi ipsa enim. Voluptatibus dolorem veniam quo et. Optio non repudiandae et unde nisi dolorum. Dolorem repudiandae deleniti consequuntur consectetur.','2018-08-04T05:55:18.809Z',138,5,'ena.dooley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (783,'Et perspiciatis deserunt asperiores laudantium necessitatibus excepturi. Omnis assumenda reprehenderit voluptatibus. Nulla blanditiis ea reprehenderit aut.','2018-01-27T03:21:15.250Z',139,1,'efrain-quigley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (784,'Praesentium dolorem voluptas cupiditate aut sed. Et asperiores labore vel maxime voluptatum aut cum. Nisi quia nobis maiores veniam ipsa. Voluptates aut laudantium aut necessitatibus voluptatum et omnis. Voluptas quo eos dicta aliquid qui.','2018-01-05T00:39:17.024Z',139,5,'merl-carroll'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (785,'Earum at sit labore enim maxime hic. Possimus minus sunt deserunt. Sit error dignissimos odio. Atque et saepe molestiae dolor in recusandae ut harum.','2017-11-28T12:45:47.157Z',139,4,'alysha.glover'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (786,'Ex excepturi praesentium est sed vero maxime. Et numquam neque reprehenderit voluptatem maxime. Minus voluptas error molestiae aut. Optio omnis quod voluptatem.','2018-03-03T12:35:19.802Z',139,1,'kasey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (787,'At voluptatem esse animi. Molestiae est officia quisquam suscipit numquam deserunt eos. Molestias omnis consequuntur libero ut dolorum et dolores earum. Rem cumque ipsam eos optio quos ut.','2019-11-21T23:07:26.205Z',139,5,'hank.wuckert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (788,'Ipsam natus voluptatibus doloribus voluptatum reprehenderit dolores. Voluptatibus minima aperiam et aspernatur. Doloribus non et dolor natus. Aut dolor veniam illo. Ipsam velit ut officiis doloribus rerum et ut.','2020-03-09T05:42:52.371Z',140,5,'lauretta.koss'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (789,'Illum voluptatem sed dolores. Asperiores hic saepe qui facilis quod. Eveniet id quo delectus illo unde sit.','2019-01-29T07:17:47.444Z',140,4,'pauline.cassin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (790,'Aliquid minima ea consequuntur qui libero nihil temporibus. Quia eum voluptatem quisquam dolores voluptate. Molestiae rerum impedit officia cupiditate soluta ut quod. Consequatur non eos voluptate ut velit quisquam.','2019-09-03T05:33:14.120Z',140,3,'euna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (791,'Maxime voluptatibus a quibusdam qui veritatis dolorem vitae. Quod et sequi maiores ut hic quo. Quibusdam voluptas officia eos omnis nihil iusto minima molestiae. Optio consequuntur maiores qui sed modi laudantium. Minus autem rerum non distinctio placeat possimus et.','2018-04-26T12:55:00.367Z',140,4,'isac'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (792,'Cumque quos et non ipsa ab quia cum. Voluptas beatae cumque maxime eius et aut vitae perspiciatis. Odio qui dolorem distinctio perferendis. Esse ipsa tenetur odit nostrum.','2018-08-22T14:26:16.524Z',140,5,'erling.farrell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (793,'Ad explicabo voluptas dolores. Nemo tempora sapiente quos soluta error. Dolorem nisi tempore culpa. Omnis quo maxime et nostrum doloribus numquam nihil vitae. Adipisci eum laborum quam dolorem qui vitae sint repellat.','2018-08-11T22:00:18.405Z',140,4,'estella-padberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (794,'Minima tenetur hic facere sint ratione earum. Voluptatem iusto accusamus fugiat facilis libero nihil quae. Optio voluptas enim est iusto error hic occaecati.','2020-03-24T03:16:29.159Z',140,4,'brown.olson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (795,'Optio quae sed ducimus commodi et dolor eos ipsa. Laborum ratione aut ea iure quasi. Et sed tempore eos eos animi ipsam. Temporibus aperiam sunt aut.','2019-10-08T00:56:58.156Z',141,4,'della'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (796,'Asperiores minima vel molestiae est autem fugiat. Fuga omnis earum qui saepe minima molestiae temporibus dolorum. Earum sunt laboriosam tenetur cumque dolorem illum atque.','2019-07-28T07:07:27.047Z',141,4,'casimer-orn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (797,'Rem et autem voluptas dolor quas inventore aut dolore. Aperiam dolor nisi voluptas voluptate repellendus corrupti. Dignissimos facilis sapiente voluptatem dolor. Inventore error delectus eius ducimus. Qui praesentium accusamus harum.','2019-01-17T19:37:40.230Z',141,2,'magdalena.kunde'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (798,'Soluta excepturi delectus et sunt sunt. Aliquam molestias quod voluptas animi. Incidunt voluptatibus et nihil corrupti aliquam nihil. Quo aut ea fugiat laudantium amet repellat. Sint quis ut sed libero ab ad repellendus ut.','2019-11-09T20:47:43.656Z',141,4,'dina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (799,'Autem non qui eum dolores aspernatur. Sunt ducimus libero sunt laboriosam saepe rem. Nostrum quia temporibus iure vel deleniti voluptatem. Mollitia pariatur corporis aliquam. Molestiae itaque corrupti repudiandae aliquam voluptatem hic.','2019-12-28T02:42:33.790Z',141,5,'koby.armstrong'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (800,'Et non omnis error iure odit amet. Voluptas velit sint labore qui sit dolor veritatis perspiciatis. Animi sit repudiandae quia dicta in.','2018-11-01T11:10:34.650Z',141,4,'jerrold.rowe'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (801,'Ab sit laboriosam eveniet provident. Quisquam minus molestiae voluptate. Odio quisquam omnis quasi neque facere.','2019-10-29T15:14:37.381Z',141,4,'ernestina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (802,'Sunt aliquid autem et necessitatibus neque nam facilis nostrum. Totam nemo laboriosam voluptatum inventore explicabo deleniti. Eius veniam sed voluptatibus qui qui. Pariatur delectus modi eum incidunt.','2019-05-30T05:37:52.585Z',141,4,'noah-erdman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (803,'Dicta illo amet et voluptas autem repellat voluptatibus. Amet et nihil molestiae deleniti tempora. Est et molestiae et assumenda dolore numquam rerum sint. Pariatur maiores delectus impedit. Minus soluta aut ut a tenetur rem similique.','2019-06-09T01:26:47.466Z',141,4,'cleta.powlowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (804,'Et fuga at nam. Eius et architecto magnam fugit deserunt inventore recusandae. Dolorum sed neque ullam eius cupiditate cupiditate.','2018-12-06T01:17:14.014Z',141,5,'otto.schaden'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (805,'Ad reiciendis eligendi error nisi laudantium nobis atque. Quo perspiciatis rem eum ut non reiciendis non est. Culpa non rerum itaque ab corporis nemo. Voluptatem cum atque iste sed corrupti itaque.','2017-11-13T23:34:10.992Z',142,4,'franco'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (806,'Voluptatem voluptas quia reprehenderit voluptates sunt voluptatum suscipit illum. Voluptate voluptatem sed culpa maxime nostrum sed et eum. Ipsum ipsa culpa omnis quo. Quo rem non harum.','2018-06-23T04:28:15.428Z',142,4,'brad'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (807,'Nobis quisquam aut et consequuntur et quia totam fuga. Laudantium nostrum suscipit et est omnis est accusamus. Cum amet magnam maiores ut sunt aut ut dolore. Asperiores eum ut et perspiciatis.','2019-12-06T13:40:53.636Z',142,4,'estevan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (808,'Aut voluptas nostrum nulla ea vero mollitia vero inventore. Minus dolores dignissimos rerum et dicta necessitatibus voluptatem explicabo. Cumque deleniti minus harum.','2018-02-27T14:47:50.313Z',142,5,'friedrich'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (809,'In voluptatibus voluptas praesentium exercitationem. Et architecto omnis aspernatur. Et reprehenderit quidem magni itaque earum. Voluptatem qui earum qui rem et.','2018-09-01T10:16:58.752Z',142,5,'haven.morar'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (810,'Quo aliquid perspiciatis et dolorem. Laborum quasi ducimus sapiente enim est ratione aut quidem. Nihil et autem suscipit. Non nulla tenetur ut. Commodi quas consectetur id et incidunt repellat quia.','2018-06-10T05:46:59.282Z',142,5,'blanca'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (811,'Minima rerum est inventore architecto voluptas quisquam unde omnis. Aut esse et dolore. Quo soluta et repellat et iure.','2019-04-07T00:08:00.539Z',142,5,'chanelle-marquardt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (812,'A occaecati consequatur sit ab quia dolor. Rem est laudantium qui nisi perspiciatis inventore porro. Velit eos praesentium sequi et. Repellendus ut debitis qui magnam perferendis et totam.','2018-09-13T02:37:59.264Z',142,3,'anahi-reichert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (813,'Sit eum optio molestiae debitis dolorem. Ducimus quia temporibus quod aut eos eos et. Soluta aut voluptatem quia fugit sit. Ut necessitatibus eos molestias sequi.','2019-08-27T04:22:16.418Z',145,5,'joanie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (814,'Velit est laborum beatae eius fugiat. Ut incidunt voluptas ad quae. Enim iusto et dolorem rerum. Unde atque voluptatem deserunt sunt dolorem. Sunt dolores maxime nesciunt.','2019-03-29T00:51:08.006Z',145,5,'delfina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (815,'Iste fuga deserunt unde est sed sint et aspernatur. Sapiente corrupti nihil sint consectetur quae doloremque at. Atque iusto eligendi magnam sunt optio. Ipsam iusto quo consequuntur. Officia odio sunt ad in sapiente mollitia.','2019-06-03T11:50:53.443Z',145,5,'rosella-huel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (816,'Totam enim quia vel ipsa voluptatem ex tempore molestiae. Placeat rerum quos maiores quia accusamus est. Id qui nihil omnis ut adipisci magni. Saepe eius dolor at.','2020-01-10T21:05:37.619Z',145,2,'gino'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (817,'Corporis harum temporibus voluptatem alias. Perferendis qui ut mollitia. Et quaerat est illum. Architecto qui ratione quia et ut est.','2018-07-20T13:22:59.751Z',145,5,'jackeline.spencer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (818,'Totam impedit modi reprehenderit eius vel ad. Ea consequatur aut aut et dolore placeat iste. Odio perspiciatis voluptates quis optio doloremque omnis vel voluptatem.','2017-10-24T13:17:27.841Z',146,4,'vidal-satterfield'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (819,'Voluptatem dolorum sed est rem optio esse aperiam. Ullam voluptas voluptatibus reprehenderit ducimus. Laboriosam maiores id dolore et a.','2016-11-14T03:44:05.510Z',146,5,'elisha'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (820,'Eligendi perferendis aut adipisci impedit autem. Repellendus asperiores cupiditate quam sint eum ipsum sit. Animi sed et dicta hic maiores quis vel. Eligendi aliquid porro totam nostrum distinctio voluptates.','2017-08-01T04:48:37.536Z',146,4,'christine.kirlin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (821,'Qui voluptatem ab quis sit labore. Non sed minima deserunt sequi soluta eum. Aliquid et dolor voluptatem sint voluptatem corporis mollitia. Libero consequatur officiis consequatur suscipit eaque qui accusamus. Maxime tempore maxime voluptatibus.','2018-05-17T07:35:07.227Z',147,5,'daphnee'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (822,'Omnis voluptatem reiciendis non debitis. Accusamus optio porro ipsam ut rerum reprehenderit veniam quaerat. Aut vero laborum non id vel recusandae sapiente voluptatem. Officiis sunt exercitationem a.','2019-10-14T22:27:07.156Z',147,5,'elva-bartell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (823,'Rerum officiis tempore suscipit voluptatem tempore deleniti. Debitis sunt est molestiae. Eum tenetur praesentium animi in voluptatem rem. Corrupti cupiditate iure aspernatur sunt et sed omnis adipisci. Modi tempora voluptas explicabo molestiae voluptatum.','2017-09-23T06:52:23.169Z',147,4,'clifford'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (824,'Voluptas ipsum ipsam hic et. Ab doloribus dolorem ratione officia delectus. Fuga et et velit aut optio tempora. Qui atque sed dignissimos rerum. Sit est qui non blanditiis voluptas ut explicabo.','2019-08-15T09:50:29.338Z',147,5,'otho.ondricka'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (825,'Qui autem aspernatur et rerum ea optio voluptatem. Maxime ut voluptate fugit deleniti. Aspernatur commodi qui sit iste nisi nulla. Laborum voluptatibus aut quo. Veritatis est rerum rerum ab.','2017-11-14T01:43:22.996Z',147,5,'esteban'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (826,'Quae atque aut fuga consequatur. Placeat consequatur distinctio quidem animi dolorem ut hic pariatur. Voluptatem accusamus perferendis dolorum non quia quis quia dolores. Aut placeat ut amet adipisci. Optio unde unde sunt.','2018-09-03T02:13:18.313Z',147,4,'barrett-raynor'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (827,'Soluta perferendis vel nihil consectetur sed dolor ab quo. Et recusandae ut ipsam non ullam. Minima voluptas doloremque non.','2019-04-28T22:45:01.724Z',148,4,'fleta'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (828,'Quia in molestiae consequuntur. Iure recusandae ipsum et veritatis odio. Excepturi porro neque aliquid. Itaque dolorem optio molestiae ratione voluptatibus in fugit.','2020-03-19T09:51:36.898Z',148,3,'delia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (829,'Sunt ratione et pariatur optio omnis. Nesciunt omnis quisquam est dolorem maxime cum. Qui modi consequatur sed facere nobis ut aspernatur vitae. Autem reprehenderit dolorem iste impedit.','2018-11-16T08:37:40.003Z',148,5,'delfina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (830,'Soluta voluptatum est temporibus voluptate. Sit doloremque assumenda dolore architecto vel magni non. Voluptas aut officiis inventore.','2019-07-22T01:09:30.273Z',148,4,'hobart-lueilwitz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (831,'Odit eos voluptatem inventore eius eveniet. Fuga expedita voluptatem sint rerum voluptatum. Itaque dolorem iste et. Illo blanditiis commodi quia in asperiores. Quia minus reprehenderit et natus.','2020-04-06T14:49:46.113Z',148,4,'isaiah.schimmel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (832,'Vero odit quam id laborum. Ea rerum omnis blanditiis nostrum quibusdam minima non omnis. Quis est rerum quibusdam libero.','2020-03-10T18:44:54.021Z',148,4,'cecil-trantow'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (833,'Illo nisi ea magnam nemo qui modi. Et libero tempore ipsam accusamus eaque. Incidunt vel dignissimos natus alias natus est eius ut. Voluptate dolorem quia consequatur unde quis autem laboriosam non. Tempora animi eius ex eveniet error ipsum.','2020-02-14T02:20:07.171Z',148,5,'marjorie-kuhic'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (834,'Enim facere amet aperiam iure. Corporis velit in voluptas aliquam autem aut quia. Qui exercitationem praesentium iste aspernatur velit est. Perferendis sed illo culpa non. Consequuntur quibusdam excepturi quae.','2018-11-17T07:33:33.854Z',148,4,'kelley.wisozk'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (835,'Eaque est dolorem beatae nesciunt voluptatum. Ea magni vitae dolor ad qui qui. Officiis voluptas deserunt in iste eligendi consequatur qui. Ut suscipit ipsam dignissimos qui.','2019-09-16T00:24:31.256Z',148,4,'paula'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (836,'Vero cupiditate temporibus molestiae fugiat. Et atque omnis consequatur mollitia dolore. Pariatur sint dolorem excepturi aut rerum molestiae qui et. Quas corporis illum nam sed. In id fugit eius et velit illo velit.','2020-04-18T06:06:38.829Z',149,4,'daron.thiel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (837,'Non magnam voluptate voluptatem molestiae ducimus. Sed quaerat dignissimos voluptatem tenetur maxime officiis. Sit ipsam nihil doloribus velit occaecati et rerum sit. Qui numquam eos placeat temporibus unde culpa fugiat.','2017-08-24T20:00:12.071Z',149,5,'king-hickle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (838,'Similique inventore distinctio iusto. Tempora voluptas vel aut dolorem. Totam doloremque incidunt ut atque quam enim nisi cum.','2018-09-11T05:20:24.494Z',149,4,'lewis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (839,'Eum ipsum eius excepturi inventore eveniet voluptatem quidem in. Qui facere occaecati et ex possimus. Quia ipsa reiciendis sit tenetur incidunt. Voluptas unde et ut dolores reiciendis sapiente ad labore. Sit ipsa accusantium praesentium voluptates.','2019-07-04T13:15:30.623Z',149,5,'stuart'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (840,'Ullam est officiis quia numquam quisquam amet. Aut incidunt soluta ut est ex. Et in cum in.','2019-03-05T05:48:31.103Z',149,4,'jillian'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (841,'Aspernatur eius ut autem architecto magnam rerum. Nemo nesciunt quas rerum dolorem ea. Perferendis voluptatem ipsum aut maiores molestiae.','2020-04-09T20:59:44.823Z',149,5,'alysa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (842,'Quibusdam distinctio quaerat eos quas omnis. Molestiae officia impedit ducimus sapiente sit. Maiores consequatur eius consequatur quod magnam. Sunt labore eos quia sint quo.','2017-08-16T19:49:29.676Z',149,5,'rene-morissette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (843,'Et asperiores consequuntur nihil similique laborum. Voluptas odit minus et laudantium deleniti qui sapiente. Voluptatem vitae quisquam et architecto facilis consequatur aut. Nemo quia nisi doloribus saepe. Animi tempore non alias.','2018-11-09T03:50:34.912Z',149,4,'bailey.schaefer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (844,'Tempore incidunt cupiditate aut enim eius nam. Aut quas nulla adipisci. Ullam et praesentium non iusto nihil consequatur. Et dolor est qui id.','2018-08-17T17:47:24.153Z',149,4,'wava'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (845,'Aut accusamus esse aut ducimus nesciunt. Id iste repellendus eos provident ut quas deserunt. Quod odio perferendis aliquid aut.','2018-03-14T19:27:17.280Z',149,4,'jannie.mann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (846,'Debitis quas est molestiae est. Ut hic iusto tempore laudantium id fugiat. Nesciunt non nobis et dolor voluptate inventore est.','2018-02-07T18:48:06.071Z',149,2,'breanna.reichel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (847,'Quam error sit laborum sint quod excepturi aut. Alias qui veniam impedit ut accusamus voluptatibus itaque quas. Odio sed necessitatibus quas impedit.','2019-08-23T04:25:36.528Z',150,2,'avery.stokes'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (848,'Earum iste voluptates expedita culpa. Autem sint mollitia illum provident aliquid. Quo qui sed distinctio sunt odit exercitationem qui. Beatae dignissimos ex ea. Dolorum quo dolorem unde facilis.','2019-10-13T17:47:09.510Z',150,5,'lexus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (849,'Consequatur sint pariatur nihil id fugiat et repellendus omnis. Et asperiores dignissimos corrupti voluptas amet similique. Molestiae enim soluta qui voluptatibus velit.','2020-01-03T18:39:41.561Z',150,2,'emelia.luettgen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (850,'Illum laudantium molestiae harum ut. Omnis quas rerum consequatur ut. Dolor soluta aut eligendi nihil deleniti delectus.','2019-12-02T18:28:05.034Z',150,5,'francisca.mckenzie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (851,'Quaerat sed sequi odio alias in voluptatum non tenetur. Quidem molestias quasi voluptas. Quod aut illum reprehenderit asperiores.','2019-06-17T06:30:56.999Z',150,5,'kelsi-koepp'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (852,'Vitae atque sed itaque ratione atque unde voluptatem perferendis. Ad omnis provident debitis ut quibusdam. Veniam quam aliquam commodi voluptas quia corrupti. Id laboriosam corrupti et.','2020-02-11T20:07:44.552Z',150,2,'jovany-bogan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (853,'Quo ratione accusamus enim. Repellendus sed beatae odit ut cumque in deserunt. Dolorem illo vel nulla voluptate voluptatem provident. Eos aliquid ipsa dicta sint dignissimos ab.','2018-12-13T03:04:50.454Z',150,5,'jennie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (854,'Vitae aperiam deserunt delectus. A corporis magni non quasi harum voluptates praesentium ut. Harum illo eveniet deleniti. Modi qui a quisquam. Rerum temporibus doloribus et est velit temporibus ut.','2019-10-30T17:11:20.818Z',150,4,'tyrell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (855,'Quia assumenda quae et harum dolorem iusto. Animi a assumenda est distinctio tenetur. Ad reprehenderit accusantium provident libero. Consequatur consequatur mollitia nemo voluptas iste tempore.','2020-02-07T01:04:52.378Z',150,4,'gladys.reinger'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (856,'Eos fugit quas at repellendus in. Perspiciatis quidem sed aut dolore qui recusandae quia. Non et libero quisquam odio earum.','2019-10-27T23:16:09.933Z',150,5,'micaela'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (857,'Quos omnis nam aut blanditiis consectetur esse facere. Reiciendis enim sit eum. Assumenda possimus iusto eum dignissimos laudantium. Ea vitae autem excepturi iure culpa deleniti accusantium. Sequi qui illo cumque.','2019-04-16T11:15:44.715Z',150,4,'amir'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (858,'Voluptas magni velit quo perspiciatis reprehenderit. Illo quia et quod rem qui. Sit cupiditate unde quos eligendi est.','2019-03-17T15:02:15.615Z',150,4,'donnie.vonrueden'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (859,'Est reiciendis dolor voluptatem voluptas magni suscipit. Facere sint quos eligendi libero impedit ut. Ipsa ratione velit voluptatem. Laboriosam ipsa qui officia accusamus. Aut vel error reiciendis facere voluptatum eaque atque.','2019-05-01T14:53:39.589Z',150,4,'darren.jacobi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (860,'Accusantium adipisci dolorem impedit quibusdam amet voluptas minima. Iure consequuntur est dolorum quos iste natus repellat. Commodi dolores sed repellendus.','2019-11-12T11:33:52.647Z',151,4,'gay.bartell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (861,'Assumenda error suscipit ut sint aperiam quasi. Qui error officia dolor consequatur laboriosam. Sed ut culpa consequatur voluptate aut.','2019-09-19T16:04:54.892Z',151,4,'elmer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (862,'Qui libero illum quia. Ad non magni aut dolorem iusto. Facilis non in doloribus quidem explicabo assumenda quasi.','2018-04-18T12:39:53.966Z',151,5,'era-botsford'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (863,'Enim ipsam est dolorum accusamus est est. Alias qui eos temporibus et impedit aut quo. Quo suscipit velit in aperiam dolores nihil ut. Tempore voluptate nostrum autem ut.','2019-12-07T05:57:11.761Z',151,5,'darius'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (864,'Qui voluptas et iure aut voluptates nihil commodi. Repellendus optio magnam quisquam sed quod impedit ipsam. Quis nihil quos occaecati. Voluptate vel est quis dolorem libero laborum voluptatem architecto. Et sunt libero quia.','2020-01-07T06:09:57.009Z',151,4,'katherine'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (865,'Cumque quia sit architecto dolore temporibus sint et. Eos aliquid consequatur in et. Iste cum cupiditate minima. Quia magni voluptatum sunt aut. Sapiente aut facere voluptas qui alias ut sit accusamus.','2020-01-17T00:40:09.634Z',151,5,'angie.anderson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (866,'Fugiat cumque consequatur voluptas eligendi temporibus. Cumque culpa architecto nobis aut temporibus. Unde nemo dolorem aut saepe quisquam.','2018-01-27T07:36:05.080Z',151,3,'jimmy.huel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (867,'Qui eligendi delectus recusandae voluptate deserunt consectetur. Quidem nostrum cumque placeat et. Occaecati error mollitia atque ut nihil quis. Maxime aut quis maiores fugit aliquam laborum expedita.','2019-02-02T17:30:36.543Z',151,4,'ellie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (868,'Eligendi enim non qui. Qui earum ab maxime quo. Molestiae adipisci culpa harum accusantium enim corrupti. Sapiente ut voluptas quo odio fugit culpa.','2019-08-29T14:08:05.957Z',151,5,'isabel-vandervort'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (869,'Ut nobis et nobis quas tenetur sed vitae. Aspernatur dolor occaecati magni ea alias magni est sapiente. Unde tenetur aliquid aut iusto.','2019-10-16T08:25:35.486Z',151,4,'kris-kling'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (870,'Consequuntur exercitationem rerum vel aut adipisci laboriosam. Ea non voluptatibus quisquam voluptatum. Numquam eligendi numquam sint. Aut facere eaque eveniet vel pariatur veniam. Et hic deserunt qui consectetur sed est vero.','2018-01-31T18:03:14.725Z',151,4,'emilie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (871,'Cumque sed culpa hic. Commodi ducimus id sunt. Cumque molestiae nobis eaque sed. Voluptatem error quaerat similique omnis. Ut natus voluptas delectus ipsum quod eum neque.','2018-04-10T23:28:57.211Z',151,4,'wanda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (872,'Eos aut ut hic voluptas officia. Omnis perspiciatis recusandae quo quae amet aut. Dolore sapiente aliquam asperiores atque illo aliquam velit quod. Modi aliquam corrupti eaque porro assumenda facilis.','2018-12-06T00:09:22.433Z',151,2,'linwood-flatley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (873,'Similique deserunt impedit est distinctio. Debitis fugiat iusto quis. Amet facere aut amet quo. Tempora dolores animi sed provident.','2019-09-22T15:49:13.964Z',151,3,'merritt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (874,'Est commodi aut porro. Quasi sit et soluta et deleniti officiis. Earum corporis saepe eius ea qui nihil aut quisquam. Corporis et vel voluptatem voluptatem dolorem. Iste aut suscipit qui sit voluptas non ipsa accusamus.','2019-12-07T21:13:27.566Z',152,5,'randall.towne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (875,'Voluptatem id quas quis rerum. Assumenda et exercitationem omnis corporis aperiam eum. Quia at non provident numquam ut ad. Possimus et iure dolorem a sit. Vitae ipsum voluptas mollitia velit debitis.','2018-07-13T18:58:15.266Z',152,2,'vanessa.stoltenberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (876,'Nisi ut molestiae voluptatem ea. Doloremque aspernatur quas quae reprehenderit voluptatem eum id eos. Assumenda iusto dicta officia beatae fugiat. Voluptas vel distinctio explicabo aut facere ut voluptatem. Autem a voluptatem laborum asperiores quos quia.','2018-05-29T08:15:53.961Z',152,1,'constance.king'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (877,'Eius porro et natus. Debitis quod sapiente non. Id fuga ducimus eaque sint repudiandae velit. Eveniet ipsam quia corporis.','2017-06-11T14:38:15.097Z',152,5,'katelin.windler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (878,'Rerum quos ipsum libero qui quidem quaerat nesciunt. Voluptas autem ut quae aliquid consectetur sit. Est tempora voluptas in est quod ad consectetur alias.','2020-03-15T07:52:20.231Z',152,5,'harold'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (879,'Veritatis vitae eos asperiores vel in numquam perferendis. Animi deserunt et numquam id consequatur et. Quod aut quisquam sapiente.','2018-05-03T07:03:05.698Z',153,5,'emanuel-rippin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (880,'Fugit nobis vel optio quos placeat atque non. Inventore accusamus et autem cumque. Autem nam id aliquid eveniet.','2018-06-17T13:16:50.073Z',153,3,'kacie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (881,'Dolor sit distinctio eos qui nihil beatae nam aut. Molestiae voluptatem ut cumque itaque debitis esse. Quidem ad praesentium perferendis in. Earum numquam non sapiente. Minus eos non in commodi aut amet repellendus quibusdam.','2020-01-26T10:25:37.617Z',153,4,'gunner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (882,'Nisi et ut cum a et omnis vel. Id cumque sit odio voluptatum qui. Quia alias ut distinctio aut et. Ratione adipisci asperiores quisquam. Perspiciatis qui minima voluptas dolore minima illo illum.','2018-03-25T09:49:55.437Z',153,5,'laurine.leuschke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (883,'Quibusdam aut et et omnis in saepe et quod. Nostrum corrupti omnis quidem modi maxime. Quia est non aut excepturi dolorem. Soluta quia dolorem aut et dolor quam qui. Et impedit enim alias.','2019-04-08T13:13:39.829Z',153,5,'abe.gorczany'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (884,'Voluptas nesciunt cum rerum quis et provident dolores. Laudantium omnis sit labore officia modi dolore. Illum dicta impedit quo quisquam in ut hic.','2019-02-13T16:38:00.091Z',153,4,'dion'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (885,'Dolores iure error quaerat delectus. Nulla perferendis harum aut neque non perferendis quam occaecati. Quis ad totam molestiae atque tempora voluptatibus excepturi.','2020-01-24T17:29:08.288Z',153,2,'colt-tremblay'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (886,'Doloribus sapiente voluptatum qui et perferendis. Sed vel sed voluptatibus debitis facilis enim. Sit dolorum quo velit. Optio labore molestiae quo velit explicabo provident quos consequatur. Commodi delectus incidunt ea optio reprehenderit.','2019-04-06T08:55:43.055Z',153,4,'kassandra'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (887,'Qui nisi dicta saepe quis ipsum officiis. Libero est officia est nulla doloribus et velit. Autem sit repudiandae magnam exercitationem voluptatem. Quia nostrum quis possimus veritatis voluptas. Id omnis officiis sapiente.','2019-09-24T05:30:51.387Z',153,5,'joany'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (888,'Amet sit illum incidunt dolores qui ducimus aut. Corporis dolores aperiam molestiae nostrum. Veniam nam voluptatem illo et unde. Architecto rem et quae culpa dolore fuga tenetur.','2018-04-04T22:12:04.865Z',153,5,'matteo-damore'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (889,'Qui autem et quia enim est atque repudiandae. Excepturi eos quia ad voluptatum. Ipsam voluptas quo ex. Officiis et nemo aliquid et labore maiores nihil. Mollitia sapiente vitae eveniet ullam consequatur rem.','2019-11-14T14:39:51.533Z',153,4,'jackson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (890,'Nihil quae saepe est repellendus natus rerum alias nulla. Quidem vero est facilis. Incidunt qui itaque eos exercitationem ut cumque fugiat aut. Eius nobis sint aliquam ratione omnis fugit nihil.','2018-12-08T07:38:57.059Z',154,4,'cullen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (891,'Aspernatur enim exercitationem quibusdam ullam harum quo nam quam. Placeat hic dolor perspiciatis nesciunt. Eum ipsa vel ut. Minus amet id tenetur.','2019-07-21T07:13:02.527Z',154,3,'jonathan.okuneva'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (892,'Asperiores necessitatibus occaecati possimus. Numquam odio voluptates consequatur accusantium autem quibusdam aut et. Omnis fuga rem quo id nesciunt corporis harum. Ut unde dolor dignissimos pariatur quia at sed labore.','2018-08-02T16:36:16.676Z',154,4,'coy.fisher'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (893,'Eveniet tempore magni provident laudantium nemo saepe maxime. Maxime ipsum error aut et enim quo autem. Maiores earum et ipsam maxime modi. Voluptatem expedita voluptate quibusdam eum quia quia enim.','2019-06-02T12:01:31.237Z',154,3,'keven'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (894,'Aliquid minus ut velit adipisci qui. Cupiditate voluptate natus error corrupti adipisci officiis qui. Harum qui porro odit rem aut deserunt officiis quo. Natus dolor cumque vitae.','2020-02-28T18:52:41.327Z',154,5,'quinn-rolfson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (895,'Nulla aut ullam reprehenderit minima non labore fuga accusantium. Non excepturi ut sunt aut. Pariatur qui cumque at vitae mollitia non officia.','2018-11-09T13:33:19.930Z',154,5,'miracle.mcglynn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (896,'Libero placeat iusto reprehenderit ut. Rerum laborum et culpa velit. Necessitatibus at dolorum recusandae. Ad atque dolor libero voluptas voluptatum aspernatur quidem necessitatibus. Dolor hic nostrum repellendus similique odit.','2020-02-28T02:36:21.359Z',154,5,'maynard-baumbach'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (897,'Praesentium vel repudiandae natus repellendus exercitationem fugiat. Illo iste corporis doloribus error aut eos. Repudiandae qui eum et dolor sed. Est et veniam dolorem nostrum harum molestiae nihil libero.','2019-01-22T00:44:13.188Z',154,5,'myrl'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (898,'Necessitatibus minima non esse nisi aut suscipit. Iusto eum laudantium itaque ea sint cumque cupiditate omnis. Eligendi numquam aspernatur veritatis. Velit esse error animi in.','2019-08-14T11:58:30.688Z',154,4,'marcus'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (899,'Reiciendis aut ad vero. Expedita fuga voluptates ut tenetur nostrum maiores eum. Velit rerum reiciendis mollitia eum. Enim quaerat reiciendis similique ratione et.','2018-11-03T23:13:29.571Z',154,4,'rico'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (900,'Amet minima et cumque a numquam ut. Nemo impedit deleniti ut consequatur. Deleniti repudiandae a iusto aut distinctio doloribus. Ea eos alias eveniet quae iure. A aspernatur quasi dolores rem temporibus amet temporibus asperiores.','2019-11-14T00:47:39.320Z',154,4,'regan-windler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (901,'Aspernatur consectetur sint quisquam aut recusandae qui est. Adipisci vel velit est autem. Laudantium perferendis officia facilis inventore ullam blanditiis sint. Tenetur aut ea mollitia sunt explicabo repellendus et. Repellat cupiditate quaerat saepe iure eum et doloribus vel.','2018-07-22T16:20:36.961Z',154,3,'bernadette'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (902,'Minus aut reiciendis blanditiis reprehenderit voluptatem expedita magni iusto. Sunt aut sit praesentium cupiditate. Ut tempora eligendi et eveniet aut iusto. Rem facere consequatur autem quod ratione porro eligendi. Minima vitae id in aut fuga voluptas ipsa.','2018-07-16T14:43:25.665Z',154,5,'alysson.vandervort'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (903,'Et molestiae ut mollitia. Soluta et molestias voluptate eveniet. Error corrupti aut similique in veritatis. Fuga esse nobis consequatur laborum voluptatum esse voluptatibus sed.','2019-10-27T14:27:31.690Z',154,5,'ladarius'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (904,'Nesciunt eligendi quia ut quidem libero. Voluptatem quis sed laborum quisquam consequatur est quisquam. Ea voluptatem accusantium maiores eum. Ducimus cumque quo eligendi.','2019-07-31T11:13:45.425Z',154,5,'graciela-halvorson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (905,'Qui doloremque pariatur ut qui aut. Qui vel magni beatae sunt hic. Soluta accusamus quo ipsa neque maxime hic. Non voluptas et est nesciunt nostrum.','2019-11-20T18:41:21.830Z',154,5,'rudy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (906,'Corporis minima ut quia eum asperiores enim. Culpa in est fugit qui omnis aut hic. Voluptatem ut dolores impedit deserunt omnis non tempora ducimus. Temporibus perferendis quidem cumque ut dolore et temporibus.','2018-04-11T19:09:48.185Z',155,4,'devonte'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (907,'Quaerat dolorem soluta dolore magnam incidunt sunt quia nemo. Natus doloremque voluptas quo non ea sit. Doloribus impedit accusantium voluptatum laudantium corrupti et possimus.','2019-04-06T14:07:45.796Z',155,4,'princess'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (908,'Libero sunt maxime non id dolorem hic esse. Dolores minima non quibusdam. Provident deleniti ut aperiam sit aliquam velit.','2017-07-18T19:18:53.311Z',155,5,'sarai-thiel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (909,'Quis dolorum voluptas voluptatem in nam nobis vitae provident. Sequi omnis qui officiis vero beatae velit est iste. Est repudiandae sunt beatae magnam sunt. Omnis est tenetur eos quia provident voluptate vitae. Ut non libero qui tempora quia illum neque.','2018-05-04T12:48:24.459Z',155,5,'edwardo-huel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (910,'Iste culpa amet eos quia. Quasi error error aut. Accusantium laboriosam non eveniet labore consequatur. Commodi quas rerum dolores nihil possimus.','2018-11-14T13:38:27.203Z',155,4,'marley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (911,'Repellendus enim nisi perferendis provident. Sit harum similique molestias adipisci vero aut aut. Ut odit eos et dolor vel. Vitae ea ipsam non possimus quibusdam.','2018-08-29T08:46:36.198Z',155,5,'christy.schmeler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (912,'Est accusamus ut et. Omnis neque ut placeat dicta asperiores. Quasi deleniti molestiae mollitia saepe illum. Aut fugiat illo beatae voluptas vero omnis. At sit pariatur architecto.','2019-06-08T16:06:26.343Z',155,5,'garry.williamson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (913,'Aliquam qui molestiae repellendus aut quos. Quod unde et voluptatem. Blanditiis est autem quia vel explicabo ut. Ipsum ipsum tempore deleniti. Praesentium quae et at veniam.','2017-06-11T22:52:37.188Z',155,5,'xzavier.reynolds'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (914,'Pariatur quo atque aspernatur laboriosam et. Non ut est in nulla ut facere et qui. Porro itaque voluptates quam possimus voluptas molestias eos eius.','2019-05-20T05:21:08.459Z',155,5,'nya.powlowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (915,'Id tempora voluptatem nisi voluptas facilis. Autem voluptatum rerum corporis earum non natus. Voluptatum aut voluptatem et nobis vero non quibusdam non.','2018-06-08T14:19:34.615Z',155,5,'millie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (916,'Ad hic blanditiis quas. Pariatur incidunt ut sint non aspernatur ut facere. Optio quo quis sed. Exercitationem ab quaerat veniam.','2017-03-06T02:17:47.938Z',155,3,'mavis.baumbach'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (917,'Impedit non enim illo. Eum ut odio ea culpa in recusandae ut. Id fugit dolore et culpa sit unde rem laborum. Dignissimos deleniti qui aut dolorem praesentium iusto. Vitae ea quaerat qui consequatur quos numquam voluptates.','2017-12-29T19:07:14.021Z',155,5,'kaleb.maggio'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (918,'Nihil eos et asperiores delectus hic ipsa. Sapiente possimus porro molestias quas. Et nostrum ratione molestias quam qui ut mollitia doloribus.','2018-11-08T01:42:37.335Z',155,4,'lon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (919,'Soluta eum quae minus. Eius sed exercitationem illo non deserunt architecto. Aut doloribus dicta et. Quia nisi voluptatibus aut quasi iusto facere cum.','2019-01-30T15:28:11.930Z',155,1,'waino'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (920,'Id totam autem quia sed iste sit non. Aut iure et quis quaerat laborum corrupti consequatur. Autem consequatur et exercitationem quia voluptatem impedit non. Vel quos rerum eaque eum sint quibusdam. Est itaque voluptatem in qui doloribus magni.','2017-12-05T15:30:05.616Z',155,5,'dion.langworth'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (921,'Culpa iste dolores pariatur dolore incidunt. Eaque reiciendis amet cum dolores aut quisquam quo. Ea deserunt hic nostrum error. Dolorem assumenda distinctio qui quod cupiditate occaecati. Officia voluptatibus occaecati a impedit omnis autem.','2019-02-25T06:19:46.027Z',155,5,'annabelle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (922,'Asperiores dignissimos dignissimos et facere. Perferendis et ut tempore reiciendis molestias dignissimos. Aut recusandae reiciendis aut. Eligendi necessitatibus ullam quibusdam quia.','2017-12-08T22:30:41.337Z',155,5,'cale'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (923,'Minus accusantium qui distinctio laboriosam vitae non minus ut. Sunt voluptas reiciendis et tempore. Eius et consequatur maxime et totam explicabo ipsum similique. Sed sint accusantium distinctio quisquam molestiae.','2017-09-17T05:44:14.650Z',155,5,'brandi'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (924,'Quia amet ut itaque voluptates voluptas ratione soluta nemo. Qui velit minima qui. Architecto sed rerum ut. Officiis ipsam blanditiis voluptatem aut at omnis porro error. Autem sequi est hic.','2019-06-10T10:57:37.569Z',156,5,'lelia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (925,'Adipisci deserunt esse repudiandae odit soluta blanditiis et. Non doloribus et nulla cumque iusto eligendi. Et laborum dolores fugit sed quo autem occaecati. Quaerat voluptas veniam voluptatibus voluptas dolorem enim debitis.','2020-02-05T10:57:50.197Z',156,4,'kenton'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (926,'Et voluptates ea quae dolore sit omnis distinctio ut. Dignissimos nulla sint sunt numquam. Eos fugiat mollitia facilis impedit quia optio voluptates. Illo occaecati aut ea at.','2016-11-06T14:11:54.685Z',156,5,'moriah'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (927,'Soluta tempore iste accusantium ea excepturi. Quisquam molestiae inventore cumque rerum qui distinctio minima. Alias praesentium iste ducimus voluptatem temporibus laborum aliquid eum.','2017-04-28T19:24:15.756Z',156,4,'mariela-toy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (928,'Eos non vel nobis exercitationem quam. Quis reprehenderit perspiciatis aut alias mollitia quis. Maxime iste esse odit officiis voluptates dolorum.','2019-08-20T11:10:28.690Z',156,4,'emory'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (929,'Magni voluptatibus quia ut ad. Aperiam fugit voluptate iusto maxime quam tempora libero ut. Nisi eveniet maiores rerum dolor et neque hic reprehenderit.','2017-10-21T08:24:53.471Z',156,5,'myrtice'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (930,'Labore voluptatem nihil in et rem quia dolore. Dolorum ut assumenda dolorum et tenetur ut molestiae qui. Perspiciatis quia aut dolorem rem ut voluptas amet. Suscipit commodi iste id expedita qui quis rem odit. Id quo dolor suscipit est.','2020-02-11T21:53:45.938Z',157,5,'alfredo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (931,'Unde labore aut saepe perferendis quas vero enim. Et minus voluptatum sint molestiae ut eaque dicta libero. Quibusdam ex sunt dolorum accusamus. Quibusdam dolores fuga earum et occaecati placeat. Voluptates voluptatem eum enim autem quis aut veniam molestiae.','2019-04-05T15:16:09.104Z',157,1,'price.cassin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (932,'Repudiandae qui est unde illo. Nobis neque dolor ut odio. Enim iure voluptas quia quidem. Est sunt esse dolores tenetur commodi aspernatur voluptatem.','2018-11-11T06:00:32.323Z',158,4,'kailee-berge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (933,'Quia enim animi voluptatem dolor aut harum nihil. Corporis quasi autem quod voluptatem rerum autem ut. Delectus delectus aut quo nobis et aut quis.','2019-02-07T10:09:31.210Z',158,4,'keyshawn.breitenberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (934,'Natus et placeat autem sit provident omnis. Omnis est voluptate et repellendus. Deleniti quaerat et pariatur. Repellendus ullam nisi rerum omnis. Aut repudiandae placeat est quos nihil quia.','2017-11-23T01:28:08.301Z',158,4,'brody'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (935,'Totam libero qui deserunt. Amet enim sed ducimus tenetur et eius culpa. Autem nisi sapiente in in quibusdam et consequatur est.','2019-07-23T08:17:51.192Z',158,5,'hyman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (936,'Sed reiciendis deserunt cum porro optio fuga id sed. Corrupti vitae modi similique tempora. Doloremque provident rerum consequuntur repellat.','2020-01-25T13:15:06.117Z',158,2,'elise'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (937,'Quia esse itaque deleniti voluptatem dignissimos consectetur sint. Voluptatum ea et rerum dolore. Quam dolor ut quae voluptas. Qui nemo tenetur omnis unde non enim ea dolore. Aperiam a dolorem animi reprehenderit nam.','2020-03-31T09:44:45.442Z',158,3,'manuela-padberg'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (938,'Iste est distinctio ducimus omnis blanditiis est soluta. Pariatur quas inventore nihil rerum tempora. Dicta illum doloremque facere est aut. Similique voluptatem laborum commodi eaque est. Id aspernatur hic ut voluptas accusantium quam.','2020-01-18T19:07:30.083Z',158,5,'alf-hansen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (939,'Voluptates aut dignissimos qui deleniti aut excepturi. Eum corrupti occaecati vel deleniti. Et nam fugiat voluptatem est vel. Rerum aspernatur delectus laboriosam voluptatem officia itaque aut.','2019-11-23T06:29:17.935Z',158,5,'alia.wyman'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (940,'Modi praesentium magnam et aut quae. Molestias et corporis molestiae accusamus et non. Aut voluptatem exercitationem quia. Modi consequatur voluptatibus deleniti magnam consequatur necessitatibus.','2017-12-06T00:47:30.546Z',158,5,'ayana.parker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (941,'Suscipit enim aperiam veniam est magni voluptate cum. Perspiciatis ea est laudantium placeat praesentium blanditiis eos. Odio occaecati minus qui dignissimos voluptas dolorem.','2020-01-12T13:35:00.617Z',158,4,'margarete.towne'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (942,'Veniam consectetur labore tempora ea exercitationem sit. Voluptatum ut qui maxime quae iusto temporibus corrupti. Voluptatibus qui eaque aliquid. Cum error recusandae tenetur vero itaque quas ullam soluta. Expedita ipsum eum non.','2019-04-08T10:27:05.974Z',159,5,'josefa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (943,'Provident aut vel vero et eum laboriosam. Soluta iure voluptates voluptatum perferendis consequuntur impedit vero nemo. Corrupti labore eum praesentium reiciendis maiores cumque neque. Nam nemo explicabo dolores in deleniti et quis laboriosam.','2018-03-20T02:50:32.050Z',159,5,'pearline.rohan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (944,'Facere quia modi ab ut quis quos. Ut voluptate vel et fugiat consectetur tenetur. Natus facilis laborum quis sed rerum rerum rerum placeat. Architecto debitis vero ducimus.','2017-10-23T02:13:07.502Z',159,4,'lorenz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (945,'Occaecati in consectetur et facilis laborum dolorem error. Ut dolor ut officia velit tenetur. Aliquam voluptas nam ullam perspiciatis.','2019-06-01T13:15:20.503Z',159,5,'makenna.wolf'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (946,'Assumenda reprehenderit ut eaque eveniet incidunt et ab. Quia fugit amet quam aut. Delectus officia vitae commodi.','2018-09-28T06:15:43.761Z',159,4,'elmo-heathcote'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (947,'Excepturi saepe eveniet consequatur. Aut est sunt hic similique esse. Aspernatur ipsam cum quis. Molestiae animi molestias libero dolorem a alias. Tempora voluptatem nam aliquam voluptatem.','2019-11-17T10:47:50.073Z',159,2,'arnoldo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (948,'Ducimus incidunt laborum ut sed recusandae quam molestiae et. Quo non iste nisi velit repellat odit autem. Ipsum laudantium laudantium aperiam quia quo consectetur. Quisquam qui pariatur hic sint soluta deserunt commodi.','2018-09-04T17:41:36.419Z',159,5,'casandra.ullrich'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (949,'Reprehenderit qui sit similique. Iusto nobis consectetur dolorem eum laudantium iusto qui non. Et omnis iste impedit laudantium suscipit asperiores amet corrupti.','2017-05-15T21:43:53.951Z',159,4,'casper-lehner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (950,'Et veniam labore voluptates deserunt voluptas. Maiores dignissimos non porro iusto natus maiores voluptate. Nostrum soluta perferendis natus aliquid illo. Voluptatibus autem sunt ea et.','2017-06-28T14:12:41.811Z',159,4,'eva-daniel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (951,'Ut cumque omnis velit totam officiis. Voluptatem tempore sit fuga. Dolore qui eos non voluptatem et sed. Fugit molestias qui a ut. Amet repellat optio eveniet fuga id sunt dolor exercitationem.','2017-09-29T19:21:40.058Z',159,5,'sierra.ondricka'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (952,'Molestias voluptatem mollitia non in aut. Quia labore nostrum ea pariatur. Nemo ut quis officiis corrupti neque consequuntur. Totam quae voluptas facilis ullam et occaecati ut qui. Et assumenda qui fugit.','2018-05-13T23:21:21.947Z',160,5,'patsy-orn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (953,'Quaerat repellendus explicabo quod cupiditate porro. Aperiam voluptas eos aliquam temporibus rerum nihil repellendus aliquid. Alias distinctio et similique ut quasi ut deleniti eaque.','2019-01-31T19:58:54.954Z',161,4,'jack'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (954,'Sapiente beatae nemo odio ad nesciunt rerum. Aspernatur voluptates est eius. Magni quibusdam repellendus debitis ut nesciunt quis odit voluptatem. Asperiores delectus eveniet atque voluptate adipisci.','2016-07-16T12:10:18.300Z',161,5,'amir.lemke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (955,'Neque assumenda velit harum modi. Quis dolore sed sed atque. Vel ut voluptas est. Eos nobis doloribus officia.','2020-02-13T18:20:01.648Z',161,4,'ian.lindgren'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (956,'Perferendis non nihil facilis consequuntur sed ratione minus. Quaerat magni veritatis labore iusto deleniti eveniet. Voluptatum numquam et enim.','2017-08-16T22:10:41.084Z',161,2,'terry.sipes'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (957,'Consequuntur ex dolor quis dolorem a est dolores ex. Quis quasi enim ab culpa illo neque. Ut quia provident voluptatem alias beatae. Voluptatem numquam excepturi provident autem sequi. Laboriosam accusamus sunt explicabo et maxime incidunt.','2018-05-15T01:36:10.452Z',161,5,'eudora.strosin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (958,'Qui deleniti aut temporibus. Excepturi adipisci excepturi enim recusandae temporibus nemo id et. Quaerat ab et non magni recusandae voluptate. Quae accusantium voluptatem dolor accusantium.','2019-11-11T08:08:44.899Z',161,4,'carlo'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (959,'Voluptatibus neque et deleniti exercitationem. Dolor error sunt in quis sed. Ipsum dolor dignissimos repellat nam quae. Et eum et inventore a porro.','2019-10-20T14:01:51.824Z',162,4,'francisca'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (960,'Voluptatum cumque accusamus saepe quod quia et. Temporibus adipisci quas aut vitae optio iure. Fugit repellendus aut omnis vel nihil culpa voluptatem. Et voluptatem praesentium quis recusandae unde magnam.','2019-09-26T03:14:31.468Z',162,2,'giovanny'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (961,'Qui doloremque est consequatur magnam accusantium. Libero non officia non est quas fugiat. Consequatur dolor aut rerum ea et dolores optio. Architecto consectetur aut rerum.','2019-10-18T18:49:48.311Z',162,4,'isidro-ward'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (962,'Illum a et sequi blanditiis. Assumenda sunt quam odio. Rem vero officiis velit. Cumque est illum suscipit quos.','2018-03-01T21:33:39.395Z',164,4,'gardner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (963,'Est beatae necessitatibus fugit totam adipisci quaerat dolore nemo. Sit praesentium modi quaerat similique reprehenderit nesciunt beatae omnis. Ipsam ut excepturi id. Aut veniam omnis laudantium voluptas suscipit adipisci adipisci.','2017-11-03T21:25:27.733Z',164,5,'michel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (964,'Magni id omnis aut cumque et ut. Enim laboriosam omnis debitis. Nobis quam facilis animi amet nam sunt sint corporis. Ut natus quia iusto soluta quo excepturi rerum.','2018-03-14T13:13:35.348Z',164,4,'nellie.runolfsdottir'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (965,'In quam dolorum exercitationem. Optio aperiam nulla quo occaecati omnis ut sed. Et incidunt nam et reiciendis sed.','2019-01-14T03:43:13.829Z',164,4,'sabrina-schiller'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (966,'Est fugiat omnis quo est accusamus omnis in autem. Voluptatibus enim aut eligendi. Omnis iusto recusandae qui quidem.','2018-05-05T10:36:24.779Z',164,5,'brendan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (967,'Corrupti quo voluptas earum fuga. Voluptas eligendi qui sed. Illo repellendus laboriosam magnam quam aperiam nesciunt veritatis.','2019-02-14T01:27:20.811Z',165,4,'lesley'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (968,'Natus rerum hic tempore nostrum sed vel. Explicabo odio ratione impedit sunt totam. Consequatur tempore voluptatem perspiciatis non et occaecati alias. Amet distinctio repudiandae voluptas. Necessitatibus odit quo eligendi ratione minus illo doloribus.','2019-01-11T11:57:54.234Z',165,1,'joshuah.fisher'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (969,'Soluta dolor eius ad laudantium. Occaecati nisi quod et dolores. Voluptas consectetur est non.','2018-05-21T10:42:08.392Z',166,4,'paula'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (970,'Est corrupti eum culpa rerum doloribus voluptas omnis possimus. Eius sit non et. Vitae inventore fugiat voluptas minima. Reiciendis ab omnis vero cumque et.','2018-08-31T17:04:05.469Z',167,4,'lavina'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (971,'Quia velit sapiente quia voluptatem accusantium. Quod ut a nulla ea. Velit tempore sit blanditiis placeat hic maiores reiciendis et. Consequatur tempora non explicabo necessitatibus cumque fuga cumque. Voluptatem ut tempora velit temporibus in et iure.','2018-06-25T23:24:21.905Z',167,1,'bobby.reichert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (972,'Beatae voluptatem est labore dicta. Cum sint cupiditate adipisci nesciunt tenetur harum corrupti. Sint id tempora ipsa provident laudantium magnam. Et illo iure perspiciatis vel qui.','2020-02-09T16:37:57.670Z',167,3,'zena'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (973,'Tenetur earum et numquam qui sit. Aperiam illum dolor ad similique ex unde rerum. Quaerat qui totam dolorum quidem aut porro. Deserunt totam dolore recusandae id. Commodi velit voluptas aut exercitationem exercitationem.','2018-11-18T03:59:23.972Z',167,4,'larry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (974,'Distinctio impedit modi sed doloribus. Placeat qui assumenda occaecati. Eos quo fugiat et autem. Ducimus corporis neque quisquam totam iure perspiciatis voluptatem.','2019-09-23T23:32:30.239Z',169,5,'jaclyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (975,'Dolores fuga omnis consequuntur corporis quidem doloribus dolores. Saepe nesciunt temporibus iste iure. Est molestiae ducimus enim a. Repudiandae itaque et aliquam doloribus. Et quod quas et.','2018-10-17T22:41:00.473Z',169,4,'baby.schimmel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (976,'Possimus sed corporis corporis magni debitis assumenda. Recusandae iusto eius dolorem. Rerum excepturi qui rerum quia molestiae quo.','2019-05-25T12:24:49.308Z',169,5,'margarette.harris'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (977,'Architecto recusandae in sit quia necessitatibus ipsam. Maiores sapiente rerum qui. Dicta rerum quo et voluptatem atque. Pariatur qui est dolor est. Vitae accusantium impedit doloribus nulla non sit laudantium cupiditate.','2018-12-10T17:37:57.943Z',169,4,'jacques.hand'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (978,'Voluptatibus at dolores velit culpa ipsum velit enim voluptatem. Maxime et dolorem aliquid blanditiis illo. Voluptas dolores porro modi molestiae. Error veniam qui animi saepe enim. Doloribus ipsa sit autem incidunt nobis.','2019-07-26T11:51:24.032Z',169,4,'domenico-sawayn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (979,'Aut quia et repellat et ab et ipsam quidem. Ipsum et qui id rerum iure aliquid eligendi rerum. Vero suscipit blanditiis vel iste accusantium. Et sapiente et dolorem quo.','2019-01-31T12:28:47.328Z',169,5,'sienna-turcotte'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (980,'Iste deleniti officiis repellendus aut sit ut. Et quibusdam voluptatum vel dolorem non aut rerum. Deleniti corrupti et quaerat quaerat consequatur mollitia. Quo et voluptate ducimus quae animi cumque. Sint iste nihil modi.','2018-09-05T00:01:11.455Z',169,5,'kolby.gleichner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (981,'Voluptate distinctio perferendis repudiandae autem ut a. Culpa voluptatem voluptates fugit provident quis velit et ullam. Recusandae aperiam odio et et.','2020-01-06T11:06:15.519Z',169,4,'garry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (982,'Tempore sit quas ipsam qui fugit aut necessitatibus sed. Distinctio voluptatem et atque sed sequi sit nobis quia. Asperiores dolorem deserunt fuga exercitationem asperiores est eum. Qui est voluptatem deleniti.','2019-06-10T18:29:52.428Z',169,5,'hazle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (983,'Pariatur quasi laudantium et voluptates sequi vel in eaque. Dolore eum velit dignissimos laboriosam odio. Dolore quo et natus et in. Molestiae dicta et optio porro ea nam fuga. Neque ipsam suscipit et est minima.','2019-08-02T16:57:04.365Z',170,4,'afton.mante'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (984,'Laboriosam sit odit molestiae quo rerum corrupti. Voluptatem dolore sed dolor qui qui harum unde nostrum. Blanditiis aut aut dolorem. Ut non dignissimos laborum omnis omnis quis.','2019-07-13T09:28:04.710Z',170,1,'ashtyn.murphy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (985,'Cum eligendi atque consequatur nesciunt quia tempora aliquid. Velit adipisci ipsum qui rerum ipsa at molestiae. Ullam expedita qui quia ut facere.','2019-03-11T05:28:30.337Z',170,4,'bernhard'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (986,'Amet aut eum voluptatem. Aut consequatur unde occaecati et qui voluptas porro. Molestias qui excepturi praesentium.','2019-05-07T22:28:53.626Z',170,5,'adrien'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (987,'Quia numquam et consectetur rerum. Maiores aut voluptatum maxime. Aspernatur consequatur amet ipsam qui aut.','2020-01-13T12:15:34.752Z',170,4,'meggie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (988,'Dolor fugit nisi et ratione tempora et. Cum sit velit animi. Et non dolores iusto blanditiis. Ducimus mollitia ut eveniet.','2019-07-04T10:24:17.989Z',170,5,'jocelyn-conroy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (989,'Quidem explicabo est ab voluptatem qui enim praesentium et. Error tenetur perspiciatis quasi iure velit voluptas temporibus magnam. Possimus eos eum sunt quod nulla corrupti quis. Adipisci libero id cupiditate vero. Rem placeat laborum voluptatem fuga fugit eum error.','2019-05-20T03:16:06.321Z',170,5,'jeffrey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (990,'Est laboriosam dicta qui velit veniam voluptatibus omnis laudantium. Reprehenderit incidunt explicabo quo dolorum autem itaque nesciunt. In rem impedit nulla veritatis rerum neque.','2019-09-01T00:37:09.453Z',171,4,'janiya'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (991,'Minus ratione eaque enim autem. Ratione ut odio reiciendis dolore fugiat temporibus quo soluta. Soluta ut beatae tempore adipisci nihil. Amet totam omnis excepturi iure. Sit est ut harum quibusdam eius est.','2018-07-18T17:06:42.288Z',171,4,'benton-bernhard'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (992,'Et debitis tempore aut beatae ea dolor aut. Unde dolores ea aperiam ipsum aspernatur quis sed. Deserunt amet in et enim perspiciatis. Excepturi unde quod voluptatibus adipisci quasi expedita ut libero. Cupiditate tempora non qui incidunt ipsam unde.','2017-11-09T14:20:54.978Z',171,4,'dasia.oconner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (993,'Quia dolorum quidem natus. Quas culpa quia neque libero eius. In quibusdam facere architecto ipsam.','2019-10-31T03:05:24.665Z',172,4,'darrel-rodriguez'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (994,'Voluptate et debitis id. Facere odio ex dolor. Aut ipsam repellat veritatis architecto.','2019-01-14T19:17:01.545Z',172,4,'marcelle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (995,'Quae dignissimos aspernatur non id cumque occaecati nesciunt beatae. Totam numquam dolor minus est sapiente mollitia aperiam. Est quos dignissimos omnis omnis fuga quos voluptatibus molestiae. Placeat ex rerum quisquam aliquam in porro. Molestias at saepe animi velit.','2019-02-05T08:27:57.972Z',172,3,'jaiden-ferry'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (996,'Praesentium velit consequatur quo deserunt et. Totam ut nesciunt commodi. Aliquid maxime iure labore tempora officia.','2019-09-26T12:54:35.335Z',172,3,'jarrell'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (997,'Architecto mollitia omnis autem et eum doloribus distinctio similique. Necessitatibus similique dolor est. Id laborum aut eum nobis optio rerum. Deserunt quibusdam et reprehenderit. In id sunt magni possimus pariatur.','2019-09-03T02:38:51.874Z',172,5,'emmitt.cummings'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (998,'Odio repudiandae aut autem ab cupiditate minima. Doloribus sit et dicta incidunt cupiditate odit ut. Nesciunt nemo fugit autem ut ipsam et beatae. Ipsa maxime est qui aut quaerat dolores hic.','2019-01-24T07:23:41.744Z',172,4,'madyson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (999,'Et odit omnis libero nobis. Perferendis aut ducimus itaque eum ad. Nihil excepturi molestiae et non. Non saepe voluptatem et aliquid ut iste quo.','2020-03-06T10:20:52.732Z',172,4,'dallas'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1000,'Et facilis est nihil repellendus explicabo harum eaque occaecati. Occaecati quod provident ex laboriosam cupiditate dignissimos quibusdam. Labore ut aliquam laborum rerum id vitae impedit ea. Voluptatem quasi id eaque dolores aspernatur sit nihil excepturi. Culpa aut rerum veritatis explicabo doloribus doloremque excepturi.','2016-06-03T00:37:05.818Z',173,4,'horacio.gaylord'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1001,'Tempora id facilis omnis adipisci hic similique. Sapiente sapiente saepe aut ut nihil soluta. Qui quia ut culpa ut beatae. Et aspernatur ad atque qui. Voluptatem architecto qui est aut tempora molestias sit accusantium.','2018-07-17T17:55:18.154Z',173,4,'lowell.hills'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1002,'Non enim corporis in in. Quo cum qui in itaque consequatur. Molestiae id iure ipsam quibusdam reiciendis qui. In sint facere culpa deserunt et optio.','2018-06-23T23:37:42.198Z',173,4,'telly.rippin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1003,'Et ut nihil nam. Dolores quo ut explicabo adipisci eaque voluptates impedit illo. Illum suscipit est molestiae. Et laboriosam officiis quo.','2020-03-29T22:53:40.530Z',173,5,'gunnar-wisozk'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1004,'Repudiandae sunt aut pariatur sint quasi consequatur. Totam quasi rerum id qui non voluptate. Eum ipsa assumenda rem. Nulla eum provident eos deserunt.','2018-05-06T23:05:09.274Z',173,5,'wilfrid.gusikowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1005,'Est aut perferendis sunt iusto nobis cupiditate voluptatem. Consequatur est et qui delectus voluptatum architecto vitae fugit. Eaque dicta sint consequatur. Et dolor voluptatibus exercitationem optio sed quo nisi. Voluptas ea quo corrupti.','2020-03-29T08:35:24.208Z',173,5,'rebeca'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1006,'Non quo corrupti debitis facilis. Sed nisi alias nihil possimus doloribus eum laboriosam. Aut fuga sed sed et officiis ut. Ducimus nobis laborum deserunt.','2016-07-08T04:43:45.310Z',173,4,'jaleel-kovacek'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1007,'Rem et nihil ea quibusdam in natus. Sit fuga sed sunt. Perferendis et excepturi est aut reprehenderit. Culpa at sint mollitia. Delectus quos est magni voluptas ut eos ut.','2018-03-22T20:11:09.578Z',173,5,'genesis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1008,'Eos vitae vitae vero optio nam iure omnis delectus. Porro at quia quidem quam et voluptates quod nihil. Architecto repellendus totam unde molestiae veritatis nihil accusantium ut.','2019-09-26T11:31:35.693Z',173,2,'brandy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1009,'Rerum facere dolorem eius aperiam error architecto. Minima temporibus doloribus voluptatem. Facere velit voluptas odit nihil. Sit doloremque libero iure voluptatem non.','2018-09-13T11:10:01.665Z',173,3,'korbin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1010,'Aliquam id quos quia quas praesentium. Nobis quo perspiciatis rem autem. Quis adipisci a sit aspernatur est.','2019-08-05T12:37:13.005Z',174,3,'deondre'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1011,'Non corrupti ut consequuntur quia sunt expedita fugit. Aut facere harum ex omnis ratione delectus fuga. Rem rem rem esse delectus perspiciatis sint iste perferendis.','2019-03-13T05:42:14.484Z',174,4,'granville-walker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1012,'Iusto sit quis qui error omnis eligendi qui. Eum deserunt quia repellendus et. Eius delectus distinctio nisi illo voluptas perspiciatis dolorem. Quos totam quia doloribus assumenda cum voluptatum. Et aut error omnis rerum similique consequuntur fuga voluptate.','2017-11-26T06:11:44.531Z',174,5,'dolly'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1013,'Dolores ut eos quibusdam ullam at. A qui dolores quaerat. Pariatur dolor eius consequatur distinctio quia. Libero aut illum vel quae est perferendis.','2019-08-09T06:04:11.450Z',174,5,'nico.glover'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1014,'At facilis non optio. Quia perferendis asperiores nesciunt sed perspiciatis libero. Eligendi sint quisquam veritatis. Beatae eveniet minus debitis saepe nulla.','2020-01-21T04:25:07.876Z',174,5,'erling-macejkovic'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1015,'Quia rerum aliquid id natus esse cupiditate nisi. Id assumenda maiores voluptatum aperiam consequatur aspernatur quaerat corporis. Necessitatibus voluptatem voluptas doloribus quo. Molestias nisi distinctio quasi quisquam quam quaerat. Sed eveniet velit ullam voluptatem quos autem.','2019-07-07T23:25:12.460Z',176,4,'allie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1016,'Minima dignissimos ex est expedita mollitia vel. Modi error cum quo aliquam et. Eum accusamus consectetur omnis aliquid occaecati nihil officia error. Ad modi dolore est error repellat officiis. Est magnam id possimus.','2019-05-28T23:03:52.409Z',176,4,'lonie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1017,'Ex numquam sit nam aut. Ullam nisi ipsum dignissimos. Ratione delectus eos et est consequatur neque aspernatur. Consequatur non molestiae nam libero id.','2018-05-08T01:51:23.658Z',176,4,'francesco.price'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1018,'Et quos odit sed omnis aperiam rerum voluptate. Et voluptas tenetur aut eius. Et inventore ratione iste eos fugit deleniti non.','2019-11-29T03:19:44.168Z',176,1,'pierce-oconner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1019,'Nulla aut architecto modi itaque sunt rerum rerum. Laboriosam corporis eaque provident mollitia. Quibusdam natus quisquam minima maiores perspiciatis. Voluptatibus itaque et aut odio. Beatae maiores qui similique aliquid dolores quaerat vel.','2018-03-11T08:03:24.131Z',176,5,'monty'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1020,'Possimus et tenetur corrupti sapiente aut. Est exercitationem qui a iste aut fugiat inventore qui. Perspiciatis aspernatur recusandae ad.','2020-01-24T22:49:31.997Z',177,4,'melyna.metz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1021,'Qui qui qui repellendus vero voluptatem veritatis odio laborum. Vel delectus repellendus soluta. Ut impedit at ut velit nam velit eligendi.','2019-11-20T03:52:50.025Z',177,1,'river.swaniawski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1022,'Ab quia repudiandae quod dolores autem laborum. Praesentium tenetur laborum qui. Quasi voluptatibus aspernatur est quia. Officia repellat voluptates ullam corporis rerum iure voluptatem.','2020-03-12T14:36:12.926Z',177,5,'lisette.damore'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1023,'Adipisci nihil velit occaecati rerum non deserunt voluptatibus. Necessitatibus dicta est iure quis asperiores cumque tempore id. Commodi aperiam aut cumque qui sit consequatur. Laborum aperiam ab recusandae quisquam.','2019-08-08T21:51:00.218Z',177,5,'isabella.gulgowski'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1024,'Soluta qui facilis ratione mollitia reprehenderit. Quaerat est labore mollitia eos et nulla ullam aut. Expedita nesciunt laborum eum enim libero cum ipsa.','2019-11-26T10:30:15.847Z',177,4,'nicolas.kovacek'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1025,'Nihil architecto quae placeat eius vel nisi molestiae. Omnis omnis quia maxime cum alias. Minima nostrum earum vero reprehenderit reiciendis voluptate excepturi. Aut consectetur tempora fuga.','2019-07-11T04:02:18.476Z',177,4,'harvey'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1026,'Nulla minus qui aliquam id ut delectus quidem odit. Architecto fugit recusandae nihil at dolores aut accusantium. Quae voluptatum deleniti odio placeat ab natus. Facilis sunt placeat qui ex ullam et corporis error.','2019-05-12T01:18:53.656Z',177,4,'christelle'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1027,'Aut sapiente consequatur unde temporibus optio deleniti. Quis similique ex aut quia facilis consectetur possimus magnam. Qui dolores consequatur architecto dolorem sed. Facere animi maiores consectetur et corrupti facilis illum.','2019-06-09T12:24:03.259Z',177,5,'chris'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1028,'Hic dolore dolores aut. Dolorem hic qui omnis nesciunt reprehenderit alias. Excepturi debitis debitis ullam laudantium. Ut et dicta similique illo illo quaerat adipisci.','2018-03-08T13:54:02.456Z',178,5,'pasquale'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1029,'Quos excepturi sed voluptas dolore earum aspernatur. Suscipit quas cupiditate voluptatem magnam natus praesentium nisi. Omnis rerum est officiis nam repudiandae accusamus. Rerum est et aperiam natus nemo aut et. Aut quia aut reprehenderit porro itaque ut.','2018-08-12T06:23:38.498Z',178,4,'ward.hyatt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1030,'Laudantium animi fugit cum. A tenetur nesciunt occaecati inventore perspiciatis ut et fugit. Autem quis ut aut molestiae qui.','2020-02-17T20:01:42.716Z',178,5,'florence'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1031,'Tempora iste delectus voluptatibus sequi sed amet qui labore. Quia et illo temporibus est. Cupiditate quis vel tenetur voluptate ex. Vel odit esse ea. Quia sunt dolorem sit quo inventore qui.','2020-02-27T15:03:19.312Z',179,4,'bettie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1032,'Et atque id ut omnis quam deleniti debitis. Inventore rerum perspiciatis corrupti. Vel consequuntur earum quos expedita recusandae. Suscipit eligendi enim natus sequi dignissimos exercitationem.','2019-10-28T05:51:56.352Z',179,4,'austen'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1033,'Rerum eius vero blanditiis dignissimos soluta ut ipsum sint. Repellendus incidunt et occaecati molestiae cupiditate similique possimus. Veniam laudantium illo quaerat non porro. Perferendis alias laudantium deleniti.','2018-04-08T17:16:25.326Z',179,2,'ali'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1034,'Debitis amet nostrum esse molestias. Debitis a voluptatem voluptates nihil ducimus accusamus quia eveniet. Voluptas velit ut debitis quisquam quaerat occaecati. Harum impedit iure ratione in est sit quis.','2018-04-14T17:16:44.100Z',179,5,'samanta.rippin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1035,'Voluptas voluptas minima odio est. Itaque tenetur nam illo cum. Illum reprehenderit id quaerat tempora rerum officia. Consequuntur eveniet nesciunt porro. Rerum laudantium dolores esse.','2017-10-24T21:09:20.064Z',179,1,'mona'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1036,'Saepe voluptatem doloremque nihil et et voluptas vitae sunt. Possimus veniam architecto eaque enim. Maiores harum sed mollitia ducimus et qui labore. Autem aperiam odio pariatur suscipit.','2019-07-11T01:05:57.459Z',179,4,'muriel.gerlach'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1037,'Dolorem in molestias voluptatum et. Animi id sed non occaecati qui. Ipsum ad quisquam laudantium facilis qui ad recusandae.','2018-03-12T09:23:10.922Z',179,4,'myrna'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1038,'Velit ducimus autem ut incidunt illo. Temporibus quos iusto pariatur harum nemo autem. Quos unde vel et a omnis odit. Similique adipisci occaecati nobis sapiente magni repellendus.','2019-06-04T21:06:59.585Z',179,4,'maiya-wehner'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1039,'Dolores fuga est quo ut. Excepturi ut dolores eligendi voluptates minus eveniet. Voluptate a saepe nesciunt ratione rerum voluptas tempora. Placeat voluptas et et.','2018-06-28T21:25:22.307Z',179,4,'amelie.collier'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1040,'Facere veritatis voluptates fuga qui nulla. Autem fugit tenetur maiores voluptatem assumenda facere eius. Aliquid corrupti voluptates nisi sapiente enim autem repudiandae eveniet. Omnis labore amet pariatur odit quisquam deserunt. Magnam et dolore explicabo doloribus recusandae.','2019-01-12T14:54:28.569Z',180,4,'sandy-von'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1041,'Excepturi ea voluptatum quo ut. Adipisci odit ipsa deserunt consequatur. Id debitis quia veritatis incidunt. Odit nisi dolorem est non aperiam.','2017-10-08T00:58:38.070Z',180,5,'chadrick'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1042,'Esse nemo corporis quam minus maxime repellendus. Natus sint odit eius iusto doloribus amet et aut. Qui ducimus et alias tempora sunt. Laboriosam et molestiae incidunt.','2019-02-22T00:13:40.107Z',180,4,'lexus-koss'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1043,'Amet dolore tempora voluptatem. Illo dolores aut omnis voluptatum quia. Nobis est optio commodi laudantium rem. Mollitia perspiciatis molestiae omnis facilis omnis praesentium vel omnis. Et quo minus nihil et commodi possimus enim minus.','2020-03-10T14:16:54.520Z',181,4,'elinor'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1044,'Qui sed dolor ut corrupti optio impedit. Quisquam nemo maiores voluptatem minima corrupti repellat magni. Voluptas mollitia in consequatur eum.','2020-04-01T19:58:31.446Z',181,5,'raymundo-macejkovic'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1045,'Voluptatem facilis aspernatur voluptatum sed delectus suscipit sunt provident. Dolores eaque quia quia. Aut atque est perspiciatis optio quo. Vel quo molestiae incidunt blanditiis ut fuga vel.','2020-01-05T02:56:15.387Z',181,4,'colton.macejkovic'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1046,'Molestias laudantium earum sint id sunt eius aspernatur quisquam. Ipsa dolorem cupiditate voluptas commodi nobis. Aut consectetur vero delectus. Et ullam pariatur saepe non beatae eos numquam consequatur.','2020-02-14T20:56:21.338Z',181,4,'elyssa'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1047,'Mollitia pariatur atque explicabo natus quisquam ipsum nobis. Et nulla nihil nisi quia incidunt debitis dolor. Laborum nemo est quia tenetur necessitatibus.','2020-02-17T16:54:56.401Z',181,5,'jarrell-jerde'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1048,'Cumque non ea sapiente animi. At enim est libero eius. Excepturi id quia dolores enim nesciunt. Magnam voluptatem eligendi vel.','2019-03-10T19:39:07.024Z',182,4,'deion.buckridge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1049,'Enim quis laboriosam nostrum nemo. Sunt est nobis suscipit pariatur modi consequatur ut. Soluta hic ullam ipsum alias. Repellat et dolor quisquam veritatis nihil consequuntur reprehenderit provident.','2017-06-28T07:12:39.071Z',183,4,'verlie.hyatt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1050,'Doloremque qui ullam fugiat necessitatibus. Officiis qui ex repellendus eum facere ducimus corrupti. Debitis eos delectus sed tempore. Quaerat doloremque nihil laudantium.','2020-02-01T14:28:48.078Z',183,2,'carlie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1051,'Ipsum accusantium atque itaque perspiciatis vero. Voluptate praesentium quae harum dolorem ut aut. Cumque illum et veritatis iusto. Autem amet laudantium voluptatem optio provident alias consequatur.','2020-02-03T09:21:15.149Z',183,4,'breana.buckridge'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1052,'Unde est et repellendus libero. Ut nisi est natus ipsa quisquam eligendi corporis cupiditate. Molestiae sed aspernatur maxime eum totam.','2017-09-27T10:28:39.703Z',183,4,'javier-kessler'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1053,'Omnis voluptas velit enim laudantium consectetur deleniti et. Eaque optio veniam et veritatis. Repellendus est mollitia quae. Natus amet officiis qui eveniet ullam nesciunt non. Est impedit ut in et odit mollitia et.','2018-03-19T12:59:38.066Z',183,4,'katheryn.abernathy'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1054,'Incidunt animi nulla omnis ipsum aperiam. Iure nam sint dignissimos. Quasi blanditiis corporis voluptate aperiam molestiae aliquam sint.','2020-01-21T17:57:49.556Z',183,4,'pat.leuschke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1055,'Corporis consequatur sint debitis voluptas accusantium fuga omnis recusandae. Beatae rerum consequatur iste quia qui soluta. Molestiae dolorum non blanditiis et soluta.','2019-06-04T07:11:00.269Z',183,4,'cyril'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1056,'Et sequi provident rerum. Voluptates earum deleniti doloremque labore est quibusdam. Accusamus aut vero laudantium. Consequuntur dolor recusandae quod molestiae iste et eius.','2017-07-14T06:38:43.123Z',183,4,'brenda-hand'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1057,'Aliquid voluptate dicta voluptatum ut. Ut beatae excepturi impedit sapiente aut sequi quo. Dolores suscipit asperiores ipsa beatae sed. Ut adipisci veritatis consequatur.','2020-03-23T00:50:07.320Z',184,4,'nadia'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1058,'Soluta quo delectus blanditiis voluptatibus labore mollitia. Accusamus qui placeat id tempore hic. Iste ut accusamus asperiores aperiam sit.','2017-12-24T09:28:21.701Z',184,2,'shayne.dickinson'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1059,'Dolores voluptatem optio dolor ab quo sit possimus iste. Exercitationem enim quam velit provident. Dolorem exercitationem officiis velit repellat amet rerum.','2020-03-08T08:32:29.236Z',184,5,'alanis'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1060,'Hic qui quasi quia dolores in natus. Occaecati voluptas velit omnis aut dolorem rerum molestiae. Aut quia dolorum ipsa nisi odio. Minima odio ad in veritatis dolor numquam illum nisi.','2017-08-19T20:38:02.070Z',184,5,'denis-zulauf'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1061,'Aspernatur sint ut consequatur. Dicta perspiciatis quia voluptatum cum. Ut vel eaque harum.','2017-09-23T21:04:40.134Z',184,2,'wilfrid.okon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1062,'Quis ut nemo in. Quidem beatae voluptatum vitae iste earum laboriosam. Laudantium deleniti nobis aut reprehenderit aut quas maiores laborum.','2018-11-14T15:47:46.323Z',186,5,'blanca'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1063,'Consequatur dolor in aliquam natus molestiae autem. Perspiciatis quis dolore modi animi at vel dolore. In accusamus ut ut.','2018-05-30T20:14:35.759Z',186,4,'lurline'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1064,'Reprehenderit culpa distinctio perspiciatis magni nam laboriosam ducimus sequi. Quis et aperiam quia aut est veritatis. Quia aspernatur quis et nisi fuga qui est. Velit itaque illum consequuntur. Enim dolores aut hic est reiciendis corrupti nam.','2019-10-07T10:21:45.445Z',186,4,'donny'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1065,'Exercitationem ut doloribus et maiores. Repellat velit aliquid ex repudiandae magnam. Et hic blanditiis aliquid. Consequuntur debitis assumenda rerum alias officiis neque beatae.','2018-12-26T21:27:50.598Z',186,4,'austyn.lakin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1066,'Hic vel ipsa nemo sapiente delectus quasi minus. Iusto molestiae totam vero a non velit autem quisquam. Harum cumque iste sunt et aut magni. Molestiae aut accusantium consequatur optio est.','2019-01-14T07:30:22.058Z',186,4,'hugh'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1067,'Rem necessitatibus voluptates provident inventore. Mollitia non odio perspiciatis cumque. Facere vero provident saepe neque repellat provident quidem. Aliquam et asperiores molestias laboriosam officiis dignissimos dolor vitae.','2018-12-23T17:22:24.618Z',187,4,'elissa.kuhn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1068,'Consequatur aut possimus occaecati asperiores corporis ut et voluptas. Ut neque nobis ullam doloribus consequatur. Voluptate et eum dolorem aut. Autem mollitia natus autem. Aliquid natus sit id esse qui voluptatem voluptas.','2019-02-20T23:35:39.291Z',187,4,'cortez'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1069,'Dolorem aut beatae quaerat quas. Nihil eveniet quo ipsum et. Corrupti quidem ipsa distinctio dignissimos deserunt eos aut repellendus. Voluptatem voluptate sit similique.','2020-01-15T23:57:06.753Z',187,4,'forrest.zieme'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1070,'Beatae voluptatem quam iure magnam voluptates. Voluptate in ullam consequatur qui. Sunt autem natus voluptatum nesciunt et dolor.','2019-10-21T13:23:22.912Z',187,5,'dominique'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1071,'Consequatur qui reprehenderit ipsa molestiae quod. Sed omnis assumenda tenetur minima est sit temporibus. Sapiente nesciunt dolorem ducimus vel sit dicta et.','2019-07-14T11:05:07.594Z',188,4,'marie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1072,'Cumque blanditiis cumque debitis praesentium voluptatem temporibus praesentium. Beatae aut aspernatur dolorem quisquam magni distinctio voluptatem. Pariatur quaerat nam culpa consequuntur tempora voluptate vero. Rerum asperiores in doloremque eum recusandae nisi.','2019-12-23T02:17:45.573Z',188,3,'rhea'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1073,'Temporibus vero est omnis delectus est. Consequatur fugit asperiores eum id. Modi non nihil accusantium accusantium vel. Excepturi quos sunt facere sed modi aut. Nihil et ut debitis perferendis voluptatem eveniet error ratione.','2018-06-06T22:46:29.020Z',189,5,'amparo-gleason'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1074,'Rerum qui consequatur sunt aut. Debitis earum accusamus corrupti temporibus quis numquam tenetur iusto. Soluta provident libero aspernatur qui laborum vitae. Qui dolorum at est voluptate. Aut mollitia aut odit qui.','2019-03-05T06:55:05.439Z',189,4,'bill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1075,'Inventore molestias nihil vel facere. Quos dolorem atque et velit veniam quam exercitationem est. Eum quis numquam vel adipisci modi.','2017-12-01T03:41:54.682Z',189,4,'thad'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1076,'Cumque reiciendis necessitatibus accusamus sint provident. Quod eligendi adipisci ut dolore. Qui est est animi libero itaque beatae. Tenetur non aut deleniti sunt repellat rerum. Placeat fugiat voluptatibus voluptatem dolore consequatur optio.','2019-03-07T18:59:36.241Z',190,4,'tevin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1077,'Ex voluptatibus voluptas ratione assumenda numquam facere. Ut qui a omnis qui porro dolorem optio. Ipsa dicta esse dolores enim et consequatur ut dolores.','2019-03-18T05:34:27.749Z',190,4,'rey-hand'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1078,'Sed et deleniti quas et similique. Molestiae earum optio et. Nihil minus aut asperiores nisi aut molestiae. Eius eos odio quia dolores voluptate beatae necessitatibus. Veritatis quaerat ut dolores et ea qui qui.','2019-03-13T17:22:37.614Z',190,2,'jonas-metz'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1079,'Magni voluptatem modi facere consequatur vel. Asperiores qui necessitatibus ut quo consequatur rem vitae. Labore rem perferendis minima vitae rem. Est quae qui ea earum deserunt deleniti beatae aut. Autem nobis tempore et deserunt harum quia voluptates.','2019-10-16T18:12:53.529Z',190,3,'demetris'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1080,'Inventore laudantium soluta et maiores doloremque qui. Aliquam velit aliquam hic sunt expedita. Est sed reiciendis quia quae architecto.','2018-08-23T07:41:05.648Z',192,1,'lauretta-eichmann'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1081,'Blanditiis magni temporibus quisquam quisquam voluptatem quas iste. Dignissimos voluptatem sit reprehenderit inventore eos est. Sunt enim voluptatem nihil.','2017-01-12T12:09:55.420Z',192,5,'ryder-larkin'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1082,'Rerum et ipsa nesciunt nihil. Quasi atque sint cumque voluptatem nostrum suscipit dolor molestiae. In voluptates qui est dicta distinctio nihil.','2018-10-25T01:20:18.669Z',192,4,'chasity.bins'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1083,'Odit nihil expedita dolor qui nisi tempore. Doloribus saepe ea nostrum sequi error. Et doloribus id at corporis autem. Illum quasi deleniti voluptatem doloremque nam.','2018-02-27T14:51:45.159Z',194,1,'efren.ondricka'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1084,'Eius animi esse temporibus rem. Vitae qui nobis ut et sint eligendi. Eos reiciendis id sapiente et voluptatibus dignissimos. Accusamus et consectetur est omnis ipsam. Veritatis voluptate et velit deserunt nemo laborum libero ad.','2017-04-08T23:43:57.502Z',194,3,'murphy.walker'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1085,'Rerum voluptatum libero consequatur ipsa. Eveniet qui quae voluptates architecto quaerat. Molestiae nemo quia dignissimos et odit facilis.','2019-09-10T19:00:37.795Z',194,5,'allie.bauch'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1086,'Qui dolores eligendi non ratione aut eveniet ducimus. Explicabo occaecati cumque sunt quis eligendi distinctio nihil. Odit non ipsa numquam in libero. Odio quia et et sit.','2020-04-05T17:53:28.305Z',194,5,'travon'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1087,'Aut quod quia impedit eos consequatur. Voluptate dolores eaque accusamus nisi aut velit officiis. Minima consequatur magni sunt quis dolorum inventore.','2020-03-22T17:16:32.234Z',195,5,'cullen-sporer'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1088,'Provident ea dolor rerum. Qui perferendis sint incidunt officia atque voluptatem odio. Possimus facilis reiciendis quasi similique velit fuga. Non voluptas dignissimos aliquam.','2019-03-04T20:17:47.219Z',197,5,'carmela-runolfsdottir'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1089,'Magni et est quidem. Magnam beatae dignissimos odit at qui quia earum voluptatem. Ut doloremque excepturi facilis itaque nobis. Dicta omnis dolorem quasi inventore soluta. Perspiciatis pariatur et eius.','2020-03-16T01:31:10.099Z',197,4,'edd.blanda'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1090,'Pariatur in ipsum est. Sapiente ut facilis minima. Laboriosam id debitis deserunt commodi adipisci odio. Quod ut expedita autem minima voluptas.','2018-05-07T18:12:12.611Z',197,5,'diego-lind'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1091,'Dolor maiores est perspiciatis vel sed vitae saepe dolore. Illum officia harum similique ullam minus rerum praesentium ducimus. Ratione eius repellat quo magni ducimus.','2019-04-08T02:01:01.178Z',197,5,'anthony.grant'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1092,'Eaque voluptate nihil ut eaque vel. Corporis perferendis rerum et cupiditate. Aut exercitationem sapiente qui.','2017-08-28T15:08:55.042Z',197,4,'blair-krajcik'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1093,'Repellendus consequuntur neque pariatur unde sit. Eligendi aut distinctio officiis a minus veniam voluptatibus ut. Omnis quisquam repudiandae iusto possimus enim architecto eos.','2018-10-08T01:32:34.377Z',197,5,'nathen.beahan'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1094,'Voluptatem accusamus harum necessitatibus et perspiciatis eveniet soluta. Rerum sunt facere ratione assumenda nobis aut tenetur deserunt. Reiciendis delectus doloribus quis. Aut adipisci aut iure ab voluptas dolores nobis.','2019-08-13T19:31:34.553Z',198,5,'deontae.cole'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1095,'Quam hic expedita deleniti ut est doloremque deserunt. Natus nihil corporis voluptate ab. Enim soluta non laboriosam qui aut. Eveniet eum praesentium alias et modi quo omnis.','2019-12-05T04:41:21.354Z',198,4,'elyse.roob'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1096,'Ea nisi consequatur est quo. Eveniet debitis sint eligendi quaerat quibusdam sed dolores. Mollitia est sunt placeat necessitatibus. Cumque vitae tempore quisquam et sed nemo magni maiores. Vel ipsam et quia repellat ratione eligendi ea.','2019-08-21T17:35:19.042Z',198,4,'norris-smitham'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1097,'Eveniet quo doloribus eveniet optio et. Et non odio autem officia illo beatae velit. Rerum quo sapiente reiciendis iste autem magnam. Est quis ut fugiat et vitae eaque.','2019-09-10T15:33:50.248Z',198,4,'elwyn.pfannerstill'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1098,'Excepturi accusamus pariatur minima. Id et expedita tempora est ea consequuntur animi. Natus libero sed sit in velit libero aliquid error. Esse maiores modi inventore est. Provident accusamus magni explicabo et error.','2019-10-31T20:59:27.660Z',198,4,'dorcas-mayert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1099,'Id facere magni quia. Illo molestiae laboriosam sed quos dignissimos praesentium sit. Molestias consequatur eveniet maiores optio placeat molestiae quas. Nihil vel aliquid quia commodi aperiam ipsa doloribus atque.','2018-05-24T02:17:34.198Z',198,4,'jordan-legros'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1100,'Omnis ut cumque possimus aliquid dolore. Non labore explicabo est eius rerum officia ipsum. Unde accusantium aut voluptatum. Aut molestiae et ullam.','2018-04-22T22:20:04.997Z',198,4,'vito-leuschke'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1101,'Soluta similique vero praesentium inventore ipsa cumque dignissimos. Reprehenderit magnam qui necessitatibus odio voluptate et voluptatibus. Sint qui voluptatem at numquam.','2018-01-04T00:57:04.845Z',199,1,'stanford.fisher'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1102,'Repudiandae id dolor voluptatem omnis ea neque esse. Aut consequuntur unde cupiditate iusto et quia in ut. Delectus qui ut nobis vel et mollitia expedita. Libero laudantium unde hic. Libero quod consequatur saepe non dolorem ducimus sit.','2016-10-23T11:17:00.756Z',199,5,'sylvia-kutch'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1103,'Aperiam vel animi quis quos itaque voluptatem quod ut. Saepe amet modi facilis aut rerum. Ut impedit saepe quo aliquam rerum. Hic similique eligendi distinctio et expedita amet.','2017-03-15T07:55:31.539Z',199,4,'caitlyn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1104,'Culpa distinctio exercitationem hic. A ratione distinctio culpa quae molestiae sunt odio iusto. Beatae magnam aut qui.','2019-09-06T18:19:39.376Z',199,5,'fannie'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1105,'Officiis itaque aut saepe omnis aut quia sed. Quidem temporibus maxime consequuntur ipsa ipsa voluptatem quis. Non vitae et est in culpa eligendi impedit cum. Enim mollitia dicta quasi esse voluptate. Maiores similique hic minima blanditiis.','2018-12-28T08:21:20.161Z',199,2,'carmel'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1106,'Mollitia et cum odit. Repellat et omnis ad consequuntur et sed quae. Dolores voluptates quasi at aut iure deleniti. Rem blanditiis sunt placeat consequuntur quia nisi.','2017-11-29T16:36:23.216Z',199,5,'lia.kiehn'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1107,'Eius error facilis sint natus consequuntur molestiae. Cumque sunt itaque tenetur dolorem. Quae sed modi non quisquam iure. Explicabo consequatur autem aliquid quo. Sit magnam sed et repudiandae laborum.','2019-01-31T07:41:08.080Z',200,4,'hollie-bashirian'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1108,'Quia natus eaque odit aperiam quasi ea. Fugit voluptate esse et officia. Commodi beatae exercitationem natus magnam dolorem. Magni modi eos labore deleniti. Fugiat aut possimus aut beatae laborum expedita qui ut.','2018-10-22T09:50:39.101Z',200,4,'dandre'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1109,'Alias exercitationem quo aut rem accusamus quos et. Voluptas assumenda aliquid hic error. Qui voluptas voluptas sit. Quam dignissimos veritatis nostrum sapiente voluptatem.','2019-11-05T17:25:33.597Z',200,3,'will'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1110,'Et doloribus quo laudantium earum accusamus pariatur ipsum aut. Laboriosam nihil odio facere harum. Occaecati molestiae assumenda incidunt blanditiis commodi eos animi aliquid. Rem neque nihil minima non dolor ullam consequatur. Architecto et omnis impedit quam eos officia et officiis.','2018-08-31T03:51:01.370Z',200,4,'cecilia.hyatt'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1111,'Eligendi id adipisci quis quaerat est dolorem nisi est. In aperiam maiores sed. Vero pariatur iusto aut pariatur repellat aut et assumenda. Ut aliquam iusto at sit voluptatem. Officiis assumenda iure cumque aut fugit consequatur error.','2019-01-23T14:49:01.779Z',200,5,'delbert'); +INSERT INTO reviews(id,body,created_at,product_id,rating,reviewer) VALUES (1112,'Eligendi cumque et quam qui. Quo facilis veniam minus ab nobis aut delectus. Fugiat iste deserunt inventore est eius.','2018-09-01T23:23:23.486Z',200,4,'terrell'); diff --git a/sample/schema.sql b/sample/schema.sql new file mode 100644 index 000000000000..3d75252158fa --- /dev/null +++ b/sample/schema.sql @@ -0,0 +1,49 @@ +CREATE TABLE products( + id bigserial PRIMARY KEY, + created_at timestamp, + category text, + ean text, + price float, + quantity int default(5000), + rating float, + title text, + vendor text +); + +CREATE TABLE users( + id bigserial PRIMARY KEY, + created_at timestamp, + name text, + email text, + address text, + city text, + state text, + zip text, + birth_date text, + latitude float, + longitude float, + password text, + source text +); + +CREATE TABLE orders( + id bigserial PRIMARY KEY, + created_at timestamp, + user_id bigint, + product_id bigint, + discount float, + quantity int, + subtotal float, + tax float, + total float +); + +CREATE TABLE reviews( + id bigserial PRIMARY KEY, + created_at timestamp, + reviewer text, + product_id bigint, + rating int, + body text +); + diff --git a/sample/users.sql b/sample/users.sql new file mode 100644 index 000000000000..4722cfdb6e17 --- /dev/null +++ b/sample/users.sql @@ -0,0 +1,2500 @@ +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-07T01:34:35.462Z','Twitter','Hudson Borer','Wood River','1986-12-12',40.71314890000001,68883,'ccca881f-3e4b-4e5c-8336-354103604af6',1,-98.5259864,'9611-9809 West Rosedale Road','NE','borer-hudson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-09T12:10:05.167Z','Affiliate','Domenica Williamson','Searsboro','1967-06-10',41.5813224,50242,'eafc45bf-cf8e-4c96-ab35-ce44d0021597',2,-92.6991321,'101 4th Street','IA','williamson-domenica@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-27T06:06:20.625Z','Facebook','Lina Heaney','Sandstone','1961-12-18',46.11973039999999,55072,'36f67891-34e5-4439-a8a4-2d9246775ff8',3,-92.8416108,'29494 Anderson Drive','MN','lina.heaney@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-21T13:59:15.348Z','Google','Arnold Adams','Rye','1992-08-12',37.9202933,81069,'537a727b-7525-44a3-99c8-8fdc488fbf02',4,-104.9726909,'2-7900 Cuerno Verde Road','CO','adams.arnold@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-05T03:36:44.811Z','Twitter','Dominique Leffler','Beaver Dams','1974-04-20',42.348954,14812,'6a802b6c-4da8-4881-9ca6-4f69085c7c14',5,-77.056681,'761 Fish Hill Road','NY','leffler.dominique@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-22T10:08:29.599Z','Google','Rene Muller','Morse','1983-03-27',30.1514772,70559,'760495fb-9c38-4351-a6ee-4743d10d345e',6,-92.4861786,'1243 West Whitney Street','LA','rene.muller@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-24T06:18:20.069Z','Facebook','Roselyn Bosco','Leakesville','1996-01-19',31.2341055,39451,'43adf4af-055b-4a39-bc06-489fb0ffcf40',7,-88.5856948,'630 Coaker Road','MS','bosco.roselyn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-18T02:55:11.873Z','Facebook','Aracely Jenkins','Pittsburg','1973-06-05',37.43472089999999,66762,'6bb01b7f-6426-47d3-bfca-95dcc42b8b27',8,-94.6426865,'1167 East 570th Avenue','KS','aracely.jenkins@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-13T23:52:56.176Z','Twitter','Anais Ward','Ida Grove','1999-10-16',42.29790209999999,51445,'a3de5208-2f2f-4c81-9fe7-8d254bd5095d',9,-95.4673587,'5816-5894 280th Street','IA','ward.anais@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-16T12:16:30.307Z','Google','Tressa White','Upper Sandusky','1968-01-13',40.8006673,43351,'81052233-b32e-43cb-9505-700dbd8d3fca',10,-83.2838391,'13081-13217 Main Street','OH','white.tressa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-19T07:17:22.759Z','Facebook','Lolita Schaefer','Pilot Mound','1982-08-20',42.1394217,50223,'ceddd766-924b-4856-9dcb-a15b4c1b154c',11,-93.982366,'495 Juniper Road','IA','schaefer-lolita@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-27T17:25:24.344Z','Facebook','Ciara Larson','Florence','1982-12-16',44.9564152,57235,'eb925d11-ea2f-41fb-a490-72b7c2b24dc0',12,-97.2287266,'16701-16743 449th Avenue','SD','ciara-larson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-21T16:21:06.408Z','Facebook','Mustafa Thiel','Santa Ysabel','1963-07-20',33.08172,92070,'bb85c7fa-4314-4e41-a060-7d0159f16931',13,-116.661853,'2993 Hoskings Ranch Road','CA','mustafa.thiel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-17T23:29:39.271Z','Facebook','Lavonne Senger','Chico','1963-09-22',39.6485802,95928,'8beebcc9-a376-447a-812f-7544fdc52ec7',14,-121.9343322,'3964 Chico River Road','CA','senger.lavonne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-20T17:50:32.296Z','Twitter','Bertrand Romaguera','El Paso','2000-02-14',35.1080351,72045,'2734ae7a-aa25-4907-9d2e-a6992750db60',15,-92.0101859,'258 Opal Road','AR','romaguera.bertrand@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-14T23:44:56.182Z','Google','Khalid Pouros','Greensboro','1961-09-16',32.7042678,36744,'e60e4c1e-c9dc-47fe-9f4b-138651cebd85',16,-87.54135959999999,'3234 County Road 7','AL','khalid-pouros@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-05T20:38:57.437Z','Organic','Lora Cronin','Gold Beach','1990-02-16',42.5048529,97444,'1b414387-e9c0-4b97-ba60-263268e38f3d',17,-124.1878367,'6111 Rogue Riv','OR','lora-cronin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-25T20:11:39.430Z','Affiliate','Arely Pollich','Portland','1990-06-27',45.554885,97230,'251cd4bd-d7c9-4704-a864-edd953952a9b',18,-122.5277436,'13116 Northeast Sandy Boulevard','OR','pollich-arely@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-03T07:27:47.569Z','Affiliate','Wyman Kertzmann','Grants Pass','1975-07-23',42.3222669,97527,'89ef82c4-55e2-4907-94a6-09b0368b3c58',19,-123.324017,'1460 Grays Creek Road','OR','wyman-kertzmann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-12T23:32:17.853Z','Affiliate','John Aufderhar','Marne','1991-10-26',41.466973,51552,'edd767f7-ef71-42bf-807e-f96fdee4b7b4',20,-95.1012128,'52737 570th Street','IA','aufderhar.john@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-07T03:02:25.602Z','Twitter','Angela Botsford','Phillips','1999-07-17',40.9764889,68865,'4d4e6ab3-88a9-462f-9244-80d1865b31b1',21,-98.13254409999999,'2002-2078 North J Road','NE','angela-botsford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-29T21:34:43.775Z','Twitter','Jeromy Smith','Napa','1967-02-16',38.5063378,94558,'5858bd6f-7731-4e39-a506-f5e29419785a',22,-122.1878842,'1165 Rimrock Drive','CA','jeromy.smith@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-16T01:10:35.969Z','Facebook','Candida Kiehn','Girard','1971-08-06',33.0854659,30426,'8e866dca-3fa2-4c1d-aeaa-cf0a2642ce95',23,-81.67635899999999,'2003 Brigham Landing Road','GA','kiehn-candida@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-26T06:39:38.701Z','Facebook','Nya Weber','Cohasset','1971-01-13',47.1794946,55721,'07401ce0-ed0d-406d-b370-4aa0945a6196',24,-93.6321358,'20930 Sugar Hills Road','MN','weber-nya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-16T02:51:36.698Z','Twitter','Araceli Stiedemann','Fayetteville','1979-02-05',36.0479853,72701,'51421352-6fdf-456e-93c9-41875c275480',25,-94.20265719999999,'1201-2099 Plumberosa Drive','AR','stiedemann.araceli@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-03T08:40:35.686Z','Organic','Dagmar Fay','Winnemucca','1962-07-20',41.4720902,89445,'c754f596-48c4-4857-9000-8ea132605d6e',26,-118.346273,'19480 Happy Creek Road','NV','dagmar.fay@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-05T16:05:38.485Z','Organic','Kyler Abshire','Arcadia','1989-09-27',41.1278979,44804,'179376b7-cb5e-4a61-990a-7fa5df7c1e8a',27,-83.5359594,'2398-2558 Township Highway 249','OH','kyler.abshire@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-05T07:29:27.053Z','Affiliate','Keon Cartwright','Baldwyn','1991-10-25',34.4325826,38824,'b9245148-1f98-4410-89ea-ec4035d97c19',28,-88.5702919,'355 Road 2538','MS','keon-cartwright@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-28T10:06:09.056Z','Facebook','Broderick Lockman','Lancaster','1990-09-09',39.6955024,43130,'38b3c74d-9d98-4547-94b9-9bcac3d5a762',29,-82.5027112,'5125 Duffy Road Southeast','OH','broderick-lockman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-09T04:07:48.891Z','Affiliate','Desiree Walsh','DeWitt','1988-02-23',34.3125434,72042,'20634749-9fa0-4ffe-8f9c-c7cb1c3d5e82',30,-91.20821,'13-99 Deberry Levee Road','AR','walsh-desiree@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-05T20:13:51.205Z','Affiliate','Cleora Hilll','Houston','1995-02-02',43.80686660000001,55943,'866c311b-f3b4-4752-a199-0ec05072a730',31,-91.6359614,'2303 Christianson Hill Road','MN','cleora.hilll@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-25T03:42:16.554Z','Google','Jayden Hamill','Pueblo','1967-05-23',37.94777029999999,81004,'473f01a2-ea14-4782-ab69-0f7ab4e561a4',32,-104.8778192,'6101 County Road CC67','CO','jayden.hamill@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-16T19:08:43.814Z','Affiliate','Alphonso Quigley','Steamboat Springs','1997-04-20',40.3372992,80487,'c07018ad-28b4-48da-a707-f513a5969d92',33,-106.7981696,'33430 Danver Trail','CO','alphonso-quigley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-13T05:02:49.513Z','Organic','Emilie Goyette','Amissville','1966-05-25',38.656887,20106,'2ef33e82-9576-41c2-986e-777703a014f8',34,-77.975854,'3349 Holly Springs Road','VA','goyette-emilie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-07T20:44:08.982Z','Twitter','Chelsey Schuppe','Sharon','1984-03-19',42.5616569,53585,'6aa1e263-6496-4e45-802e-eadeb123f420',35,-88.677537,'N1962 County Road K','WI','schuppe-chelsey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-13T05:18:15.329Z','Organic','Kaley Ziemann','Hoisington','1967-10-31',38.6232452,67544,'51d4f8b2-71d3-4378-a7a0-46f22472cc26',36,-98.8225441,'244-298 Northwest 180 Road','KS','ziemann-kaley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-05T06:39:15.958Z','Facebook','Jaleel Collins','Tucson','1978-10-10',32.3735889,85742,'608dbb0f-a21e-43bb-9688-5a1f5d3bf8cd',37,-111.03742,'3210-3298 West Overton Road','AZ','jaleel.collins@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-22T01:11:34.237Z','Facebook','Cecilia Stark','Hurricane','1981-12-16',38.4920821,25526,'b3f69b9a-5221-4708-87ca-6aad41dceb43',38,-82.0002696,'155 Cow Creek Road','WV','cecilia.stark@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-02T13:07:05.644Z','Organic','Andreanne Hills','Edgerton','1988-04-26',43.9393467,56128,'8893e779-0875-4325-a795-0ca65555530d',39,-96.1592993,'618 150th Avenue','MN','andreanne-hills@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-06T00:54:32.105Z','Google','Elyssa Wolf','Dale','1978-09-04',29.99592,78616,'48eb05e6-8c28-46d0-a072-e4ad3191182d',40,-97.5590129,'171 Olive Oyle Lane','TX','wolf.elyssa@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-24T16:27:39.250Z','Google','Bernadine Gorczany','Waukee','1984-03-24',41.539616,50263,'059d446f-2382-4891-9099-79bc4c61023f',41,-93.874784,'31619 Silverado Lane','IA','bernadine.gorczany@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-12T08:31:53.943Z','Google','Reyes Strosin','Watertown','1992-05-23',44.10684560000001,13601,'b5cf239e-3f04-4301-8356-e43da503553a',42,-75.9958097,'30379-30383 Herbrecht Road','NY','reyes-strosin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-04T06:12:21.524Z','Twitter','Chaya Volkman','Dike','1962-09-14',42.43880739999999,50624,'3f43356b-8191-4fd4-86a9-435020c483b5',43,-92.6713936,'18001-18999 North Morrion','IA','volkman.chaya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-04T22:28:00.846Z','Facebook','Carroll Kohler','Mallard','1999-03-19',43.0246186,50562,'a0b2035f-6e00-4119-943a-c60b79f7534e',44,-94.6294178,'4251-4389 485th Avenue','IA','carroll.kohler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-26T21:46:48.626Z','Organic','Gilbert Abbott','Columbus Junction','1963-03-23',41.3221172,52738,'5633576b-48aa-49fa-af06-6ac1614b4a05',45,-91.47486099999999,'28001-28599 180th Street','IA','abbott-gilbert@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-25T15:35:57.868Z','Twitter','Kaleb Swaniawski','Kalkaska','1996-02-13',44.8540315,49646,'db1bc340-a201-476f-ad9a-44356b84a9c6',46,-84.87710150000001,'15000-15312 Crooked Road Northeast','MI','swaniawski-kaleb@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-24T01:29:29.570Z','Organic','Bradley Green','Flagstaff','1980-06-16',35.337122,86004,'28ddc3ee-1fb6-4d0a-8437-20be81626311',47,-111.3635,'111 Leupp Road','AZ','bradley.green@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-24T10:23:11.878Z','Organic','Logan Weber','Morrowville','1988-06-22',39.9879628,66958,'04858e53-e1dd-4d0d-b241-2484abe833fc',48,-97.1458337,'1260 29th Road','KS','logan-weber@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-17T22:24:49.195Z','Twitter','Zane Koelpin','Reeds','1967-07-11',37.1382857,64859,'6d25201f-e1ae-4bd3-99e1-f8e75e69e664',49,-94.11219600000001,'6043 County Road 30','MO','zane.koelpin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-24T04:24:23.117Z','Twitter','Stacy Wisozk','Fordville','1967-05-14',48.2384345,58231,'f36e9fca-558b-41fe-bc9d-7b1b135ef1c6',50,-97.86937549999999,'12751-12799 57th Street Northeast','ND','wisozk.stacy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-19T22:11:18.349Z','Twitter','Alvah Wilderman','Carrollton','1965-06-12',33.493444,38917,'e1c1ff81-c916-4fe8-9577-fe774f96efb2',51,-89.8906564,'21421 U.S. 82','MS','wilderman.alvah@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-30T01:41:33.498Z','Google','Velma Little','Auburn','1982-10-24',34.057083,30011,'31c95579-f89a-4c37-b223-2f1d43345eb0',52,-83.81534099999999,'1110 Puckett Road','GA','velma-little@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-08T15:36:34.933Z','Facebook','Nikolas Romaguera','Pontotoc','1974-04-22',34.272145,38863,'5f0d66d8-10c1-4752-b91d-9797393fe529',53,-89.185783,'1380 Juba Road','MS','nikolas.romaguera@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-20T12:34:10.172Z','Affiliate','Davin Stamm','Waterbury','1971-10-08',42.324103,68785,'7b4ab172-e59a-44e8-942d-fc6b0935e7eb',54,-96.74542609999999,'87245 590 Avenue','NE','stamm.davin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-13T10:43:37.775Z','Affiliate','Holly Bayer','Union Springs','1987-01-16',32.1412409,36089,'fd98d21a-e468-46f8-9306-8bd3c68a11bb',55,-85.6383022,'373 Lee Loop Road','AL','holly-bayer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-03T10:09:11.172Z','Google','Seth Willms','Haxtun','1969-05-12',40.5974724,80731,'63ac48ea-98ca-4904-a786-2d6c51f2876f',56,-102.5311932,'22842 County Road 15','CO','willms.seth@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-15T16:03:53.401Z','Twitter','Jordy Haag','Kendrick','1979-11-13',46.578927,83537,'a2e708b6-6c18-4ad1-a295-dfac2622bc05',57,-116.537937,'35378 South Road','ID','haag-jordy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-02T12:04:04.932Z','Facebook','Dawson Kovacek','Owensboro','1983-09-10',37.8205743,42301,'20aaf730-4fae-4ee8-ba9e-c346dd5de4a8',58,-87.2486685,'174 Kentucky 1554','KY','kovacek-dawson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-14T18:35:24.646Z','Organic','Hugh Hahn','Fort Garland','1966-07-26',37.4230302,81133,'00280947-bea4-4fec-883b-2d7be7e5baa6',59,-105.3720874,'3405 Brittain Road','CO','hahn.hugh@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-23T22:26:35.223Z','Twitter','Edgardo Hackett','Fort Gay','1996-10-31',38.111944,25514,'00878241-0268-4419-8f3f-2c9df0079ed4',60,-82.5399396,'1826 Paddle Creek Road','WV','edgardo-hackett@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T04:03:53.196Z','Google','Lina Labadie','Catawba','1984-03-28',35.69917,28609,'2da78e08-2bf7-41b8-a737-1acd815fb99c',61,-81.017265,'7100 Hudson Chapel Road','NC','labadie.lina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-13T01:31:33.122Z','Affiliate','Angelica Zulauf','Saint Petersburg','1985-10-17',27.872096,33702,'425a725e-dcff-4815-9f35-71af7fc81a85',62,-82.61317000000001,'12055 Gandy Boulevard North','FL','zulauf.angelica@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-04T22:17:41.314Z','Organic','Delilah Stoltenberg','Spencer','1997-01-18',43.21093399999999,51301,'e8fc2150-456d-414c-9c58-dde640d39325',63,-95.24696499999999,'1725 300th Street','IA','delilah-stoltenberg@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-15T17:14:42.121Z','Affiliate','Terrence Grimes','DeRuyter','1968-11-19',42.723496,13052,'384c582a-c1b0-4a80-817d-848f6f48cc7e',64,-75.856499,'207 Grenadier Drive','NY','grimes-terrence@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-09T03:04:22.934Z','Facebook','Arne O''Hara','Howes','1979-09-09',44.7004251,57748,'6d446a9c-d3e7-488a-9276-0d8710a9642b',65,-102.1931175,'18630 Old Marcus Road','SD','arne-o-hara@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-01T00:07:14.935Z','Twitter','Gladys Dare','Glenfield','1994-01-05',43.763995,13343,'386893ea-73bc-4354-b00d-bdf90cf09384',66,-75.38189799999999,'6568 Pine Grove Road','NY','gladys-dare@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-10T04:00:13.756Z','Affiliate','Keyon Stroman','Chignik Lake','1987-12-10',56.26086710000001,99548,'abe5fdbc-f0c5-4b1e-93fc-31eddf430246',67,-158.7019256,'19 Riverfront Drive C Street','AK','stroman-keyon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-11T01:47:39.768Z','Affiliate','Colton Hauck','Rockport','1963-11-21',37.89017339999999,47635,'5303b9a1-7784-4b45-8ee7-019e44298d2d',68,-87.1323259,'449-499 County Road 400 West','IN','colton-hauck@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-02T01:06:17.749Z','Facebook','Anibal Hansen','Moville','1969-10-06',42.3420983,51039,'d498d3dc-de10-4b26-a286-1ff4f01c2210',69,-96.0377865,'2508-2520 Hancock Avenue','IA','hansen.anibal@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-03T07:13:18.736Z','Twitter','Maya Berge','Ainsworth','1993-12-21',42.1362931,69210,'1446f729-049c-49b2-8827-a235b24f82c0',70,-99.8663091,'84975 Nebraska 7','NE','maya-berge@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-12T09:38:56.272Z','Affiliate','Lillian Green','Cody','1968-05-11',44.500381,82414,'d1f42495-9414-4320-afd1-a6a79d2fcacd',71,-109.2863821,'3801-4099 North Fork Highway','WY','lillian-green@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-21T19:44:11.459Z','Facebook','Eula O''Connell','Grand Ridge','1961-12-24',30.604401,32442,'62d6360c-787a-488e-846e-f9cf285f0ac8',72,-85.02780299999999,'28367 Florida 69','FL','eula-connell-o@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-04T01:00:21.537Z','Organic','Stan Hessel','Shelburne Falls','1968-08-06',42.5549457,01370,'196f7102-5eef-42ce-bd0c-f5de4ec84bad',73,-72.6583358,'28-50 Hawks Road','MA','stan-hessel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-25T14:34:03.624Z','Twitter','Jarret Marvin','Rushville','1968-12-18',39.6293759,46173,'90eeb0ae-fc40-4363-8fb0-c70492b70fab',74,-85.3744045,'350 East North Street','IN','marvin-jarret@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-26T16:37:10.620Z','Affiliate','Isobel Fadel','Winner','1994-11-21',43.1848428,57580,'9fe6681e-47ad-44ba-a006-b9f1e9d691b1',75,-100.033216,'30682 291st Street','SD','fadel.isobel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-11T06:15:00.193Z','Google','Amiya Considine','Noxapater','1970-05-01',32.9558013,39346,'fd121428-25c3-46e6-9cc3-2b400f2d9365',76,-89.0665798,'600 Hight Moore Road','MS','considine-amiya@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-11T11:19:04.661Z','Organic','Felipe Wilkinson','London','1988-03-08',37.1228826,40741,'dd1d35d1-8110-4981-9c2f-fc345ad7cb57',77,-83.99708249999999,'1436 Tom Cat Trail','KY','felipe-wilkinson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-13T19:16:26.609Z','Affiliate','Keenan Schaefer','Three Forks','1993-09-17',45.838178,59752,'b3300eb8-da2d-46c4-9d0a-0ee51053746b',78,-111.495663,'4333 Madison Road','MT','schaefer.keenan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-25T02:59:37.635Z','Google','Palma Volkman','Orlando','1990-03-15',28.412059,32821,'36d740f1-bda3-4337-838d-1b26fd947815',79,-81.43779599999999,'4797 Central Florida Parkway','FL','volkman.palma@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-17T00:14:58.886Z','Twitter','Wilhelm Willms','Commerce','1992-01-06',33.2513235,75428,'61a12c12-b0a3-4cf1-8f14-ed83d3f8cbb3',80,-95.88581839999999,'101-1299 Mosley Street','TX','willms.wilhelm@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-29T20:40:13.534Z','Facebook','Curt Baumbach','Arlington','1962-09-10',48.14901099999999,98223,'8da294bb-9403-4a8e-be7f-d56414bf3c16',81,-122.137382,'6913 168th Street Northeast','WA','baumbach-curt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-09T02:12:21.860Z','Organic','Macy Olson','Siloam Springs','1971-09-20',36.2020785,72761,'f8fb1605-5bb2-4386-8f92-6da57da52e90',82,-94.4309788,'15079-15327 Readings Road','AR','macy.olson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-17T19:55:33.107Z','Facebook','Theresa Kertzmann','Chinook','1989-08-30',48.6052737,59523,'12bf8161-daa0-4cba-afc3-fe7b104fa060',83,-109.2199464,'4 Hc 69','MT','kertzmann.theresa@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-23T13:05:31.918Z','Google','Dorris Frami','Peru','1963-03-08',40.8042019,46970,'0c33e8e5-b610-4959-9097-618f6bd70a86',84,-86.01402499999999,'2787 North 300 East','IN','frami.dorris@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-24T23:42:11.490Z','Google','Vernice Steuber','Gill','1971-06-03',42.6392077,01354,'9c3cf0b1-f405-427f-89af-4209f4f121e4',85,-72.50279499999999,'21-89 Lyons Hill Road','MA','steuber-vernice@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-11T01:11:33.681Z','Twitter','Oda Brakus','Cottonwood','1981-06-22',40.29595,96022,'c0a9ba4f-c877-4caf-81d8-3b7713b2406d',86,-122.440831,'17300 View Drive','CA','oda-brakus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-28T02:15:31.735Z','Google','Heber Vandervort','Klamath Falls','1983-09-24',42.167971,97601,'e959b1c4-c4a6-4cee-b1db-4fc3928b6977',87,-121.867448,'9665 Pat Drive','OR','heber.vandervort@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-29T15:32:30.829Z','Google','Breanne Schiller','Hoopa','1999-03-01',41.350309,95546,'836461db-b4ed-496d-a688-019478331cf0',88,-123.84852,'2 Site 7','CA','breanne-schiller@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-10T20:18:20.336Z','Affiliate','Durward Ledner','Brownsville','1989-07-31',43.5903545,55919,'98946a17-196b-4529-809c-0774ed46f150',89,-91.33149290000001,'17779 Walnut Road','MN','ledner.durward@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-23T17:19:09.974Z','Twitter','Scarlett Beahan','Hot Springs','1991-09-02',34.505161,71901,'b15ed850-8163-4335-a85e-6d8846ec7750',90,-93.006959,'2190 East Grand Avenue','AR','scarlett.beahan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-02T15:32:49.235Z','Google','Myrtis Labadie','Pecos','1973-01-19',31.36935089999999,79772,'09321f33-f0ba-4f30-adfe-51506b665c09',91,-103.5827313,'292-386 County Road 206','TX','myrtis.labadie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-01T23:51:53.521Z','Twitter','Tatyana Steuber','Avon','1992-10-05',43.0570164,57315,'d8d1e11c-26bd-4928-8b2d-6ebd2877fcf5',92,-97.9539025,'29883 412th Avenue','SD','tatyana-steuber@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-07T01:29:05.878Z','Affiliate','Broderick Wintheiser','Wasilla','1961-01-25',61.37213,99654,'a6f5a36e-2f57-44cb-bdb3-7e2625eace19',93,-150.098354,'25890 Holstein Avenue','AK','wintheiser-broderick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-24T23:00:11.114Z','Affiliate','Armando Herzog','Madras','1972-06-19',44.7873093,97741,'43645a1c-3e28-45f0-9888-d4fcf3354901',94,-120.934635,'11105 North Old Highway 97','OR','armando-herzog@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-16T01:38:03.356Z','Organic','Aurelie Spinka','Cheney','1960-06-05',47.4154041,99004,'3c9956eb-e0ed-485b-95ca-4b046ca35856',95,-117.7767551,'25611 South Carman Road','WA','aurelie-spinka@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-17T11:46:46.300Z','Organic','Ayden Heller','Hermitage','1963-05-08',33.2537345,71647,'32fe731f-9137-46f5-970e-e8e43c513943',96,-92.1484057,'839 Bradley 60 Road','AR','ayden-heller@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-08T08:29:08.023Z','Facebook','Quentin Leannon','Fresno','1999-05-18',36.64563400000001,93706,'424781b2-3944-4cb7-92b2-0511ab513157',97,-120.00331,'11821 West Lincoln Avenue','CA','quentin.leannon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-01T08:45:16.488Z','Google','Lucas Beer','South Webster','1978-02-22',38.8234,45682,'b02caa74-76bc-4e4e-9d8e-f56b404c6dd9',98,-82.6755,'2329 Jackson Fork Road','OH','lucas-beer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-14T14:33:34.897Z','Organic','Alicia Cormier','Craigmont','1959-01-31',46.331827,83523,'35a62981-457f-4f79-9803-019da8d8a82a',99,-116.2924427,'2160 Settler Road','ID','cormier.alicia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-22T22:34:34.054Z','Organic','Nels Heaney','Glenfield','1995-05-12',43.7130017,13343,'8ec74bdb-98d2-4e4c-ab82-dce89bb16876',100,-75.43909099999999,'6088 Meiss Road','NY','heaney.nels@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-06T14:48:26.038Z','Twitter','Beryl Reichel','Rich Hill','1964-01-09',38.0319159,64779,'3353794d-8f0b-4d9f-b148-990897a39954',101,-94.2752332,'3118 South 1938 Road','MO','reichel.beryl@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-18T10:33:33.219Z','Facebook','Kade Kub','Clinton','1982-09-02',46.6588404,59825,'cbca34d6-acf8-47d6-9052-3fbf16557954',102,-113.6540732,'550 Rock Creek Road','MT','kade-kub@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-08T23:00:11.699Z','Facebook','Jayce Hilpert','Buxton','1978-06-06',47.6128237,58218,'a220e645-0b5c-49fa-acfa-cde85ef48141',103,-96.9681621,'16780 14th Street Northeast','ND','hilpert-jayce@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-13T04:04:46.165Z','Twitter','Briana Kuphal','Evensville','1991-06-11',35.598895,37332,'0e663ad6-aafe-49ce-80b0-7603e5cdf4b6',104,-84.83532799999999,'6183 Old Dixie Highway','TN','kuphal-briana@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-20T00:33:39.454Z','Facebook','Carleton Effertz','Elk Creek','1966-06-09',39.6135899,95939,'19b6d8be-ba3c-4d66-b871-312d06460803',105,-122.5711026,'3135 Sanhedrin Road','CA','carleton.effertz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-24T20:29:03.767Z','Google','Rosina O''Connell','Lizton','1979-06-02',39.8863642,46149,'5f5abb40-bcc8-4b83-a6ad-0527eb5aa397',106,-86.5583394,'1701-1999 West County Road 850 North','IN','rosina.connell.o@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-06T09:37:51.068Z','Affiliate','Verla O''Kon','Pocahontas','1986-02-23',42.7814427,50574,'eb128872-4a4c-4157-a26c-d76072121467',107,-94.8164443,'48502-48654 150th Avenue','IA','verla.kon.o@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-21T12:13:50.422Z','Facebook','Archibald Von','Windom','1969-01-03',33.509668,75492,'8c2daa24-2d3a-445f-a22d-82e8e0cea91a',108,-96.032372,'5706 Farm to Market 1743','TX','von-archibald@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-21T14:08:42.986Z','Google','Anais Dare','Clinton','1962-08-26',40.919299,44216,'044c199b-a129-4c98-aeae-30e03f7da5a1',109,-81.545908,'271 West Comet Road','OH','dare.anais@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T17:37:43.247Z','Google','Alexanne Wisoky','Brook','1967-10-29',40.891452,47922,'d8bdb2e5-30d2-41bc-afa6-a75d585d8ae6',110,-87.290014,'5361 East 700 South','IN','wisoky-alexanne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T22:37:21.854Z','Google','Augustine Runolfsdottir','Bell City','1997-06-10',30.0178145,70630,'b16278c2-c9b5-4fb9-b212-d4d08992fab3',111,-93.0878386,'521-599 Louisiana 27','LA','runolfsdottir.augustine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-28T23:54:56.658Z','Google','Theresa Grant','Maxwell','1988-11-29',39.2802275,95955,'f31fbf5c-28fe-4284-ad4b-ebd3c4d42e4a',112,-122.1971163,'370 North Street','CA','theresa.grant@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-18T01:30:18.921Z','Google','Kathleen Quitzon','Redstone','1965-02-20',48.65539769999999,59257,'a4fb4bfc-e010-4b54-9afb-1ec314afb34b',113,-104.9287866,'1711 Welliver Road','MT','kathleen-quitzon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-05T06:44:47.206Z','Facebook','Wilbert Greenfelder','Hopatcong','1966-11-29',40.922515,07843,'206b8844-81ce-4346-8086-05bf0be8da64',114,-74.654822,'1 A Point Pleasant Road','NJ','greenfelder.wilbert@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-04T03:19:32.567Z','Facebook','Edwin Spencer','Angleton','1994-06-28',29.18861,77515,'83cb3413-2234-420a-8441-9ec94b6e1092',115,-95.4850699,'28161 FM 521 Road','TX','spencer.edwin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-13T06:15:45.065Z','Facebook','Jimmie Doyle','Forsyth','1977-09-25',46.13674779999999,59327,'94713a13-e32d-4d12-bcbe-5bd42e0892da',116,-106.4627731,'2020-2026 Rosebud Creek Road','MT','doyle-jimmie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-25T03:17:16.765Z','Organic','Hollis Hettinger','Conneaut Lake','1994-01-29',41.6020003,16316,'24758719-01af-4cab-b72b-31dbbda474ca',117,-80.32627610000002,'10237 Pennsylvania 285','PA','hollis-hettinger@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-25T06:51:18.563Z','Affiliate','Diego Will','Huntington','1976-05-29',31.3799326,75949,'249ad114-7a7d-4637-a6ba-2a594bcc92ed',118,-94.5245865,'870 Marions Ferry Road','TX','diego.will@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-24T00:23:29.500Z','Facebook','Makayla Heathcote','Gainesville','1969-05-22',34.2667033,30507,'98b4ee91-d74b-4fa4-af6f-af1b4ea5e61f',119,-83.7451529,'2945-2965 Gillsville Highway','GA','heathcote.makayla@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-18T17:59:16.965Z','Affiliate','Ashton Schmidt','Gardner','1994-09-14',42.593775,01440,'dd3c2e18-bcab-4ac3-bd61-474874d9161d',120,-72.021141,'538 Clark Street','MA','schmidt-ashton@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-01T10:59:22.343Z','Google','Trace Morar','Tripp','1971-05-29',43.3301989,57376,'7042ac4c-f5e2-476a-ba04-be1fcaada93c',121,-97.8519453,'41706 280th Street','SD','morar-trace@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-28T20:51:17.526Z','Twitter','Brant Dare','Maricopa','1984-11-15',34.75105,93252,'05f16e9e-4d96-479c-adf9-47f1c0cccdeb',122,-119.427429,'31541 California 33','CA','brant.dare@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-26T15:55:14.248Z','Affiliate','Gerald Hermiston','Lackawaxen','1996-06-17',41.4658789,18435,'534d6d52-6ab8-4c67-b0f4-8227804b6c0c',123,-74.9888927,'583 Pennsylvania 590','PA','hermiston.gerald@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-29T04:28:51.037Z','Affiliate','Franco O''Reilly','Larimore','1976-04-19',47.8845232,58251,'f99f217f-1576-40eb-ae79-66c6d15d09a5',124,-97.6237067,'1451-1499 37th Street Northeast','ND','reilly.o.franco@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-05T05:43:23.086Z','Facebook','Geoffrey D''Amore','Ishpeming','1971-08-01',46.3580329,49849,'a32980cf-74d4-4c4b-8cb3-2e1363c12bb4',125,-87.829121,'4801 Road Cce','MI','d-amore-geoffrey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-23T21:41:23.085Z','Google','Kris Yost','Dublin','1986-04-02',31.921767,76446,'ff88704c-16f3-4c65-a40c-3d73d0aa64a0',126,-98.324061,'1188 Farm to Market Road 1702','TX','kris-yost@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-13T14:02:52.354Z','Facebook','Hans Hagenes','De Motte','1966-06-29',41.1490825,46310,'b8c3a9e9-6959-454f-9979-c319a9f3a964',127,-87.17967300000001,'9698-9912 North 700 West','IN','hans-hagenes@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-02T23:08:28.628Z','Organic','Jakob Kerluke','Del Norte','1958-06-20',37.703053,81132,'319ef85e-e9b9-4213-99c7-689c795aec31',128,-106.37448,'19045 County Road 15','CO','kerluke.jakob@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-17T04:32:34.950Z','Affiliate','Grace Casper','Mammoth Cave','1992-05-04',37.2630179,42259,'3d899a08-c4ef-45f2-b63b-835ee8a65e86',129,-86.1622465,'8235 Nolin Dam Road','KY','casper-grace@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-24T22:46:10.946Z','Google','Myrna Hickle','Douglas','1974-06-08',43.153337,82633,'5956d518-38f3-4ffb-9795-81eb5c5c77df',130,-105.019411,'2919 Walker Creek Road','WY','hickle-myrna@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-24T06:04:27.131Z','Facebook','Melisa Walter','Linville','1968-05-26',38.5538818,22834,'7d1d6af9-a100-457d-90b0-9279ce9f28b6',131,-78.85508659999999,'5132 Wengers Mill Road','VA','walter-melisa@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-15T17:07:08.720Z','Google','Kenna Bailey','Grant Town','1961-11-22',39.561936,26574,'3c350b17-fca9-4cb3-a2d7-ca63cebe186d',132,-80.161913,'228 Abpp Drive','WV','bailey.kenna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-03T10:16:39.135Z','Facebook','Christopher Hilll','Circle','1981-08-15',47.6208379,59215,'7c3769fd-eb49-4e71-8d91-10a27beaf9d4',133,-105.3887932,'281-699 East Duck Creek Road','MT','christopher-hilll@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-25T20:22:57.992Z','Twitter','Orie Bartoletti','Moses Lake','1996-10-28',47.3232465,98837,'1bb690d2-78d8-4f34-99eb-a810af8f7a13',134,-119.309409,'8001-8783 Road 16 Northeast','WA','orie-bartoletti@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-11T14:38:56.147Z','Affiliate','Rhett Mante','North Ridgeville','1990-10-31',41.414166,44039,'20d499ac-bdba-4a93-ac5f-283b6891ae2f',135,-81.9847444,'5509-5501,5500-5508 McKinley Avenue','OH','rhett.mante@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-22T03:56:02.886Z','Twitter','Aliyah Stracke','North Zulch','1975-12-05',30.9388436,77872,'4dc3f97b-eb39-4f83-8e6e-0466fa75f0c4',136,-96.07014129999999,'9967-10311 Jinkins Road','TX','aliyah-stracke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-30T04:37:59.772Z','Google','Dayton Keebler','Texarkana','1960-09-03',33.4107005,71854,'51aacb02-9e1f-4e4a-9898-e2e6bd92b629',137,-93.8872518,'261 Pr 1138','AR','keebler-dayton@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-10T15:31:58.363Z','Twitter','Unique Runolfsson','Tracy','1975-04-16',44.297511,56175,'93833de0-eb66-4472-9284-37c5f9c88d8f',138,-95.6824956,'3001-3099 170th Street','MN','runolfsson.unique@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-02T13:41:45.139Z','Google','Norene Flatley','Yoakum','1995-08-02',29.11341699999999,77995,'317848f6-dd5a-4aae-856c-9c654a9ced25',139,-97.021,'15024 Farm to Market 682','TX','flatley-norene@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-06T18:33:59.321Z','Affiliate','Walker Conroy','Baton Rouge','1961-09-15',30.3817696,70820,'d0f1949d-ab5f-4e0f-974c-e79befe38c32',140,-91.1954073,'2933 Sarpy Avenue','LA','walker.conroy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-15T12:51:15.271Z','Facebook','Alvina Mertz','Waskish','1994-07-17',48.205763,56685,'74714dd7-898b-4b24-90a3-b20bddd48681',141,-94.5749173,'22087 Fishermans Haven Road Northeast','MN','alvina.mertz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-13T17:07:33.679Z','Organic','Sheridan VonRueden','Centuria','1993-10-27',45.4779624,54824,'ae5ae49b-a040-4f04-bbe9-a3c9b0beecc0',142,-92.5522438,'1855 190th Street','WI','vonrueden-sheridan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-15T20:39:41.404Z','Twitter','Melyna Koepp','Wayne','1960-02-12',42.3285929,68787,'2567dcd2-813d-4699-ba5a-62072c89922d',143,-97.01779409999999,'86229-86265 576th Avenue','NE','koepp-melyna@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-27T12:26:50.072Z','Twitter','Savanah Fahey','Russellville','1992-07-17',38.827956,45168,'6ccfd780-737d-4dfa-9f36-9e98df9dc5ba',144,-83.75506399999999,'6956 Mount Aire Road','OH','savanah.fahey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-19T20:31:13.928Z','Facebook','Aryanna Hegmann','Lincoln','1975-05-09',44.728183,48742,'0a5a1703-fca9-403a-aec2-39204ac8d944',145,-83.4251333,'2491 Miller Road','MI','hegmann-aryanna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-25T15:38:48.021Z','Affiliate','Trenton Batz','Casco','1990-12-07',42.7990559,48064,'c310d2cc-0c7f-41f4-ab5f-69c77639c33a',146,-82.66714689999999,'8840 Saint Clair Highway','MI','trenton-batz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-19T04:21:07.731Z','Facebook','Eileen Mayert','Tehachapi','1994-02-06',35.166327,93561,'c3a7228d-c34c-439e-bcf7-859e21c62e90',147,-118.477387,'19500 Dovetail Court','CA','eileen-mayert@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-14T19:24:03.026Z','Organic','Madie Bayer','Greenwood','1963-11-18',33.6872507,38930,'fcdc8af8-b425-4201-949e-2bf1277fd753',148,-90.2063275,'268 County Road 454','MS','madie.bayer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-22T23:06:29.646Z','Facebook','Madonna Kertzmann','Dillwyn','1995-06-16',37.5746079,23936,'87415991-9bc9-4d13-a1cf-1f2b51cdaa6b',149,-78.47260849999999,'1349 Prison Road','VA','kertzmann.madonna@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-01T23:26:54.142Z','Facebook','Henderson Hansen','Folly Beach','1959-02-06',32.682146,29439,'f2becd2c-2974-4a52-8b8b-8bee86b12d3c',150,-79.891785,'1746 East Ashley Avenue','SC','hansen.henderson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-02T16:01:26.304Z','Twitter','Khalid McKenzie','Douglas','1996-10-19',42.6071945,82633,'f83be753-f450-4ae4-8825-38f12a7ce560',151,-105.5102213,'820-872 Poison Lake Road','WY','khalid-mckenzie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-13T01:55:28.151Z','Facebook','Ethan Kling','Fairmount','1970-03-18',46.0369948,58030,'466b58f1-e0a2-4448-ba66-8eb632c74c0b',152,-96.75492559999999,'17401-17499 95th Street Southeast','ND','kling-ethan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-19T00:42:58.426Z','Google','Lewis Hoppe','River Falls','1967-12-22',44.9074009,54022,'d2540b5e-456c-4713-a12d-85bde7881bd9',153,-92.65948999999999,'314 Wisconsin 35','WI','hoppe.lewis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-24T20:30:21.960Z','Organic','Monserrate Schuppe','Bellvue','1989-09-18',40.5479816,80512,'2fc7bb02-89e4-477c-a5dd-1a1f379f953a',154,-105.4740886,'3331-3589 Ballard Road','CO','schuppe-monserrate@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-27T14:33:50.573Z','Affiliate','Trisha Hoeger','Uniontown','1982-02-04',37.7530823,42461,'9b1fb13f-2d4e-4885-bc2c-a5409af5a770',155,-87.9231926,'5036 Airline Road','KY','hoeger.trisha@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-24T14:17:35.213Z','Twitter','Lolita Zemlak','Jacksonville','1993-09-30',39.7320556,62650,'32ad31ee-8982-49a0-9d38-0731f2fde18d',156,-90.2451991,'212 Park Street','IL','zemlak.lolita@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-21T07:54:24.451Z','Affiliate','Ferne Tremblay','Columbia','1998-05-06',35.9255799,27925,'84cefc9a-4cbe-47ef-be8f-2340fe8a11b2',157,-76.302166,'1343 Davenport Road','NC','tremblay-ferne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-29T14:57:13.224Z','Affiliate','Maye Toy','Essex','1983-08-01',36.8939065,63846,'823ba66f-724e-4e44-bac2-c4baf454da7e',158,-89.78379319999999,'19736-19746 County Road 581','MO','toy-maye@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-23T14:30:41.070Z','Organic','Mattie Bayer','Mechanicsville','1982-03-01',41.8323487,52306,'b59654b0-9d97-49de-b651-3a76caf453cd',159,-91.2776887,'790 Echo Avenue','IA','bayer-mattie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-24T19:50:43.403Z','Twitter','Jordane Pacocha','Macy','1968-03-17',40.916432,46951,'8aed905d-6ba9-4047-ad7c-b21e8c21790d',160,-86.097224,'10360 North 100 West','IN','pacocha-jordane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-07T16:54:14.657Z','Organic','Rupert Ruecker','La Fayette','1985-05-31',32.782583,36862,'1cb8e12b-f105-49c0-ba44-dee2f450bf11',161,-85.3869612,'4119 Chambers County 173','AL','rupert.ruecker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-16T01:57:51.290Z','Twitter','Destiney Swaniawski','Attica','1978-08-05',41.1256993,44807,'bcfba4ab-f3ac-45d4-9b59-fa18b75bacb8',162,-82.8288503,'6738-6772 Ohio 162','OH','swaniawski.destiney@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-15T06:19:39.181Z','Twitter','Rowena Hodkiewicz','Hershey','1993-03-31',41.31672040000001,69143,'e2ba8358-2d9a-4c59-9511-13d8ce95701d',163,-101.013686,'26046 West North River Road','NE','hodkiewicz.rowena@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T17:23:19.975Z','Facebook','Sabryna Schumm','Grand Rapids','1959-11-25',47.0765723,55744,'34de5758-d333-4581-aec6-5d4ffdfc2b27',164,-93.5083726,'13271 West Splithand Road','MN','sabryna-schumm@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-25T12:24:58.705Z','Facebook','Pattie Senger','Colquitt','1962-11-18',31.2316415,39837,'eded5b02-9fdf-4112-9171-526fa75d0be3',165,-84.5972409,'735 Kelley Road','GA','pattie.senger@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-24T04:29:26.701Z','Google','Carmelo Carter','Onaway','1963-03-02',45.36304,49765,'1f2e15e4-5224-4c71-b6e2-3bfd4b890e2c',166,-84.30846,'9011 Kisser Road','MI','carter-carmelo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-14T10:45:03.326Z','Organic','Grady Sipes','Lenoir','1993-07-11',35.822889,28645,'36293cbf-4f42-458d-a3a3-524e82937cd5',167,-81.574767,'4126 Smokey Creek Road','NC','grady-sipes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-11T08:01:05.565Z','Google','Lucile Bednar','Somerville','1978-01-30',30.3280707,77879,'101626a0-ce84-41da-9608-1aa36db2ef16',168,-96.7380668,'9872 County Road 132','TX','lucile-bednar@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-30T11:09:22.485Z','Organic','Arnaldo Bartell','East Hampton','1979-05-19',40.9746726,11937,'0c5c3328-6386-4239-82d5-b2567617bd09',169,-72.1968189,'154-156 Cedar Street','NY','arnaldo-bartell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-18T12:08:00.277Z','Google','Mohammed Beatty','Ekalaka','1970-11-20',45.82408,59324,'a3cde051-453e-4cd4-95b6-5624fb83ee49',170,-104.30909,'671 Prairie Dale Road','MT','beatty.mohammed@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-23T12:12:45.464Z','Twitter','Raphael Wolff','Lancaster','1995-11-15',48.88848369999999,56735,'ac3c8898-1e9d-46f7-8774-f1201cd03b26',171,-96.6728171,'3399 360th Avenue','MN','raphael.wolff@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-30T10:45:43.878Z','Facebook','Maryam Weimann','Andrews','1996-12-17',32.3125762,79714,'026813d5-d57a-4fe3-97c0-409eac126204',172,-102.3958822,'1901-1999 Telephone Road','TX','weimann.maryam@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-25T23:39:38.418Z','Google','Howard Gaylord','Wakeman','1980-01-10',41.16777949999999,44889,'f89ac090-ee1c-4e43-a038-ef38566cf92a',173,-82.43573289999999,'1246 Jarvis Road','OH','howard-gaylord@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-22T19:51:22.627Z','Facebook','Quentin Cummings','Needles','1964-04-21',34.8981079,92363,'a6aa3d77-6288-4aa8-acb0-3490611ba069',174,-114.783128,'131764-132898 Homer-Klinefelter Road','CA','quentin.cummings@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-05T15:14:05.572Z','Twitter','Ernestina Gerhold','Ogden','1977-03-30',41.977433,50212,'3d97a7ca-b22d-41ca-817d-7dde336a8560',175,-94.06967730000001,'496 260th Street','IA','ernestina-gerhold@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-18T22:17:15.588Z','Google','Rebeca Parisian','Three Rivers','1992-09-08',42.0529562,49093,'a45af2df-431e-48c7-957c-484daec90660',176,-85.51435,'22711 Davis Drive','MI','rebeca.parisian@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-25T11:17:45.623Z','Google','Nikko Haag','Shannon','1978-02-27',42.1728599,61078,'a7f76c0b-ec90-4c11-ad27-d278549a6a52',177,-89.7458849,'17411 Shannon Route','IL','nikko-haag@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-03T09:30:48.697Z','Organic','Joanie Cruickshank','Frewsburg','1973-11-28',42.012186,14738,'ff36ba90-0678-4074-8590-4df924f31a5f',178,-79.046403,'12759 Gurnsey Hollow Road','NY','joanie-cruickshank@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-17T21:22:17.185Z','Google','Van Windler','Ferriday','1981-08-09',31.6307641,71334,'fa2ddb1e-73b6-428e-b115-deca2c317f86',179,-91.5771343,'253 Par Road 2-75','LA','van.windler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-23T16:31:50.696Z','Google','Wilma Roob','La Russell','1984-07-29',37.17645479999999,64848,'666e4ec9-fcda-4a00-9b4a-ae502037c6c2',180,-94.0074102,'7059 Highway Bb','MO','wilma.roob@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-13T13:23:45.363Z','Twitter','Evalyn Moen','Kerman','1968-11-20',36.780462,93630,'44837bcd-5b10-4ea9-9683-2ba1877d2fa4',181,-120.065853,'15274 West Shields Avenue','CA','moen-evalyn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-23T05:07:20.262Z','Twitter','Dana Orn','Cornersville','1962-04-06',35.34071,37047,'c8f193d3-5942-47b1-ab71-5d0b7f8a7856',182,-86.855531,'2051 Edmondson Road','TN','dana-orn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-06T18:40:12.499Z','Google','Rodolfo Larkin','Priest River','1960-08-20',48.6032364,83856,'8c1f2b24-ab80-45e1-847d-e569eab87418',183,-116.9725721,'22 Snick Road','ID','larkin-rodolfo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-13T07:27:08.802Z','Organic','Jesse Daugherty','Austin','1960-02-12',41.5309186,16720,'51bacfc1-7ead-4d97-9baf-48e100066d32',184,-78.083709,'1073 Bailey Run Road','PA','daugherty.jesse@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-04T01:14:26.920Z','Organic','Audra Hane','Toutle','1972-05-10',46.2863851,98649,'70faed46-d7d2-45bb-bc70-a5ead44f5712',185,-122.2715574,'21000 Spirit Lake Highway','WA','hane.audra@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-16T03:32:15.214Z','Organic','Caitlyn Dach','Brooklet','1964-10-04',32.376953,30415,'4048c24f-b840-46ca-b4a3-bfc7d97bb1c0',186,-81.519071,'5460 Old River Road South','GA','caitlyn-dach@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-11T01:48:59.251Z','Google','Bethel Schultz','Stanton','1977-12-23',35.5070479,38069,'78a8a24a-84a0-468a-a80d-fd82f14c8743',187,-89.37359339999999,'79 North Of Highway','TN','bethel.schultz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-29T18:13:19.615Z','Facebook','Leda Hammes','New England','1998-07-28',46.6409403,58647,'36902615-1614-4b12-bc69-3b423362699d',188,-102.8973443,'5331 116th Avenue Southwest','ND','leda-hammes@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-23T18:08:31.925Z','Google','Vita Cummings','New London','1985-11-25',39.6049775,63459,'875a376e-d265-4add-b3ff-8f337220d1d9',189,-91.3183488,'15584 Old 79','MO','cummings.vita@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-03T20:40:32.774Z','Facebook','Oswald Corwin','Ulster','1975-09-03',41.8804234,18850,'993f7188-b033-413d-b96b-ec2ac06b5be9',190,-76.3494723,'3044 Robinson Road','PA','oswald.corwin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-04T18:00:31.529Z','Twitter','Mustafa Steuber','Cornell','1974-06-24',45.193929,54732,'50f07ef9-41f3-49e7-8ca5-c52f19b43971',191,-91.1803149,'24722 240th Avenue','WI','mustafa.steuber@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-19T20:59:22.213Z','Affiliate','Haleigh Funk','Varnville','1997-09-13',32.8449836,29944,'0d3fac6e-ebb3-414c-af36-ff0ed9c8d1da',192,-81.0811368,'365 Hickory Hill Road','SC','funk.haleigh@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-07T13:11:05.369Z','Google','Berta Roob','Louisville','1990-11-24',33.1325727,39339,'4da57153-2832-4380-906e-42d493fa3bff',193,-89.1536935,'219 Perry Road','MS','berta.roob@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-14T05:38:08.597Z','Google','Destany Friesen','Mansfield','1959-03-04',37.192428,65704,'a8838ee7-9eed-4841-93c8-be26828a096d',194,-92.53576609999999,'3914 Missouri 5','MO','friesen-destany@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-11T14:17:36.441Z','Organic','Green Carter','Richards','1959-11-12',37.9059184,64778,'196978d2-aa00-4228-bded-cb2cb91f7ca4',195,-94.5065307,'14b County Road H','MO','green-carter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-25T18:59:55.987Z','Organic','Alvena Legros','Nogales','1974-09-25',31.3797001,85621,'44289e96-e802-4ac7-8a11-82b4896552f8',196,-110.9571969,'2582-2640 North Al Harrison Road','AZ','alvena-legros@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-05T15:12:56.903Z','Affiliate','Aletha Kertzmann','Klamath Falls','1989-10-29',42.160778,97601,'1e5a011f-9bae-4b37-a1b7-3250774dba94',197,-121.885837,'11206 Ruger Road','OR','kertzmann.aletha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-31T22:04:32.681Z','Organic','Tamara Sawayn','Garber','1993-06-23',42.7741203,52048,'eebc4fed-5c9d-4c95-8ec2-c2f5321f0008',198,-91.2382421,'22331 312th Street','IA','sawayn.tamara@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-15T10:30:21.790Z','Affiliate','Adan Weissnat','Ashley','1960-03-26',40.39649,43003,'2f3c3a14-c69b-4f8d-976f-4ca629b7fc1d',199,-82.979333,'4633 Steamtown Road','OH','adan-weissnat@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-09T16:10:02.883Z','Organic','Thalia Hirthe','Wabasso','1991-10-25',44.4337856,56293,'6f9a5379-14d0-4f9f-8085-0d14a16e7491',200,-95.3307342,'26000-26670 County Road 7','MN','thalia-hirthe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-03T10:26:55.580Z','Facebook','Ford Larkin','Iliamna','1972-01-07',59.75461900000001,99606,'a79e3524-66bf-49ac-806e-2e9c8d9af2f0',201,-154.8722999,'9998 Iliamna Village Road','AK','larkin.ford@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-24T06:54:04.851Z','Affiliate','Delphia Price','Whitewater','1994-09-14',37.2799922,63785,'d0084604-249e-4373-af2d-02d60e9d4350',202,-89.8329473,'136 State Highway RA','MO','delphia.price@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-06T23:06:25.908Z','Affiliate','Jessika Treutel','Beaumont','1981-03-01',30.0020916,77713,'a3d1dbe1-943c-4453-9f7a-ae0bb5bf24fc',203,-94.2665475,'5831 Moonglow Drive','TX','treutel-jessika@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-07T05:19:12.761Z','Twitter','Enos Donnelly','Fredericksburg','1984-03-03',30.2060304,78624,'c5420279-b6fa-41e7-b8e4-d9c2ab4fac8e',204,-99.0853849,'1631 Otto Staudt Road','TX','enos-donnelly@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-13T13:36:49.899Z','Facebook','Lowell Daniel','Big Sandy','1974-08-09',36.1941456,38221,'86cfdbc6-5d5d-4c41-b342-4ef899cf51d5',205,-87.98984159999999,'561 Little Sulphur Creek Road','TN','lowell-daniel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-18T00:48:38.998Z','Google','Marcelina Jast','Lewellen','1982-11-06',41.3768809,69147,'7d97701e-d88c-4402-8a3a-746b9613fedf',206,-102.1067028,'5275 Road 203','NE','marcelina.jast@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-17T02:08:54.356Z','Organic','Earnest Huels','Sand Point','1988-08-19',55.294047,99661,'ceb1d49d-4aae-43b1-8fab-cee81b5ce6e3',207,-160.6788618,'100 Main Street','AK','huels-earnest@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-05T19:09:43.241Z','Affiliate','Alisha Deckow','Royalton','1987-08-29',37.8951407,62983,'a69f09fa-1b4c-4e5f-a8e0-0c96879783f6',208,-89.06417429999999,'4500-4758 East Euclid Street','IL','deckow.alisha@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-11T09:50:59.695Z','Organic','Kyleigh Beier','Sandwich','1968-08-12',41.686414,60548,'b8054617-807d-4fbb-a54e-ae9f2138a177',209,-88.634023,'3832 West Sandwich Road','IL','beier.kyleigh@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-03T13:28:06.011Z','Twitter','Earnestine Prohaska','Damon','1986-02-17',29.2769731,77430,'ea92bf35-1049-4d9e-ae4a-8150607bac85',210,-95.60418879999999,'22828-23086 County Road 25','TX','prohaska-earnestine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-29T09:14:12.054Z','Organic','Quinn Stokes','Orient','1976-07-30',44.7650241,57467,'f93f124e-ce72-4a37-bc56-1cd378977eea',211,-99.0478074,'35700-35792 181st Street','SD','stokes-quinn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-12T10:38:39.690Z','Organic','Jacinthe Rowe','Westcliffe','1967-09-26',38.2021244,81252,'9cbd0e7a-6637-4104-8d5f-c721f263f663',212,-105.6365082,'761 County Road 191','CO','jacinthe-rowe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-29T10:35:00.433Z','Google','Connie Davis','Ellijay','1964-07-27',34.7160477,30540,'68071762-d62d-4274-b036-3799f5a145b9',213,-84.6346884,'2641 Tails Creek Church Road','GA','connie.davis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-21T15:03:21.819Z','Affiliate','Trace Daniel','Austin','1983-02-20',43.6342315,55912,'aece60e8-f737-44f2-bf87-446eaa9943bf',214,-92.93457219999999,'19443 560th Avenue','MN','trace-daniel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-14T00:47:42.605Z','Organic','Benton McCullough','Graham','1992-10-23',33.0768658,76450,'4805247e-7cf2-4d15-af15-c64f5725ba6c',215,-98.6260044,'322 Medlan Chapel Road','TX','benton.mccullough@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-08T20:44:31.632Z','Organic','Josh Kilback','Cody','1969-10-17',44.6974348,82414,'951e2911-c8a9-405a-b4a8-28c97a305c48',216,-109.6102857,'561 Sunlight Road','WY','kilback-josh@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-26T14:26:09.585Z','Facebook','Annabelle Schmeler','Slayton','1977-08-10',44.0728434,56172,'4391972d-516e-4b39-965e-18e977066393',217,-95.7249308,'1668-1698 156th Street','MN','schmeler.annabelle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-02T00:40:18.458Z','Affiliate','Stan Jacobson','St. Louis','1967-05-20',43.5026735,48880,'cb1cbc73-1c23-4651-ada4-d0d1c537ae59',218,-84.5066867,'3620 South Magrudder Road','MI','jacobson.stan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-21T16:05:18.984Z','Google','Isaias Spencer','Killingly','1995-12-26',41.778891,06239,'1b5ab22a-9fb3-4b11-8a44-c92ffdc08121',219,-71.844071,'191 Snake Meadow Road','CT','isaias.spencer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-18T08:45:45.612Z','Organic','Bette Lang','Reva','1971-06-10',45.42324980000001,57651,'f449f05a-206c-46a1-b75b-0e90b84f3fd5',220,-102.9816937,'13627 Rabbit Creek Place','SD','bette-lang@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-13T21:43:28.820Z','Twitter','Seth Goldner','Iowa City','1965-02-05',41.6072879,52240,'540f1f89-0c82-4e57-8fbc-1ab876761480',221,-91.44762399999999,'4960 U.S. 6','IA','goldner-seth@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-29T18:31:26.268Z','Twitter','Theodora Dibbert','Chandler','1965-06-29',43.8482247,56122,'a24ca5b8-2622-4350-9b96-028cda62f85d',222,-95.9080164,'17229 1st Street','MN','theodora-dibbert@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-08T10:22:24.943Z','Twitter','Frederik Bosco','Fairbanks','1993-07-30',66.37241159999999,99701,'bc0163cf-cb81-43e6-a6d1-76ff08389e9d',223,-150.4916213,'15 North Slope Haul Road','AK','frederik.bosco@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-23T21:08:57.066Z','Organic','Pamela Murray','Danville','1996-08-03',40.47705,43014,'cf26e167-af00-40a2-9f09-a4abb287e5c8',224,-82.26044399999999,'17403 Kaylor Road','OH','pamela-murray@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-03T15:25:17.824Z','Facebook','Gunnar Doyle','Croswell','1995-09-14',43.339598,48422,'8ef27737-ee74-44c7-891c-8245ef482ccb',225,-82.67549059999999,'3507-3745 Marlette Road','MI','doyle.gunnar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-26T05:06:26.947Z','Google','Breana Thiel','Elbow Lake','1984-10-28',45.9052449,56531,'700e227a-669f-4f22-81ec-f9b1a25edc92',226,-96.0412765,'23248 County Highway 8','MN','breana-thiel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-02T19:13:31.027Z','Google','Merl Yundt','Livingston','1964-03-06',30.7336771,77351,'227f072d-d308-4459-8fa8-8ef8d7bd8606',227,-94.9438504,'100 Sunshine Lane','TX','yundt.merl@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-05T00:21:35.024Z','Twitter','Estefania Leuschke','Galivants Ferry','1961-05-08',34.070783,29544,'03fc0838-6603-41a2-9a5f-6c430737461f',228,-79.210173,'17791 Pee Dee Road North','SC','leuschke-estefania@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-18T16:28:29.218Z','Organic','Jewell Walker','Berea','1972-02-16',37.530722,40403,'08850155-d0d4-4ffc-846a-9b437d3cf7d4',229,-84.34361249999999,'1 Old Garrard Road','KY','jewell-walker@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-22T08:29:55.613Z','Affiliate','Stacy Adams','Wheeler','1988-03-03',45.0499174,54772,'505b8e6a-0296-493c-b382-823bd33a4da8',230,-91.9176634,'N10285 490th Street','WI','adams.stacy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-12T07:28:47.670Z','Affiliate','Foster Marks','Tucson','1999-01-11',32.5545752,85739,'46eb348f-1ba1-48d7-a2d1-a6f84612d14b',231,-110.9335244,'35498 Arizona 77','AZ','foster-marks@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-13T14:44:05.919Z','Twitter','Magnolia Hansen','Von Ormy','1982-04-10',29.231494,78073,'15637b09-08c6-4e0e-bbbd-ce094fc93ca8',232,-98.58674599999999,'19333 Texas 16','TX','hansen.magnolia@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-02T19:10:31.530Z','Affiliate','Ulices Feil','Shubuta','1990-03-23',31.7874786,39360,'17962e11-f3e5-47c3-b2b9-50d7bd78e39e',233,-88.7970596,'38 Gene Roberts Drive','MS','feil-ulices@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-02T22:40:09.739Z','Google','Bertrand Streich','Talkeetna','1967-04-13',62.1421096,99676,'d530eea1-2dc6-40ff-9bc6-ec72ce4c7d8d',234,-149.9113851,'37555 South Kaliak','AK','streich-bertrand@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-05T13:25:09.926Z','Google','Jerrod King','Ostrander','1959-06-28',40.232191,43061,'72703cfd-d36f-4bcb-b978-f46435654e29',235,-83.1745059,'14850 Smart-Cole Road','OH','jerrod-king@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-30T00:23:10.811Z','Twitter','Doris Spencer','Piedmont','1986-12-01',34.716032,29673,'9f7b0012-2913-4f30-a209-f75001b97e07',236,-82.469116,'805 River Road','SC','doris.spencer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-18T02:48:33.281Z','Facebook','Ernie Kohler','Shapleigh','1986-09-02',43.6307309,04076,'99740779-26c4-4029-a6d9-d60e3b6192d9',237,-70.8311294,'111 Poverty Pond Road','ME','kohler.ernie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-10T13:09:10.299Z','Organic','Derrick Walker','Pleasant Mount','1970-03-08',41.7371709,18453,'087909e2-2eb3-4b89-a5f6-ec7ad29e255c',238,-75.31117100000002,'1711 Great Bend Turnpike','PA','walker-derrick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-22T01:43:18.240Z','Facebook','Glenna Runolfsson','Sandy Level','1989-02-11',37.01058099999999,24161,'1684c085-1e94-4fa7-8562-da3a1c0ced3f',239,-79.571281,'1861 Jasmine Road','VA','runolfsson-glenna@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-06T05:58:24.864Z','Twitter','Anais Douglas','Elkton','1984-11-24',39.6546536,21921,'719e2b90-8bb5-4b2f-ace1-926451a739c6',240,-75.89517219999999,'361 Leeds Road','MD','douglas.anais@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-07T04:06:00.927Z','Twitter','Christiana Boyle','Three Rivers','1988-05-25',42.0185478,49093,'269dee04-f819-400d-b3f4-6f4c0f97ca98',241,-85.5427941,'21250 Dentler Drive','MI','boyle-christiana@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-01T21:40:00.942Z','Facebook','Jaylin Hudson','Woodstock','1992-07-26',44.0018723,56186,'9316dba6-6f33-4e11-b2a5-00af299309ab',242,-96.04839899999999,'1045 10th Avenue','MN','jaylin.hudson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-17T14:22:22.700Z','Google','Paige Miller','Imperial','1999-02-10',38.390851,63052,'00c345b3-7f21-4a55-ae0a-89d3c7d2d495',243,-90.4221929,'2656 Fox Run','MO','miller.paige@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-21T03:51:11.583Z','Twitter','Jessika Funk','Bethune','1960-03-01',34.442297,29009,'f9859f1f-ab16-4b1b-8d44-15f1cc05d7a1',244,-80.412144,'3338 McCaskill Road','SC','jessika.funk@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-18T06:00:45.230Z','Organic','Adonis Will','Hudson','1990-10-04',37.63756310000001,40145,'ae734584-bb9f-485b-83fe-9007f23837d8',245,-86.3101248,'3839 Mook-Centerview Road','KY','adonis.will@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-26T21:14:07.581Z','Affiliate','Francesca Gleason','Fall Creek','1970-05-01',44.8002186,54742,'6855e6a9-4f97-4e78-9280-b17ff7ac686f',246,-91.1806963,'17210 Scenic Drive','WI','francesca.gleason@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-22T06:09:00.465Z','Google','Stella Abbott','Mount Sterling','1986-05-02',39.6528941,43143,'c1ef5cea-b9b7-4182-85b5-f698ae692309',247,-83.3396202,'7470 Railroad Street Northeast','OH','stella-abbott@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-04T19:25:46.304Z','Organic','Chanelle Cummings','Great Bend','1978-10-22',38.36489090000001,67530,'b0ac4114-f639-4497-8ff7-8eaf2e5f3bed',248,-98.67333769999999,'550B U.S. 56','KS','cummings.chanelle@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-26T21:15:03.347Z','Twitter','Neva Langworth','Holdingford','1994-10-01',45.75853559999999,56340,'2001d596-65a0-4b5f-847f-3ee4bab83970',249,-94.4943314,'18633 440th Street','MN','neva-langworth@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-19T14:06:27.300Z','Google','Antwon Pagac','Rising Star','1994-11-29',32.173593,76471,'86040e6f-dfae-43bf-a359-8d5a8a01c6e8',250,-98.95164749999999,'402 County Road 292','TX','antwon.pagac@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-27T11:26:45.529Z','Affiliate','Dominique Bergnaum','Binghamton','1967-07-15',42.182373,13901,'c47c602f-c571-47de-ae06-d9b86ca84244',251,-75.84169299999999,'37 Country Knoll Drive','NY','dominique.bergnaum@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-03T19:37:35.064Z','Google','Delphia Denesik','Carnesville','1966-10-16',34.4361918,30521,'f4617d83-730e-4b25-bf4a-9959f9f3c1fa',252,-83.2612249,'15285 Georgia 106','GA','denesik-delphia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-18T22:21:04.806Z','Twitter','Kyla Zemlak','Hermosa','1977-11-23',43.8940625,57744,'8816eb26-ef57-4665-8971-461b80e3884f',253,-103.1231529,'24217 Alihon Lane','SD','kyla-zemlak@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-27T17:13:39.522Z','Affiliate','Ramiro Green','Reynolds','1979-03-25',40.7652004,47980,'4fe810a5-4f32-4d6e-9188-0496d410f68f',254,-86.8898238,'488-998 West 100 North','IN','ramiro-green@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-21T06:07:22.390Z','Affiliate','Hudson Jacobi','Axton','1972-02-29',36.7088456,24054,'587032b4-385d-4081-9d33-83cbe077e91b',255,-79.67940689999999,'463 Nowhere Road','VA','hudson.jacobi@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-11T04:16:52.070Z','Twitter','Rupert Walsh','Carlinville','1990-11-24',39.2996331,62626,'f8e59d97-6389-4b67-b95b-00da47d56895',256,-89.8230667,'20684 Claremont Road','IL','walsh-rupert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-24T13:31:45.360Z','Facebook','Summer Aufderhar','Arlington','1960-12-23',41.4699166,68002,'236a076e-a060-43f0-bc07-fc407b863e78',257,-96.3151407,'6453 County Road 15','NE','summer.aufderhar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-21T02:15:00.378Z','Facebook','Melvin Upton','Sprakers','1984-02-04',42.8194108,12166,'5a3045fb-56d5-4183-b700-f427b426d214',258,-74.4285355,'1582 New York 162','NY','upton.melvin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-03T08:44:33.609Z','Affiliate','Krystel Boyle','Upton','1999-01-25',44.0269598,82730,'36e92b5e-0f91-4d81-96c0-f2e15778a97f',259,-104.7325072,'818 State Highway 116 South','WY','krystel.boyle@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-16T07:49:22.824Z','Affiliate','Lexie Franecki','Texarkana','1977-07-08',33.4951893,71854,'1a22ee42-9e02-4bbf-9d9d-c591365e2b31',260,-93.9307702,'9655 Old Post Road','AR','franecki-lexie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-29T12:30:23.737Z','Google','Jaden Cole','Sandusky','1973-07-16',43.3445718,48471,'f831e0c9-74f0-45db-ac6a-7f401a6cefd2',261,-82.8238781,'208 Morris Road','MI','cole.jaden@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-03T00:03:45.759Z','Twitter','Aaron Hand','Hardy','1964-05-17',40.0203256,68943,'1635c725-3196-41c8-9153-5cdf25fb5f96',262,-97.8166682,'224 Road 4900','NE','hand.aaron@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-06T09:56:39.198Z','Facebook','Ashlee Mertz','Soddy-Daisy','1965-06-10',35.3401668,37379,'07bfa567-df4a-40a5-9910-a41fbe6120d4',263,-85.1263524,'202 McCallie Ferry Road','TN','ashlee.mertz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-30T02:59:19.139Z','Facebook','Arno Bruen','Hillsboro','1978-05-11',47.4284009,58045,'a45c731a-8ab0-420c-9f7e-20bb5d7f7a0f',264,-97.1742982,'80 158th Avenue Northeast','ND','bruen.arno@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-08T23:18:35.456Z','Google','Larry Weimann','Gold Hill','1959-01-11',42.38416,97525,'31445e35-aeb4-4bc5-8ae7-d29047170942',265,-123.078391,'2585 Galls Creek Road','OR','larry.weimann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-02T19:30:40.769Z','Google','Beau Rutherford','Blue Creek','1967-08-24',38.716067,45616,'7aba2747-9d8c-4035-9015-7b5913ebcdbc',266,-83.340987,'345 Johnson Run Road','OH','rutherford-beau@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-28T05:53:24.965Z','Affiliate','Rogers Bode','Perdido','1997-09-09',31.049082,36562,'ab0f7cda-1ffb-4b8d-bd65-ef2b7b11b29b',267,-87.716759,'56503 Paul Road','AL','bode-rogers@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-17T01:24:03.631Z','Facebook','Marvin Hegmann','Pekin','1980-10-03',40.511278,61554,'9a3e1738-b4e0-42c6-8def-26d3acca9463',268,-89.624106,'15874 Red Shale Hill Road','IL','marvin-hegmann@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-18T22:35:50.051Z','Twitter','Mara Prohaska','Friona','1991-08-01',34.5311922,79035,'dc4d5a4d-0d83-426a-9953-6621090c29cd',269,-102.5352594,'2901-2999 Texas 86','TX','prohaska.mara@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-10T04:29:42.817Z','Organic','Chester Eichmann','Arley','1994-12-05',34.0789972,35541,'b3a28fd2-67c7-4009-98c1-55c404d7f76d',270,-87.161383,'85 June Lane','AL','eichmann.chester@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-23T03:37:35.275Z','Affiliate','Aurore Ryan','Glendale','1959-04-09',37.345752,84729,'f67ea451-9919-4285-8039-38c700d2fa44',271,-112.624213,'1100 Lydia''s Canyon Road','UT','aurore.ryan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-01T19:42:12.579Z','Facebook','Roy Paucek','Cedar Point','1970-02-09',38.1811093,66843,'7df31beb-7782-428f-91c8-f9b09fd5518b',272,-96.713141,'758 H Road','KS','paucek.roy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-19T11:19:32.628Z','Organic','Jesus Bins','Hiawatha','1962-08-31',39.8391125,66434,'d4cee248-b74c-4eb5-a91a-dece6fd28b2d',273,-95.5968961,'2278 Horned Owl Road','KS','bins-jesus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-19T22:49:30.607Z','Facebook','Cameron Strosin','Anamoose','1995-11-23',47.8330014,58710,'d7731bb2-e9bd-4a61-bc7d-dc68a945cecf',274,-100.3183434,'1220-1298 29th Street Northeast','ND','strosin.cameron@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T17:51:55.672Z','Affiliate','Gabrielle Considine','Oconto Falls','1970-04-27',44.93645,54154,'0a5baddc-62bb-4872-80da-06cea1870db5',275,-88.1927369,'8669 Valley Line Road','WI','gabrielle-considine@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-04T21:32:18.737Z','Facebook','Abbie Ryan','Sultan','1971-12-30',47.853634,98294,'d2665dd0-2a3e-4740-bbc5-94535556de91',276,-121.500764,'15819 Index-Galena Road','WA','abbie-ryan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-13T06:38:46.821Z','Affiliate','Ruthe Champlin','Churchville','1967-06-10',39.573651,21028,'c7900850-1311-4cc6-94ca-4d13dafa5ab8',277,-76.264066,'320 Priestford Road','MD','ruthe-champlin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-08T19:13:21.202Z','Facebook','Fredrick Gulgowski','Chesnee','1989-02-21',35.074197,29323,'168423f6-df71-4fd9-b3c6-9671b8668546',278,-81.86616099999999,'170 State Road S-42-1958','SC','fredrick-gulgowski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-19T10:06:33.245Z','Organic','Orville Effertz','Eldora','1969-08-27',42.3412681,50627,'8881a3be-3a57-4181-a51b-fae074951d1c',279,-93.0848007,'24590-24998 V Avenue','IA','orville-effertz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-08T01:00:49.909Z','Organic','Ryleigh Gleason','Kim','1996-08-18',37.4311908,81049,'a5341aff-53f8-442f-86d3-8d6bf8041241',280,-103.4459611,'32997 County Road 193.5','CO','ryleigh.gleason@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-22T16:40:20.883Z','Facebook','Marcelina Feest','Maryville','1997-04-09',35.689965,37803,'c2ae633b-9570-4d47-911f-9c63a9cda997',281,-83.922624,'621 Butler Mill Road','TN','feest.marcelina@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-24T11:32:55.447Z','Organic','Breanna Hodkiewicz','Grinnell','1962-04-10',41.7821158,50112,'629f399c-7c9a-4748-8c7b-fb334dff674b',282,-92.6880092,'3551 50th Street','IA','breanna.hodkiewicz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-03T04:11:58.242Z','Google','Stanford Feest','Lakeview','1961-09-27',43.4605346,48850,'dbaa0ee1-5e40-4cb2-9c22-39563d9fe249',283,-85.2398777,'7800 Schmeid Road','MI','stanford-feest@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-15T23:23:35.796Z','Organic','Shyanne Hettinger','Duchesne','1959-11-18',40.1309832,84021,'0ae8883c-3761-4740-8b48-4c265788ac6b',284,-110.6794079,'36449 Strawberry River Road','UT','hettinger.shyanne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-02T21:19:47.200Z','Affiliate','Okey Botsford','Keene','1970-09-09',47.9993618,58847,'aa0b3a9c-cf3a-4483-9c18-dcb48078659b',285,-102.9765214,'11168 41st Street Northwest','ND','botsford.okey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-26T02:50:56.723Z','Organic','Pamela Jast','Edgerton','1982-03-22',42.90755799999999,53534,'d52c9c00-88d6-42de-a748-8bc471588d0f',286,-89.06496299999999,'676 Craig Road','WI','pamela-jast@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-25T00:17:27.254Z','Google','Alverta Reilly','Boys Ranch','1997-06-30',35.4347041,79010,'b58a0284-6ec6-4eb5-b966-c3256fc6df7f',287,-102.2610425,'101 U.S. 385','TX','reilly.alverta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-12T23:36:58.815Z','Facebook','Morgan Miller','Tollhouse','1973-05-27',37.036569,93667,'f7f92bd4-0123-4a70-9119-e5ce97067ed1',288,-119.428604,'35213 Oak Springs Road','CA','miller.morgan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-06T16:45:55.488Z','Affiliate','Lacey Dickinson','Mullin','2000-03-31',31.5683718,76864,'8f28556c-3cdc-4947-8ec2-7a3586c28dde',289,-98.7032416,'321 County Road 549','TX','lacey.dickinson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-22T22:00:22.860Z','Organic','Lila Marks','Williamsport','1977-09-02',40.2804507,47993,'da4a14a6-62db-431d-8d1a-badc96757ca8',290,-87.40699389999999,'4500-4758 State Road 28','IN','marks.lila@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-29T09:54:59.940Z','Affiliate','Jovan Buckridge','Marshall','1986-02-28',35.926761,28753,'ad3744c2-c091-4579-b242-0d92788f6ca5',291,-82.64889210000001,'741 Lewis Branch Road','NC','buckridge-jovan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-23T18:50:01.315Z','Affiliate','Krystal Schaden','Wasilla','1991-06-17',61.52915400000001,99654,'7dd4aef1-210b-4ae1-8daf-46c1b6c2d5e2',292,-149.457747,'4501 Well Site Road','AK','schaden-krystal@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-17T10:51:09.055Z','Twitter','Cornell Connelly','Greene','1960-11-03',42.8486932,50636,'7e817c07-ab9c-4647-a4a9-3838866ced03',293,-92.8694371,'13469-13599 Ivy Avenue','IA','connelly.cornell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-22T13:47:01.457Z','Twitter','Neil O''Connell','Philip','1974-07-10',43.8968648,57567,'e5f0f90a-e4d3-4650-9774-3c5b213252f8',294,-101.7609158,'24206 Fairview Road','SD','connell-o-neil@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-26T21:12:38.875Z','Google','Aliyah Pfannerstill','Wasco','1968-01-21',35.525398,93280,'bcdfc205-4166-4596-b9a4-7e096873bde1',295,-119.463896,'26323 Merced Avenue','CA','pfannerstill-aliyah@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-31T09:30:38.758Z','Facebook','Nellie Heller','Gray','1965-09-11',43.8726352,04039,'0d3f727d-9bda-4523-ab05-01f6f199e56f',296,-70.2875686,'256 Yarmouth Road','ME','heller-nellie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-17T01:05:39.514Z','Twitter','Ryley Nader','Tomball','1962-08-24',30.098465,77375,'83de4c60-3d7d-4dd7-bc23-a1469fadbe18',297,-95.6346049,'1720 Hicks Street','TX','nader-ryley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-01T23:45:55.299Z','Affiliate','Bernhard Boyer','Trapper Creek','1964-03-01',62.36383000000001,99688,'671b0b1b-c88b-4dc2-9266-50a2543d1bb3',298,-150.3484531,'5766 East Whispering Woods Avenue','AK','boyer-bernhard@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-26T09:32:43.087Z','Twitter','Delbert Borer','Cabot','1982-10-23',40.7840789,16023,'0a38b712-c3d4-4e72-af3b-59c0882794d9',299,-79.7983422,'101-199 Durango Lane','PA','borer.delbert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-20T12:44:45.606Z','Facebook','Bryon Lakin','Valdosta','1999-07-14',30.7506,31601,'bf2d0fc6-4a1e-4b5f-ae4a-4b595e051e5e',300,-83.232,'3680 Carroll Ulmer Road','GA','bryon.lakin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-22T18:47:43.021Z','Organic','Nichole Ledner','Goodell','1998-03-25',42.937593,50439,'8c1e0ecd-a2b4-457c-8244-92efa154975f',301,-93.6410973,'1747-1799 120th Street','IA','ledner-nichole@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-20T16:10:06.872Z','Organic','Aubree Walter','Ruthven','1984-10-10',43.1187216,51358,'bd605eb7-f3ee-4d34-a052-8f2ccc3e1320',302,-94.9136304,'3600-3698 340th Avenue','IA','aubree-walter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-17T01:43:17.213Z','Facebook','Orlando Kovacek','Oxford','1974-08-22',34.3883628,38655,'46867857-8e73-4d5b-a45b-9700a1d1b86e',303,-89.4442464,'369 Mississippi 30','MS','kovacek.orlando@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-17T10:18:34.770Z','Twitter','Emmanuelle Sporer','Pembina','1970-11-12',48.8050359,58271,'15271f36-9add-463a-b563-50c70b347a79',304,-97.20627449999999,'9601-9697 160th Avenue Northeast','ND','sporer-emmanuelle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-08T19:37:34.988Z','Facebook','Rebekah Dickinson','Slate Hill','1967-06-14',41.3713447,10973,'91afb848-af0f-43db-93dd-c65c3a561321',305,-74.508512,'180 County Road 22','NY','rebekah-dickinson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-15T09:44:32.073Z','Twitter','Louie Breitenberg','Phenix City','1980-01-04',32.3737973,36869,'9e807484-19e7-4721-bbb2-169f511f9566',306,-85.0684674,'43 Downing Drive','AL','breitenberg-louie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-14T05:32:36.884Z','Google','Vladimir Kuphal','Bremo Bluff','1959-06-03',37.7498548,23022,'c40db379-3d75-41fc-9d42-79f3899ba5a8',307,-78.25526839999999,'179 Cloverdale Road','VA','vladimir.kuphal@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-20T00:29:51.339Z','Twitter','Kamille Bartell','Gibson','1999-08-08',41.5099562,50104,'c84df458-5126-414d-863f-cc6297fdff01',308,-92.4001047,'1961 540th Avenue','IA','kamille-bartell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-29T01:46:52.116Z','Facebook','Marilou Koss','Sturgis','1984-07-22',44.3993806,57785,'b926cb3f-c9fc-4c65-8162-38dc43dd6280',309,-103.7008776,'20716 Whitewood Creek Road','SD','marilou-koss@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-30T08:55:56.527Z','Twitter','Libby Ledner','Creston','1977-05-23',36.4429932,28615,'803dafbc-a1a8-4e25-9fda-de46036ae25f',310,-81.6218153,'12996 Highway 88','NC','ledner-libby@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-05T17:00:18.710Z','Facebook','Orlo Lueilwitz','Rebersburg','1987-07-10',40.9406,16872,'4e524675-04c2-46af-83f5-77bbe6bec2c7',311,-77.4245418,'228 Back Road','PA','lueilwitz.orlo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-19T15:15:34.658Z','Affiliate','Lauren Lueilwitz','Sulligent','1960-11-29',33.7877413,35586,'ac927642-8f28-4431-a96e-e6529d3473ab',312,-88.22801779999999,'6350 County Lake Road','AL','lueilwitz.lauren@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-25T04:41:18.583Z','Organic','Miguel Reynolds','Sand Point','1960-02-27',55.294047,99661,'49e3412d-1634-478b-89a1-1700c624ae34',313,-160.6788618,'100 Main Street','AK','miguel-reynolds@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-14T09:13:30.492Z','Facebook','Tomas Mraz','Alexandria','1984-02-22',43.4903212,57311,'6279adf7-cf23-42f5-b8de-0c8fb04f82ca',314,-97.74377899999999,'42264 269th Street','SD','mraz-tomas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-06T00:29:11.721Z','Organic','Autumn Feeney','Bridgeville','1994-01-22',38.731919,19933,'b521741e-77cf-4b29-b418-60810f719aa5',315,-75.501182,'14329 Road 592','DE','autumn.feeney@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-20T21:09:31.910Z','Affiliate','Judd Hickle','Valentine','1998-05-02',42.6917144,69201,'ccd56a43-5bf7-4c5a-b103-add2de231560',316,-100.7440356,'5-31 290th Avenue','NE','judd-hickle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-01T08:47:26.681Z','Affiliate','Sibyl Bernier','Akron','1992-02-18',41.0493214,44301,'ee5198dd-8a7c-460a-bad6-c181b039e3de',317,-81.5361166,'101 West Emerling Avenue','OH','sibyl.bernier@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-08T00:03:31.954Z','Affiliate','Cassandre Daugherty','Walden','1973-06-14',40.7486852,80480,'0cd3e1f3-9344-48fc-a5d9-ce13d0a1899b',318,-106.6111981,'4998 County Road 16','CO','daugherty.cassandre@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-10T06:16:10.577Z','Google','Alexa Marvin','O''Fallon','1963-11-03',38.65403999999999,62269,'6b17db3f-ed7e-4d22-9b8e-82ca5c56a242',319,-89.949741,'520 Willow Bend Lane','IL','alexa.marvin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-27T11:33:44.527Z','Twitter','Adriel Hudson','Warren','1972-07-02',48.169711,56762,'4262434c-2524-4587-9d70-d58bdd181c9e',320,-96.74520530000001,'32548 200th Street Northwest','MN','hudson.adriel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-17T17:11:16.466Z','Organic','Francesca Hammes','Roswell','1980-01-10',33.5299639,88201,'6d87d87f-8adf-43b9-9279-c858767da9f8',321,-104.8391361,'292-434 Draper Road','NM','francesca.hammes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-19T02:54:44.543Z','Google','Scot Rippin','Yuma','1985-03-02',40.2052092,80759,'3abf3068-032e-4249-a101-53d631bc2d89',322,-102.7168116,'5001-5999 County Road 44','CO','scot-rippin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-17T19:21:21.983Z','Affiliate','Deja Schmeler','Paulsboro','1986-02-17',39.8454451,08066,'5e84e1a8-6b8f-424c-ad62-2ab6ea74916b',323,-75.2502988,'825 Clonmell Road','NJ','deja.schmeler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-11T15:04:40.795Z','Facebook','Ardella Willms','Kim','1994-01-19',37.6251974,81049,'ffe8a8ad-bece-4e2f-8338-68b4008029ee',324,-103.3524315,'43200 Colorado 109','CO','willms-ardella@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-31T12:59:24.237Z','Twitter','Orrin Lemke','Erie','1983-04-20',41.6501178,61250,'90c6727f-22d4-4d48-82ab-38fbf758f581',325,-90.1317763,'4100-4116 Sand Road','IL','lemke-orrin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-11T20:10:02.518Z','Twitter','Clovis Homenick','Avella','1993-06-01',40.2049537,15312,'8960f685-47ae-44e5-9800-475d8ad476c9',326,-80.39586109999999,'1767 Brush Run Road','PA','homenick-clovis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-12T23:58:00.231Z','Organic','Rosario Bradtke','Rankin','1960-08-12',40.390835,60960,'03e82f2c-67c8-4d52-aa61-427685cf9ebf',327,-87.9144398,'36376 North 170 East Road','IL','bradtke.rosario@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-19T14:35:44.434Z','Twitter','Merle Blick','Santa Maria','2000-02-19',34.865119,93454,'120be27e-a4fd-467d-a8dd-668b1d5d3e73',328,-120.296285,'4989 Foxen Canyon Road','CA','merle.blick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-05T17:00:03.302Z','Affiliate','Elwin Okuneva','Blaine','1994-09-14',36.1709076,37709,'3aa7a7f8-9cff-4ce4-9b93-541d8b4e9dc5',329,-83.715249,'285 Emory Road','TN','elwin.okuneva@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-29T23:03:30.197Z','Organic','Edward McClure','Hermleigh','1975-12-24',32.5653807,79526,'c68f1d72-2cf6-417b-b6b6-c78f40b537ae',330,-100.8001906,'11498 County Road 4167','TX','edward.mcclure@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-06T21:16:53.239Z','Affiliate','Max Reynolds','Upson','1982-01-07',46.3313462,54565,'dc5ee79a-3cec-4b2a-9cba-2428e9ae615f',331,-90.4063331,'9668-9674 Pleasant Lake Road','WI','max.reynolds@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-02T08:23:36.749Z','Twitter','Kayley Klein','Fairbanks','1998-03-01',64.846943,99709,'4e038706-ff5a-45eb-b387-e34dfcdd9cca',332,-148.2255821,'5674 Old Ridge Trail','AK','kayley.klein@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-11T23:54:00.140Z','Twitter','Floyd Lehner','Inverness','2000-02-07',37.9969555,94937,'ba887c79-d9f3-4923-8801-17ba61ad3b89',333,-122.9928238,'27107-27539 Chimney Rock Road','CA','floyd.lehner@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-07T07:30:01.930Z','Twitter','Berneice Abbott','Humboldt','1994-03-23',40.2127077,68376,'0fb343b4-f139-4719-8c5c-22c1e0f7a2c5',334,-95.8461579,'71669 639 Avenue','NE','abbott-berneice@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-29T09:53:16.008Z','Facebook','Guy Wiegand','Flasher','1989-06-23',46.4302493,58535,'4e180986-0e60-485b-8fd6-05d3aa734fc3',335,-101.1323048,'6746-6842 County Road 83','ND','wiegand.guy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-26T13:37:25.406Z','Organic','Wilhelmine Erdman','Blue Ridge','1962-09-19',37.329562,24064,'0020c1e2-8b10-43f6-b00f-100059fc0c62',336,-79.731115,'1229 Shadow Mountain Lane','VA','wilhelmine.erdman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-13T16:23:02.399Z','Facebook','Adolph Tillman','Wadley','1961-07-18',33.0356797,36276,'3f4ff95a-8c24-4f8e-91dd-3a67863c784c',337,-85.5411367,'6203-6299 Chambers County 053','AL','tillman.adolph@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-10T11:49:26.534Z','Google','Ernie Bogan','Dixon','1990-01-22',38.4266745,95620,'aae3bdf6-2f1f-4f97-a2b2-3102ba896d32',338,-121.652151,'R3E Camino Court','CA','bogan.ernie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-27T16:04:02.213Z','Google','Keagan Hirthe','East Dublin','1979-03-29',32.4891393,31027,'d02bbd18-9ab0-4744-99cb-81c93bdf2959',339,-82.79339829999999,'730-800 Jw Warren Road','GA','hirthe-keagan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-30T21:05:26.224Z','Facebook','Serenity Wolff','Plymouth','1975-01-09',41.3328225,46563,'4c5c01ec-02a6-4627-a7cf-6df5200fda09',340,-86.2217687,'9701-10035 South Iris Road','IN','serenity.wolff@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-01T01:45:18.720Z','Twitter','Andrew Russel','Metairie','1982-09-03',30.0216907,70006,'13624da0-405d-4fc8-a2c0-2e544f186909',341,-90.186703,'4501-4517 Alphonse Drive','LA','russel-andrew@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-15T18:24:14.943Z','Affiliate','Lavinia Harber','Powderly','1973-10-11',33.737864,75473,'d70b4a54-7c8c-4ba4-8475-b64774f1c909',342,-95.5020739,'3104 County Road 43270','TX','harber.lavinia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-09T18:27:58.511Z','Google','Angus Feest','White Plains','1992-04-25',33.474077,30678,'2e5fd5be-8453-4624-b752-b8e60d473026',343,-83.04224800000001,'4511 White Plains Road','GA','feest-angus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-20T17:35:30.592Z','Google','Ellsworth Stamm','Cazenovia','1982-03-16',42.9046499,13035,'f833e64a-3da4-4d54-b62b-8d4b27084ee9',344,-75.78098279999999,'3701-3797 Erieville Road','NY','ellsworth.stamm@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-29T21:14:42.319Z','Twitter','Jayme Zulauf','Bolivar','1993-05-18',42.0515048,14715,'0f3b0678-51c4-44af-a4a0-5f72662a6162',345,-78.2052235,'8299 Green Road','NY','zulauf-jayme@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-16T09:54:57.125Z','Facebook','Alene Abernathy','Monroe','1995-08-04',36.4508851,38573,'51dec1fb-613c-4535-a2e0-30812e10663f',346,-85.1597474,'188 Victor Padgett','TN','alene-abernathy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-17T23:51:38.825Z','Affiliate','Ola Gottlieb','Rochelle','1971-06-25',41.9092788,61068,'4452feb0-d6ff-4b00-86b3-465b81c30d24',347,-89.05070889999999,'1001 South Main Street','IL','gottlieb-ola@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-02T16:11:01.509Z','Organic','Elmore Weissnat','Le Flore','1986-03-11',34.89559560000001,74942,'b212fadf-e47d-458c-a52c-effbb66226af',348,-94.9734872,'40523 Line Street','OK','weissnat.elmore@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-03T11:53:49.274Z','Facebook','Agustin Collins','Roy','1981-06-10',47.366296,59471,'50643a12-93cc-41c7-8bd4-78183a526186',349,-108.518454,'15182 Valentine Road','MT','collins-agustin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-13T17:24:24.151Z','Google','Quentin Dickinson','Brookline','1964-06-24',43.0282796,05345,'31304d51-e8df-4d8b-af83-675c8a675bb8',350,-72.5981097,'2-298 Windmill Hill Trail','VT','quentin.dickinson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-28T01:38:22.925Z','Twitter','Maudie Leannon','Lake Odessa','1991-06-22',42.7842145,48849,'f9042197-971d-4cb3-8eb0-1e085970c47c',351,-85.2515325,'13981 Perry Road','MI','maudie.leannon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-06T14:35:59.438Z','Affiliate','Lowell Koelpin','Orlando','1963-07-25',28.5522135,32803,'1eaf688b-4964-4926-83e7-7073ce38b3c2',352,-81.35147409999999,'2400-2418 East Colonial Drive','FL','koelpin-lowell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-12T10:07:02.529Z','Facebook','Hulda Hintz','Freeland','1970-12-19',43.49627599999999,48623,'bb3a0bde-9ee2-44ed-8539-a0f37f0edfe9',353,-84.054371,'7130 Kochville Road','MI','hintz.hulda@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-11T17:37:19.628Z','Facebook','Molly Robel','Lovell','1984-05-22',44.7162483,82431,'fbcd6474-329d-4a98-8cc1-3646f01e674d',354,-108.1862576,'2120 Ln 16 1/2','WY','robel-molly@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-05T17:17:39.379Z','Organic','Jairo Schiller','Pelahatchie','1999-06-21',32.2029844,39145,'33a1f44e-16b3-4a19-847c-99adb21ccbc7',355,-89.7955089,'177-183 Antioch-Shiloh Road','MS','schiller.jairo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-11T00:37:48.211Z','Twitter','Meta Koelpin','Montello','1995-07-01',43.7774483,53949,'51912e97-a50a-4d5c-a774-45c411ed1e2a',356,-89.4570366,'3942 8th Drive','WI','meta-koelpin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-29T02:02:47.445Z','Twitter','Raegan Witting','Judith Gap','1984-08-02',46.6066045,59453,'8912c538-1427-43a9-90fb-622e4a46d205',357,-109.5645057,'1102-1162 Judith Gap Road','MT','witting-raegan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-12T15:58:49.850Z','Google','Antonina Rolfson','Pine Mountain','1983-11-02',32.8635063,31822,'0081c519-3c46-4ddb-acc4-972fb84f9817',358,-84.8623672,'629 Chipley Street','GA','antonina.rolfson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-19T01:36:47.628Z','Affiliate','Mattie Russel','Blanco','1974-08-10',30.1279774,78606,'be7f334f-8ea9-4024-be91-4a3de3c539c1',359,-98.483712,'2631 North US Highway 281','TX','mattie.russel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-30T22:38:56.934Z','Google','Stuart Wintheiser','Jackson','1995-09-26',37.5581635,63755,'c01f555b-b03f-422e-818f-102325a97cce',360,-89.535821,'5485 County Road 535','MO','stuart-wintheiser@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-03T02:41:26.136Z','Twitter','Unique Balistreri','Collettsville','1971-01-02',35.9969869,28611,'439244a0-2925-4724-a42a-4453cd6ba4a0',361,-81.6819901,'5895 North Carolina 90','NC','balistreri-unique@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-17T06:19:40.271Z','Affiliate','Jaqueline Waelchi','Harpster','1992-11-15',40.7380401,43323,'bcecee0d-a8ef-465d-9bf5-56693c4bb3f4',362,-83.28694360000001,'8874-9380 Ohio 294','OH','waelchi-jaqueline@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-11T11:27:15.276Z','Google','Diana Marvin','King City','1983-01-11',36.184963,93930,'39dec0c2-c7b4-48e5-9089-99f554c1bc28',363,-121.197168,'43521 Vía Canada','CA','marvin.diana@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-01T22:33:15.653Z','Google','Geovanny Turcotte','Sheldon','1977-12-15',45.3941852,54766,'a44cf74e-8370-4d4c-97ee-ec466d1d0adf',364,-90.93547889999999,'2811 Martin Road','WI','geovanny.turcotte@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-09T15:17:40.287Z','Affiliate','Sibyl Hettinger','Hampton','1978-11-09',41.0167821,68843,'6944e477-77cd-40da-97a5-c0bcebc21a1e',365,-97.8283055,'2406 East 23 Road','NE','sibyl-hettinger@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-08T15:05:01.157Z','Facebook','Justina Blanda','LaFollette','1978-10-07',36.2943794,37766,'2477ab20-74e7-4bc7-bdfb-ef1f9a055bec',366,-84.09738039999999,'301 Fox Lake Lane','TN','justina-blanda@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-07T02:52:00.524Z','Affiliate','Gaetano Wilderman','Circle','1966-12-07',47.55104499999999,59215,'bbf4f6fe-6a41-4e90-99c3-d6b133cbe6e7',367,-106.080787,'2913 Horse Creek Road','MT','gaetano.wilderman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-09T14:14:59.321Z','Google','Trudie Wisoky','Laytonsville','1995-10-27',39.268984,20882,'a553c677-5c52-42bd-aa36-9794566ca214',368,-77.19474199999999,'9505 Meadow Ridge Lane','MD','wisoky.trudie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-11T13:43:28.156Z','Facebook','Alia O''Reilly','Chidester','1990-11-14',33.6957652,71726,'960ac732-6bc5-4765-8b2a-526b64c18c33',369,-93.00202499999999,'274 Knight Road','AR','reilly-alia-o@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-26T23:36:12.545Z','Affiliate','Lisette Roberts','Philadelphia','1970-12-16',32.8553266,39350,'283cc7f6-6eb9-46a3-8b1d-83d304ca337c',370,-88.96096179999999,'10041 Road 785','MS','lisette.roberts@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-16T08:00:49.849Z','Twitter','Kimberly Braun','Skipwith','1960-04-02',36.7202659,23968,'595eccca-6df6-40ed-baf4-27229d3053b8',371,-78.5598595,'971 Clay Road','VA','braun-kimberly@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-17T16:23:35.783Z','Facebook','Meagan Cremin','Richlands','1977-12-03',34.78028,28574,'312885af-480e-4934-9d0a-ba2ef6a2728a',372,-77.626577,'112 Batchelor Road','NC','meagan.cremin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-21T20:39:38.790Z','Google','Dawson Kuvalis','Abiquiu','1990-03-09',36.3934825,87510,'906c359e-4b12-4e2d-854c-6e699b8c9dcc',373,-106.4900081,'23196 U.S. 84','NM','dawson-kuvalis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-15T15:34:28.703Z','Affiliate','Ryleigh Padberg','Union Springs','1978-09-06',42.8717651,13160,'54250111-bd84-4b60-a615-aafe12159139',374,-76.63044459999999,'5115 Ridge Road','NY','ryleigh-padberg@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-05T07:44:57.708Z','Google','Ryder Kunde','Helena','1997-11-30',46.798863,59602,'7bdde967-e152-4077-ad31-cbc70c622866',375,-112.179823,'8717 Chevallier Drive','MT','kunde-ryder@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-19T23:29:41.310Z','Twitter','Fanny Gutmann','Lagro','1969-03-13',40.842401,46941,'d037f759-3b10-4ef3-8951-ee6a081fbb51',376,-85.727317,'810 Tipton Street','IN','gutmann.fanny@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-29T03:12:34.710Z','Organic','Prince Quitzon','Great Falls','1981-11-22',47.4690299,59404,'aaa7ba57-0690-451c-a2ed-93d7f5bba0f8',377,-111.448239,'251 Polish Road','MT','prince.quitzon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-15T21:58:20.677Z','Affiliate','Corbin Mertz','Church Point','1971-03-21',30.326049,70525,'b9508d26-20f2-4ef2-9655-7ddd10f15a39',378,-92.203801,'1899 Higginbotham Highway','LA','corbin.mertz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-16T21:52:32.890Z','Google','Theresia Johnston','Ruffs Dale','1984-02-29',40.18612299999999,15679,'225808ae-0d24-4ffd-8a8f-81a6b4786d5c',379,-79.67120899999999,'221 Waltz Mill Road','PA','theresia.johnston@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-25T09:32:30.527Z','Affiliate','Faustino Okuneva','Castine','1982-06-23',44.39979109999999,04421,'23beab8c-be26-4e85-9994-3ea31e21bd9f',380,-68.8100769,'38 Back Shore Road','ME','faustino-okuneva@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-03T08:03:25.589Z','Twitter','Trudie Koch','Orleans','1987-03-25',38.6913194,47452,'a0a575be-1b38-48f8-8c86-74f2cc3d39fa',381,-86.4017087,'27 Noe''s Chicken House Road','IN','trudie.koch@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-04T20:35:53.572Z','Twitter','Thaddeus Lindgren','Chiefland','1968-12-01',29.43706,32626,'d627c9ba-a473-4f9e-a18c-504ebdd46503',382,-82.813959,'7231 Northwest 30th Street','FL','thaddeus.lindgren@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-05T02:00:37.622Z','Affiliate','Phoebe Wintheiser','Egeland','1974-02-15',48.6167295,58331,'47aa7880-cbb0-4e11-bc1c-275095bf815a',383,-99.1286372,'7059-7099 83rd Street Northeast','ND','wintheiser-phoebe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-18T20:10:55.777Z','Google','Tressie Smitham','Pontotoc','1958-10-21',34.1911408,38863,'bbd0c313-0c2d-448d-bb76-d8e859343dcd',384,-89.1202776,'2425 Oak Forest Road','MS','tressie-smitham@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T02:36:00.889Z','Facebook','Veda Raynor','False Pass','1995-06-24',54.8488896,99583,'915a4dda-a221-4a17-908c-683a7b48f296',385,-163.4073178,'180 Unimak Drive','AK','veda.raynor@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-28T07:25:58.816Z','Affiliate','Omer Kautzer','Copper Center','1965-02-12',61.2668195,99573,'406a392c-5eef-4192-8fe3-c6ffc28828c9',386,-145.2833742,'95 Alaska 4','AK','omer.kautzer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-21T14:40:24.226Z','Facebook','Selina O''Hara','Ukiah','1987-10-12',39.16605149999999,95482,'26cbda2d-f9d0-4cda-8a52-c7c2a92f3f79',387,-123.3810453,'11001 Low Gap Road','CA','selina.o.hara@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-16T20:06:08.490Z','Facebook','Nicklaus Hahn','Stanhope','1990-07-03',42.2818569,50246,'700463d2-dbd5-421d-994b-210b9fec7e24',388,-93.7430547,'2100-2174 350th Street','IA','hahn-nicklaus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-08T23:30:30.824Z','Affiliate','Mellie Wolf','Lawrence','1961-03-28',40.1801095,68957,'060be09d-3027-49f8-8304-dd20164ddda7',389,-98.23249589999999,'2730 Road North','NE','wolf.mellie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-15T01:01:28.263Z','Organic','Brenna Hudson','Ashton','1972-08-12',44.104079,83420,'90ee70a1-cb44-493f-b258-d9dd91213d82',390,-111.4923297,'3321 Pleasant Hill View','ID','brenna.hudson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-09T03:35:59.489Z','Twitter','Gilberto Mueller','Parlin','1984-05-21',38.5209723,81239,'b5c5f823-15be-4ed5-b436-626025e41747',391,-106.6766573,'2594-3538 County Road 76','CO','gilberto-mueller@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-05T15:35:04.883Z','Affiliate','Percival Schuppe','Canton','1985-04-05',34.25811789999999,30114,'db65cf7f-d4b2-4bf4-8959-872461c05c8a',392,-84.42085209999999,'5683 Jay Green Road','GA','schuppe.percival@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-24T02:58:39.431Z','Twitter','Sigurd Abernathy','Mancelona','1962-10-20',44.895405,49659,'7dc6dc28-ddfc-498d-a611-6a9d0ca2c644',393,-85.01131230000001,'4571-4599 Musser Road','MI','sigurd-abernathy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-23T23:50:46.938Z','Twitter','Rosario Thiel','Lonoke','1989-09-06',34.8236058,72086,'47b4fe23-7151-4826-a68d-1dff4fbccf29',394,-91.8405691,'184 Lilly Lane','AR','thiel-rosario@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-21T10:27:44.480Z','Google','Chet Blick','Brooksville','1980-12-30',28.6705901,34614,'8857af5a-5fb5-4242-b53d-12e72a6e2980',395,-82.61898,'9234-9256 Zebrafinch Avenue','FL','chet-blick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-22T17:19:34.209Z','Organic','Alfred Parisian','Mitchell','1996-05-30',43.6585004,57301,'24d1d379-d3e9-4f64-96b7-36e9be4bc8e9',396,-98.13524149999999,'40300-40398 257th Street','SD','parisian-alfred@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-23T22:27:51.866Z','Twitter','Lavern Botsford','Townville','1960-05-21',41.711713,16360,'6dc06448-3d58-41bd-94df-66c48fbcac58',397,-79.9304678,'31002 Johnson Road','PA','lavern.botsford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-08T16:03:10.179Z','Organic','Norval Collins','Pelican Rapids','1999-08-15',46.5652693,56572,'0d22a725-ed99-42ad-828d-90e4a0e19c98',398,-96.1857107,'14787 Minnesota 108','MN','norval-collins@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-08T16:05:36.687Z','Organic','Leilani Sanford','Talkeetna','1977-10-28',62.1402087,99676,'85c9c994-4300-4798-b34f-0dde61b597d5',399,-149.9117934,'37661 South Kaliak','AK','sanford.leilani@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-10T14:27:49.276Z','Affiliate','Benton Huel','Muscatine','1996-01-16',41.4293833,52761,'2fa0eacf-d58c-4c32-91e9-f8a8504554ac',400,-91.1865965,'1901-1973 215th Street','IA','benton.huel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-22T06:58:39.656Z','Twitter','Mark Hane','Robbins','1983-05-11',35.411868,27325,'55df44dd-1b31-44d0-97c8-46d94e7027a6',401,-79.52678,'1499 Plank Road','NC','hane.mark@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-26T05:16:14.876Z','Organic','Carmella Cummerata','Batesville','1994-05-31',35.7831615,72501,'96a01dee-a83c-4c6a-8e09-3b32400e531c',402,-91.6198103,'225 Miller Creek Road','AR','cummerata-carmella@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-18T10:57:41.728Z','Facebook','Andy Schmeler','Sutton','1987-02-19',42.1059992,01590,'3d5bb57f-32cf-4e4d-a2f6-8a3d22e921c4',403,-71.71592009999999,'171 Jones Road','MA','andy.schmeler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-14T17:20:30.435Z','Affiliate','Lolita Ferry','Sunderland','1995-12-23',38.643258,20689,'fdec1eca-7261-432d-9aba-93c59517624b',404,-76.558375,'2540 Sharon Court','MD','lolita.ferry@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-16T10:03:23.267Z','Twitter','Gwen Ruecker','Groton','1993-01-03',42.607759,13073,'6998b0a1-67ec-4a60-83e9-8c21c19f5fa6',405,-76.354182,'370 Clark Street Extended','NY','gwen-ruecker@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-08T16:03:15.897Z','Affiliate','Kacie Skiles','Chancellor','1993-07-10',43.4861087,57015,'1fbfb5c9-8eb7-465a-b7a1-81b7ab1a72d0',406,-96.9791156,'46115 269th Street','SD','kacie-skiles@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-15T17:04:47.219Z','Organic','Liliane Blanda','Beaumont','1992-01-15',29.8558423,77705,'caf3aa4e-ab1b-410a-822b-e8c58db1a89d',407,-94.097933,'7665 Texas 73','TX','blanda.liliane@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-15T01:54:45.696Z','Organic','Drake Beahan','Bettles','1978-06-21',66.92456100000001,99726,'80700e78-8200-4681-b762-3e866f6f255f',408,-151.505773,'101 South Hickel Highway','AK','drake.beahan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-28T07:19:57.099Z','Organic','Kenyon Watsica','Lake Charles','1992-03-02',29.9929309,70607,'e1a4bd4c-0c90-4af8-9834-63a01b1b5bfb',409,-93.1543835,'205 Hebert Trailer Park Road','LA','watsica.kenyon@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-03T05:20:39.493Z','Affiliate','Donald Dietrich','North','1986-10-26',33.601174,29112,'8dd0f669-342c-4efc-9841-cae162a920e2',410,-81.15536999999999,'6192 South Carolina 394','SC','donald.dietrich@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-01T22:40:18.763Z','Affiliate','Ruthe Gibson','Fayetteville','1977-08-09',34.960715,28306,'41b3c02c-21ce-4bdc-a026-fe5d8c7480cf',411,-78.781319,'4850 Gainey Road','NC','gibson.ruthe@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-08T03:45:59.879Z','Facebook','Earnestine Lockman','Eureka','1964-03-29',40.758517,95503,'81ebb108-aeb9-49b4-9e72-baceddacea58',412,-124.049391,'2927 Freshwater Road','CA','earnestine-lockman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-25T18:08:03.514Z','Facebook','Joanne Osinski','Durango','1976-10-25',37.288416,81301,'42fc86a8-3e7f-481b-a4c8-72c14108c324',413,-108.003251,'493 Perins Peak Lane','CO','osinski-joanne@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-09T19:45:54.638Z','Google','Casey Metz','Canton','1960-05-17',34.212497,30114,'3d95fd26-eacf-445c-b755-3d8e339aeaab',414,-84.606105,'576 Fincher Road','GA','metz.casey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-07T12:51:11.779Z','Google','Orlo Champlin','Douglas','1976-12-27',43.4571255,82633,'c59e2b66-9a7b-4950-9369-02044e479fc9',415,-105.4554265,'1245 Jenne Trail Road','WY','orlo.champlin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-11T01:37:54.425Z','Affiliate','Zoe Bernhard','Goetzville','1981-08-27',46.1527482,49736,'de0c99e6-f41a-452f-b415-15f5b1e48415',416,-84.1175427,'11443 East Gogomain Road','MI','zoe.bernhard@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-25T05:51:56.536Z','Google','Rowan Hyatt','Coulterville','1995-11-15',38.2322784,62237,'cf763d0a-fb00-4402-9774-89e69cbd0d9c',417,-89.6670206,'745-813 County Highway 12','IL','hyatt.rowan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-12T14:48:18.142Z','Google','Ella Koss','Bulverde','1993-05-13',29.7620941,78163,'785aff96-fad3-4a37-9cdb-ee99c3e5a695',418,-98.5691174,'31942-31950 Oak Ridge Parkway','TX','koss-ella@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-21T13:13:51.839Z','Google','Jaeden Cremin','Franklin','1989-07-24',36.7177719,42134,'3fe93175-5c54-409e-9d1f-356701aa2528',419,-86.44161539999999,'759 Henry Clay Smith Road','KY','cremin-jaeden@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-01T11:47:34.943Z','Organic','Crystel Mann','Tolna','1975-12-16',47.7602102,58380,'6be99d26-1f0c-453f-a8b0-49585e80408f',420,-98.58079459999999,'9343 24th Street Northeast','ND','mann-crystel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-29T16:55:54.330Z','Facebook','Arely Zulauf','Fairmont','1963-08-06',36.3361469,73736,'2053269a-e7da-4fb0-adaf-dc8f8907665b',421,-97.63530899999999,'16418 E0470 Road','OK','zulauf.arely@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-27T06:54:35.264Z','Organic','Reagan DuBuque','Chula','1969-03-17',31.5882886,31733,'6849a108-4def-4d32-ad38-20359fb5b059',422,-83.4849861,'196 Wyatt Way','GA','reagan.dubuque@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-29T07:45:34.703Z','Google','Loyce Cole','Elliott','1992-10-01',41.1434785,51532,'897e26ae-2776-4c37-9b54-7a0ec2239ce9',423,-95.15353309999999,'1106 L Avenue','IA','loyce-cole@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-23T22:13:31.594Z','Google','Earline Gulgowski','Puxico','1971-03-01',36.9492281,63960,'46161233-a85b-41e3-8bf8-b6b8d41e4393',424,-90.1344712,'7904 State Highway PP','MO','earline-gulgowski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-12T12:47:18.276Z','Twitter','Enrique Wiegand','Duncan','1978-07-11',33.999475,38740,'02429136-b7bf-4cd9-992a-22ab26ec14a5',425,-90.88267689999999,'7882 Mississippi 1','MS','wiegand.enrique@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-26T18:14:41.594Z','Facebook','Rollin Ondricka','Moapa','1993-03-10',36.4568888,89025,'b0a7cb66-5fc2-4823-9038-d3aeb09ebbba',426,-114.8473813,'17283 North Las Vegas Boulevard','NV','ondricka.rollin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-25T11:20:04.870Z','Twitter','Chester Koepp','Myakka City','1991-12-08',27.331667,34251,'06706846-f4a1-4946-998b-7bbb5d0b4880',427,-82.08469099999999,'11500 Curtis Road','FL','chester-koepp@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-01T08:20:32.685Z','Facebook','Kennedy Kunde','Ingalls','1977-07-07',38.0299536,67853,'b2baab64-8bff-4071-b482-6cbefa8e0dc2',428,-100.3918896,'26701-27699 East Oyler Road','KS','kennedy-kunde@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-15T16:12:12.262Z','Facebook','Andy Skiles','Juda','1997-05-24',42.5574159,53550,'33d6dee0-bd55-4068-b2a4-eea471a1547b',429,-89.5572457,'3963 Carter Road','WI','andy-skiles@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-27T07:21:25.029Z','Facebook','Justine Kertzmann','Saucier','1976-11-28',30.669218,39574,'8c6c2aae-55aa-4aff-8520-7966d471b679',430,-89.077568,'14262 Martha Redmond Road','MS','kertzmann.justine@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-17T13:32:06.312Z','Affiliate','Tobin Huels','Monticello','1973-10-27',37.8729318,84535,'9ef9608d-e6b0-4b26-b976-3f2b57cb4668',431,-109.1608253,'450 North Old Highway','UT','tobin.huels@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-13T09:06:41.951Z','Twitter','Lou Runte','Vernal','1996-08-03',39.929032,84078,'08c33220-0841-4db6-9435-e88e111f757d',432,-109.381367,'36168 South Archy Draw','UT','lou.runte@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-13T22:08:19.577Z','Organic','Kim Grant','La Veta','1974-05-06',37.5085713,81055,'fe58fa84-ea3b-439d-adb3-eee1ac9e6f7e',433,-105.005597,'200-298 Locust Street','CO','kim.grant@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-20T05:11:24.344Z','Google','Domenico Abernathy','Anderson','1992-06-08',34.5488649,29621,'869c785b-8570-455e-a7b2-3f9f7715e8f2',434,-82.6195903,'1101-1121 Harriett Circle','SC','domenico.abernathy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-11T13:34:46.439Z','Facebook','Allan Runolfsson','West Plains','1999-10-16',36.719095,65775,'d302251d-13f1-41d1-a992-7400d04bb4a7',435,-91.6816223,'8880 County Road 9850','MO','runolfsson-allan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-16T18:52:59.773Z','Facebook','Heber Turner','Scranton','1989-10-28',41.9937909,51462,'6d405050-f5de-4631-b21b-2610da49861c',436,-94.49720429999999,'701-799 250th Street','IA','turner-heber@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-19T17:40:32.355Z','Google','Danial Keeling','Toston','1982-10-07',46.12154899999999,59643,'1af6d55d-ff37-426c-beee-efab200feebd',437,-111.597967,'487 Lone Mountain Road','MT','danial.keeling@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-03T06:53:50.383Z','Organic','Arvid Hermiston','Livermore','1986-08-01',37.720286,94551,'90f04e40-3bfa-4981-ac2f-46141d0333f6',438,-121.794001,'1133 Hartman Road','CA','hermiston-arvid@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-12T08:59:02.642Z','Facebook','Ivah Tromp','Wing','1985-02-04',47.0110008,58494,'3fcbe2d9-2f4c-42d5-aad9-4672952cf644',439,-100.3562825,'26859-27499 188th Avenue Northeast','ND','tromp-ivah@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-09T21:38:43.071Z','Google','Sarina Bailey','Cambridge','1986-09-22',45.6197676,55008,'9a4353e5-1701-406c-a74a-020a784e00ab',440,-93.2683454,'35996 University Avenue Northeast','MN','bailey.sarina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-06T01:12:24.830Z','Affiliate','Pietro Bogisich','Onamia','1975-03-05',46.1212212,56359,'dc7919fc-ad89-4fd8-83ca-5032b14573b8',441,-93.5872875,'4001-20827 85th Avenue','MN','pietro-bogisich@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-05T07:36:03.538Z','Facebook','Arch Simonis','Philippi','1997-07-08',39.23785,26416,'67cc985a-4824-461c-8b80-78c94feb6382',442,-80.020365,'651 Cole Road','WV','arch-simonis@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-28T10:33:45.590Z','Twitter','Lisa VonRueden','Marion','1981-04-29',46.5980332,58466,'5a91aec0-d99f-4e93-ba50-0b4d9024228b',443,-98.2902184,'10168 56th Street Southeast','ND','vonrueden-lisa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-19T11:30:11.278Z','Organic','Andres Zulauf','Baxter Springs','1978-02-10',37.0512191,66713,'be90d0fb-07a1-4e8e-851e-820f2561bb2b',444,-94.8314747,'8 U.S. 69','KS','andres-zulauf@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-26T15:39:29.699Z','Affiliate','Claudine McCullough','Montgomery','1992-01-19',32.335616,36105,'ed90aba5-006f-4c4e-afca-cdfbb16f7caa',445,-86.308317,'3860 South Court Street','AL','claudine.mccullough@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-01T07:44:33.102Z','Organic','Tre Balistreri','Dayton','1966-12-09',39.733923,45432,'de222b23-cb9f-47bb-98ec-3b59e7522eb0',446,-84.050685,'3119 Windmill Drive','OH','tre-balistreri@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-13T04:20:20.366Z','Affiliate','Demario Hand','White Oak','1973-02-26',30.9973976,31568,'8f08f1f7-a8fb-4cdd-8220-f74191abad94',447,-81.90707379999999,'4328 3r Fish Camp Road','GA','demario-hand@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-09T07:02:30.255Z','Organic','Darian Cremin','Mathias','1967-08-12',38.963328,26812,'d9102f1a-a501-45df-8b26-89ea5b00cc97',448,-78.935407,'9918 Howards Lick Road','WV','cremin-darian@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-11T17:47:21.346Z','Organic','Zetta Nitzsche','Donna','1980-12-21',26.1594226,78537,'f15d9da0-5512-45ab-be7b-9108f738edbe',449,-98.03753689999999,'2607 Yanez Street','TX','zetta.nitzsche@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-19T00:53:19.192Z','Affiliate','Sincere Waters','Kingston','1992-02-25',33.9896453,73439,'ab7074df-24bd-4872-8a96-b511e7cb5146',450,-96.7604564,'11410 Enos Road','OK','waters-sincere@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-01T02:35:13.283Z','Twitter','Vernice Schmitt','Tupper Lake','1994-07-03',44.1881709,12986,'0d85a311-f13c-416f-b76a-2752f9edb2ca',451,-74.432176,'6 Lake Simond Road','NY','vernice-schmitt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-19T10:50:04.245Z','Affiliate','Dawn Goldner','Ovid','1979-02-10',40.8811136,80744,'cdf80548-5dd4-45f7-90ae-f11590be03e0',452,-102.4120101,'12000-12998 County Road 20','CO','dawn-goldner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-16T14:39:22.466Z','Facebook','Evangeline Reichert','Lewistown','1981-03-29',47.0568583,59457,'6cf74d5b-813a-4929-8d3b-d334e6835b1a',453,-109.1692646,'95162 U.S. 87','MT','reichert-evangeline@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-10T02:49:44.565Z','Facebook','Bobby Kessler','La Fayette','1978-10-23',32.8088943,36862,'07fa64fd-7baa-46cd-b1d5-d3e7e964d0ea',454,-85.4291454,'7230-8282 Chambers County 173','AL','kessler.bobby@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-04T02:38:49.251Z','Twitter','Leonie Crona','Valier','1959-01-20',48.2667954,59486,'8198d5a6-0edf-41b8-9d92-2f288dbfac1c',455,-112.1198458,'6854 Messenger Road','MT','leonie-crona@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-19T07:41:55.477Z','Affiliate','Rogelio Turner','Burlington Junction','1997-01-31',40.4162433,64428,'618cdd57-abfd-42cb-8de2-8cfb434497e9',456,-95.01358599999999,'21115 State Highway Ab','MO','turner.rogelio@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-19T23:07:20.424Z','Facebook','Marguerite Huels','Ola','1966-01-22',44.12387349999999,83657,'12a86d59-7479-4869-b4a3-71ae6aa70e32',457,-116.3023244,'19200 Sweet Ola Highway','ID','marguerite-huels@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-16T17:32:12.168Z','Twitter','Elvera Lowe','Graysville','1991-07-10',33.664848,35073,'90a0e74a-9679-484c-83c0-43fc076d0939',458,-87.000664,'5150 Highway 78 East','AL','elvera.lowe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-26T21:18:53.016Z','Facebook','Anissa Schuppe','Corry','1992-08-21',41.898599,16407,'7db6a96e-92f8-4e2f-aebe-1489a1835918',459,-79.740098,'1922 South Main Street','PA','anissa.schuppe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-08T15:25:15.146Z','Twitter','Laisha West','Clarkesville','1994-07-22',34.6712327,30523,'2f920573-96b4-4eb8-81a5-d49db133ab32',460,-83.49263409999999,'1501 Frank Lovell Road','GA','west.laisha@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-09T11:49:42.919Z','Organic','Sid Mills','Evergreen','1994-06-14',39.699357,80439,'c4f65186-f502-458b-8313-e80ada366226',461,-105.412938,'263 Barrows Ranch Road','CO','mills.sid@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-15T16:01:57.518Z','Affiliate','Ellie Oberbrunner','Livingston','1999-05-28',36.4451252,38570,'96c7d741-8c0b-4afe-813c-1a9aedbefd93',462,-85.31148429999999,'164 Frogtown Estate','TN','ellie-oberbrunner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-19T08:31:29.369Z','Affiliate','Marianna Smith','New Baltimore','1991-03-14',42.692484,48047,'a867da78-2f95-4286-b7a9-8d4b4ab45dd9',463,-82.78239789999999,'32792-32798 Greenwood Drive','MI','marianna-smith@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-22T13:30:23.027Z','Twitter','Madaline Hilll','Larned','1960-02-06',38.1628115,67550,'3108adff-202d-45c1-8393-8b95f747ce15',464,-99.1111131,'1252 U.S. 56','KS','madaline.hilll@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-18T20:19:44.602Z','Twitter','Haskell Graham','Madras','1964-06-08',44.7408289,97741,'928ef5b3-576e-4762-aa06-194211b35c6f',465,-121.1276098,'7269 North Adams Drive','OR','haskell.graham@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-20T13:25:33.282Z','Twitter','Myles Deckow','Indiantown','1963-05-18',27.013422,34956,'4a78bd87-250e-4d54-8f2c-43fd1d86f2d4',466,-80.423394,'12002 Southwest Kanner Highway','FL','myles.deckow@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-10T00:42:34.334Z','Affiliate','Chanel Dare','Nebraska City','1966-11-18',40.58038200000001,68410,'5eea1b5f-7667-4d32-b021-0854413530b0',467,-95.8412306,'6590 O Road','NE','dare-chanel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-08T21:07:21.394Z','Facebook','Jensen Swaniawski','Qulin','1968-06-28',36.50025979999999,63961,'21615eab-466c-41ac-835a-be7fcd681401',468,-90.32461889999999,'520-550 Clay County Road 320','MO','swaniawski.jensen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-14T09:08:20.449Z','Organic','Letha Murazik','Wheeler','1973-06-28',39.0543141,62479,'08f17851-351e-40ae-9ce0-eb15ef34688b',469,-88.27940439999999,'4001-5147 East 1400th Avenue','IL','murazik-letha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-03T13:22:36.054Z','Twitter','Enrico Graham','Greenwood','1995-05-06',38.82139799999999,19950,'65926e0d-a748-46e3-929a-fb5f84ba5ad0',470,-75.54764899999999,'11656 Utica Road','DE','enrico-graham@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-21T21:37:36.130Z','Facebook','Oral Balistreri','Loomis','1985-07-15',38.814901,95650,'9ce994c8-3d28-4acc-9b87-d10331af9e58',471,-121.135696,'3874 El Monte Drive','CA','balistreri-oral@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-02T09:44:54.229Z','Twitter','Gregory Brakus','Williamston','1967-07-14',35.838619,27892,'7e34631c-665e-45d8-98a0-e4f80b782c04',472,-77.163956,'203 East Barnhill Street','NC','gregory.brakus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-13T21:13:42.896Z','Affiliate','Tyler Cremin','Riesel','1983-11-24',31.3768988,76682,'e9765835-e3cd-4088-95a7-c98ee687d846',473,-96.9819914,'653 County Road 105','TX','cremin.tyler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-07T02:57:13.382Z','Facebook','Reyes Kulas','De Motte','1962-05-31',41.174038,46310,'32f87001-1e30-49a4-83e6-f9b0be11e42b',474,-87.22173599999999,'9190 West 1100 North','IN','kulas-reyes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-30T21:37:05.872Z','Twitter','Murray Gleason','Tyler','1969-12-27',32.446336,75706,'ae1eb2e0-111e-4b3e-a329-77caec18968c',475,-95.38271999999999,'12197 Cross Fence Trail','TX','murray.gleason@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-29T18:09:12.265Z','Affiliate','Adalberto Terry','Comer','1966-05-10',34.0320311,30629,'39e557d8-317e-402b-9155-21a98db9f38d',476,-83.1427077,'64 Goose Pond Road','GA','adalberto.terry@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-22T18:02:05.769Z','Google','Winfield Donnelly','Raleigh','1979-08-15',35.8515632,27612,'c3278d12-fb46-4f0e-b00c-fe5420ed745b',477,-78.702987,'5004-5008 Picardy Place','NC','winfield.donnelly@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-12T20:20:13.963Z','Twitter','Vergie Borer','Madison','1966-02-05',38.3571942,22727,'f1020506-ac25-41e2-b5ac-3299182110fb',478,-78.4127535,'1215 Kinderhook Road','VA','vergie.borer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-30T09:10:20.773Z','Organic','Molly Klocko','Copper Center','1968-08-17',61.2668195,99573,'fa26812f-6ec7-44b8-8beb-673de8a0c318',479,-145.2833742,'95 Alaska 4','AK','molly-klocko@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-05T20:10:19.501Z','Organic','Crawford Rath','Attica','1969-08-15',40.2482635,47918,'d40effa9-89b2-43ee-acfc-498e6273e6ab',480,-87.25751629999999,'3190-3398 County Road 30 East','IN','crawford.rath@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-01T08:21:10.872Z','Google','Keely O''Conner','Mountain Home','1973-04-06',36.31394,72653,'1e0bc9de-9e89-456d-b663-d8b640bc1455',481,-92.37312899999999,'308 Pebblecreek Drive','AR','conner-o-keely@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-19T23:02:40.049Z','Twitter','Dolores Bins','Carthage','1994-10-13',34.0787283,71725,'53a0a445-c65e-4806-9edc-34c4baaa70f7',482,-92.6510928,'4466 Arkansas 9','AR','dolores.bins@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-03T08:19:41.210Z','Twitter','Magnolia O''Keefe','Young Harris','1996-04-06',34.9490126,30582,'46cbe3cf-0dd7-411a-9df2-4001a3e31c9d',483,-83.80166799999999,'497 Old Ferguson Town Road','GA','keefe-o-magnolia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-21T18:20:30.373Z','Google','Mayra Olson','Saint Joe','1970-03-31',41.3283563,46785,'9273fffa-7d52-41fb-b65d-87a1c64885f7',484,-84.8139396,'7934 County Road 56','IN','mayra-olson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-23T23:30:39.079Z','Twitter','Marcelina Moore','Mount Jackson','1964-12-15',38.726831,22842,'58cdbd01-50f4-4062-9040-caf86d7c74af',485,-78.6577884,'1026-1324 Industrial Park','VA','marcelina-moore@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-14T08:19:45.717Z','Facebook','Morris Beahan','Verona','1983-11-25',36.8177783,65769,'eb180a47-5500-4eca-929f-9ab1eb59bd2d',486,-93.8447328,'7706 Farm Road 1120','MO','beahan-morris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-28T05:52:19.091Z','Affiliate','Mike Abernathy','Havelock','1989-10-21',34.886794,28532,'20efaa39-099c-434e-ab08-c7672bc4ba15',487,-76.79080499999999,'1155 Temples Point Road','NC','abernathy.mike@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-01T22:50:13.351Z','Affiliate','Terrence Emmerich','Bolivar','1977-10-29',40.6505745,44612,'076e8412-4423-4611-b2c7-77949875d2bc',488,-81.4352846,'11439-11447 Glenpark Drive Northeast','OH','terrence.emmerich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-30T12:00:49.852Z','Organic','Amya Homenick','Township of Branch','1993-06-29',44.0510283,49402,'0331b0c1-3c2f-4b31-965b-2909fa5b9fd0',489,-86.0815351,'7800-8094 Burley','MI','homenick-amya@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-02T03:08:21.569Z','Affiliate','Tyreek Runolfsdottir','Columbia','1980-01-17',41.717989,06237,'3a317272-4d1e-4115-9249-ee20fb0b6fd3',490,-72.30425199999999,'41 Laurel Lane','CT','runolfsdottir-tyreek@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-05T01:26:50.655Z','Organic','Justina Kassulke','Sandpoint','1997-01-28',48.4679556,83864,'997860a2-494c-4bc1-a2d1-3f671cc5cddc',491,-116.4196161,'3312 National Forest Development Road 215','ID','kassulke.justina@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-05T13:12:39.595Z','Google','Janelle Rutherford','Canton','1975-05-29',32.5672093,75103,'a3c7bf2f-6b1b-4f29-9202-ed67aa00f86b',492,-95.7323965,'1610 Vz County Road 1313','TX','janelle.rutherford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-19T13:23:22.185Z','Facebook','May Kerluke','Webster','1963-07-28',43.223702,14580,'c45b3482-0a36-4b1e-be38-80b36e49b4d3',493,-77.527873,'194 Colonial Drive','NY','kerluke.may@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-07T03:28:40.939Z','Google','Abdullah Fisher','Tennille','1972-09-13',32.8239852,31089,'97b59c23-e549-4d49-9139-e27c1fb01a7a',494,-82.9221041,'1206 Georgia 272','GA','fisher.abdullah@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-06T19:35:55.059Z','Google','Kamron Senger','Columbus','1987-01-16',33.295844,39701,'22d4f786-f80d-4504-826a-252e4a941ad9',495,-88.440877,'14463 Old Macon Road','MS','senger-kamron@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-12T03:19:45.154Z','Affiliate','Corine Rosenbaum','Hope Mills','1989-04-16',34.9712724,28348,'86fd437e-0cff-4535-bf10-18add1a664af',496,-78.9891936,'3701 Applegate Road','NC','rosenbaum.corine@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-01T04:15:21.668Z','Google','Jennings Ferry','Chocowinity','1997-11-25',35.463022,27817,'cb9364d8-f98e-47dd-939a-c3bd6b5e08a6',497,-77.113389,'304 Warren Avenue','NC','jennings.ferry@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-28T01:16:02.866Z','Affiliate','Nickolas Schuster','Myrtle','1978-06-09',36.507964,65778,'c94037eb-b4e4-4f56-8ec1-fc9b366c6155',498,-91.3047636,'22828 Highway V','MO','schuster.nickolas@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-16T22:27:15.498Z','Organic','Loyal Wintheiser','Wise River','1985-11-19',45.9087868,59762,'3a90e73f-ce38-44da-8aef-a702bb6838f0',499,-113.26501,'2499 Fish Trap Road','MT','loyal.wintheiser@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-01T03:28:22.744Z','Organic','Madge Friesen','Yates Center','1991-04-27',37.82054300000001,66783,'00877aae-895d-401a-8d65-db68258305dc',500,-95.6682008,'1821 70th Road','KS','madge-friesen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-06T00:39:51.552Z','Google','Orval Hettinger','Marthasville','1986-10-25',38.7003089,63357,'3aec3574-b8b7-42c4-86fe-2eb5be7d0fcc',501,-91.29538629999999,'5290 Missouri 94','MO','hettinger.orval@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-25T20:45:31.575Z','Organic','Maddison Morar','Akron','1987-04-26',41.1057731,44313,'94d40e4f-93c0-4838-8513-6bbc8d0d599c',502,-81.564117,'1567-1573 West Exchange Street','OH','morar-maddison@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-08T16:08:51.422Z','Organic','Devan Skiles','Pomona','1985-09-13',38.6242147,66076,'2117fe78-f1a6-42bd-b0db-be511531cd50',503,-95.4527918,'3272-3348 Colorado Road','KS','skiles-devan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-01T01:55:52.926Z','Affiliate','Carlotta Kessler','Greenfield','1978-07-26',41.3111128,50849,'5dea98ee-deec-404c-bb0b-1c2a294ac753',504,-94.4145582,'2315-2347 Pinewood Avenue','IA','kessler-carlotta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-21T23:33:33.190Z','Organic','Isac Cole','Millport','1981-05-02',42.2345635,14864,'7fc94288-d6c6-43b4-bd39-3bf55ff9f6ab',505,-76.83706459999999,'4898 Clair Road','NY','isac-cole@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-02T03:16:57.843Z','Organic','Lenore Cummerata','Escanaba','1979-09-27',45.7455717,49829,'827fa750-e31c-4ab7-b115-a5ed203c3bfc',506,-87.1809976,'3701-3841 14.5 Road','MI','cummerata-lenore@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-14T13:15:18.824Z','Facebook','Ava Jaskolski','Davenport','1987-02-07',47.500227,99122,'2ccf95ee-9569-4366-aa5e-79ade108e0db',507,-118.1411565,'16423 Star Barn Road North','WA','ava-jaskolski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-24T06:31:38.512Z','Facebook','Breana Weber','Marietta','1981-06-01',40.5177699,61459,'649d61da-324a-40c8-8a11-5feec8a21324',508,-90.4266696,'21501 North Point Pleasant Road','IL','weber-breana@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-01T12:45:30.519Z','Facebook','Ignatius Watsica','Brentwood','1967-11-19',36.034604,37027,'1a05df50-f109-47d3-b272-09c55dd9ab4c',509,-86.844132,'311 Deerwood Lane','TN','ignatius.watsica@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-30T04:36:22.156Z','Facebook','Arnoldo Cronin','Marshalltown','2000-03-29',41.9659007,50158,'215fd6af-9e56-4cb4-a27e-ad80dbe6c54c',510,-92.8931427,'509 Roberts Terrace','IA','cronin.arnoldo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-24T18:25:47.572Z','Facebook','Lemuel Schamberger','Sutherland','1969-10-06',42.9233932,51058,'fa626bf7-6609-40e0-ae8f-fa403c1cf5d9',511,-95.4129181,'6957-6999 Highway 10 Boulevard','IA','lemuel.schamberger@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-29T08:20:50.279Z','Google','Oliver Jacobs','Paron','1995-12-07',34.7953365,72122,'13ec3cfa-9d20-4573-a685-748fecfe1632',512,-92.7700229,'24523-25321 Arkansas 9','AR','jacobs-oliver@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-18T14:06:25.693Z','Organic','Loma Monahan','Morrison','1966-07-08',35.653733,37357,'6165f552-ba43-42c6-b907-7c0d67abe6b3',513,-85.979012,'11481 Shelbyville Road','TN','monahan.loma@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-29T07:22:09.155Z','Google','Glen Johnston','Shepherd','1988-08-11',45.92924499999999,59079,'1c4aba69-453b-40d9-8aec-9958998a0c64',514,-108.3549564,'4851-5197 Yeoman Road','MT','johnston-glen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-05T20:05:38.856Z','Facebook','Hassan Hansen','Dalhart','1971-10-04',36.1896105,79022,'31c62955-4720-48e7-b4b0-4cb1a193eaa5',515,-102.327912,'13009 Rock Hill Road','TX','hassan.hansen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-08T20:33:41.694Z','Twitter','Aurelie Moore','Santa Rosa','1995-11-13',38.41670149999999,95407,'4bf5cadb-a85a-4ed9-a5b5-ef65c50d9ffc',516,-122.753963,'1426-1498 Corporate Center Parkway','CA','moore-aurelie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-22T14:31:50.443Z','Facebook','Blanche Rau','Wild Rose','1985-02-25',44.222597,54984,'79b71a49-6491-4591-9764-6283ae2e7bb1',517,-89.0943339,'N6698 East Long Lake Road','WI','rau-blanche@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-06T22:05:16.785Z','Affiliate','Granville Gaylord','Athens','1978-05-08',42.0922467,49011,'0a81843b-ffbf-4477-8022-d05992368f26',518,-85.26004549999999,'1821 V Drive South','MI','gaylord-granville@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-08T08:26:13.254Z','Affiliate','Marcelle Rippin','Avery','1993-10-05',33.5235064,75554,'c2af8260-c51f-4ca7-b566-8b2c0582f69a',519,-94.7968594,'765 County Road 4426','TX','marcelle-rippin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-07T19:34:35.641Z','Facebook','Lamont Hoeger','Livingston Manor','1959-11-14',42.026117,12758,'5d4d39cf-c4bc-4505-91c6-fdefdf170087',520,-74.804464,'237 Mary Smith Hill Road','NY','lamont.hoeger@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-17T06:29:26.580Z','Organic','Ubaldo Becker','Choteau','1978-05-13',47.7415303,59422,'5ce7e456-2bd9-4074-b5b0-e6c85c0d8998',521,-112.3168472,'300-398 Pishkun Road','MT','becker-ubaldo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-17T13:53:59.160Z','Facebook','Theodore McGlynn','Froid','1975-10-06',48.2485359,59226,'3499d1fa-b3a1-4272-b29a-aaaaee9594c2',522,-104.6062252,'5175 Road 1026','MT','theodore.mcglynn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-18T21:09:56.253Z','Twitter','Deonte Hoeger','Mc Leod','1975-04-28',45.4596787,59052,'91705961-0e02-42d6-aabc-4878b0e99045',523,-110.1984557,'3319 Main Boulder Road','MT','hoeger.deonte@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-05T04:50:35.516Z','Google','Naomi Jacobs','Moseley','1964-05-10',37.4279015,23120,'6cb0ca80-8926-480c-815b-11e2bd2bcf0b',524,-77.75752279999999,'18100 Duval Road','VA','naomi.jacobs@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-07T04:52:41.354Z','Affiliate','Ethan Rutherford','Superior','1996-04-13',46.6669749,54880,'ff32fc0b-44db-4d00-851d-d308c4f35c07',525,-92.0631631,'98 Ostby Drive','WI','ethan.rutherford@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-21T12:43:33.320Z','Organic','Tyrique Deckow','Pratt','1991-12-16',37.6065566,67124,'54a90520-d350-4dc0-9b12-632a2d2c7557',526,-98.73944519999999,'20469-20731 South 1st Avenue','KS','tyrique.deckow@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-09T01:19:54.653Z','Affiliate','Marjorie O''Conner','Dow City','1979-12-25',41.9584444,51528,'4524325e-15ed-4a16-b386-181e75659bb0',527,-95.5465569,'2743 Dane Ridge Road','IA','o.conner.marjorie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-19T20:31:30.924Z','Twitter','Jennyfer Hermiston','Mountain Home','1960-01-13',36.3495959,72653,'49edb8c3-395a-4379-aa3d-f87eb814f291',528,-92.29217919999999,'4398 Buzzard Roost Road','AR','hermiston.jennyfer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-02T05:40:38.671Z','Twitter','Haylie Johns','Ovid','1999-07-17',40.8955618,80744,'706d0b69-b1f4-4ec2-a7e9-869ee28c1dae',529,-102.408923,'12508-12998 County Road 22','CO','johns-haylie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-01T12:44:59.541Z','Facebook','Camila Kautzer','Berlin','1988-09-12',43.9300967,54923,'9174f95e-f082-4a15-9442-0b0998fb3353',530,-88.9492695,'N8279 Wisconsin 49','WI','camila.kautzer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-26T21:15:48.241Z','Google','Dixie Adams','Uniontown','1973-08-11',32.4174517,36786,'750771ea-5b24-4003-8d89-8f918ea6db53',531,-87.53871079999999,'22605 County Road 53','AL','dixie-adams@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-17T20:48:05.011Z','Twitter','Barrett Brekke','Burkburnett','1970-05-21',34.099726,76354,'953c6451-e240-42f7-9c16-324c0e0401e7',532,-98.68657929999999,'573 Williamson Road','TX','barrett.brekke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-27T08:46:44.913Z','Twitter','Jennie Kuhlman','Harlowton','1963-09-01',46.4754497,59036,'f19769dc-1c4d-4e72-90d5-3886d10a851e',533,-110.0784601,'21-585 Haymaker Road','MT','kuhlman-jennie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-12T01:04:21.387Z','Affiliate','Lacey Balistreri','Calhan','1983-05-19',39.038336,80808,'e1b4e14c-4cd3-4a6b-a6d4-b0d22914bab7',534,-104.174353,'34255 Harrisville Road','CO','balistreri.lacey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-18T09:59:49.382Z','Affiliate','Will Kozey','Jamestown','2000-03-01',37.861802,95327,'cd73d878-a0cc-4d6b-bf71-7c5eb9007c70',535,-120.625913,'13149 Tulloch Dam Road','CA','kozey.will@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-25T18:57:19.160Z','Affiliate','Daisha Boyer','Kingsley','1965-05-06',44.5040542,49649,'cc730074-5600-478c-925b-d6189958eec0',536,-85.5457574,'1400 East 2 1/2 Road','MI','boyer-daisha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-10T01:05:12.264Z','Google','Keith Rosenbaum','Pettigrew','1995-01-06',35.7394238,72752,'742b96f2-4046-4ffc-ae6a-559b2eaf36a6',537,-93.6382065,'718-798 County Road 5141','AR','keith-rosenbaum@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-17T14:09:26.619Z','Google','Charlie Bartoletti','Athelstane','1970-06-28',45.5285437,54104,'90fd5369-41f0-4f0b-ac56-f752638a1815',538,-88.3064481,'N15535 Parkway Road','WI','charlie-bartoletti@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-05T05:49:07.321Z','Facebook','Daren Huels','Buffalo','1985-02-27',44.4656923,82834,'dd3fb592-9150-4b98-9e7d-6dbb4bc07e4f',539,-106.6800018,'47 Belus Road','WY','huels.daren@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-24T08:29:20.960Z','Google','Mallory Kirlin','Pioneertown','1990-12-26',34.2037273,92268,'1183bc65-c18b-4a70-88ff-4e90d0d5b380',540,-116.5911904,'50951 Burns Canyon Road','CA','mallory-kirlin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-22T17:37:25.294Z','Facebook','Alycia Collins','Leesburg','1960-03-06',31.7196718,31763,'b57878c0-5e36-4d7a-9bf6-a3ade7e1753d',541,-84.1848424,'259 Highway 32 East','GA','alycia.collins@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-03T15:07:35.401Z','Organic','Gertrude Labadie','Woodland','1966-08-03',36.360493,27897,'5ad5f421-f54e-4bc3-b917-673a51ef6115',542,-77.22337,'439 Baughan Road','NC','gertrude-labadie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-09T00:23:40.615Z','Google','Hadley Watsica','Tannersville','1961-04-08',42.1887029,12485,'773953d1-c084-4224-b209-72f1ea4ebeeb',543,-74.13561899999999,'11 Quarry Road','NY','watsica-hadley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-13T02:21:29.002Z','Affiliate','Emmie Mertz','Fredericksburg','1984-06-18',30.008587,78624,'c14f4a8f-4ba1-43b4-ac68-8a143e931a92',544,-98.826402,'107 Old Comfort Road','TX','emmie-mertz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-14T11:37:44.685Z','Google','Aylin Wisozk','Summerville','1977-11-30',34.3910982,30747,'91d5c321-d18a-4e0b-8a88-6b1ef23b6573',545,-85.3040286,'537 Silver Leaf Drive','GA','wisozk-aylin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-05T15:13:05.433Z','Affiliate','Richmond Bode','Gray Court','1979-04-29',34.59938940000001,29645,'91665fde-b9cd-43d4-a10a-2e6ed1463e69',546,-82.15108649999999,'11238 South Carolina 101','SC','bode.richmond@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-26T08:39:53.632Z','Affiliate','Sim Gusikowski','Bowie','1996-12-15',33.5782505,76230,'83d33f3d-cf6d-4cbc-bc45-8f4e5130c9b2',547,-97.78660839999999,'183 Hopson Road','TX','sim.gusikowski@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-23T10:01:14.197Z','Facebook','Liliane Hayes','Warsaw','1986-05-12',41.285628,46582,'18acd225-6c22-4329-96fc-dfd460d8293b',548,-85.998631,'3734 North 800 West','IN','hayes.liliane@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-11T04:39:47.806Z','Affiliate','Andy Rempel','Solon Springs','1980-10-24',46.368916,54873,'edc95d54-b3b0-4fb3-95b3-e8b7ae853c3f',549,-91.984899,'6085 South County Road A','WI','rempel.andy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-19T11:40:56.223Z','Google','Kristoffer Keebler','Fairbanks','1970-01-04',65.080709,99712,'e1e5d91c-44f1-42fc-b8f2-1ab99cd8e5c5',550,-148.034074,'4916 Rossburg Road','AK','keebler-kristoffer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-30T14:04:24.487Z','Organic','Oceane Runte','Orient','1977-07-14',44.7638897,57467,'d241c256-93de-447e-a15f-243d3dcb58de',551,-99.2930452,'18100-18114 345th Avenue','SD','oceane.runte@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-26T01:21:12.080Z','Affiliate','Isidro Schuppe','Chadwick','1972-05-02',36.9155806,65629,'96a70c71-2530-4e80-b32f-d1b33801f8fb',552,-92.9576551,'6642-7862 Chadwick Road','MO','schuppe-isidro@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-08T09:32:25.042Z','Affiliate','Briana Koss','Wray','1973-06-08',40.3416011,80758,'0a6546bf-64f7-4ef8-b6a3-b67e610bf3e0',553,-102.3142967,'52944-53578 County Road CC','CO','briana.koss@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-12T12:06:55.680Z','Facebook','Robin Rohan','Waterloo','2000-03-16',43.0951171,53594,'d06aee47-49c4-4e07-a9c3-f99799a50a52',554,-88.9768565,'8970 Michel Lane','WI','rohan-robin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-20T20:52:29.864Z','Organic','Coty Kertzmann','Weippe','1992-12-14',46.2973537,83553,'b2ff1804-7f61-4b7e-9931-6f2b964b9683',555,-115.961682,'906 Hidden Valley Lane','ID','kertzmann-coty@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-18T12:34:41.764Z','Organic','Percy Padberg','Danville','1974-05-21',40.17479489999999,61832,'d91f89f5-f671-4e34-90ca-fef47d3f7cfc',556,-87.6572382,'1304 Park Haven Court','IL','percy.padberg@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-25T11:26:29.500Z','Google','Enola Bayer','Verona','1994-03-10',41.2536332,60479,'a8d8b272-e3c1-480b-8042-1ce871eb05c9',557,-88.5247739,'5377-5733 County Road 2000 South','IL','enola.bayer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-25T03:43:01.012Z','Google','Alexandria Schowalter','Valley','1969-01-28',32.7908147,36854,'77da81b9-6eb6-4495-ae5f-86aa545f50d0',558,-85.1437507,'45 Middle Street','AL','alexandria-schowalter@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-21T13:10:27.625Z','Facebook','Aylin Haley','Terre Haute','1991-06-03',39.41639809999999,47802,'5964c56b-b5b6-4be6-ac82-7700e33c9e7b',559,-87.3481896,'4401 Riley Road','IN','haley-aylin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-21T20:12:11.678Z','Affiliate','Earl Erdman','Preston','1963-01-04',38.72755,21655,'b09061fa-0259-4473-827d-d7130167b462',560,-75.94157899999999,'4346 Jones Lane','MD','erdman.earl@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-21T17:51:24.499Z','Organic','Brooks Shields','Fields','2000-01-30',42.0223194,97710,'42285b24-0f15-40e1-a176-2c2b9468beb5',561,-118.6227513,'13546 Fields-Denio Road','OR','brooks.shields@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-12T20:10:44.469Z','Facebook','Samson Hauck','Pine River','1978-08-18',46.7163023,56474,'42651c0d-7c2b-4362-a94f-4dd4d0b108d6',562,-94.564637,'5305 24th Street Southwest','MN','hauck.samson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-21T00:01:03.686Z','Organic','Tristin Lebsack','Bladen','1997-04-01',40.2912243,68928,'7cbb06b7-3ab0-4549-bdd1-1ebe570c4681',563,-98.57218610000001,'919 Nebraska 4','NE','lebsack-tristin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-15T01:34:48.498Z','Facebook','Lura Gutmann','Athens','1987-06-11',45.0784019,54411,'5bec4c88-8d2b-4d3f-be8c-5eef3dded306',564,-90.1627199,'2138 County Road F','WI','gutmann-lura@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-03T23:01:49.724Z','Facebook','Letha Streich','Dyersburg','1980-06-15',36.015878,38024,'1b0ede89-ff1c-4d79-b0c6-2799c11ce33f',565,-89.431719,'2142 Samaria Bend Road','TN','letha-streich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-17T09:53:23.702Z','Twitter','Jessy Spinka','Wilton','1981-08-13',47.3138924,58579,'68881c12-7e6d-474c-9009-fdf99940f46e',566,-100.7064244,'45737-46099 52nd Street Northeast','ND','spinka-jessy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-06T17:16:12.448Z','Twitter','Rossie Mann','Boscobel','1988-08-07',43.1130022,53805,'abc8545b-aba5-485b-85ea-acff214d9acf',567,-90.60294999999999,'16701-16899 County Road T','WI','mann-rossie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-16T08:01:55.599Z','Facebook','Jay Strosin','Power','1995-06-22',47.79393899999999,59468,'099752e6-6e3e-4885-aa2e-6a7693d4ee46',568,-111.6032917,'1260 18th Lane Northeast','MT','jay-strosin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-23T18:23:00.963Z','Organic','Griffin Kling','Maggie Valley','1987-12-29',35.5422894,28751,'c61ae688-d6be-465d-8fca-b2fa4a241e4f',569,-83.069052,'2-158 Simpson Lane','NC','griffin.kling@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-15T17:51:41.589Z','Affiliate','Zoila Armstrong','Wilmington','1960-08-01',39.7718983,19809,'9d5ba6ad-73af-484a-8fe4-b4a4c8c9dd21',570,-75.4900014,'1506-1508 Woodsdale Road','DE','armstrong.zoila@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-20T20:10:19.129Z','Affiliate','Micaela Ebert','Wing','1970-04-20',47.150309,58494,'cb1ed41c-ac8e-4f54-80d3-7ac7b5bdf2a9',571,-100.2381976,'31351 340th Street Northeast','ND','micaela-ebert@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-20T11:36:23.181Z','Affiliate','Sheldon Braun','Claxton','1987-07-18',32.1289155,30417,'ded3b9d2-a44d-4f8b-9e5e-682fbf39a641',572,-81.93196429999999,'122 Deer Run Circle','GA','sheldon.braun@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-04T09:55:57.140Z','Twitter','Rachelle Schmidt','Winamac','1964-08-22',41.0531684,46996,'226ba4a2-652d-434f-8911-12b21091afa7',573,-86.6946993,'4785 Indiana 14','IN','rachelle.schmidt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-09T02:16:12.905Z','Facebook','Jakob Hansen','Argusville','1963-08-31',47.10962199999999,58005,'02bcafbb-f082-4655-8318-366fab759734',574,-96.933262,'16845 21st Street Southeast','ND','jakob.hansen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-21T15:23:29.217Z','Google','Demetris Carroll','Henrietta','1978-09-01',43.056554,14467,'c627d603-2b30-4ce7-8e2b-39e877ade85b',575,-77.611637,'3224 East Henrietta Road','NY','demetris.carroll@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-29T17:21:24.553Z','Google','Hulda Greenfelder','Baker','1997-09-04',46.560284,59313,'81bef3b9-b8b1-45fd-9910-71ff9a611dc0',576,-104.093908,'115 Tatley Road','MT','greenfelder-hulda@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-04T00:59:11.297Z','Facebook','Orion Wilkinson','Rome City','1984-09-09',41.47658800000001,46784,'07191ae1-a51a-48d5-8730-ec08c6424f47',577,-85.377605,'2565 East 850 North','IN','orion-wilkinson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-07T07:43:42.977Z','Organic','Estrella Goyette','Hessmer','1981-09-10',31.1026404,71341,'7f06b55e-e6d3-4b15-808c-09f24a77cc73',578,-92.180238,'1247 Highway 114','LA','estrella.goyette@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T08:02:42.604Z','Facebook','Austyn Klein','Barrington','1995-02-25',43.2555386,03825,'4ad89d23-00ca-44bb-aba1-394c1310e0c5',579,-71.0671672,'605 Berry River Road','NH','klein.austyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-05T19:40:22.240Z','Affiliate','Kitty Hilll','Bandera','1994-03-11',29.79807,78003,'94591539-4321-4a57-a02b-6ff4ef85f580',580,-99.192702,'2247 Farm to Market 2828','TX','kitty.hilll@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-30T20:28:55.667Z','Google','Quinten Goyette','Worthington','1980-12-13',43.7009933,56187,'0ce320c3-16e6-4e5a-acf3-7bf41a1fa19a',581,-95.61413950000001,'20161 Paul Avenue','MN','quinten-goyette@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-09T01:22:06.116Z','Organic','Eriberto Cruickshank','Corn','1993-10-12',35.3964691,73024,'abd74909-799e-4359-8c92-06f1f6785fbd',582,-98.8329761,'23317 East 1120 Road','OK','eriberto.cruickshank@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-07T09:34:31.768Z','Twitter','Issac O''Kon','Hull','1973-09-09',43.2321938,51239,'217df45b-18bf-4b62-ae2b-4960934b0d0a',583,-96.1972263,'2800-2898 Grant Avenue','IA','o-issac-kon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-22T04:30:18.882Z','Google','Nia Franecki','Charlotte','1972-06-29',41.9509765,52731,'e69c4044-a986-4e58-bf63-cf657d210508',584,-90.4607997,'1529-1603 330th Avenue','IA','franecki-nia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-18T22:03:49.096Z','Google','Stefan Reilly','Mountain Home','1958-12-08',43.1131538,83647,'fb6e2dfb-eac8-436f-850b-dd5242925e5e',585,-115.7902421,'5444-6392 Airbase Road','ID','reilly-stefan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-22T13:33:42.484Z','Facebook','Rosalyn Bauch','Round Lake','1988-11-02',43.6019566,56167,'2ba8e394-8b92-42de-b528-347d51ad91e2',586,-95.4120336,'33530-33532 770th Street','MN','bauch.rosalyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-21T06:32:28.214Z','Organic','Deven Bruen','Fort Loramie','1982-12-22',40.3189104,45845,'73a51c30-86cb-43fb-9ca7-3407629555b2',587,-84.36594269999999,'3696 Basinburg Road','OH','deven.bruen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-08T04:27:13.526Z','Affiliate','Porter Tromp','Weir','1975-12-24',33.2467157,39772,'7b0eedfd-2a6f-43ad-87fd-28a0504c506b',588,-89.22798739999999,'11022 Penderville Road','MS','porter.tromp@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-26T06:35:33.033Z','Twitter','Lazaro Luettgen','Gorham','1998-01-15',43.745157,04038,'bc4fd023-2b37-4560-b335-26c23564f9e2',589,-70.460449,'7 Homestead Lane','ME','lazaro.luettgen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-17T16:34:24.048Z','Affiliate','Cleo Ziemann','Joy','1984-06-09',41.2099688,61260,'c55f9c61-08f3-4d72-8087-8aed8b463c1d',590,-90.9370234,'901-999 Bluff Road','IL','ziemann-cleo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-27T13:17:08.150Z','Twitter','Dahlia Turner','Battle Lake','1997-03-30',46.31263879999999,56515,'2702d21b-0b00-4178-84fa-071d04cabd4c',591,-95.60988979999999,'24100-24998 423rd Avenue','MN','turner.dahlia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-19T22:32:01.036Z','Twitter','Manley Bogan','Olivia','1999-10-19',44.70675540000001,56277,'32138f73-e384-4eab-a3c0-6dd3dec8f165',592,-95.03671349999999,'77367 320th Street','MN','bogan-manley@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-25T05:01:48.898Z','Twitter','Christa Streich','Lunenburg','1994-01-16',42.5532759,01462,'6152f2c4-95c7-4edb-8cd8-0eab71282f42',593,-71.691813,'711 Reservoir Road','MA','christa-streich@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-21T12:39:17.703Z','Facebook','Marlon Howell','Clyo','1962-02-16',32.532624,31303,'7985cd63-83a8-4244-b5bf-bfe2740839b7',594,-81.277301,'372 Morgan Cemetery Road','GA','howell.marlon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-22T16:07:01.999Z','Twitter','Darlene Rohan','Longmont','1985-11-25',40.2045068,80504,'753ff393-b808-4c3b-a0e6-effd242b790f',595,-104.9938637,'3171-3339 Highway 66','CO','darlene-rohan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-06T05:02:00.036Z','Google','Dale Macejkovic','Merrill','1991-05-03',42.7140096,51038,'4b2aaf8c-1a76-4821-a59f-2463e1654ff2',596,-96.40934569999999,'23232-23998 Fir Avenue','IA','dale.macejkovic@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-09T19:41:41.606Z','Facebook','Stan Schaefer','Sutton-Alpine','1971-10-09',61.738969,99674,'c2d4c4b2-3d80-41d3-a355-15d03850e2b7',597,-148.9115811,'14154 Eska Mine Road','AK','schaefer-stan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-27T18:05:32.342Z','Organic','Lon Friesen','Bedford','1975-08-23',39.90810070000001,15522,'06221e89-6c68-42c9-a98d-2e29a60ccf9c',598,-78.532979,'526 Rose Lane','PA','lon-friesen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-04T21:02:42.150Z','Facebook','Ebba Christiansen','Leonidas','1999-02-10',41.9988526,49066,'ea9c95ef-ab6b-4e6a-8356-db4e5ddf603b',599,-85.3709988,'30011 Covey Road','MI','christiansen.ebba@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-16T18:13:24.375Z','Organic','Tatum Keeling','Sciota','1999-05-19',40.575289,61475,'db22c545-97ed-435c-8a14-a55bc67c90db',600,-90.7320816,'20001-20347 County Road 900 East','IL','tatum.keeling@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-07T09:40:22.624Z','Organic','Donavon Lowe','Ferdinand','1992-05-11',38.2434457,47532,'4e300ce1-0fb5-4575-ace0-e1de996f46b8',601,-86.80134699999999,'9914 South 475 East','IN','donavon.lowe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-22T04:24:52.967Z','Twitter','Kaela Kunze','Glennallen','1995-07-05',61.99231690000001,99588,'6e9c5f41-ff74-473c-994b-d623511db0fe',602,-146.7686644,'2446 Glenn Highway','AK','kaela-kunze@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-19T00:16:44.564Z','Google','Shyanne Wyman','Thermopolis','1989-06-27',43.6943312,82443,'001d013a-1d10-4e95-81c1-8ee0bedfc044',603,-107.8125286,'2671 Lake Creek Road','WY','wyman.shyanne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-24T07:47:54.870Z','Google','Carlee Champlin','Plevna','1982-05-30',46.3835299,59344,'3c3526a4-a746-4034-94ea-014225d47320',604,-104.5119599,'220 Plevna Road','MT','carlee.champlin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-12T09:42:37.580Z','Google','Arturo Marquardt','Dibble','1992-07-11',35.0061837,73031,'080f7385-afc5-4430-b6d9-7c9d1ef9e52b',605,-97.6163622,'13132 205th Street','OK','marquardt.arturo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-07T10:28:44.429Z','Google','Abdullah Balistreri','Sandisfield','1976-04-02',42.06306,01255,'f9044945-62dd-4e55-b8c8-d01ae1097e1c',606,-73.1616919,'14-22 Norfolk Road','MA','abdullah-balistreri@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-10T11:37:29.416Z','Facebook','Laurel Pfannerstill','Casper','1981-04-10',42.772582,82609,'72551603-5b28-4667-902f-30c2e85862cf',607,-106.153102,'6600 Hat 6 Road','WY','laurel.pfannerstill@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-23T09:45:24.115Z','Google','Melisa Grimes','Fairlee','1965-12-03',43.9507803,05045,'eac93519-c06d-4571-8e27-80a98ec4cddb',608,-72.1719845,'1738-1884 Millpond Road','VT','grimes.melisa@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-29T11:11:53.167Z','Facebook','Opal Herman','Athens','1997-04-03',45.069139,54411,'0fcb7798-d307-4cfa-9591-fdca91dbf5dd',609,-89.90620899999999,'10631 7th Lane','WI','herman-opal@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-02T00:20:38.928Z','Affiliate','Melisa DuBuque','Iroquois','1978-11-10',44.3252818,57353,'f8c528fe-91f7-4603-8faf-177c9a23a652',610,-97.7446155,'42300-42398 211th Street','SD','dubuque.melisa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-25T05:33:03.959Z','Facebook','Brice Stark','Ute','1999-10-07',42.01385,51060,'df963998-bc44-4a66-a02f-af75a4015dc5',611,-95.7325582,'23694 Sumac Avenue','IA','stark.brice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-08T22:02:58.123Z','Twitter','Virginia Prohaska','Iuka','1980-07-28',34.9340828,38852,'1ce008ab-a95c-4dce-8f24-621fe3b9e955',612,-88.2797599,'28-54 County Road 324','MS','virginia-prohaska@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-12T13:53:44.905Z','Organic','Kaden Lakin','Revillo','1958-07-16',45.1066001,57259,'2ea441c2-25c8-4b39-9b3d-25603896fb44',613,-96.5884731,'48000-48098 157th Street','SD','kaden.lakin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-29T21:50:53.496Z','Affiliate','Geovanni Miller','Leakesville','1967-03-12',31.052132,39451,'9bc28463-5270-4a4b-ac0e-b8d9e25d2e61',614,-88.74860989999999,'3978 Merritt Road','MS','miller-geovanni@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-01T21:08:18.712Z','Facebook','Aubree Dibbert','Blue Springs','1979-05-04',34.3851754,38828,'83fa3471-4a10-480e-8e9d-184aefdbcb3d',615,-88.901736,'1034 Corolla Lane','MS','aubree-dibbert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-09T09:39:58.099Z','Facebook','Rex Thiel','Amory','1969-09-29',33.92264,38821,'c3b2c7cd-b677-4e6f-873c-d6259bb617f9',616,-88.444554,'50016 Moss Road','MS','rex-thiel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-01T15:50:31.100Z','Affiliate','Isai Frami','Idalia','1981-04-28',39.5817883,80735,'0419c275-50db-4aa1-aa80-764f1ba4c975',617,-102.1110891,'36808 County Road 1','CO','frami.isai@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-13T17:30:40.110Z','Twitter','Avis Dickinson','Canyon Lake','1962-12-12',29.881082,78133,'93d07d92-7bb7-4188-877d-2c83c6b90f29',618,-98.18124999999999,'1550 Casa Sierra','TX','dickinson.avis@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-13T07:16:27.453Z','Twitter','Vince Balistreri','New Baltimore','1990-03-21',42.683499,48047,'05f68d16-91cd-46e5-bcb1-37386aca7abe',619,-82.744973,'51789 Base Street','MI','balistreri.vince@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-03T03:55:58.110Z','Google','Shyann Boehm','Greenland','1980-06-09',46.7782043,49929,'d1927613-4508-4592-8e79-2325f686841a',620,-89.0932449,'625 Depot Street','MI','boehm.shyann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-04T01:25:11.382Z','Google','Jazlyn Mohr','Carrington','1981-04-20',47.44263600000001,58421,'98ad709f-5855-49c6-b0fd-79842dc6a079',621,-99.017718,'7151-7175 2nd Street Northeast','ND','mohr.jazlyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-01T22:52:19.047Z','Affiliate','Augusta Lueilwitz','Loma','1977-02-03',48.0305978,59460,'238db87b-2111-4b0e-844f-c9ae65d66f48',622,-110.5805282,'2500 Day Road','MT','lueilwitz.augusta@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-13T11:22:23.238Z','Affiliate','Olen Emmerich','Caribou','1974-01-21',46.840345,04736,'2008a55f-1310-40f5-af27-e666596e1a7e',623,-67.96735199999999,'213 Kelley Road','ME','emmerich-olen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-04T01:38:54.431Z','Organic','Abbie Parisian','Pilot Hill','1983-07-01',38.830162,95664,'759109f3-de2f-47f2-8dd3-da2d115d3efa',624,-121.025937,'4730 Pilot Creek Lane','CA','parisian.abbie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-15T04:51:48.858Z','Twitter','Bulah Eichmann','Buffalo Center','1976-02-19',43.4787462,50424,'f5282e47-26da-4fcf-b691-fc9a890c7e61',625,-93.8897504,'49347 40th Avenue','IA','bulah.eichmann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-10T13:35:39.892Z','Facebook','Columbus Swaniawski','Lyerly','1989-01-10',34.3977584,30730,'4d3ecbe8-6ab8-473d-ad20-2bb61ac0bb86',626,-85.3889731,'1252 Lyerly Dam Road','GA','swaniawski-columbus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-27T01:33:56.293Z','Google','Efrain Spencer','Yerington','1998-08-16',39.093997,89447,'1518563a-2934-458c-b218-275ce5c05be3',627,-119.151808,'155 Penrose Lane','NV','spencer.efrain@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-12T21:17:07.792Z','Twitter','Leopoldo Schmeler','Monticello','1967-12-06',36.8575068,42633,'eab3edaa-f939-4db3-8963-01bd7ab47f4c',628,-84.75244339999999,'695 Raleigh Creek Road','KY','schmeler-leopoldo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-01T17:29:33.522Z','Facebook','Yessenia Pagac','West Liberty','1967-08-01',37.90008600000001,41472,'7c547373-fd99-407b-9e10-9b690439d30c',629,-82.99735439999999,'7150 Lower Sand Lick Road','KY','pagac-yessenia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-19T10:38:51.349Z','Organic','Felicia Runte','Aguilar','1983-06-10',37.4791753,81020,'958e5485-45be-4e36-9d91-723add4f814e',630,-104.557762,'30268-30270 County Road 61','CO','runte.felicia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-20T21:43:01.465Z','Affiliate','Blanca Schiller','Mount Croghan','1986-02-04',34.6932203,29727,'e0c6d619-a374-4347-b5e8-acf650f525c0',631,-80.3077761,'449 Black Creek Church Road','SC','schiller.blanca@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-12T23:50:14.368Z','Facebook','Ben Padberg','Jay','1983-07-24',36.465115,74346,'7223f6b3-ec5b-40a3-b000-7eefdb6ac22a',632,-94.763875,'13527 East 380 Road','OK','ben.padberg@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-05T08:46:59.323Z','Google','Conrad Renner','Temple','1959-04-02',31.1153828,76502,'64525f06-11bc-433f-8b1f-242683a62f86',633,-97.41697579999999,'173-285 Old Waco Road','TX','conrad.renner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-14T19:35:56.959Z','Affiliate','Oswaldo Heaney','Sedalia','1981-06-13',39.3489089,80135,'b46af933-fffa-4708-858c-2f6893f78f41',634,-105.1765411,'413-993 North Platte River Road','CO','oswaldo.heaney@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-10T07:47:32.799Z','Twitter','Rahul Kreiger','Brooklyn','1960-02-27',30.9789516,39425,'6348af61-fa40-437d-8fe8-0ec714ffd477',635,-89.0645222,'825 New York Road','MS','kreiger.rahul@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-01T02:59:11.321Z','Google','Danny Pollich','Mill Run','1968-04-22',39.95067299999999,15464,'75becac0-3389-4007-a41a-7e0a49184e7e',636,-79.395112,'615 Clay Run Road','PA','pollich.danny@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-30T11:54:45.070Z','Twitter','Maximillian Zboncak','Bremen','1983-01-12',41.4758628,46506,'396c2108-f888-44af-9de6-c465b76c4907',637,-86.2338681,'15-381 Juniper Road','IN','maximillian-zboncak@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-16T11:32:02.779Z','Facebook','Lilian Roberts','West York','1990-11-05',39.1523735,62478,'557fe893-33f7-4bd1-9837-cb4c1037a547',638,-87.7098115,'12766 East 2000th Avenue','IL','roberts-lilian@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-26T23:00:47.460Z','Facebook','Cortney Swift','Burlington','1987-09-02',38.12026040000001,66839,'bec606f1-dc09-4537-a2f7-1ac0f4cade29',639,-95.76673579999999,'653-681 Kafir Lane','KS','cortney-swift@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-16T11:07:53.581Z','Organic','Rafael Nikolaus','Glennallen','1987-05-01',62.10305649999999,99588,'ec78b859-fca6-4ad8-b050-35571fa0b1fc',640,-145.9668141,'173 Glenn Highway','AK','rafael.nikolaus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-01T04:41:30.791Z','Twitter','Blaise Legros','Tenino','1974-10-28',46.900972,98589,'827f2934-71b4-4d47-98c9-5d306a2e6d0d',641,-122.865224,'2648 Angus Road Southeast','WA','blaise.legros@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-24T03:20:10.424Z','Twitter','Sonny Beahan','Aurora','1976-02-07',41.3225163,44202,'7f071bbb-48ef-4643-9f01-ab61d5d7ab61',642,-81.3750723,'850 South Sussex Court','OH','beahan.sonny@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-10T01:53:44.613Z','Google','Darrick Sawayn','Roosevelt','1965-08-16',45.9751596,99356,'ae26227b-0bec-4f8b-88c3-c4cace803eb4',643,-120.399776,'78 Jensen Quarry Road','WA','darrick.sawayn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-05T05:24:23.548Z','Affiliate','Florida Hackett','Garden Prairie','1990-08-22',42.193509,61038,'7f6a17ae-1166-4757-b11a-836ddc391893',644,-88.710493,'2785 Garden Prairie Road','IL','hackett.florida@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-20T09:51:41.756Z','Facebook','Ike Sporer','Gilead','1988-12-13',44.40173679999999,04217,'2cdac2b4-ed2a-4e1b-a197-92c70c773b23',645,-70.9609732,'2021 North Road','ME','sporer-ike@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-27T14:02:55.691Z','Organic','Leopold Beer','Sunman','1976-07-07',39.185932,47041,'3a8e61e6-adc1-460c-818c-5d3cf26378c4',646,-85.1369519,'7505 North Spades Road','IN','beer.leopold@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-31T05:41:33.968Z','Google','Alison Paucek','Anchorage','1989-03-31',60.80175790000001,99587,'8e954eec-5c62-4105-ac5f-08a31631854a',647,-148.9586428,'1975 Wyatt''s Windy Road','AK','paucek.alison@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-17T17:10:05.510Z','Google','Mckenzie Walter','Kodiak','1992-02-13',57.69668100000001,99615,'6e3244b8-7ba8-493e-b48a-ec7165c58289',648,-152.547253,'12715 Chiniak Highway','AK','walter.mckenzie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-23T11:29:38.916Z','Google','Leanne Jacobs','Bartow','1966-07-13',27.859979,33830,'e918e130-4516-42c8-80f8-38226a21427d',649,-81.935053,'3001 Bonnie Mine Road','FL','leanne.jacobs@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-26T08:45:32.591Z','Affiliate','Gia Abernathy','Kadoka','1960-01-17',43.962291,57543,'43d05bab-9e5b-472e-9629-da82abb2b645',650,-101.3931105,'23700 Indian Creek Road','SD','abernathy-gia@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-23T22:54:56.130Z','Google','Mallie Lang','Prineville','1964-04-04',44.30904899999999,97754,'ee82c383-fa9e-4fa2-878f-b89ddda0ea9d',651,-120.7914501,'4893 North Ochoco Highway','OR','mallie-lang@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-28T04:33:18.118Z','Facebook','Kitty Kohler','Kaycee','1965-09-02',43.7022358,82639,'7c5d8a45-a394-486e-9089-8abca4f0e84d',652,-106.4562194,'823 Sussex Road','WY','kitty-kohler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-02T11:47:58.664Z','Facebook','Shanie Spinka','Alpine','1990-03-23',30.00989879999999,79830,'a00471ad-e5f2-4523-b190-f15decb26bbb',653,-102.6003381,'2005 Longbranch','TX','shanie.spinka@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-22T19:55:08.087Z','Twitter','Amya Turner','Abilene','1991-06-23',39.093084,67410,'2d11d403-4a91-492a-9df6-a590d59beb9f',654,-97.2875339,'537 3400 Avenue','KS','turner-amya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-01T03:31:32.867Z','Affiliate','Shirley Okuneva','Greene','1997-12-01',42.3859311,13778,'95c6ae6b-0ba9-4f15-a8f2-54afe3fde80a',655,-75.8204083,'201 McBerney Road','NY','shirley-okuneva@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-14T01:32:12.054Z','Organic','Bettie Funk','Springfield','1959-11-08',33.5250515,29146,'0185df3e-9bdb-40f4-9f91-6fe4c765a2f7',656,-81.23591669999999,'71 Off Highway','SC','funk.bettie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-10T04:54:52.266Z','Google','Itzel Wunsch','Lompoc','1988-02-14',34.5177893,93436,'d11db625-cb99-4d4b-b7b6-1f477417f4e4',657,-120.426859,'6001 Jalama Road','CA','wunsch.itzel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-26T13:15:19.973Z','Google','Amiya Purdy','Markle','1994-02-14',40.8553864,46770,'74feea4c-1b01-4e1f-ab7e-2e4d3314719f',658,-85.3552304,'1608-1798 North 500 East','IN','purdy-amiya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-06T23:03:25.326Z','Twitter','Wilford Bauch','Valentine','1998-12-18',42.5548728,69201,'9009ac2b-e6df-45ff-b66c-7a85ab05e909',659,-100.7206827,'21-30 290th Avenue','NE','bauch-wilford@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-02T10:30:40.662Z','Organic','Jacinto Price','Boulder','1994-07-23',37.8871013,84716,'ae203c96-2039-4866-bc42-51ae926218d2',660,-111.3800388,'1075 South Draw Lane','UT','price-jacinto@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-19T06:17:38.861Z','Twitter','Moriah Ziemann','Keldron','1962-11-30',45.8947616,57634,'fcf6fe1c-7015-469e-8eb5-0c64d7373573',661,-101.8710636,'10371 212th Avenue','SD','moriah.ziemann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-29T03:23:00.084Z','Affiliate','Magali Willms','Leoma','1960-09-10',35.0672596,38468,'ae2a6d15-8b35-40be-abf4-19b8a5a18ac6',662,-87.2733781,'349-359 Richardson Road','TN','willms-magali@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-07T20:20:11.609Z','Organic','Philip Fadel','Trapper Creek','1974-08-02',62.8626841,99683,'d780c13a-a24a-4065-9691-2c9a4efbd44e',663,-149.8708804,'29161 North Parks Highway','AK','fadel-philip@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-29T19:49:41.509Z','Twitter','Aidan Hagenes','Villisca','1960-04-28',41.065276,50864,'01eb9dd8-cb0b-48e4-adc3-081ebbdd7a85',664,-94.9103061,'1659 Aspen Avenue','IA','aidan-hagenes@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-17T12:06:52.178Z','Facebook','Petra Roob','East Bend','1997-05-06',36.228495,27018,'f6bc3877-440d-4514-a00e-19dfdd0b1fd2',665,-80.5179206,'1018-1024 Harley Drive','NC','roob.petra@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-21T14:58:46.972Z','Google','Andrew Carroll','Craig','1998-12-18',40.4416933,81625,'2f9281c3-0496-4353-9d54-9eb4debe98cc',666,-107.5048772,'6275 County Road 33','CO','andrew-carroll@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-08T03:38:20.081Z','Facebook','Isaac Schultz','Browerville','1972-05-20',46.1798489,56438,'29ccd347-912f-4307-8b24-9bdc354d7a9f',667,-94.7900583,'27676-27698 Oak Ridge Road','MN','schultz.isaac@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-13T00:44:19.165Z','Organic','Rae Lindgren','Farwell','1976-05-30',41.23278759999999,68838,'da7076d9-fc79-4642-b0c6-52135f8b44d5',668,-98.6898791,'1378-1390 Valley Road','NE','lindgren-rae@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-22T09:38:16.016Z','Google','Dimitri Wisoky','Glenmoore','1990-08-07',40.1116969,19343,'77ffe9c9-de3f-4590-8b32-288a1769a13a',669,-75.70111469999999,'33 Saint Andrews Lane','PA','dimitri-wisoky@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-21T19:50:00.624Z','Organic','Syble Collier','De Queen','1995-08-17',33.9628991,71832,'db1999f1-ce1b-41bc-8a14-94f5c502e4c8',670,-94.4645876,'195 Kornegay Road','AR','collier.syble@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-06T00:01:32.123Z','Organic','Hollie Schaefer','Great Falls','1969-09-02',47.252835,59405,'be39726e-16fd-405c-af58-5eaae6153434',671,-111.2510361,'791 East Eden Road','MT','schaefer-hollie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T07:06:45.608Z','Affiliate','Robin Flatley','Pontotoc','1966-02-27',34.254886,38863,'b406f5fb-617a-48aa-bc74-60b84962e161',672,-88.9181922,'238 Prewitt Road Extension','MS','flatley.robin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-26T10:46:10.510Z','Affiliate','Lorena Predovic','Seffner','1961-07-23',28.0166763,33584,'771d5d19-8286-41f0-9bca-2abcc2873a66',673,-82.3265856,'10601 Bartolotti Loop','FL','lorena-predovic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-08T00:19:43.163Z','Twitter','Evelyn Hahn','Goodell','1981-02-12',42.9727314,50439,'f3bf242a-e8f0-4295-adba-c60b2cd2bf55',674,-93.6407687,'1435 Rake Avenue','IA','evelyn-hahn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-15T19:16:29.554Z','Facebook','Zelda Beatty','York','1968-10-01',40.8830528,68467,'f7b90a69-9181-4599-98e9-ff7f502f64a3',675,-97.711072,'1313 Road G','NE','zelda-beatty@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-16T14:52:24.249Z','Google','Aditya Schoen','Muleshoe','1961-02-18',33.9453372,79347,'33d800cb-914d-4ee0-abc4-4aa8b9001126',676,-102.8765466,'2511-2585 County Road 97','TX','aditya-schoen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-04T14:05:37.420Z','Organic','Brown Blick','Alexander City','1998-12-04',33.028728,35010,'9ea465b2-75cc-4d87-a780-dddb018e5465',677,-85.82033799999999,'3151 Lashley Road','AL','brown-blick@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-25T10:53:29.395Z','Google','Laverne Stanton','Old Harbor','1985-04-25',57.2031043,99643,'f796e596-7932-4036-a739-97d3028865c3',678,-153.3069441,'3 3 Saints Avenue','AK','stanton-laverne@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-07T06:14:30.327Z','Google','Theodora Mertz','Britt','1997-06-06',43.2271856,50423,'1ec290c7-4c98-4984-a80b-8ef66615e0ff',679,-93.7495422,'1201-1245 320th Street','IA','theodora-mertz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-14T14:26:19.132Z','Facebook','Alfonzo Hansen','Tawas City','1979-04-03',44.234764,48763,'14ab5eff-0818-48cd-aecf-38dbd60cf03c',680,-83.5723488,'1655 Oates Road','MI','alfonzo-hansen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-25T11:26:27.217Z','Twitter','Myrtice Harris','Deering','1963-09-26',43.05741829999999,03244,'f5a4f1f3-3ed4-43ea-87da-7fa25cde75a0',681,-71.9011538,'2368 2nd New Hampshire Turnpike North','NH','harris-myrtice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-01T10:38:48.005Z','Affiliate','Annetta Predovic','Buffalo','1974-10-04',39.8053478,62515,'9af2d662-0fb8-4ffb-9b54-0c838b3107ba',682,-89.38065110000001,'14400 Bullard Road','IL','predovic.annetta@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-11T21:37:27.090Z','Organic','Reuben Koelpin','South Fulton','1982-11-03',36.464025,38257,'88989221-0d8d-42ab-9cf3-66b3c34f95cf',683,-88.82106499999999,'9832 Reams Road','TN','reuben-koelpin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-16T08:34:53.832Z','Organic','Jacklyn Gorczany','Backus','1980-06-30',46.81518,56435,'1050e56c-8dcd-4045-8e63-b285b0c77c36',684,-94.628722,'298 County 41 Northwest','MN','gorczany.jacklyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-03T23:36:22.885Z','Google','Noel Tillman','Plano','1958-05-30',33.0933287,75024,'bb6c13e6-626b-487d-a544-fb2d5518a43d',685,-96.80106560000002,'8565 Gratitude Trail','TX','tillman.noel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-25T18:01:20.896Z','Organic','Dortha White','Floweree','1972-08-13',47.7854307,59440,'a131d4f0-fd06-4fd1-8bfc-0395760d87d8',686,-111.07975,'5463 Carter Road','MT','white-dortha@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-02T17:03:04.595Z','Google','Jamar Hickle','Anaktuvuk Pass','1975-07-13',68.1407585,99721,'239e1bc4-7e19-48f8-8436-5c989961ed34',687,-151.7337144,'1104 Summer Street','AK','jamar-hickle@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-08T07:56:47.551Z','Affiliate','Omari Homenick','East Prairie','1960-11-07',36.6480556,63845,'db6c6a13-4b64-4754-a8c6-461514687f77',688,-89.20687989999999,'140-148 County Road 507','MO','homenick-omari@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-19T01:05:36.268Z','Organic','Fern Carter','Appomattox','1966-03-17',37.466346,24522,'8dd0bc8b-9553-49ff-817c-9f1ac8daeb95',689,-78.787437,'4467 Wildway Road','VA','carter-fern@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-09T17:15:36.165Z','Twitter','Giovani Thompson','Brimfield','1992-09-10',42.1816833,01010,'7cf2c426-17a5-4b28-a5f7-0a163bf83888',690,-72.2562806,'1-799 Smith Road','MA','giovani-thompson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-12T23:03:40.918Z','Affiliate','Don Bosco','Red Bud','1975-12-28',38.23524500000001,62278,'c9107e08-0c33-42c2-a6c7-2e90f3369d1f',691,-89.9299319,'4327 North Road','IL','bosco.don@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-03T16:04:56.727Z','Google','Janiya Lockman','Williston','1968-11-29',48.0768505,58801,'a5c0561f-f5b5-448f-8a72-166ac426ced6',692,-103.9195978,'14951 44th Lane Northwest','ND','lockman-janiya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-11T19:50:03.057Z','Organic','Margot Keeling','Washington Court House','1966-01-23',39.5134118,43160,'9133c4fe-c71b-40b6-8904-b4eeffe42703',693,-83.5542948,'298-1500 Miami Trace Road Northwest','OH','margot.keeling@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-22T14:45:35.847Z','Organic','Unique Jerde','Ewing','1976-08-17',38.3767066,41039,'475aafdb-b142-4d33-ac87-55d916813607',694,-83.86546,'500 Harvey Point Lane','KY','unique.jerde@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-09T06:56:36.515Z','Twitter','Nyasia Sporer','Clinton','1983-02-07',35.0987129,28328,'d8ff8d96-c033-46a4-be71-c0e5a2f0938c',695,-78.44406599999999,'1580 Honeycutt Road','NC','sporer-nyasia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-12T15:11:40.996Z','Google','Aidan Rodriguez','Provo','1972-01-06',40.2518581,84604,'fe498c46-ba6e-4a56-944f-2ac1f31c7ead',696,-111.6709749,'701 Columbia Lane','UT','aidan.rodriguez@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-21T03:35:49.586Z','Organic','Delta Jerde','Paris','1991-11-18',38.2357129,40361,'4b761810-2395-4bc9-8965-854e635741d8',697,-84.3932788,'421 Russell Cave Road','KY','delta.jerde@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-25T03:55:47.745Z','Organic','Amanda Mosciski','Jessup','1997-02-06',41.46980569999999,18434,'864ad278-bf79-4056-9983-90e67cc11508',698,-75.56494649999999,'601-999 Center Street','PA','amanda-mosciski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-30T01:36:21.108Z','Twitter','Brielle Kertzmann','Quincy','1971-07-18',40.007307,62305,'6d3d0b86-b19d-4ffe-a53b-e618ecdbfc21',699,-91.379312,'6309 North 24th Street','IL','brielle.kertzmann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-29T14:55:17.953Z','Twitter','Ezequiel Turcotte','Forest River','1975-11-20',48.2478274,58233,'9ba989b2-2010-4274-ad62-b5e3b98d3eff',700,-97.4702992,'5764-5768 Carpenter Avenue West','ND','turcotte-ezequiel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-31T18:20:22.028Z','Facebook','Pablo Lind','Jacksonville','1962-10-04',31.8534425,75766,'cbd714d7-c462-4a3f-b1d2-34723695c469',701,-95.2631505,'4450 County Road 1707','TX','lind-pablo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-14T20:39:47.919Z','Twitter','Nyasia Jakubowski','Portland','1990-11-24',45.53608759999999,97213,'52f58869-5ad0-4228-9607-ec05bec353aa',702,-122.6070854,'1823 Northeast 55th Avenue','OR','jakubowski.nyasia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-12T00:31:00.309Z','Facebook','Lilliana Parker','Roulette','1966-10-28',41.8130925,16746,'a4d90475-0366-4e23-ad52-da6328036703',703,-78.1391026,'187 Atkins Road','PA','parker-lilliana@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-27T20:17:15.100Z','Affiliate','Stanley Stanton','Goliad','1975-08-30',28.7773258,77963,'8477361e-08ac-4dfd-a49c-8393b1d0736e',704,-97.38853019999999,'7705-8103 U.S. 77 Alternate','TX','stanton.stanley@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-10T22:03:59.536Z','Google','Andres Kessler','Mayfield','1981-03-10',36.798081,42066,'e6023670-65a7-4574-b461-264b20c8fdc3',705,-88.5468652,'714 Heath Lane','KY','kessler.andres@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-19T01:49:23.162Z','Facebook','Ladarius Hyatt','Ambler','1994-10-10',67.08449519999999,99786,'4a533209-a6fa-4414-8952-77c718e3c668',706,-157.8628762,'9998 Ambler Avenue','AK','ladarius-hyatt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-27T01:27:12.970Z','Google','Thad Kuvalis','Kelseyville','1996-08-24',38.8718307,95451,'42af8bb6-382a-4aae-af5a-5041cf8db24d',707,-122.7625342,'7947-7949 Harrington Flat Road','CA','kuvalis-thad@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-17T03:36:02.160Z','Facebook','Davin Jewess','Williams','1958-07-29',35.6170622,86046,'1152fbe2-4e5a-429a-8594-d20650ac36a3',708,-112.2642372,'2779 Sunaire Avenue','AZ','jewess-davin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-05T18:46:27.868Z','Organic','Erick O''Keefe','Oxbow','1987-12-23',44.972463,97840,'a947c1f5-bc3c-4660-9c0f-72aa10b6e772',709,-116.8597028,'44600 Brownlee-Oxbow Highway','OR','erick.keefe.o@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-02T10:04:08.263Z','Facebook','Kali Hodkiewicz','Chuckey','1973-07-20',36.1922535,37641,'9aaa9dfb-4b14-492b-9cd0-f4e864492515',710,-82.6589703,'2662 Sand Bar Road','TN','kali-hodkiewicz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-12T11:11:44.418Z','Google','Ciara Green','Brazil','1967-04-01',39.5195547,47834,'232a7332-965e-41b9-822c-dd7ae4851f04',711,-87.1212157,'515-521 South Lambert Street','IN','ciara.green@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-10T11:23:48.075Z','Organic','Dalton Renner','Warrensville Heights','1979-11-23',41.44949889999999,44122,'a20d5f27-d8d8-470f-b7ae-1d84aa8d1b47',712,-81.5390384,'19916 Harvard Avenue','OH','renner-dalton@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-30T20:51:43.793Z','Google','Waldo Bartell','Mead','1979-08-11',47.789402,99021,'77715129-f480-4b43-b277-a33fd20b3d02',713,-117.27539,'9613 East Mount Spokane Park Drive','WA','bartell.waldo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-30T08:05:05.026Z','Google','Dakota Mante','Rexburg','1994-03-25',43.7183199,83440,'38cbdaa2-6a2f-4b83-a80d-fa25db837eab',714,-111.7442182,'7864-7870 South 1600 East','ID','mante-dakota@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-05T15:27:38.476Z','Twitter','Lafayette Kertzmann','Keenesburg','1981-10-06',40.1236675,80643,'5e42b188-6711-4dff-9f27-41cbfbb0b240',715,-104.5281548,'8505 County Road 57','CO','lafayette-kertzmann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-26T17:38:42.868Z','Facebook','Ben Roob','Kilgore','1965-06-15',42.8495931,69216,'2f2e5fc3-36a7-4030-a537-eea32a7a88a6',716,-100.9546814,'37592 South Kilgore Road','NE','roob-ben@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-16T19:55:21.265Z','Facebook','Sarai Deckow','Clayton','1993-11-18',39.690456,46118,'6bc8e7e1-5e1a-4304-bb51-b1acba2a85b2',717,-86.58319499999999,'3438 West County Road 500 South','IN','sarai.deckow@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-29T11:45:50.343Z','Google','Deon Gerlach','Lakota','1991-11-08',48.107966,58344,'b2210099-27dc-4267-bacb-2ad6f464156c',718,-98.453614,'10001-10199 48th Street Northeast','ND','deon.gerlach@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-18T01:18:42.865Z','Twitter','Odell McCullough','Two Harbors','1974-01-02',47.098346,55616,'e4dc790d-9433-457c-8503-7818baa9ae25',719,-91.817061,'871 Stanley Road','MN','mccullough.odell@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-17T13:16:47.443Z','Google','German Ankunding','Flanagan','1994-11-09',40.910567,61740,'88fe77e7-571d-45fc-887b-1e69d44a1109',720,-88.8735779,'19000-19998 North 300 East Road','IL','german.ankunding@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-20T06:07:24.577Z','Google','Charlene Bayer','Dallas','1976-12-06',43.4110729,57529,'b795f14a-1ed6-411f-acf9-d2549eaf0ac2',721,-99.56864089999999,'33049 275th Street','SD','charlene-bayer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-30T01:07:01.559Z','Facebook','Leila Considine','Harrison','1992-07-09',42.63015499999999,69346,'7373768b-1762-48c3-b38e-31573f3ae3b4',722,-103.736465,'562 Andrews Road','NE','leila-considine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-05T05:54:34.319Z','Organic','Shany Turcotte','Imlay','1991-11-01',40.5366017,89418,'fb8abe67-844e-4369-a377-23df5183a49b',723,-118.0511495,'12490 Nevada 400','NV','turcotte.shany@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-27T09:42:59.128Z','Organic','Vito Haag','Andrews','1978-07-06',33.4474665,29510,'46989b6b-4382-4915-9a63-bac604117550',724,-79.637743,'1468-1814 County Road S-45-122','SC','vito-haag@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-29T18:25:24.297Z','Facebook','Sedrick Harvey','Big Timber','1973-04-08',46.074001,59011,'f863310d-d831-4444-8788-d1d6ca039a0c',725,-110.0419413,'617 Wheeler Creek Road','MT','harvey-sedrick@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-01T12:38:38.273Z','Affiliate','Abelardo Weissnat','Albany','1980-05-03',44.6353768,97321,'e8e329ad-e37b-4d26-8a5d-cfe4b1e9ac09',726,-123.1255399,'31401-31799 Bryant Way Southwest','OR','abelardo.weissnat@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-21T03:54:11.875Z','Facebook','Cecelia Rolfson','Cottonwood Falls','1999-01-03',38.334902,66845,'ba859114-fc00-4b68-a019-75004f404d95',727,-96.54696059999999,'1871 Buck Creek Road','KS','rolfson-cecelia@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-21T20:22:44.084Z','Facebook','Burnice Daugherty','West End','1999-10-11',35.2986389,27376,'a5c5e517-5040-4aa4-8c00-54b3edc090d6',728,-79.54832239999999,'4957-4963 Dowd Road','NC','daugherty-burnice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-16T20:39:08.495Z','Affiliate','Maurice Rippin','Bird Island','1990-02-22',44.63497,55310,'3e0bd368-504d-4c59-9760-eaa317a38d29',729,-94.87430189999999,'72000-72999 400th Street','MN','rippin.maurice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-09T19:39:12.907Z','Facebook','Arielle Mitchell','Wausau','1960-01-26',45.0184419,54403,'b82c1e72-78f8-4d90-a825-757f9d257f25',730,-89.45760779999999,'7494 Sunrise Road','WI','mitchell-arielle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-10T01:55:29.494Z','Twitter','Eldon Herman','Fowler','1997-06-23',38.0828436,81039,'64a444f8-36f0-4852-8b8f-53d23343311d',731,-104.138255,'59001-62733 Huerfano Meter Station Road','CO','eldon.herman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-10T04:20:50.832Z','Affiliate','Barry McKenzie','Hayti','1993-12-19',44.7461575,57241,'18fbce8d-bcc4-44f5-811d-1c88aec7619d',732,-97.22435259999999,'44915-44965 182nd Street','SD','barry.mckenzie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-01T10:02:03.315Z','Google','Jerry Stracke','Columbia','1990-06-02',38.84375530000001,65201,'d59fa15c-566c-48ca-ac35-f2cd9dc61d57',733,-92.2123464,'9301-9351 South Rangeline Road','MO','jerry.stracke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-09T16:28:15.333Z','Twitter','Weldon McLaughlin','Creswell','1968-01-27',43.878749,97426,'1410a1d6-d40d-4199-91d0-5694c84a30a1',734,-123.004424,'81785 Sears Road','OR','weldon.mclaughlin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-24T22:33:54.302Z','Affiliate','Taryn Klocko','Porterville','1959-05-09',36.067496,93257,'f62c1819-fc13-47c9-9106-e3bb735d64df',735,-118.962811,'10 Olive Drive','CA','klocko-taryn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-06T10:05:55.021Z','Organic','Valerie Davis','Pembroke','1959-06-15',37.353904,24136,'0df48b54-f32b-4389-8ded-58d76e6f169c',736,-80.63106499999999,'540 Big Branch Hollow Road','VA','davis-valerie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-13T01:00:37.087Z','Organic','Hipolito Kulas','Jay','1984-02-22',44.5013568,04239,'3df61222-2f5c-41f4-8dbd-a2d638b7ff0e',737,-70.190512,'212 Hyde Road','ME','kulas-hipolito@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-15T02:43:07.701Z','Facebook','Bonita Hoppe','Kirkman','1970-05-25',41.7447019,51447,'c458450e-943c-4835-90cd-0e16f35e00e7',738,-95.230696,'1648 Redwood Road','IA','bonita-hoppe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-17T21:51:11.125Z','Twitter','Catalina Smith','Troy','1959-02-01',35.4066559,27371,'5cc38b59-d32e-4ad0-8bd6-e7e9c0f9ce38',739,-79.91025669999999,'R Love Joy Road','NC','smith.catalina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-06T00:54:37.795Z','Affiliate','Aida Cruickshank','Baring','1965-12-12',40.24334390000001,63531,'b771b0d6-1d5c-4a37-b7d1-21e5ff578086',740,-92.29689409999999,'49055 Aberdeen Avenue','MO','aida.cruickshank@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-09T03:16:05.305Z','Affiliate','Marcelo Ferry','Anaktuvuk Pass','1966-05-16',68.1407585,99721,'2219eb57-9c7b-4e62-b785-0e169a051502',741,-151.7337144,'1104 Summer Street','AK','marcelo-ferry@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-11T13:48:52.683Z','Twitter','Garret Kulas','Black River','1961-02-27',44.75825709999999,48721,'4137b739-8be3-4b8a-828d-2dd3a5a42760',742,-83.34710319999999,'4337 Sucker Creek Road','MI','garret-kulas@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-24T05:42:33.696Z','Affiliate','Stacy Considine','Talkeetna','1980-01-09',62.21401100000001,99676,'c0970902-403a-43b9-8463-93c62168fca3',743,-149.953529,'34200 South Answer Creek Road','AK','stacy-considine@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-04T04:51:20.090Z','Google','Reid Reilly','Indian Lake','1981-11-17',43.8345894,12812,'3535d17e-1599-4797-98e3-c0e02b8c247a',744,-74.5497638,'104 Carry Lane','NY','reid-reilly@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-08T20:39:37.336Z','Affiliate','Kurtis Parker','Grand View','1991-01-25',42.9445834,83624,'b0a09665-6a0d-4eef-b30c-554ec15f1c92',745,-116.06033,'37714 Owyhee Highway','ID','kurtis.parker@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-27T17:34:34.187Z','Twitter','Andre Stamm','New Auburn','1960-01-06',45.270075,54757,'710921e8-79c6-4bff-bdc4-499c89ffedb9',746,-91.58520299999999,'444 28th Street','WI','andre.stamm@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T16:58:31.977Z','Google','Lexi Adams','Bullard','1999-04-26',32.139047,75757,'2c01b876-4d00-4ffd-a85b-28afdd15fa42',747,-95.380782,'23600 County Road 181','TX','lexi.adams@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-08T02:23:58.772Z','Organic','Eden Jenkins','Blacksburg','1962-02-05',37.2135641,24060,'0f864bfb-866c-40e5-b9f4-f44e9afca38f',748,-80.5379223,'4422-4657 Mount Zion Road','VA','jenkins.eden@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-29T22:15:08.608Z','Affiliate','Melissa Cormier','Anderson','1962-08-25',36.6163612,64831,'8fbd4273-8ff2-4819-b636-49b719fa97c2',749,-94.5197949,'656 Coyote Lane','MO','melissa.cormier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-22T13:16:35.065Z','Affiliate','Jermain Kohler','Thomasville','1979-01-08',30.9334562,31757,'9bbce491-1edd-442f-85b2-20005811c589',750,-83.8215372,'1434 Patten Coolidge Road','GA','kohler.jermain@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-08T04:33:34.445Z','Affiliate','Eli Haag','Ashland','1973-01-21',45.4285494,59003,'43e478ef-c758-4df0-9b0c-f40952393a07',751,-106.0600979,'56 10 Mile Road','MT','eli.haag@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-19T15:29:39.123Z','Affiliate','Vivianne Roob','Rhine','1963-03-16',32.0184677,31077,'d70d0e05-3e1c-4791-8a17-7b9237f1f93e',752,-83.23612779999999,'371 Ball-Adams Road','GA','vivianne-roob@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-02T09:00:13.599Z','Google','Rebekah Lueilwitz','Andrews','1959-07-11',35.22150310000001,28901,'fc88a3fa-751a-419f-a627-b9270d08b3fd',753,-83.87637219999999,'870 Morris Creek Road','NC','lueilwitz-rebekah@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-07T08:44:51.447Z','Google','Ellsworth Watsica','Nathrop','1958-05-31',38.7088689,81236,'182bcca5-3d68-4bca-93e6-00f5cd097afa',754,-106.2974023,'21636-23044 Chalk Creek Drive','CO','watsica-ellsworth@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-12T10:52:58.423Z','Twitter','Cedrick Kling','Heart Butte','1987-09-26',48.2479813,59448,'e76f47fb-5fdb-47db-8ead-2b4960b1f3b0',755,-112.7933473,'2870 Heart Butte Road','MT','cedrick.kling@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-20T12:37:33.690Z','Twitter','Kennedi Waters','Staples','1966-08-06',46.2673028,56479,'7e5dda98-6d23-42ad-b275-b82d90acbdfc',756,-94.83111799999999,'25651 440th Street','MN','waters.kennedi@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-04T07:39:16.247Z','Organic','Teresa Hodkiewicz','Bond','1995-12-03',39.8195973,80423,'f60c18e1-46ec-41ac-832b-a74d5af8c334',757,-106.6488937,'10856-10872 Colorado 131','CO','teresa-hodkiewicz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-22T03:04:51.254Z','Organic','Dolly Bernhard','Marianna','1997-08-13',34.6729655,72360,'a1239362-36f2-40f9-bcc8-c0563cf421ff',758,-90.9358108,'1-1245 Lee Road 146','AR','bernhard-dolly@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-09T23:14:33.130Z','Organic','Nicole Walker','Hubbardton','1964-05-04',43.73931109999999,05733,'b9deb67d-9f05-417d-8bde-9fb9afce8bf6',759,-73.2099542,'1430 Camp Road','VT','walker-nicole@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-03T15:39:46.771Z','Twitter','Louie Willms','Cody','1966-10-07',44.4667235,82414,'87f7beed-2391-4985-aed5-5e29509c54b6',760,-109.646441,'2045-2099 North Fork Highway','WY','willms.louie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-14T03:09:10.387Z','Affiliate','Newton Klocko','Mize','1967-07-02',31.85133149999999,39116,'583cab46-ffae-4f29-9596-ca4fae2939b8',761,-89.56420399999999,'8945 Mississippi 35','MS','klocko.newton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-18T18:12:28.536Z','Twitter','Marc Schmitt','Delta Junction','1958-05-16',64.11335319999999,99737,'79738aef-1cad-4caa-b00d-61cadc7695b3',762,-145.7153202,'4-6 Berm Road','AK','schmitt-marc@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-08T22:51:41.132Z','Twitter','Ezekiel McLaughlin','Waldoboro','1972-02-21',44.08427500000001,04572,'aab9e1b9-2d87-495e-afb9-dd0f34876c99',763,-69.424667,'993 Bremen Road','ME','mclaughlin.ezekiel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-20T17:25:21.203Z','Affiliate','Ike Keebler','Clarinda','1994-06-27',40.8418528,51632,'4d70a938-93a7-4b51-b302-984d5e175d33',764,-95.0637706,'2684 140 Street','IA','keebler.ike@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-23T17:30:50.880Z','Google','Vicente Kessler','West Bloomfield Township','1980-09-15',42.5752479,48323,'df98d95d-f63d-40e2-ad90-8bd30218a8a8',765,-83.4225818,'4144-4174 Cedar Avenue','MI','vicente-kessler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-17T09:08:25.065Z','Organic','Zula Boehm','Iola','1983-02-09',37.9000567,66749,'58c36ebd-75db-4978-b400-a87427de44ea',766,-95.4400805,'1100-1140 1100th Street','KS','zula.boehm@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-19T01:18:23.854Z','Organic','Clementina Johnston','Ontario','1961-08-25',44.211073,97914,'825c4eed-6787-4dce-95d3-2e1d4e2e9f96',767,-116.980414,'5370 Oregon 201','OR','johnston.clementina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-08T21:44:31.164Z','Facebook','Schuyler Hills','Wyalusing','1989-05-20',41.69714279999999,18853,'186ad3a2-6896-4df2-9726-533f0be8c841',768,-76.2646924,'1439 Old Stage Coach Road','PA','hills-schuyler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-20T13:17:07.025Z','Affiliate','Maverick Roob','Little America','1973-03-09',41.517833,82929,'439aed3d-76f0-4118-933a-c67aeaf45cf1',769,-109.7861365,'169-303 Tenneco Road','WY','maverick-roob@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-18T04:50:14.962Z','Twitter','Jay Bruen','Richland','1993-07-14',44.767292,97870,'f0875193-91ea-4c86-89e7-11f412fa1c59',770,-117.2465541,'41643-41645 Stanciu Road','OR','jay-bruen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-30T12:38:00.091Z','Affiliate','Kevon Morar','Drumright','1961-05-25',35.9428891,74030,'f8e96971-6192-48e5-b8a8-3a5e98a69121',771,-96.5972493,'11574 South Highway 16','OK','kevon.morar@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-22T00:26:37.489Z','Twitter','Santa Harvey','Rathdrum','1973-11-12',47.830185,83858,'3127a5ea-e28b-4313-bb6e-3fd562230ae5',772,-116.902588,'17465 North Reservoir Road','ID','santa.harvey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-20T23:49:38.951Z','Affiliate','Willis Kuvalis','Dos Palos','1987-07-22',37.0261329,93620,'e92eb741-d2c6-4d21-bc18-393d0bf6aa37',773,-120.7084354,'17767-18027 Britto Road','CA','kuvalis-willis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-15T19:40:48.087Z','Affiliate','Celestino Bernhard','Richardton','2000-02-19',46.7897253,58652,'4707ae6e-e199-4eab-91c8-b625e0f27b1c',774,-102.3069165,'8797-8799 43rd Street Southwest','ND','celestino-bernhard@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-28T01:00:59.672Z','Organic','Osvaldo Steuber','Martinsville','1974-02-11',39.4218773,62442,'fe22880c-751f-448b-8246-83ec54988175',775,-87.8772173,'18895 North Bluegrass Road','IL','steuber.osvaldo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-10T19:55:02.674Z','Organic','Clemens Hansen','Delbarton','1962-08-20',37.7548839,25670,'b0590c83-9db6-4d48-98cc-27455fbcdd8e',776,-82.11584700000002,'1561 Holly Ridge','WV','clemens.hansen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-06T15:25:14.314Z','Organic','Mozell Frami','Forestport','1968-07-15',43.6115287,13338,'d5be15e5-07b8-4b8a-96a1-10781e20f172',777,-75.10066379999999,'133 New York 28','NY','mozell.frami@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-03T13:14:23.725Z','Affiliate','Lavina Schultz','Newfield','1992-06-23',39.5495735,08344,'332a9330-bc29-48b1-8277-c3d801827640',778,-74.9842683,'977 Harding Highway','NJ','schultz.lavina@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-30T14:47:40.159Z','Google','Carrie Heidenreich','Wauneta','1969-03-07',40.4986933,69045,'46eb27d9-6a8a-4e68-a1b7-e68a448e7057',779,-101.4616215,'73606 342 Avenue','NE','heidenreich.carrie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-24T19:09:57.287Z','Affiliate','Fleta Leuschke','Chula','1996-10-24',39.88439229999999,64635,'d2eedcf3-a925-41b2-a0ca-21f7e6858342',780,-93.44229159999999,'18236 Liv 216','MO','leuschke-fleta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-04T08:43:49.099Z','Affiliate','Muriel Labadie','Zephyr','1964-10-11',31.6453016,76890,'6d15bea8-f35b-45c3-b70f-af595f40522a',781,-98.7931651,'6275 County Road 261','TX','labadie.muriel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-25T17:30:45.798Z','Facebook','Iva Waelchi','Rolla','1969-03-11',37.8124198,65401,'17a3ab80-9fa4-40fd-a13b-1f3e610c58df',782,-91.809668,'13210 County Road 7480','MO','waelchi.iva@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-04T13:46:24.087Z','Facebook','Shayne Crona','Judith Gap','1963-10-03',46.6246575,59453,'517f5367-f8eb-41ec-ad8b-de01fe35a4b2',783,-109.9853737,'1701 Lode Road','MT','crona-shayne@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-16T17:59:56.622Z','Twitter','Felton Keebler','Silas','1965-05-04',31.7721425,36919,'38fe3b91-2c8e-415a-a76c-13aaa135bfe8',784,-88.30609899999999,'4243 County Road 6','AL','felton.keebler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-02T14:28:07.621Z','Twitter','Jewell Wolf','Hawkins','1982-10-24',45.5132811,54530,'e6d47edd-29b6-4cda-a1e7-40021168e33f',785,-90.7530905,'W1521 U.S. 8','WI','wolf-jewell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-21T03:00:25.388Z','Google','Karine Mante','Brandy Station','1997-03-25',38.53201540000001,22714,'ad3b82a1-a50a-410a-a4b1-aa2c30bbe894',786,-77.9146172,'18315 Brenridge Drive','VA','karine.mante@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-26T13:17:37.922Z','Facebook','Dina Wolf','Broxton','1978-07-24',31.727264,31519,'afc645e6-04bf-47e7-abb9-6615ae5cf8d1',787,-82.86896999999999,'922 Rock Creek Road','GA','wolf.dina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-28T20:39:59.853Z','Google','Conner Windler','Aguilar','1996-07-30',37.3029865,81020,'80df15ba-f6e6-4dea-bbfa-313ac9c76cc1',788,-104.8068505,'18926-19804 County Road 42','CO','conner.windler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-16T00:07:12.005Z','Affiliate','Cierra Kuvalis','Hayes','1972-04-01',44.7078688,57537,'64472c2c-11b5-478d-a285-1e1a0258d157',789,-101.1166327,'24915-24999 Fosters Bay Road','SD','kuvalis-cierra@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-26T07:04:09.441Z','Twitter','Eudora Renner','Grantville','1960-04-20',33.1992752,30220,'cbbb8e5b-1146-457c-a8bf-01e40e2c1aa7',790,-84.7877791,'800 Gold Mine Road','GA','eudora-renner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-30T21:59:15.098Z','Organic','Amina O''Reilly','Sanford','1982-03-11',35.532079,27330,'9767f129-71f7-435f-b543-f3807af7c495',791,-78.99712,'151 Attie Lee Lane','NC','o.reilly.amina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-02T12:34:11.522Z','Facebook','Maximillia Ebert','Tunnelton','1961-12-01',39.3320421,26444,'d8c0b95e-4286-41c9-b7e3-b3f119e32a1a',792,-79.8101235,'359-433 Kanetown Road','WV','maximillia.ebert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-19T11:23:11.725Z','Twitter','Estrella Reichert','Nara Visa','1981-11-17',35.5339405,88430,'3075180b-b76d-460b-b58b-00c2413bc1e5',793,-103.0605646,'8762-8798 Quay Road C','NM','estrella.reichert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-17T20:31:46.929Z','Twitter','Elody Cormier','Sandyville','1958-06-16',38.87266899999999,25275,'311b1124-5eef-48d9-9554-c9cce6a79873',794,-81.692555,'440 Creed Road','WV','elody-cormier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-11T12:17:51.127Z','Affiliate','Vada West','Elm Creek','1959-10-18',40.7866224,68836,'0a075526-156a-49ca-b9b4-13037817ec4f',795,-99.41291869999999,'2860-3498 115th Road','NE','west-vada@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-11T08:47:41.271Z','Organic','Giovanna Tillman','Endeavor','1976-12-10',43.72863599999999,53930,'819677dc-75f7-47d4-8dac-5ad66a1deff5',796,-89.5407456,'N2496 County Road O','WI','tillman.giovanna@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-30T12:33:31.896Z','Google','Gretchen Muller','Meadville','1970-04-11',41.61609139999999,16335,'4fb1885e-bffb-4255-9681-4aaba6f9194a',797,-80.167881,'10862 Mercer Pike','PA','gretchen.muller@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-30T11:15:52.153Z','Facebook','Arden Jast','New Riegel','1988-06-24',41.0486853,44853,'89b2cd7e-1e19-47ce-9b5a-c25bf72cef8d',798,-83.2739697,'90 West Street','OH','arden.jast@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-19T08:46:12.848Z','Organic','Eudora Greenholt','Arcadia','2000-03-31',44.3047656,54612,'275afbcf-72ae-43fa-8d8d-68bc7b4bac2b',799,-91.4396951,'24455 Korpal Valley Road','WI','greenholt.eudora@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-11T12:03:55.854Z','Facebook','Ransom Murphy','Register','1987-11-20',32.3749628,30452,'a21e5fe2-cc0f-4140-8a22-04a9bb8bba9d',800,-81.91605910000001,'1121 Georgia 46','GA','murphy.ransom@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-15T20:17:25.480Z','Organic','Lavon Mante','Oakley','1971-07-18',43.190175,48649,'ab6f9a54-561d-42ec-86ba-a58a2f1adefe',801,-84.290216,'19158 West Brady Road','MI','mante-lavon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-05T09:26:52.605Z','Google','Lavada Kuhic','Easton','1968-03-24',41.2768919,06612,'b934f421-9922-4020-a52a-5ebcf033e7be',802,-73.3320092,'40 Country Club Lane','CT','lavada-kuhic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-28T03:46:56.380Z','Organic','Stewart Marks','Lorenzo','2000-04-03',33.611816,79343,'0521fb6c-f58a-44dc-997d-d8a9b1768f9e',803,-101.574374,'1212 County Road 3900','TX','stewart.marks@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-27T15:18:26.614Z','Google','Verna Davis','Iota','1998-04-06',30.40228699999999,70543,'ca0efa71-ca79-48cb-b68d-03c0c0144f5e',804,-92.4700189,'2821 Grand Coulee Road','LA','verna.davis@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-23T02:18:31.426Z','Google','Lewis Doyle','Lakeville','1981-02-01',41.5195341,46536,'83026c4a-e9ab-4bf0-ad06-89d55dcda92c',805,-86.2735781,'67000 Block Linden Road','IN','doyle-lewis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-17T14:18:16.823Z','Affiliate','Nichole Stanton','Comanche','1967-02-10',31.933357,76442,'37cc2f9f-809d-4270-a308-84f4e8fc02cb',806,-98.647925,'9151 Texas 36','TX','stanton.nichole@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-29T11:46:04.183Z','Organic','Juanita Altenwerth','Columbus','1998-07-15',45.6637316,59019,'929efa50-b5cf-4130-9471-bb49e2e6e327',807,-109.1018165,'568 Pine Crest Road','MT','juanita-altenwerth@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-06T15:22:27.081Z','Facebook','Grady Raynor','Unadilla','1992-02-28',32.2872424,31091,'6993131d-3c22-457e-9cbb-10de573726d0',808,-83.76449579999999,'1888 Busby Road','GA','grady.raynor@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-14T23:22:17.596Z','Facebook','Francesco Grant','Levering','1993-09-16',45.6368764,49755,'51377149-acc1-4f13-a8f5-4ae96c26b88b',809,-84.80468809999999,'5697-5965 East Levering Road','MI','grant-francesco@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-20T13:50:08.592Z','Facebook','Keon Dickinson','Fort Morgan','1995-09-06',40.3157351,80701,'e20bfccb-9498-4b3e-b6d9-dd1cf0c9aeb3',810,-103.7817528,'21492 County Road 19.5','CO','dickinson-keon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-18T14:12:12.741Z','Affiliate','Grant Breitenberg','Sonora','1985-11-04',30.3464967,76950,'9ed8abfb-e969-4a32-82e7-32088d61e5ad',811,-100.5766679,'4783 Scr 406','TX','breitenberg-grant@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-17T14:34:54.242Z','Twitter','Vincenza Wunsch','Camarillo','1975-02-04',34.2315341,93010,'48428515-021a-4f9b-a0f1-93b570be9b61',812,-119.0478149,'1731-1753 Edgemont Drive','CA','wunsch-vincenza@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-11T05:19:58.333Z','Affiliate','Roman Walker','Parkin','1980-12-20',35.320345,72373,'2449a288-9163-47e1-893d-2da3836322ad',813,-90.586955,'291 County Road 428','AR','walker-roman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-17T23:31:21.661Z','Facebook','Miguel McGlynn','Grafton','1981-11-09',42.2477235,01536,'ab218488-7520-437b-9480-ec32c7290d4b',814,-71.67822749999999,'201 Westboro Road','MA','miguel.mcglynn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-15T19:29:35.025Z','Organic','Aniya Langosh','Anaktuvuk Pass','1973-09-17',68.1407585,99721,'55510ef1-8a5d-4918-9cf2-9684ae21eef7',815,-151.7337144,'1104 Summer Street','AK','langosh-aniya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-15T01:33:15.200Z','Facebook','Luisa Swaniawski','Le Raysville','1984-05-31',41.8741662,18829,'0dc88913-8ca4-43c2-8b50-5f5c2865782e',816,-76.21114469999999,'1047 Williams Road','PA','swaniawski-luisa@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-22T15:26:55.767Z','Affiliate','Nova Leuschke','Genesee','1966-08-01',41.977901,16923,'3569d774-dc4c-40c2-8710-74f18d069b53',817,-77.8008182,'340 Grover Hollow Road','PA','leuschke-nova@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-31T04:12:31.017Z','Organic','Eladio Parisian','Kathleen','1965-05-24',32.5075849,31047,'cd3fb4f2-8a20-42d0-b790-02579a9ce2d4',818,-83.6623834,'1938 South Houston Lake Road','GA','parisian.eladio@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-02T10:34:35.050Z','Affiliate','Jaime Hauck','Ravenden Springs','1963-11-09',36.3514451,72460,'5169150f-06c8-4aec-b922-38d252e1e82d',819,-91.216505,'510 Sassafras Trail','AR','hauck.jaime@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-16T03:29:06.190Z','Facebook','Garett Hegmann','Blairs','1980-12-14',36.7167521,24527,'525751c7-cbdb-4513-9c91-2f880e9c718e',820,-79.360768,'282-298 Kendall Road','VA','hegmann.garett@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-27T03:07:00.495Z','Affiliate','Haylie Bosco','Greenfield','1983-07-10',39.424406,45123,'9c91c312-d0fe-4bb8-b768-9e6f30d27101',821,-83.364902,'8712 Ohio 753','OH','bosco.haylie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-20T17:20:05.105Z','Affiliate','Morton Funk','Yoder','1966-02-07',38.594246,80864,'c141e086-84cf-4090-a732-b2c68830c7da',822,-104.2138278,'32801-33307 Myers Road','CO','morton.funk@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-25T11:29:47.980Z','Twitter','Pattie Gutkowski','Talmage','1987-07-09',40.53627960000001,68448,'3587865b-3d6f-4193-994b-e313c2382907',823,-96.0678761,'1916 South 42nd Road','NE','gutkowski-pattie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-18T10:15:33.839Z','Organic','Justine Olson','Hollidaysburg','1970-03-04',40.5008015,16648,'cda74fb4-3d39-4780-ab3e-fe578758ff69',824,-78.2598843,'1150 Fieldstone Lane','PA','olson-justine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-12T11:00:49.353Z','Affiliate','Milton Baumbach','Groton','1960-10-13',45.35636909999999,57445,'fe3a6e87-1024-450c-b3cb-5eb0030a49a3',825,-98.0547479,'40822-40854 140th Street','SD','baumbach-milton@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-13T23:27:25.217Z','Organic','Jo Gusikowski','Midland','1978-11-08',31.9913681,79706,'b444687e-91df-47f7-ba35-f6553ba76183',826,-101.9196867,'8526-9194 East County Road 120','TX','jo-gusikowski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-15T15:19:07.999Z','Facebook','Idella Wehner','Gainesville','1975-08-21',33.6400715,76240,'9bdb752c-d56c-45fa-b284-eb3bbf94bfe2',827,-97.244783,'6060 U.S. 82','TX','wehner-idella@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-18T01:00:16.458Z','Google','Irma Waters','Summersville','1960-01-17',37.3464922,42782,'7916850c-6048-42e5-bbed-c6bef0057407',828,-85.59606199999999,'1625 Hudgins Highway','KY','irma.waters@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-02T03:08:42.731Z','Twitter','Elva Herman','Cosmos','1987-02-16',44.8919432,56228,'0a779ae7-fe99-4edb-b99d-e735730f09c3',829,-94.599375,'58232-58838 County Saint Aid Highway 12','MN','elva-herman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-16T11:25:00.495Z','Organic','Joshuah Gleichner','Sarles','1969-08-16',48.8773831,58372,'7703ab7d-cc07-4878-9b35-16858262742d',830,-99.122272,'7220-7256 101st Street Northeast','ND','gleichner-joshuah@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-27T23:43:04.655Z','Affiliate','Marques Koch','Altheimer','1976-04-16',34.20518,72004,'34958185-e190-44a8-afe8-b34c9bc741f3',831,-91.688007,'7620 Swan Lake Road','AR','koch.marques@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-09T14:28:00.604Z','Affiliate','Norberto Dach','Garrison','1964-11-09',36.862908,65657,'679e3e78-3c1a-4aa5-86a8-f717c5abf00e',832,-93.01798409999999,'13125 Missouri 125','MO','norberto.dach@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-16T19:36:11.369Z','Affiliate','Paxton Fay','Brainerd','1959-07-15',46.3151618,56401,'a253522f-ee3d-46ae-b72e-6d4d17fa69b2',833,-93.86941999999999,'25000-25420 Emstad Road','MN','paxton-fay@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-06T03:47:22.456Z','Twitter','Haleigh Bayer','Terry','1985-10-18',46.9479699,59349,'95707032-78a6-48ef-9764-602808e4442d',834,-105.66358,'582 Bowgun Road','MT','haleigh-bayer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-28T04:12:02.422Z','Organic','Gloria Conn','Cornell','1963-12-17',45.196964,54732,'47c3f65c-9e9e-4ee5-ba22-3e9783240588',835,-91.28798,'24378 County Highway East','WI','conn-gloria@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-05T11:13:30.200Z','Twitter','Janet Stiedemann','Petersville','1982-07-24',62.457533,99688,'6e5d63ab-aea6-45e4-9efd-a80a84b7d549',836,-151.0304531,'10086 Cache Creek Trail','AK','stiedemann-janet@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-06T01:52:47.292Z','Facebook','Bonita King','Guffey','1974-02-08',38.7511194,80820,'9de337a0-aabf-4c78-9b18-9db6f0d9af29',837,-105.5306814,'845 County Road 102','CO','bonita-king@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-18T04:11:35.772Z','Organic','Kristina Little','Oxford','1996-06-15',40.54277860000001,47971,'b53cf9e4-9670-4a2d-b53f-dd2c86890e95',838,-87.213391,'4498 South 600 East','IN','kristina.little@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-08T21:21:51.931Z','Google','Emelia Tromp','Bedrock','1973-01-17',38.369965,81411,'5e2d7cdf-b01d-42d7-ad62-cf1d23797a33',839,-108.918405,'8255 V Road','CO','tromp.emelia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-20T03:06:18.601Z','Organic','Eusebio Eichmann','Snohomish','1968-07-07',48.032514,98290,'ff002bfe-8aa7-4bd5-bf9c-50fbd1f587d3',840,-121.953431,'4005 203rd Avenue Northeast','WA','eichmann.eusebio@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-21T21:20:48.259Z','Affiliate','Gudrun Blanda','Cornelius','1967-10-12',45.488054,97113,'0b1a970b-b1bf-4748-99ce-f586b67613cc',841,-123.0048721,'31675 Southwest Tongue Lane','OR','blanda.gudrun@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-29T19:47:02.911Z','Twitter','Kieran Roob','Kenai','1986-10-17',60.736956,99611,'d627c2b4-9b9d-4d92-8107-0de0b3bb4ada',842,-151.204963,'52191 Lucille Drive','AK','kieran-roob@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-20T15:44:07.448Z','Affiliate','Zackery Kuhn','Carter','1992-07-05',47.8002663,59420,'4d6dcad9-aa5d-4d05-8e90-4946e76c7b4f',843,-110.9993894,'2111 Davis School Road','MT','zackery.kuhn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-18T17:15:05.206Z','Twitter','Vida Crist','LaFayette','1964-05-18',34.64605,30728,'51e198fa-e448-4d44-a01c-31ffd05f61ed',844,-85.357874,'333 Dixon Springs Road','GA','crist-vida@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-15T03:05:20.043Z','Google','Antwon Steuber','Sunflower','1991-08-09',33.5398494,38778,'15d16d92-4309-4bc0-86a6-ec69fe121f16',845,-90.5841232,'1 Fox Lane','MS','antwon.steuber@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-29T12:43:29.872Z','Facebook','Janiya Emard','Raphine','1994-08-25',37.978329,24472,'663f4619-2bf9-475d-adf3-5fbb9ec48cbe',846,-79.320073,'165 High Rock Road','VA','emard-janiya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-07T07:39:30.976Z','Organic','Margarita Tromp','Kincaid','1976-11-05',38.0566677,66039,'d6aa5c0c-1b68-4181-b6d6-131ffe669068',847,-95.1343707,'11350 Southeast Trego Road','KS','margarita-tromp@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-10T04:10:14.747Z','Facebook','Tressie Willms','Portage','1961-05-29',41.5546254,46368,'fcc5a0de-423b-4e17-b286-7a2801bc771c',848,-87.18648069999999,'3370 Reserve Drive','IN','willms-tressie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-07T14:31:53.540Z','Twitter','Misael Beier','Bainbridge','1959-06-20',30.9257828,39817,'b8e07970-d1a9-4687-88ff-68fd8fc5cddd',849,-84.5847308,'905 Moore Street','GA','beier-misael@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-25T15:38:43.992Z','Organic','Carolanne Upton','New Market','1968-12-03',34.919351,35761,'62335056-3d96-45a5-8a9e-12e32d156e39',850,-86.41667699999999,'267 Old Mountain Fork Road','AL','carolanne-upton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-02T06:22:10.305Z','Facebook','Ryann Rice','Canadian','1975-05-19',35.8908397,79014,'702ee2bb-9ecc-439d-b599-4ffc1f5365c4',851,-100.3738468,'2550 South Locust Street','TX','ryann-rice@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-01T22:40:04.859Z','Google','Leon Labadie','Highwood','1966-09-29',47.553749,59450,'e3a51356-1471-4ea6-8a5d-2a5d262f2e0a',852,-110.6752015,'2430 Schipf Lane','MT','leon-labadie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-16T17:21:41.259Z','Google','Jacinthe Howell','Minden City','1976-09-20',43.7129598,48456,'bde4b523-39c9-4b1b-b1c9-b2b3b8c5d69a',853,-82.8248114,'4849 East Atwater Road','MI','howell.jacinthe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-11T17:06:11.115Z','Twitter','Sigmund Mayer','Eufaula','1960-12-08',31.9415854,36027,'b4db5759-576e-4245-a532-751eb1bbaaec',854,-85.179998,'554-620 Alabama 6','AL','mayer.sigmund@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-20T05:47:50.635Z','Google','Keshaun Carroll','Allenwood','1974-07-14',41.1433826,17810,'9181d29a-a285-4466-9d33-1ac57c89d4e2',855,-77.0596565,'12090-12170 Pennsylvania 44','PA','keshaun-carroll@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-03T07:55:44.690Z','Affiliate','Laurie Sanford','Perrysburg','1991-03-20',42.4568889,14129,'3d317ccf-606a-439a-8a4a-b30568de685b',856,-78.98246499999999,'11586 New York 39','NY','laurie-sanford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-31T16:01:50.241Z','Google','Rudy Larkin','Caroline','1960-10-22',44.7556077,54928,'518493ed-bc2c-42f9-8a9f-2d20154c1c16',857,-88.8731391,'12469 Grant Road','WI','rudy-larkin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-30T04:45:04.346Z','Affiliate','Angie Hills','Livingston','1962-11-03',45.7572842,59047,'42e40cf2-5c87-4252-9f19-a3547c12d6bd',858,-110.2586546,'1006-1152 Convict Grade Road','MT','angie.hills@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-08T05:48:08.243Z','Google','Julio Beatty','Westfield','1972-12-22',40.643762,07090,'7c18a3d1-d1e9-4e6d-9e18-11682ed1b02e',859,-74.34552699999999,'630 Westfield Avenue','NJ','beatty.julio@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-09T19:07:51.843Z','Google','Lesly Fay','McFarland','1975-10-10',35.620295,93250,'24c13729-86ed-4ec6-a717-b18d5328f7c7',860,-119.173283,'14609 Wallace Road','CA','fay-lesly@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-06T10:39:25.166Z','Facebook','Dulce Conroy','Iuka','1964-12-03',34.767517,38852,'73251d57-c463-4f59-bd6c-17236a2c9a17',861,-88.15534679999999,'230 County Road 995','MS','conroy-dulce@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-08T01:25:44.593Z','Google','Electa Schroeder','Plains','1965-12-03',47.3610646,59859,'aac9e9d6-3ab6-4369-af3f-6a639ccbee8b',862,-114.7882854,'8431 Montana 200','MT','electa-schroeder@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-22T00:28:29.766Z','Google','Paolo Kshlerin','Noble','1958-07-08',31.6978281,71462,'6b2b57f8-2d94-4b20-89a2-666df55176d3',863,-93.7426612,'12051 Louisiana 191','LA','kshlerin-paolo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-19T15:47:31.933Z','Twitter','Gunnar Hilpert','Kissimmee','1971-01-09',28.2836389,34744,'994905ae-f985-4a88-912c-d137c377d710',864,-81.3443001,'2429 Academy Circle East','FL','hilpert.gunnar@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-15T12:26:14.718Z','Twitter','Dagmar Sawayn','Hayes Center','1989-09-14',40.5483657,69032,'5dcfcad2-dde6-451f-be29-8a2a1b726944',865,-100.8981094,'37054 Road 740a','NE','dagmar-sawayn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-06T13:35:31.478Z','Google','Maybelle Romaguera','Caliente','1990-01-31',37.6560882,89008,'1b20ff2f-6d87-4eab-8e3b-d2d2c8558e46',866,-114.4971551,'9393 U.S. 93','NV','maybelle-romaguera@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-15T15:47:15.223Z','Affiliate','Jeffery Frami','Point Lay','1979-03-26',69.74188029999999,99759,'1c584b15-6c70-4422-963c-b79a21f484f6',867,-163.0054384,'218 Qigalik Avenue','AK','jeffery.frami@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-11T21:41:01.233Z','Affiliate','Danny Oberbrunner','Salvisa','1962-05-10',37.87920620000001,40372,'938a407e-cbc3-40ca-811e-cc4ee42ca40a',868,-84.8322154,'818 McAfee Lane','KY','oberbrunner-danny@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-20T02:43:56.049Z','Google','Candace Greenholt','Italy','1987-04-03',32.2026464,76651,'826fdfd8-f5fa-426b-8855-02b40cd8e6d2',869,-96.9182896,'321 Carolyn Lane','TX','candace-greenholt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-17T06:29:06.102Z','Organic','Sigrid Denesik','Toyah','1999-11-04',31.302434,79785,'4eb63c6a-51c7-41f0-9b57-9b8cf1b89bcb',870,-103.8943771,'662-748 County Road 229','TX','denesik-sigrid@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-24T15:17:43.219Z','Organic','Luis Mitchell','Big Timber','1962-10-03',45.8477683,59011,'5a0b842e-58d5-403b-90d0-324417f0349b',871,-109.9181288,'103 Thompson Lane','MT','mitchell.luis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-26T04:28:28.590Z','Twitter','Cedrick Larkin','Westminster','1993-10-28',34.7146621,29693,'cc38f4f5-0fb0-4e5f-9f52-cd5381811466',872,-83.2255016,'251 State Road S-37-90','SC','larkin.cedrick@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-17T09:44:40.693Z','Twitter','Cory Tromp','Johnstown','1960-03-24',42.5941011,69214,'9f3e6de8-f5bb-49b0-a3a4-d136d53298fc',873,-100.1437794,'41616 U.S. 20','NE','tromp.cory@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-20T15:11:39.564Z','Organic','Johathan Ebert','New Waverly','1973-12-24',30.5429963,77358,'a9d5298b-14fb-46fe-89d7-630c56c79c19',874,-95.2862281,'4702 Texas 150','TX','johathan-ebert@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-16T05:45:19.812Z','Facebook','Trudie Muller','Port St. Lucie','1983-07-06',27.371848,34986,'a07ebdd5-3af4-4dee-82e0-d16577f23623',875,-80.3909539,'5238 Northwest Conley Drive','FL','trudie-muller@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-22T21:23:28.580Z','Google','Laurie Greenholt','Georgiana','1983-04-29',31.7543016,36033,'b95d734d-76ad-4a67-b056-dfec33088063',876,-86.8140238,'5555 West Pettibone Road','AL','laurie.greenholt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-04T13:17:31.653Z','Affiliate','Larry Paucek','Fruitvale','1980-05-01',44.8285857,83612,'e9bc0c62-85fc-4e96-9662-03a71b12bd50',877,-116.4514573,'2679 Fruitvale Glendale Road','ID','paucek-larry@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-11T06:10:45.826Z','Facebook','Chanel Rippin','Clinton','1969-07-20',36.6824561,42031,'d5e1134c-92d6-4da1-a6f1-5a59fa815b48',878,-88.8682925,'2072 Burkett Road','KY','chanel.rippin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-25T15:26:30.302Z','Twitter','Merle Moen','Orleans','1981-08-02',40.1728449,68966,'98d7f03f-3461-4dad-aab0-5c5b05739ca7',879,-99.4659295,'71375 I Road','NE','merle.moen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-18T05:00:20.979Z','Affiliate','Domingo Waters','Carthage','1963-09-30',35.3121184,28327,'1fe27648-f82b-4a41-acf6-9fa1bcb9ce35',880,-79.5780175,'192 Palomino Road','NC','waters.domingo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-07T16:25:21.890Z','Google','Kaya Schoen','Starks','1965-05-01',30.269541,70661,'89c26fe8-0763-4851-baa8-bf76f2d5e221',881,-93.648978,'812 Louisiana 109','LA','kaya.schoen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-21T11:07:03.792Z','Organic','Geovanny Schuster','Winchester','1991-12-12',38.8532138,45697,'25056e2b-640e-4931-86ab-a03f7568803f',882,-83.67866110000001,'500 Bob Moore Road','OH','schuster.geovanny@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-10T11:36:14.803Z','Facebook','Dennis McCullough','Johannesburg','1967-02-19',44.9181746,49751,'e8edcce4-b1e1-448e-ac79-978622153162',883,-84.512378,'7912 Old State Road','MI','dennis.mccullough@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-22T12:53:25.001Z','Facebook','Daron Parker','Logan','1969-05-30',41.5769338,51546,'b1998aa1-26e8-4a7d-a5d7-ac000535897f',884,-95.73876659999999,'2946 296th Street','IA','parker.daron@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T07:41:57.053Z','Facebook','Eldred Dietrich','Cedar City','1959-10-05',37.640246,84720,'93760a1b-d611-419e-818a-a9920ff3ebad',885,-113.358102,'95 South Main Street','UT','eldred.dietrich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-19T12:52:20.044Z','Twitter','Howell Price','Ukiah','1977-10-05',39.136784,95482,'5c6d563f-2107-42ba-b8a4-f6ddefeb8960',886,-123.340683,'10355 Gap Road','CA','price-howell@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-13T21:55:31.263Z','Affiliate','Osbaldo Lueilwitz','Crooked Creek','1982-07-10',61.8699257,99575,'8755e441-3851-419c-aad4-4f5df1fcb958',887,-158.1134929,'500 Airport Road','AK','lueilwitz.osbaldo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-23T06:12:37.791Z','Organic','Bud Bruen','Ostrander','1958-09-20',40.2588011,43061,'be4378c7-af2f-469b-a164-b0a52fbc3df5',888,-83.18504399999999,'4105-4155 Newhouse Road','OH','bud.bruen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-10T06:43:47.461Z','Affiliate','Thea Gottlieb','Wall Lake','1975-08-17',42.2350476,51466,'e3b803d2-0294-4fbe-803e-348a001985b7',889,-95.1320111,'3835 Lee Avenue','IA','thea.gottlieb@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-01T05:07:19.669Z','Google','Loren Weimann','Mansfield','1997-07-28',45.2974883,57460,'1042c557-8643-4491-afad-8a698e592bdf',890,-98.66082109999999,'14400-14498 377th Avenue','SD','loren-weimann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-22T08:59:55.725Z','Facebook','Destany Dietrich','Nunda','1966-11-25',44.1826097,57050,'00036f44-16bf-491d-800b-214f03f69519',891,-96.9977377,'46060 221st Street','SD','destany.dietrich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-27T03:26:28.819Z','Google','Muhammad Kub','Oneonta','1989-12-01',33.9292032,35121,'7cd63911-17fd-43c6-900a-1e8e77f91b78',892,-86.4874645,'345-457 Industrial Park Road','AL','muhammad.kub@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-12T16:05:55.638Z','Organic','Audie Hane','Savanna','1961-10-27',42.2030725,61074,'6677a428-a2ac-4df3-a47a-6ab5d08c635f',893,-90.238552,'11401-11799 Illinois 84','IL','hane.audie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-11T05:39:37.826Z','Facebook','Rosalinda Cronin','Middletown','1976-02-19',38.747285,95461,'75f6998d-8553-4747-bc52-6a648e7c620f',894,-122.436815,'25470 Guenoc Valley Road','CA','cronin-rosalinda@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-19T05:46:10.441Z','Google','Gage Stiedemann','Cottonwood','1982-09-22',45.9996513,83522,'678b1a24-7562-4c99-8dcd-764e8981999d',895,-116.4095479,'382 Moughmer Point Road','ID','stiedemann-gage@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-08T17:14:10.361Z','Affiliate','Christophe Durgan','Asheboro','1977-10-14',35.6316119,27205,'d301e23c-5095-4b43-8754-359e14182b24',896,-79.74275,'3422 Fairview Farm Road','NC','christophe-durgan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-09T03:06:25.076Z','Twitter','Mya Aufderhar','Nellysford','1976-06-14',37.8924646,22958,'fd731d74-8429-48ba-96df-5216e289aa41',897,-78.9085721,'213 Wade''s Lane','VA','aufderhar-mya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-09T05:36:14.076Z','Twitter','Cornelius Bogisich','North Bangor','1999-04-05',44.7915107,12966,'9e6400f3-790b-402f-a13c-784d02ce3e9c',898,-74.3894583,'344 County Highway 13','NY','cornelius-bogisich@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-01T07:31:35.366Z','Twitter','Samara Hegmann','Gurley','1970-07-01',41.3518155,69141,'b6af7b30-d19c-470e-9398-7b2cd9e5cbb1',899,-102.8610079,'12207-12499 Road 50','NE','samara-hegmann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-04T12:04:57.747Z','Organic','Kathryne Hoppe','New Underwood','1988-08-04',44.2673703,57761,'0bc529ed-b7ef-49ba-a1b4-2bf49abae4a8',900,-102.897699,'15898 Elk Creek Road','SD','hoppe.kathryne@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-09T03:47:35.469Z','Affiliate','Libbie Larkin','Piermont','1983-02-15',43.9761662,03779,'e793ad7a-1fda-4a5b-a840-8adf06627a9f',901,-72.0256862,'103 Moses Hill Road','NH','larkin-libbie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-07T06:43:50.175Z','Facebook','Anjali Parker','Riverside','1994-05-04',33.911886,92504,'30479d7f-2296-4028-8990-197d2016d99f',902,-117.402565,'2250 Saint Lawrence Street','CA','anjali-parker@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-18T16:28:24.245Z','Facebook','Felicity Greenfelder','Kosse','1959-03-22',31.3295569,76653,'a0c279ec-1152-4854-ae32-ddd882eb8b09',903,-96.6387872,'9009 Farm to Market Road 339','TX','felicity-greenfelder@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-23T00:43:53.903Z','Facebook','Tracey Denesik','Adrian','1962-09-30',43.6163727,56110,'819cfafd-74c1-4e07-b86d-007a771ed205',904,-96.00734779999999,'12288-12364 260th Street','MN','tracey-denesik@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-17T21:29:32.154Z','Affiliate','Delfina Orn','Jonesborough','1980-01-23',36.3584405,37659,'c6f5d063-a5fa-4ad0-93e7-f977ac64c2e7',905,-82.5067803,'456 Dean Archer Road','TN','delfina-orn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-03T17:53:03.348Z','Google','Dale Halvorson','Dixon','1970-10-19',47.306509,59831,'4c292fb0-787e-41ce-8155-cd04949d0123',906,-114.3258778,'8 Bison Hill Lane','MT','halvorson.dale@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-31T14:02:51.907Z','Google','Louie Corkery','Eldridge','1965-03-24',37.883686,65463,'012ec2e2-080b-46b3-a064-32fc02ef0516',907,-92.7506329,'37128 Norfolk Drive','MO','louie.corkery@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-04T07:28:51.595Z','Affiliate','Toby Yundt','Lander','1969-08-16',42.955365,82520,'55fb93db-82f5-4317-9c47-347aadaa1461',908,-108.876239,'12719 Us Highway 287','WY','toby.yundt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-29T10:42:34.668Z','Google','Sophie Blanda','Cunningham','1990-02-20',37.684682,67035,'41c869da-0bae-4b87-b51c-91d4d363da06',909,-98.3192297,'2715-2999 Northwest 110 Avenue','KS','sophie.blanda@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-12T06:51:50.438Z','Facebook','Jonas Von','Wendover','1973-08-06',37.119296,41775,'b74d043d-bdd4-4895-b1d9-c000b1798894',910,-83.3545248,'590 Camp Creek Road','KY','von.jonas@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-28T19:05:08.714Z','Google','Ivory McCullough','Melbourne','1961-08-03',36.0206405,72556,'944477c2-d0ce-4589-a598-b45f0f3b5d05',911,-91.7991847,'535 Arkansas 58','AR','ivory-mccullough@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-14T02:15:48.132Z','Affiliate','Rickie Vandervort','Lexington','1986-05-31',30.468483,78947,'7294889e-5a09-453d-9584-3dca10cdb8fe',912,-97.17470200000001,'112 Farm to Market Road 112','TX','vandervort.rickie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-02T13:24:30.864Z','Facebook','Destiney Ortiz','Caldwell','1990-02-23',43.619591,83607,'3ac0cf86-62b4-4895-8292-64a7af5f0bcd',913,-116.780469,'19426 Homedale Road','ID','ortiz.destiney@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-31T21:27:05.903Z','Organic','Alfonzo Casper','Clare','1997-09-21',42.00185099999999,60111,'a20f6b26-c90f-4403-bb8c-7eb25eb2fd6d',914,-88.83209800000002,'25591 Clare Road','IL','casper-alfonzo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-19T21:35:18.752Z','Organic','Dorian Predovic','Sallis','1967-12-02',32.9684008,39160,'e83cf592-42d9-47ea-8582-836b4b2dc5f3',915,-89.72839739999999,'3519 Attala Road 4163','MS','dorian.predovic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-15T21:03:49.317Z','Affiliate','Everette Kuphal','Coleharbor','1985-04-18',47.5166676,58531,'6574f3e2-ae4b-4587-a810-69b58f7d584b',916,-101.3110546,'3350-3398 7th Street Northwest','ND','kuphal.everette@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-25T19:48:53.841Z','Google','Franco Sauer','Coaldale','1997-02-28',38.3699447,81222,'eac3772f-6d36-4551-b198-90ae9b4f980c',917,-105.7543789,'15587 U.S. 50','CO','sauer-franco@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-06T23:11:17.719Z','Twitter','Margret Johnston','Ree Heights','1965-11-24',44.295008,57371,'a7fd39a5-0809-4f24-8e85-b2fe489a8721',918,-99.20564069999999,'21301-21397 349th Avenue','SD','johnston-margret@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-04T22:15:14.600Z','Organic','Oscar Olson','Moorhead','1966-03-17',46.7837226,56560,'8d347141-684a-4a26-9b65-d9fe2927b6a7',919,-96.7149852,'7001-7499 40th Street South','MN','oscar-olson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-10T11:34:08.503Z','Twitter','Wilmer Volkman','Tecumseh','1964-02-04',35.2324893,74873,'fd50d981-2f22-4f7f-a697-dc911f1c35bb',920,-97.12338249999999,'22979 Fishmarket Road','OK','volkman-wilmer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-24T22:39:36.539Z','Organic','Bryce Erdman','Rush','1964-07-06',38.71972,80833,'4f479026-4188-45a4-b654-739d9d6d4674',921,-104.0339759,'14388 County Road 2','CO','bryce-erdman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-03T12:15:09.091Z','Organic','Jeffry Grimes','Trego','1997-09-24',45.9914359,54888,'7d34ef26-7300-4faa-bf53-f9fb46b4885b',922,-91.87771029999999,'N10010 Mack Lake Road','WI','jeffry-grimes@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-26T22:07:18.355Z','Organic','Conrad King','Lordsburg','1958-06-07',32.3649355,88045,'297bfa31-9042-4eae-924d-209301f2360b',923,-108.6417541,'11 Easy Street','NM','king.conrad@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-28T16:02:19.291Z','Facebook','Agnes Braun','Lucedale','1959-02-24',30.9223605,39452,'0b233c82-be45-4e43-a908-1eca8e554977',924,-88.7025561,'150 Erkhart Lane','MS','braun-agnes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-02T19:18:20.740Z','Facebook','Archibald Lowe','Burbank','1969-10-07',34.1874207,91505,'534abe23-99bb-4b5b-bb03-913fbd18592c',925,-118.3460122,'3300 West Pacific Avenue','CA','archibald-lowe@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-15T20:16:23.615Z','Twitter','Burnice Doyle','Russell Springs','1958-05-18',37.0346632,42642,'76ca842c-8532-4b81-a3a1-0693a27e28c5',926,-84.97187,'702 Parks Ridge Road','KY','doyle.burnice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-07T20:34:07.376Z','Google','Laura Bahringer','Arthur','1987-10-02',41.56147989999999,69121,'db86e55d-f596-47af-92ca-840de8f5c1c8',927,-101.5703272,'605 Enfield Road','NE','bahringer-laura@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-19T23:14:12.837Z','Google','Madyson Vandervort','Trout','1977-08-12',31.7017361,71371,'75684c84-7471-4951-85dc-fc7d6444b821',928,-92.19979389999999,'440 McClendon Drive','LA','vandervort.madyson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-07T07:29:01.945Z','Organic','Winifred Runolfsson','Portal','2000-03-02',48.9376694,58772,'799dd11f-5eef-4fee-ad99-5caab5ae9447',929,-102.5313156,'8301-8355 105th Street Northwest','ND','runolfsson.winifred@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-27T23:06:47.991Z','Twitter','Walker Harris','Farmer City','1960-01-21',40.3198608,61842,'ead16f86-a830-4f9d-92e2-53e27ce3ecff',930,-88.603081,'2808 County Road 3425 East','IL','walker-harris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-09T00:34:22.009Z','Twitter','Maye Rath','Shaftsbury','1985-09-04',42.977263,05262,'67c3a004-8889-4c80-b35f-29036ea6184c',931,-73.2044854,'162 Lawrence Road','VT','rath-maye@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-05T11:53:00.282Z','Organic','Gaston Dicki','Three Forks','1977-03-26',46.0139827,59752,'1635d6ef-5aae-4337-93c0-1723e0972a83',932,-111.3499344,'1083-1099 Broken Creek Road','MT','dicki.gaston@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-12T12:26:01.209Z','Affiliate','Aurelio Parker','Lexington','1993-03-21',30.355476,78947,'17dea03e-8707-4ad5-a950-ed93a77a0f8a',933,-97.077581,'5631 FM 1624 Road','TX','parker-aurelio@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-08T09:39:53.297Z','Twitter','Douglas Prosacco','Salinas','1978-12-30',36.6408739,93908,'6bfee5d0-3826-4bdc-8770-d639ba853efb',934,-121.652028,'80 Hunter Lane','CA','douglas-prosacco@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-07T00:34:13.501Z','Google','Taryn Schoen','Dorr','1966-01-17',42.691568,49323,'9f307438-450c-4b61-8838-a89724bfe209',935,-85.76601199999999,'3730 22nd Street','MI','taryn-schoen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-23T22:24:26.813Z','Organic','Jailyn Hickle','Rice Lake','1959-06-29',45.5956919,54868,'60d8848c-6193-4efd-b701-6d219be9579c',936,-91.7962239,'1701-1791 27th Avenue','WI','jailyn-hickle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-19T11:00:03.067Z','Twitter','Adonis Ritchie','Saint Clairsville','1967-07-28',40.0893774,43950,'7fd851a7-05df-42c9-9a0e-858ffdf5a69f',937,-80.94992909999999,'69369 Lee Road','OH','adonis.ritchie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-02T12:24:18.581Z','Twitter','Heidi Glover','Patterson','1979-02-05',29.6556693,70392,'e5e21f69-92d6-4c48-b3ac-435a38811c6a',938,-91.3973822,'505 Joey Street','LA','heidi-glover@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-25T22:24:02.853Z','Affiliate','Coleman Beier','Gifford','1969-06-28',48.33209799999999,99131,'c22c15d6-0e65-45d9-905d-e81376dc2580',939,-118.1551135,'3126-3312 Washington 25','WA','coleman-beier@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-29T10:54:36.925Z','Affiliate','Jude Ward','Lexington','1968-04-22',39.1427815,64067,'640a4e3d-47d6-4e04-99f0-e9ea6c2c98a2',940,-93.9051427,'10844 County Farm Road','MO','ward-jude@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-14T04:47:46.562Z','Organic','Eduardo McKenzie','Wharton','1979-11-24',29.3660443,77488,'b2ffd47c-8ef9-4017-8a66-1208ac10966e',941,-96.00103399999999,'7654 County Road 121','TX','mckenzie.eduardo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-13T14:56:41.048Z','Google','Lacy Gleichner','Levelland','1974-02-02',33.7677247,79336,'91a722f5-c3a3-4d91-9caf-39b2e56fa06b',942,-102.5037282,'3600-3680 Lincoln','TX','lacy.gleichner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-08T15:44:24.002Z','Organic','Phoebe Mann','Oriental','1964-12-27',35.08888,28571,'fff4572e-ff98-4b50-ad24-f0feba9f84d9',943,-76.727883,'373 Hidden Lane','NC','mann-phoebe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-09T19:05:32.138Z','Organic','Hollis Rau','Ismay','1973-07-25',46.4195137,59336,'244808ba-4919-4a90-9781-56e119b49b39',944,-104.9640139,'10241 U.S. 12','MT','hollis.rau@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-29T04:48:52.343Z','Twitter','Madalyn Leuschke','Scottsboro','1973-05-15',34.6336409,35769,'fbf9af2f-09a5-486e-853a-5745a00d5bdf',945,-86.0458366,'2912 South Broad Street','AL','leuschke-madalyn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-02T05:01:39.736Z','Google','Jorge Bins','Grover Hill','1998-03-04',41.0274016,45849,'6d867553-7666-44f0-af0d-8e5467ef1672',946,-84.45712999999999,'3000-3914 Road 151','OH','jorge.bins@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-23T19:05:40.283Z','Twitter','Omer Powlowski','Indianola','1992-05-04',41.309987,50125,'07bb54cd-3507-4275-8a45-6cba91acf1b4',947,-93.62380399999999,'9591 Nevada Street','IA','powlowski.omer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-25T09:29:06.756Z','Organic','Anderson Schinner','Douglas','1972-07-15',42.6289348,82633,'844efa50-95ba-431a-a025-28216b95d08d',948,-105.6969712,'1981-2039 Spring Canyon Road','WY','anderson.schinner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-15T08:56:41.149Z','Google','Amanda Boehm','Hickory Grove','1964-04-02',34.971496,29717,'9ec26e6f-8b35-477c-b70b-0329925e43b8',949,-81.42881500000001,'1362 Smith Woods Lane','SC','boehm-amanda@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-12T03:24:57.392Z','Organic','Foster Gusikowski','Roaring Springs','1966-11-21',33.9081019,79256,'4eb90664-3179-4192-8257-a43c76c32ead',950,-100.9112754,'272 Farm to Market 684','TX','foster-gusikowski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-11T08:50:11.763Z','Facebook','Elsie Sanford','Elk City','1970-08-08',35.36040130000001,73644,'2d0fe351-66a9-4f7b-a62c-9dbff1266d9f',951,-99.5277927,'19471 East 1130 Road','OK','sanford.elsie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-21T15:42:10.276Z','Organic','Joel Wyman','Osceola','1986-09-14',41.039817,50213,'7deabd14-b7f0-4d38-adad-166775ff7e78',952,-93.72575499999999,'2525 Kansas Street','IA','wyman-joel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-19T10:35:20.591Z','Facebook','Rowan Weimann','Gatesville','1975-05-05',31.2833428,76528,'ca2e63da-9cbc-4d83-94b0-b84e69fd5262',953,-97.9102321,'7957-7959 County Road 142','TX','rowan-weimann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-07T07:49:06.039Z','Organic','Keyshawn Weimann','Piedmont','1987-09-06',33.9034747,36272,'9f17fd01-23b8-4164-8757-b19d756791fa',954,-85.63498729999999,'137-173 Pleasant Acres Trail','AL','weimann.keyshawn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-11T09:55:51.007Z','Affiliate','Torey Bahringer','Inyokern','1995-03-10',35.733558,93527,'5a9b1eca-979a-4c18-8229-f87ed3e3936a',955,-117.9168199,'3550 Grapevine Canyon Road','CA','bahringer-torey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-23T16:30:40.209Z','Facebook','Ruby Bernier','Hilbert','1982-07-23',44.095176,54129,'c8f70844-09af-446d-9172-5e3849a95130',956,-88.237015,'N5705 Vans Road','WI','bernier.ruby@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-22T02:09:10.259Z','Google','Marta Langworth','Hunnewell','1986-05-04',39.7562657,63443,'aa403b64-f9fc-4f9b-b433-0aaa82b83b37',957,-91.8451163,'5201-5599 County Road 203','MO','langworth-marta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-01T02:30:21.319Z','Facebook','Alisa Morissette','La Grande','1966-07-26',45.3314532,97850,'aab3c88c-b954-44d4-a5a7-11dbf9c3338a',958,-117.96356,'62000 Peach Road','OR','alisa-morissette@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-26T11:54:43.905Z','Organic','Joe Mills','Twin Falls','1971-12-11',42.4185731,83301,'57d87b92-d422-4cc6-9f11-aad8cde26d24',959,-114.5851842,'2331-2399 East 2900 North Road','ID','mills.joe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-02T08:22:40.898Z','Facebook','Angie Tremblay','Blue River','1968-11-18',43.1830975,53518,'17b0baae-7dd5-413c-8a53-b9218984368a',960,-90.59240489999999,'3444 Wisconsin 133','WI','angie.tremblay@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-08T01:27:42.493Z','Organic','Josiah Jacobs','Sacred Heart','1991-11-08',44.70918169999999,56285,'3c7dca41-614c-4b1e-b555-d2151f86e85a',961,-95.3287785,'77597 180th Street','MN','jacobs-josiah@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-02T08:28:14.770Z','Twitter','Theresa Corkery','Ames','1990-07-29',42.032549,50010,'fa98d096-ab3a-4caf-983c-10b83b4b6ba6',962,-93.557581,'4098 East 13th Street','IA','corkery.theresa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-14T07:20:11.310Z','Google','Cindy Witting','Meadowview','1986-06-17',36.805957,24361,'cb5837a6-91ef-4955-81bb-5a1f0ad9e66f',963,-81.83017,'30528 Old Saltworks Road','VA','witting-cindy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-01T14:45:22.629Z','Google','Lionel Hyatt','McAlister','1989-06-13',34.7528691,88427,'f2f8aa96-0d3a-4806-a0d0-35ca3b99aeb4',964,-104.0238617,'3401-3499 Q R Bh','NM','hyatt.lionel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-29T22:10:55.073Z','Organic','Jaren Kertzmann','Freeport','1961-05-16',42.3705256,61032,'374ade50-402c-499b-9683-f9552f67b646',965,-89.59859569999999,'715 East Cedarville Road','IL','jaren-kertzmann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-12T21:58:38.756Z','Twitter','Ford Rolfson','Wilmington','1989-12-04',44.3222966,12997,'e20b9a30-a6a5-4c0a-9e6e-18d7c55fc355',966,-73.87596239999999,'86 Nye Way','NY','rolfson-ford@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-07T20:21:12.759Z','Facebook','Zoie Kozey','Chignik','1968-12-24',56.29361249999999,99564,'d9cf76dc-eac8-4aba-ae0b-578238366f30',967,-158.4068215,'100 Old Cemetery Road','AK','kozey-zoie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-15T23:42:52.334Z','Facebook','Josiah Schimmel','Quincy','1993-04-13',30.423704,32351,'a56de802-dc64-4aff-a842-210c700eb885',968,-84.620513,'2755 Cooks Landing Road','FL','schimmel.josiah@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-11T10:07:58.570Z','Facebook','Dell Adams','Salyersville','1964-08-02',37.7368487,41465,'fdb9e93b-086d-4edb-b8a1-02b0512819c0',969,-83.0194695,'663 Rockhouse Fork Road','KY','adams-dell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-16T17:03:54.241Z','Facebook','Rosie Hagenes','Belcher','1982-05-30',37.3628592,41513,'0029537f-85ca-4c9a-a8bc-39be4a7f930d',970,-82.338476,'853 Abner Fork Road','KY','hagenes-rosie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-06T06:11:36.857Z','Twitter','Angelica Sipes','Brighton','1993-06-30',44.8127198,05846,'8d030d99-3b41-49a4-8246-80129034eb1d',971,-71.7810014,'2154 McConnell Pond Road','VT','sipes.angelica@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-22T15:37:39.527Z','Organic','Frederic Wehner','Soda Springs','1994-07-18',42.7464915,83276,'342bc898-bec2-4a84-a4c8-8ec20712c622',972,-111.3920411,'2101-2105 Slug Creek Road','ID','frederic-wehner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-18T09:54:03.422Z','Affiliate','Kyra Lynch','Reva','1985-06-15',45.5646244,57651,'7992c167-99ad-486b-95ae-e54ac74a5e62',973,-103.3030519,'15002 Sd Highway 20','SD','kyra-lynch@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-30T14:03:01.008Z','Affiliate','Freida Doyle','Ashley','1980-04-23',38.3596886,62808,'33a79178-7b47-4fad-8925-aebd2a57d85d',974,-89.16878779999999,'28000-28998 Hawaii Road','IL','freida.doyle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-01T05:17:38.297Z','Affiliate','Sidney Kling','Adams','1982-02-05',48.310733,58210,'f55dda6e-cd8f-47d5-8d2c-f48d6098582a',975,-98.1306968,'11501-11599 62nd Street Northeast','ND','sidney-kling@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-28T05:29:04.159Z','Facebook','Consuelo Vandervort','Brinkley','1976-08-26',34.8671568,72021,'bf5634be-01d0-4704-abbd-623794b0b370',976,-91.2059261,'2002 U.S. 70','AR','consuelo-vandervort@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-13T05:28:01.563Z','Twitter','Lillian Wiza','Milmine','1981-11-01',39.9103911,61855,'1e698279-d2a8-43d2-9aea-bd23099e17b8',977,-88.6523891,'877 North 400 East Road','IL','wiza.lillian@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-23T23:17:58.693Z','Google','Domenic Daugherty','Pittsburg','1965-11-18',37.4425531,66762,'7dfdb804-0408-49c3-8d59-74adc3e4cdd3',978,-94.65083899999999,'575 South 250th Street','KS','daugherty-domenic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-17T21:26:37.449Z','Google','Janie O''Kon','Trenton','1962-05-17',29.6211343,32693,'4f7f85f4-d58b-467d-97e5-ca6e1c528630',979,-82.90534199999999,'5600-5698 Southwest 80th Street','FL','kon-o-janie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-25T05:59:06.973Z','Google','Abelardo Purdy','Frazee','1968-07-04',46.6652679,56544,'c1ef492c-04cb-423c-963c-fcc2e28e0889',980,-95.74012429999999,'36087 South Rose Lake Road','MN','abelardo.purdy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-08T21:35:14.168Z','Twitter','Jarvis Brekke','Oakland','1983-11-13',43.3991513,97462,'694a3f39-f2b2-40c2-afab-c2d0bac3aba3',981,-123.4633928,'664 Hidden Meadows Lane','OR','brekke-jarvis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-24T08:30:56.822Z','Google','Maxime Stroman','Bourbonnais','1964-10-26',41.1820329,60914,'c10d2e6b-9416-432f-9f0a-d4b734e28571',982,-87.72453,'4036 North 8000 Road East','IL','stroman-maxime@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-27T10:44:22.249Z','Facebook','Caroline Kreiger','Bowling Green','1980-05-05',39.355042,63334,'46c8d5d5-bd25-4b65-8269-31bd19331647',983,-91.09216579999999,'15674 Highway Nn','MO','kreiger-caroline@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-20T21:56:17.342Z','Facebook','Vicente Schaden','Neosho','1970-08-19',36.9549673,64850,'65d7857e-9842-4bdc-9f0e-6ce281d104eb',984,-94.382311,'7963 Lime Kiln Drive','MO','vicente-schaden@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-20T20:27:41.737Z','Affiliate','Penelope Wilkinson','Hunter','1984-02-02',36.5818107,74640,'18085351-420b-40a0-a09b-973392d7733e',985,-97.6177824,'17502 East Blaine Road','OK','wilkinson-penelope@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-16T16:30:56.765Z','Affiliate','Oleta Hane','Columbus','1974-02-07',32.4850005,31901,'954d1cca-94c5-4dd6-b1cc-fa31fe26e0c5',986,-84.9905705,'2205 2nd Avenue','GA','oleta.hane@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-30T20:19:18.542Z','Facebook','Marvin Kris','Apache Junction','1990-07-19',33.4358134,85120,'ae55b6dc-2346-4e0d-9000-5518eec2026c',987,-111.5525506,'2200-2398 North Monterey Drive','AZ','marvin.kris@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-20T16:34:49.885Z','Google','Savannah Bradtke','Elfrida','1959-09-16',31.7535979,85610,'9f1e88f4-0b8e-46da-af59-3ebcb3d84eb4',988,-109.431262,'4002-4442 North Rucker Canyon Road','AZ','bradtke-savannah@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-08T13:46:03.253Z','Organic','Floyd Williamson','Princeton','1971-01-16',37.38131,24739,'5b5a5661-cb0b-4e87-99cc-636026dd3365',989,-81.027579,'114 Heart Lane','WV','floyd.williamson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-13T16:56:46.834Z','Organic','Paula Corkery','Kellyville','1961-05-22',35.913898,74039,'948c8c2a-9bfc-4e0d-bf1f-62cbbd07a530',990,-96.24968299999999,'22978 E0760 Road','OK','corkery.paula@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-31T05:45:00.427Z','Affiliate','Quincy Weber','Keenesburg','1992-02-20',40.033215,80643,'4341d1e0-eba2-4aff-bcd1-208472155cc1',991,-104.4943459,'2017 County Road 61','CO','weber.quincy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-09T00:17:03.803Z','Facebook','Cassidy Watsica','Clancy','1993-04-06',46.5015639,59634,'cf2f5ea4-ade1-4e61-8792-90c212aa87cd',992,-112.1556568,'120 North Fork Travis Creek Road','MT','cassidy-watsica@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-19T22:24:58.327Z','Google','Charles Murazik','Lyman','1974-04-05',41.9220929,69352,'3821b5e1-6faf-4df4-9e35-eaedc3d6a933',993,-104.0422838,'20101-20161 Lagoon Road','NE','charles.murazik@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-29T18:36:51.864Z','Affiliate','Nikolas Hilpert','Joplin','1961-07-14',37.0953898,64801,'29a6478f-d594-4753-9284-8f63fd98f820',994,-94.5471912,'335 North Oak Avenue','MO','nikolas-hilpert@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-28T17:34:16.370Z','Affiliate','Efrain Trantow','Bishop','1985-02-10',33.8428536,30621,'973f485c-fea7-49c8-a323-beaf1d92bd0f',995,-83.5384707,'1241 Deer Trail','GA','efrain.trantow@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-20T02:43:41.543Z','Organic','Raymundo Ruecker','Carter Lake','1976-04-17',41.28943,51510,'48e35283-b730-4b96-8d00-7fa3a550fb1e',996,-95.9103964,'1414 Holiday Drive','IA','ruecker-raymundo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-01T23:26:03.789Z','Affiliate','Savion Bogan','Plainview','1975-09-15',34.1736976,79072,'5d2250c4-8ed5-4219-a17b-aae3d1e3eee3',997,-102.0168707,'400-498 County Road 100','TX','bogan-savion@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-16T11:05:22.977Z','Google','Vallie Labadie','Valliant','1997-11-19',34.0200917,74764,'8dda0c38-1cf0-49ba-b4ef-21a3afdad2a9',998,-95.04516249999999,'1062 Kamrin Lane','OK','vallie.labadie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-19T12:01:18.418Z','Facebook','Destini Deckow','Newfane','1958-07-10',42.92598,05345,'c9791ba0-6280-494d-b87b-8aa7ba2f63ef',999,-72.679993,'51 Williams Road','VT','deckow-destini@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-05T01:56:44.480Z','Google','Craig Abshire','Bedford','1996-05-12',42.47665809999999,01730,'ee31032b-ae92-481d-b5c4-f99f64fcde9d',1000,-71.2881029,'162 Hartwell Road','MA','craig-abshire@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-21T10:09:30.929Z','Twitter','Felipe Feeney','Arthur','1959-03-28',42.4035075,51431,'fd9513ef-b523-4e5b-8ce3-7b6fb41c4157',1001,-95.322609,'2600-2698 Buchanan Avenue','IA','felipe.feeney@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-09T08:57:08.047Z','Affiliate','Martin Monahan','Woodsboro','1991-11-10',28.1689285,78393,'d72772d4-09ac-45d7-9aca-aeaef418e69d',1002,-97.3016821,'291 Boenig Road','TX','monahan.martin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-09T03:58:54.413Z','Twitter','Orion Romaguera','Jaffrey','1992-03-20',42.825532,03452,'a85a5ee2-849e-4fee-97a5-3ebc9e574379',1003,-72.11195359999999,'69 Bixler Way','NH','romaguera-orion@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-05T20:47:22.412Z','Affiliate','Alvis Emmerich','Galesburg','1990-12-08',40.8992791,61401,'d4e135b3-5168-4bae-8910-8db64066d5eb',1004,-90.3845278,'1200-1250 Knox Road 300 East','IL','alvis.emmerich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-13T03:28:56.769Z','Google','Bernardo Dietrich','College Corner','1997-03-13',39.5794897,45003,'85b774c0-92ae-4248-9fe4-96d51ab65db7',1005,-84.79183789999999,'9699 Kingrey Road','OH','dietrich-bernardo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T22:32:45.402Z','Google','Gene Kemmer','Atkinson','1985-09-19',42.2946106,68713,'84849913-4422-4128-b152-915ee293250c',1006,-99.07741209999999,'46630 Benton Road','NE','kemmer-gene@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-28T08:13:00.430Z','Google','Viva Willms','Akron','1991-08-22',41.008449,44312,'873edf01-3c74-4613-8c1d-e02da37b6b3b',1007,-81.4391969,'2261 Wilson Drive','OH','willms.viva@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-06T04:10:27.291Z','Google','Khalid Blanda','Shallowater','1987-01-09',33.7699665,79363,'c7d5a713-7353-42d9-998f-875cd546833d',1008,-102.0486106,'10302 County Road 430','TX','khalid.blanda@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-14T20:09:20.432Z','Twitter','Leonard Blick','Elk City','1994-02-14',35.4492892,73644,'22554149-1193-43c5-b0a2-161690977a93',1009,-99.4039615,'10819 North 2010 Road','OK','blick-leonard@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-22T01:19:10.336Z','Twitter','Nickolas Collins','Catawba','1966-08-25',34.7891876,29704,'4291868a-7c73-47f2-918b-f83f058673cd',1010,-80.901853,'253-265 Landsford Road','SC','collins.nickolas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-18T19:35:33.528Z','Facebook','Roberto Becker','Roscoe','1975-05-25',45.21800390000001,59071,'21017b84-520c-40bc-8901-bb35f1773407',1011,-109.636886,'1336 East Rosebud Road','MT','becker.roberto@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-09T16:04:33.730Z','Organic','Andreanne Wiza','Regan','1965-09-23',47.2702694,58477,'28f31b76-7aeb-43d2-8a01-6d585d76d972',1012,-100.6429055,'42000 93rd Street Northeast','ND','wiza-andreanne@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-02T11:12:44.944Z','Affiliate','Karen Nicolas','Jamestown','1991-07-11',46.7179037,58401,'a2d63d12-3637-422e-99d6-ef9237317b1e',1013,-98.71281859999999,'4801 83rd Avenue Southeast','ND','nicolas.karen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-18T17:48:48.911Z','Facebook','Lavern Boyle','Glencoe','1999-02-21',44.7383867,55336,'5d1b39fe-8947-440b-9f3b-536f626d3fd3',1014,-94.2279976,'11843 U.S. 212','MN','lavern.boyle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-30T02:22:41.923Z','Facebook','Benedict Schiller','Okatie','1989-07-23',32.381986,29909,'98c54088-18d2-4739-bfa3-bd4cbfab6309',1015,-80.818321,'121 Okatie Highway','SC','schiller.benedict@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-07T02:37:55.953Z','Organic','Viola Schoen','Bethel','1995-11-29',43.771336,05032,'63bb098b-2ebf-49ba-bbb6-3ea39cf8779a',1016,-72.670929,'990 Mount Hunger Road','VT','schoen.viola@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-16T12:21:51.184Z','Google','Maybelle Cummerata','Albany','1996-11-06',36.7586199,42602,'7210b5d7-5769-4b14-8b9d-57f1c1eeea1b',1017,-85.1600334,'276 State Highway 639','KY','cummerata.maybelle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-28T11:04:54.030Z','Google','Javier Strosin','Kingman','1997-02-24',35.4245949,86409,'905fbe77-343a-4de0-bcf2-1d71e9ce0fd1',1018,-114.066813,'823 West Travertine Way','AZ','javier.strosin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-12T04:54:23.923Z','Facebook','Freddy Fay','Harvey','1973-04-22',47.7894416,58341,'c177c38d-7dbb-4d86-81e1-ba1c2c9f7cf8',1019,-99.995941,'2700-2756 26th Street Northeast','ND','freddy.fay@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-03T12:44:59.008Z','Twitter','Darryl Bahringer','Hamilton','1973-03-16',39.4792955,45013,'44630948-8e86-45e6-a0ca-fb54d7ae7a1f',1020,-84.604654,'1130-1390 West Taylor School Road','OH','bahringer-darryl@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T11:44:26.016Z','Google','Ladarius Ullrich','Collinsville','1980-02-25',32.6084958,39325,'09d8566e-5ceb-47e1-a469-67554cd88033',1021,-88.8978935,'1096 Zion-Hampton Road','MS','ullrich-ladarius@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-23T06:48:19.181Z','Organic','Theodora Connelly','West Valley','1967-10-05',42.38492400000001,14171,'c42d4d11-240c-43ad-868f-aaeb5ed7a187',1022,-78.623586,'5668 Town Line Road','NY','connelly.theodora@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-15T10:46:40.716Z','Facebook','Pinkie Schulist','Harrison','1963-02-17',44.0669826,48625,'7cac6ce7-81b5-405e-8669-1ed64968f3b4',1023,-84.9218827,'3560 Hamilton Road','MI','schulist.pinkie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-23T06:31:24.573Z','Twitter','Eve Mante','Rumsey','1973-07-27',38.9333055,95679,'77152691-2bdb-465e-add7-ab261423de28',1024,-122.3335392,'1460 California 16','CA','eve.mante@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-14T15:39:55.446Z','Organic','Maye Kuhn','Marietta','1977-07-10',33.1813114,75566,'731a349d-2c90-451e-8a1f-9850b3e6612b',1025,-94.57768589999999,'724 County Road 2729','TX','kuhn-maye@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-02T07:35:33.799Z','Organic','Aiyana Bradtke','Harleyville','1970-01-19',33.1996278,29448,'04deb6da-94f8-4e94-a072-3d6e78155e19',1026,-80.44645919999999,'207 South Railroad Avenue','SC','bradtke-aiyana@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-09T17:27:31.996Z','Affiliate','Nyah Keebler','Amarillo','1981-09-30',35.2066964,79118,'896efdd6-2bf6-4442-aa33-6377e67a11bc',1027,-101.744087,'80 North Lakeside Drive','TX','nyah-keebler@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-18T08:20:00.878Z','Facebook','Trace Walker','Melrose','1995-11-17',44.1963215,54642,'996cc5ad-6398-4bd1-b5a8-34466dc8e412',1028,-91.0606095,'N3466 County Road H','WI','walker-trace@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-24T23:09:48.244Z','Organic','Paris Herzog','North Bend','1965-01-24',41.5529653,68649,'b15998ad-4403-4d7f-b3af-83b0bec68bd8',1029,-96.790846,'687 County Road North','NE','herzog.paris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-19T11:55:38.315Z','Facebook','Samir Johnson','Tipton','1984-05-12',40.257934,46072,'74290e90-2c93-4568-bb79-3fb90ee09a3a',1030,-86.02649799999999,'685 West 300 South','IN','johnson.samir@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-15T02:32:27.547Z','Affiliate','Garry Paucek','Austin','1963-01-06',30.2058241,78749,'e891a35e-0dae-4f37-8226-1e2e782491f1',1031,-97.8450228,'8102-8104 Cattle Drive','TX','garry-paucek@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-11T03:52:13.010Z','Affiliate','Lisandro Skiles','Ashby','1958-06-25',46.1292154,56309,'1a38d026-39bb-46f3-9aa1-e97487d54274',1032,-95.7333798,'35579 Rabbit Trail','MN','skiles-lisandro@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-18T13:43:10.499Z','Google','Arnaldo Nader','Hadley','1993-03-16',43.319641,12835,'5f144e66-58ed-4606-b6a6-72833e13bdfd',1033,-74.006387,'136 Hadley Hill Road','NY','nader-arnaldo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-24T22:57:33.713Z','Facebook','Dane Huel','Peyton','1976-07-15',39.1319872,80831,'d6b9f229-34bc-4c8b-b907-4edf8c96c468',1034,-104.4751631,'10245 County Road 74-82','CO','dane.huel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-10T02:05:01.046Z','Affiliate','Blake Leffler','Birmingham','1965-04-28',33.5267934,35213,'cbeb3212-6e61-410a-8197-d9c96787f9a0',1035,-86.72717759999999,'1522 Cooper Hill Road','AL','blake-leffler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-23T09:24:29.960Z','Facebook','Clarabelle Tillman','Meridian','1963-05-03',31.915528,76665,'92f06ff4-a864-4585-afae-6ceeff221a0c',1036,-97.7665016,'2202 County Road 2130','TX','tillman-clarabelle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-23T00:18:59.717Z','Facebook','Savanah Will','Commerce','1974-02-08',34.3029723,30529,'0570173d-370e-4be1-8210-9d496deed1bb',1037,-83.40866749999999,'373-605 Georgia 63','GA','will.savanah@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-27T11:48:24.287Z','Organic','Luna Nienow','Columbia','1962-08-30',37.0660571,42728,'b7a2030d-3bae-46d4-9c52-141218fba8d3',1038,-85.4978884,'3542 Weed-Keltner Road','KY','luna-nienow@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-17T07:23:24.671Z','Twitter','Jarred Koch','Marion','1975-06-25',32.7374535,36756,'998f3c9e-4c55-42c7-969f-92a737ca9ec0',1039,-87.1227475,'85 Melton Lane','AL','koch.jarred@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-02T06:32:00.925Z','Twitter','Ike Homenick','Elkton','1989-01-19',38.3851647,22827,'bcedf088-1e0f-4223-ba2d-450b167c0d4a',1040,-78.66171489999999,'3675 Captain Yancey Road','VA','homenick-ike@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-01T22:05:28.483Z','Affiliate','Geoffrey Olson','Brownfield','1989-06-12',33.1817593,79316,'997540f6-3e03-4e97-ae20-5bc80717a114',1041,-102.3888367,'1200-1298 U.S. 380','TX','geoffrey.olson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-05T16:15:44.075Z','Google','Martina Altenwerth','Ithaca','1966-06-23',42.397973,14850,'73f2eb53-1512-4668-91ca-2a1d34c9f33f',1042,-76.48916299999999,'155 Compton Road','NY','martina-altenwerth@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-27T09:13:09.728Z','Twitter','Daphnee Trantow','Harvey','1994-09-15',47.74579550000001,58341,'ad78d5a0-5410-4d78-9d4c-de96c431d142',1043,-99.7179276,'4001-4045 23rd Street Northeast','ND','trantow-daphnee@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-19T17:06:04.282Z','Google','Everett Little','Howard','1966-04-27',44.5367713,54303,'932520c7-29e4-4f12-b087-6ae7cfcb1cde',1044,-88.08122159999999,'1973-2050 Badgerland Drive','WI','little.everett@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-04T07:58:30.832Z','Twitter','Clementine Collins','Rock Rapids','1983-02-18',43.3550494,51246,'b26b95d4-ee0b-4247-889f-b24037f3c90a',1045,-96.1572429,'2043 Harrison Avenue','IA','collins.clementine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-15T08:46:32.447Z','Google','Christophe Cole','Valley Mills','1994-01-09',31.595307,76689,'d3ce5c97-8eac-4461-a5d9-d33f624c7cff',1046,-97.432699,'431 Mitchell Road','TX','cole.christophe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-02T13:51:09.959Z','Google','Andy Mills','Mineral','1998-03-17',37.93648779999999,23117,'07f41704-22e6-4ac9-bac6-48bf94b5718f',1047,-77.8726105,'8306 Jefferson Highway','VA','mills-andy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-10T13:34:03.555Z','Facebook','Eino Cronin','Marshfield','1998-04-03',37.3307973,65706,'882f1a35-c6b0-48a5-a76a-289f1917b8c6',1048,-92.9157834,'725 Woodlawn Street','MO','eino.cronin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-25T07:28:58.518Z','Organic','Audra Mante','New Market','1994-04-30',34.940116,35761,'1521cae9-4cd4-4a4d-97d6-282c0133cca9',1049,-86.3316839,'1800-1866 Upper Hurricane Creek Road','AL','mante-audra@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-26T02:19:08.062Z','Google','Florence Donnelly','Newcastle','1982-02-02',44.1185313,82701,'e2f671d1-7266-4a3c-a15a-644c3b3b1915',1050,-104.1529969,'204 Pzinski Road','WY','florence.donnelly@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-11T17:36:16.165Z','Twitter','Mason Ferry','Huntingdon','1969-11-09',35.898018,38344,'7a63b68b-9eb1-4af7-af47-d6cadc80e1d1',1051,-88.3840419,'510 Pate Road','TN','ferry.mason@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-20T18:57:09.064Z','Affiliate','Clotilde Johns','East Wenatchee','1967-09-23',47.599644,98802,'bf1ba833-d14e-4ccf-b197-10cec4dc2629',1052,-120.151576,'325 Stephanie Place','WA','clotilde-johns@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-22T03:20:14.631Z','Google','Earnestine Crona','Faith','1976-01-04',45.06441909999999,57626,'8c400efd-755b-48e5-ad43-29ca685bad69',1053,-102.7382086,'16154 Cedar Canyon Road','SD','earnestine.crona@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-13T06:11:26.052Z','Google','Dina Hand','Brownwood','1990-10-10',31.546573,76801,'fe3706ea-a8f4-40b1-a47b-6b316dd15630',1054,-99.009337,'13500 County Road 226','TX','dina-hand@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-25T08:16:22.832Z','Organic','Madisen Kunde','Dillon','1971-08-30',45.1370999,59725,'b8c07c7f-038a-4cf7-a1d7-ac900fa32b7d',1055,-112.956676,'7100 Cold Spring Creek','MT','kunde.madisen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-23T08:29:58.197Z','Google','Sydnie Schimmel','Shubuta','1982-02-18',31.8204453,39360,'7dd27dc4-a934-4c62-a188-4583eff801ae',1056,-88.8549158,'321-403 Sugar Hill Road','MS','sydnie-schimmel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-27T05:55:46.095Z','Google','Linwood Osinski','Hammond','1965-04-12',44.4201989,13646,'b46f990c-b87d-47ae-bb66-69466720429d',1057,-75.811244,'1 Rabbit Island','NY','osinski.linwood@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-31T16:05:15.122Z','Organic','Jacques Wunsch','Cathay','1983-11-30',47.6184896,58422,'65a8e564-a0dc-4b15-821d-79dbc161b52a',1058,-99.2657671,'1400-1455 60th Avenue Northeast','ND','wunsch-jacques@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-27T07:41:42.652Z','Organic','Hollis Adams','Eubank','1996-02-15',37.2894401,42567,'59909ac8-52e6-47a4-9283-4448041e8e92',1059,-84.6981654,'4840 Highway 328','KY','hollis.adams@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-21T16:45:43.407Z','Facebook','Karina Borer','Backus','1979-01-17',46.771161,56435,'1d4db5b7-bfe5-408f-b4e1-c629997ba922',1060,-94.447676,'988 32nd Avenue Southwest','MN','borer-karina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-17T05:37:58.468Z','Organic','Jessika Kutch','Lake','1993-12-21',43.7059915,48632,'efab78bb-9488-4882-a674-c13e3b75d7a6',1061,-85.0254995,'4614 North Rolland Road','MI','jessika-kutch@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-20T15:41:30.579Z','Google','Monty Lynch','Alliance','1986-03-02',42.4106353,69301,'e411771c-5a1a-4a90-be1b-3d4daa5d63dc',1062,-102.860152,'341 County Road 59','NE','lynch-monty@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-01T03:58:49.937Z','Twitter','Flo Dickens','East Windsor','1966-03-30',41.911865,06088,'b516366a-0282-4784-986d-21f11f48094e',1063,-72.57235899999999,'6 Mahoney Road','CT','flo-dickens@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-14T17:08:06.039Z','Organic','Misty Connelly','Folkston','1987-11-21',30.8575926,31537,'5c49fe5d-91a0-4b71-a4ed-8bd1ab8ba2da',1064,-82.0110196,'6017 U.S. 23','GA','connelly-misty@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-12T20:47:15.903Z','Affiliate','Jazmin Rau','Carter','1985-06-23',48.0111459,59420,'01fd5f0f-0c66-472e-8b74-b9dd4417bc28',1065,-111.0643719,'2129-2679 Beaverslide Road','MT','jazmin-rau@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-12T12:48:18.689Z','Organic','Norwood Gutmann','Tolar','1972-06-03',32.374085,76476,'9bf95791-8da5-481b-a044-3653c56c355c',1066,-97.916224,'1121 Tolar Cemetery Road','TX','gutmann.norwood@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-08T16:09:53.583Z','Affiliate','Glenda Cassin','Shohola','1970-08-01',41.45168719999999,18458,'df65fadf-1c4d-4d3b-9c2f-823b5df501ef',1067,-74.938189,'200 German Hill Road','PA','glenda-cassin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-23T21:59:58.762Z','Affiliate','Bret Quigley','Beaverdam','1959-02-23',37.933424,23015,'73115183-c88a-4b56-8692-ee89dbe6dbcb',1068,-77.692847,'17211 Tyler Station Road','VA','bret-quigley@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-01T08:42:34.643Z','Organic','Ansley Cummings','Bloomfield','1994-05-05',39.010799,47424,'75756f8a-0a12-40ce-b4d0-ec7ea2e2890e',1069,-86.80838299999999,'822 South Coalmine Road','IN','ansley.cummings@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-05T23:29:27.693Z','Twitter','Skye Heidenreich','Penn Valley','1993-08-08',39.1563599,95946,'716ccf2c-52ef-4086-8bed-36cce7b3b91b',1070,-121.1958697,'14272-14502 Oak Meadow Road','CA','skye.heidenreich@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-17T11:56:46.733Z','Twitter','Helen Crooks','Waverly','1985-11-05',32.668459,36879,'0adab283-a217-48d1-abe7-fe7328059f48',1071,-85.596316,'10551 County Road 188','AL','helen-crooks@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-04T20:28:35.082Z','Twitter','Markus Hirthe','Woodville','1981-09-29',44.986337,54028,'17f4d20f-9d8b-4d52-888a-821bd524594b',1072,-92.239795,'898 280th Street','WI','hirthe-markus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-28T11:22:12.524Z','Affiliate','Aditya Nienow','Emmons','1963-01-13',43.4996263,56029,'4e284f7f-e36a-4db2-860f-19a61c3e329a',1073,-93.4964936,'101-127 510th Street','MN','nienow.aditya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-27T11:56:52.172Z','Twitter','Joan Ortiz','Grand Junction','1985-02-14',35.0676406,38039,'d66ab065-2217-4e3d-9d92-a9392336b938',1074,-89.23785559999999,'13245 Lagrange Road','TN','ortiz.joan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-05T22:48:36.841Z','Organic','Eliezer Conroy','Ashland','1970-08-02',33.27755,36251,'249a901e-37ec-49e8-a4c8-a1ee5d972a77',1075,-85.9522191,'47450 Alabama 77','AL','eliezer-conroy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-25T01:22:52.206Z','Organic','Jaida Huels','Clyde','1962-11-25',39.5205902,66938,'ecc91fc1-cea4-4c29-b1cc-95571d516c5c',1076,-97.4111349,'2750 Oat Road','KS','huels-jaida@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-20T17:25:30.612Z','Organic','Veronica Weissnat','Jacksonville','1979-03-08',30.3817592,32219,'2c71523d-73b3-4278-9554-32704f2c708d',1077,-81.7560161,'6854 Barney Road','FL','veronica.weissnat@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-17T04:47:03.184Z','Affiliate','Keenan Ferry','Norman Park','1976-03-06',31.2096126,31771,'18a7d8c5-4261-49de-b5d7-69b557a2da7b',1078,-83.60047139999999,'800-1110 Cool Springs Ellenton Road','GA','keenan.ferry@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-27T17:17:05.986Z','Affiliate','Johanna Homenick','Burfordville','1976-12-07',37.3628348,63739,'04779785-8ec1-4620-ba65-349870d8119d',1079,-89.7859974,'569-799 Flint Lane','MO','homenick-johanna@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-28T05:21:13.679Z','Affiliate','Shawna Kilback','Carthage','1961-04-24',44.2172864,57323,'faa6ff64-77f8-4275-9fa9-4ca01c5dae9b',1080,-97.67311819999999,'21801-21853 427th Avenue','SD','shawna.kilback@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-16T08:03:59.667Z','Affiliate','Esther Douglas','Lithonia','1970-11-10',33.723889,30058,'c6d4ea24-87fb-4980-860b-1337072456cd',1081,-84.0870659,'7376 Union Grove Road','GA','esther-douglas@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-25T03:07:05.168Z','Organic','Giovanny Nicolas','Homer','1979-06-14',32.779774,71040,'2ca2c5c0-206e-4ad0-b9d4-0bcc2c6e3451',1082,-92.9706936,'1076 Featherston Road','LA','nicolas-giovanny@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-26T23:13:31.852Z','Google','Mathias Altenwerth','Fort Dodge','1980-10-29',42.494867,50501,'af908941-b687-4709-944a-108ea297e46d',1083,-94.29595499999999,'2047 Hayes Avenue','IA','mathias.altenwerth@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-03T07:11:57.016Z','Google','Tamia Larkin','Lusk','1985-08-02',43.1190903,82225,'f7fb3762-186d-4c52-be6a-f16411094ada',1084,-104.0590245,'1832 Boner Road','WY','tamia.larkin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-30T14:42:23.780Z','Twitter','Felicita Barrows','Bonner Springs','1982-11-09',39.072423,66012,'43b38ba9-f027-4f7d-baf2-6b57e7992f41',1085,-94.83926,'831 Lake Forest Drive','KS','felicita.barrows@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-03T05:22:45.459Z','Facebook','Eleanora Smith','Buffalo Junction','1984-03-03',36.597885,24529,'192eeff2-1196-420e-985f-055d7f81a412',1086,-78.63736670000002,'6693 Virginia 49','VA','smith.eleanora@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-31T18:55:51.767Z','Affiliate','Shaina Witting','Rothsay','1970-11-14',46.4311829,56579,'c8a97496-5dfa-421e-867d-47c4b5c44b30',1087,-96.3830335,'104 3rd Street Southwest','MN','shaina-witting@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-14T11:21:22.598Z','Facebook','Mertie Windler','Gibbon','1973-08-31',40.7806966,68840,'ec197716-5f24-4214-98b3-00837bf16084',1088,-98.859955,'10850 Gibbon Road','NE','mertie.windler@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-13T06:47:40.684Z','Facebook','George Wiza','West Plains','1981-04-26',36.8577857,65775,'b0fadc77-445c-4ed1-bbd8-a644fc1819a4',1089,-91.7594467,'5322 County Road 2910','MO','wiza-george@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-22T09:56:15.087Z','Twitter','Lillian Sauer','Valdez','1958-05-04',61.3830338,99686,'cba6dcc5-c90a-4cfe-8c1c-27dd2a471df9',1090,-145.2370339,'56 Richardson Highway','AK','sauer-lillian@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-28T14:34:36.404Z','Facebook','Margot Beahan','Balsam Lake','1983-12-02',45.4817989,54810,'1f102770-3b67-488b-a3fd-39d0f9a33e49',1091,-92.3051541,'1846-1898 70th Street','WI','margot-beahan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-14T01:00:17.348Z','Affiliate','Carmen Abshire','Plainfield','1967-07-23',43.5812792,03781,'9adc6345-a318-49d3-b049-1367dbf8ea2a',1092,-72.2928555,'597 Willow Brook Road','NH','abshire-carmen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-14T16:06:22.172Z','Google','Mollie Lynch','Fredericksburg','1980-01-22',30.369916,78624,'d8959407-c513-41b4-958b-c62a882d92f6',1093,-98.942877,'8216 U.S. 87','TX','mollie-lynch@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-04T10:38:10.997Z','Google','Salvador Prohaska','Kaycee','1982-06-30',43.7176676,82639,'9da5d650-76a0-422b-ba19-6ace31b2e4cb',1094,-106.5450203,'452 Sussex Road','WY','salvador.prohaska@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-22T12:50:52.038Z','Facebook','Armand Cronin','Sheldon','1961-07-18',32.584375,29941,'d7489f7a-aeff-4305-a788-a2058c2e5464',1095,-80.832729,'9 Pocotaligo Place','SC','armand.cronin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-19T13:39:37.490Z','Affiliate','Jermaine Schmeler','McColl','1962-10-25',34.6600094,29570,'9d082d65-29c4-483e-8024-f541f856a885',1096,-79.52102119999999,'701-713 State Road S-35-574','SC','jermaine-schmeler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-11T16:37:38.651Z','Affiliate','Arnoldo Hessel','Albany','1986-08-09',40.2823179,47320,'9e18475b-d269-4e4d-8688-28b3d0274f24',1097,-85.30899099999999,'6704 425 East','IN','hessel.arnoldo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-21T14:03:29.295Z','Affiliate','Pearl Bauch','Chapel Hill','1991-10-05',35.8201988,27517,'a86610da-e903-4fd3-87c8-04f88019942b',1098,-79.0349435,'3037 Jack Bennett Road','NC','pearl.bauch@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-17T06:49:32.422Z','Organic','Aidan Toy','Carthage','1979-10-12',32.0763808,75633,'f10088a7-0cde-4b60-9d82-895d2f9e05b3',1099,-94.52793040000002,'6132 Texas 315','TX','toy.aidan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-26T13:14:00.098Z','Organic','Rudy Cremin','Coats','1972-02-11',35.393351,27521,'917c658e-7bbb-4261-9f18-10c77aebed1a',1100,-78.637328,'530 Oak Valley Farm Road','NC','rudy.cremin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-11T09:42:25.687Z','Facebook','Patrick Torp','Lisbon','1996-04-21',46.4859426,58054,'30dfe868-6506-454d-a3b5-d5138809a49c',1101,-97.42375179999999,'14300-14396 64th Street Southeast','ND','torp-patrick@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-21T02:48:46.764Z','Facebook','Winona Cassin','Purcell','1992-10-19',34.970647,73080,'d13b2b9f-f1e2-46d6-b1e2-c01f997d4040',1102,-97.40248799999999,'25316 180th Street','OK','winona.cassin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-27T01:06:07.451Z','Organic','Winfield King','Sonora','1971-01-15',37.8900465,95370,'5d39b4c5-db31-45ea-b24c-647a7b02e8e7',1103,-120.3031323,'26255 Richards Ranch Road','CA','king-winfield@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-03T05:21:02.791Z','Affiliate','Roberto Armstrong','Eagleville','1968-11-09',35.7432525,37060,'bd5559d6-8248-4a29-98f4-e68b363cbba7',1104,-86.59663859999999,'805-1005 North Lane','TN','armstrong-roberto@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-13T23:25:58.305Z','Google','Brody O''Reilly','North Plains','1994-01-04',45.6515423,97133,'1abb4484-217f-4fc1-a962-3b2d13862741',1105,-123.0576768,'18717 Northwest Dairy Creek Road','OR','reilly-brody-o@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-01T12:21:56.726Z','Affiliate','Arne Kub','Atwater','1966-02-05',45.2094461,56209,'ccc7e7b5-e759-499d-ba5c-a23ef7cee2f1',1106,-94.81758029999999,'16511 Sperry Lake Road','MN','kub-arne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-08T22:44:33.138Z','Facebook','Leonora Howell','Marble Rock','1971-10-25',42.9955966,50653,'c986f70b-edcc-4bba-ad31-09c8debfdbe3',1107,-92.81076689999999,'2461-2499 Lancer Avenue','IA','leonora.howell@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-20T12:22:00.188Z','Facebook','Wyatt McDermott','Channing','1972-01-15',35.689693,79018,'ff7d411e-6472-4fe7-8057-2e105c03b17e',1108,-101.8942648,'69 Ranch Road 1913','TX','mcdermott.wyatt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-05T15:12:59.553Z','Twitter','Mohammed Powlowski','Fruit Cove','1999-06-09',30.060675,32259,'d726926b-b7c9-4d4f-a4b2-ffa200f63ff0',1109,-81.66745999999999,'2630 State Road 13','FL','powlowski-mohammed@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-27T07:54:24.140Z','Twitter','Peyton Barton','Bonne Terre','1967-03-13',37.91226,63628,'d3740605-ed8d-4091-9078-056c712c9322',1110,-90.41244999999999,'2166 Fairview Church Road','MO','peyton-barton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-16T05:09:13.508Z','Facebook','Chanel Carroll','Saint Matthews','1968-05-31',33.7797056,29135,'c0978cb8-9aa9-41eb-94ce-7268db669965',1111,-80.85222259999999,'358 Gully Horn Spring Trail','SC','carroll.chanel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-23T03:49:27.102Z','Affiliate','Breanna Strosin','New Haven','1993-05-29',38.5011246,63068,'6cd6c629-85b3-4265-97ed-242c441787f2',1112,-91.2857202,'8439 Cedar Fork Road','MO','breanna.strosin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-25T01:23:06.907Z','Google','Violet Hills','Gadsden','1983-11-28',34.086536,35904,'f4110466-ae64-4a37-8809-f63d48232922',1113,-85.95671700000001,'4931 Lay Springs Road','AL','hills-violet@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-10T10:28:59.399Z','Google','Celestino Wintheiser','Lyle','1995-09-03',43.5288653,55953,'329d38fd-3938-4362-a3b3-035e32853200',1114,-92.935665,'55501-55999 120 Street','MN','wintheiser-celestino@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-09T11:03:24.055Z','Affiliate','Gina Schneider','Parsons','1968-04-04',39.1469534,26287,'70f75d6f-30f9-4fd9-abe8-0d2c06782ddf',1115,-79.6904362,'3635 Cheat Valley Highway','WV','schneider-gina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-17T09:13:47.118Z','Organic','Jaron Hansen','Grayson','1992-10-16',32.1063539,71435,'c89236fd-e81e-4ec1-9af4-83250467af5d',1116,-92.2867517,'787-891 Busby Road','LA','jaron.hansen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-05T14:05:38.449Z','Twitter','Katharina Heathcote','Live Oak','1959-02-21',39.232502,95953,'3772d81f-26af-409f-9338-87d81bd7502a',1117,-121.6801351,'3501-3629 Clark Road','CA','katharina-heathcote@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-24T11:05:29.159Z','Organic','Marta Kuvalis','Holly','1997-04-17',42.79668,48442,'c467a8b5-d524-4fb8-9e3b-ad763fe7cec3',1118,-83.64693799999999,'16073 Fish Lake Road','MI','marta-kuvalis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-10T23:42:01.196Z','Google','Alisha Kilback','Steele','1989-04-16',46.93550270000001,58482,'7c493fcf-c33d-4c06-9e95-5259d79ad724',1119,-99.8257677,'3300-3348 30th Avenue Southeast','ND','kilback-alisha@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-12T06:52:24.600Z','Facebook','Violette Wisozk','Kingsburg','1990-08-16',36.442696,93631,'eb5a9200-3ba7-4f48-aeac-f05f9f7b0af3',1120,-119.48305,'35909 California 99','CA','violette-wisozk@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-04T08:10:18.946Z','Twitter','Marlene Cassin','Wing','1970-09-09',47.2240303,58494,'60020361-ebd8-4313-8170-148fa218c86c',1121,-100.3681224,'37000-38298 262nd Street Northeast','ND','marlene-cassin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-27T05:39:46.946Z','Facebook','Milford Douglas','High Springs','1963-04-07',29.788228,32643,'ef4ae14b-823c-429e-8e8e-be0fd71aad46',1122,-82.588786,'14517 Northwest 232 Street','FL','milford-douglas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-02T23:05:10.744Z','Organic','Creola Satterfield','Philo','1973-07-14',39.0523873,95466,'6a011b89-1ef4-4886-b91e-4765925953e5',1123,-123.4662723,'18885 Philo Greenwood Road','CA','satterfield.creola@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-23T07:00:20.156Z','Affiliate','Ryan Cormier','Miles City','1984-10-07',46.2231529,59301,'7a4ec868-8853-4c18-bee2-8cd681cc46d5',1124,-106.0468284,'1305 Moon Creek Road','MT','cormier.ryan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-17T03:33:26.324Z','Organic','Kaia Waters','Jacksboro','1968-01-05',33.3027656,76458,'4bf7730b-f32d-4d19-9509-db2bf70a35de',1125,-98.2232921,'2472 Farm to Market Road 2190','TX','kaia.waters@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-23T03:50:17.257Z','Organic','Harrison Ortiz','Rippey','1960-07-15',42.0080615,50235,'a0ade437-61b0-433e-9b3d-f01f15c2d787',1126,-94.21360109999999,'2200-2298 240th Street','IA','ortiz.harrison@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-25T08:25:36.754Z','Google','Aurelio Jacobson','Burton','1974-05-26',30.1970222,77835,'b805d735-0cc8-4940-801b-a3fd71f7ea42',1127,-96.5706678,'1265 Fm 1948 Road North','TX','jacobson.aurelio@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-30T21:02:28.989Z','Twitter','Filomena Waelchi','Lawton','1991-06-25',34.6143871,73507,'66935cfe-75da-469a-914b-510570404ea5',1128,-98.4092043,'501-547 Northwest 14th Street','OK','waelchi-filomena@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-05T21:45:18.244Z','Google','Elyssa Cronin','Rockport','1981-06-18',48.465387,98283,'334d077e-c9d6-4b85-b289-3f3c7876fd61',1129,-121.565696,'54250 Rockport Cascade Road','WA','elyssa-cronin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-16T22:09:47.493Z','Google','Gideon Fadel','Poughkeepsie','1984-12-18',41.676573,12603,'70c6336b-81b3-4d53-8d5e-92d8c6b3703b',1130,-73.828575,'805 Freedom Plains Road','NY','fadel-gideon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-15T00:11:15.556Z','Facebook','Flavio Thompson','New Prague','1997-02-14',44.4809454,56071,'cb2fcf10-6200-422e-891b-54b2cd1612e1',1131,-93.6564215,'32000-32486 195th Avenue','MN','flavio.thompson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-25T12:34:44.432Z','Affiliate','Camryn Murazik','Caldwell','1983-08-20',43.5590131,83607,'93f3c80f-481d-4fc8-9382-974ab3626054',1132,-116.7139159,'16168-16246 Lake Shore Drive','ID','murazik-camryn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-03T07:18:25.714Z','Organic','Wilfred Anderson','Madison','1992-03-14',41.79876890000001,44057,'567da8a0-4665-49ae-b0d6-d3871c4504b5',1133,-81.0127329,'7601-7699 North Ridge Road','OH','wilfred.anderson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-25T04:49:02.282Z','Organic','Lillie Wilderman','Wendell','1984-07-17',35.849231,27591,'210ae042-9e0c-4050-9e32-ca54855baa5c',1134,-78.420177,'120 Winchester Drive','NC','lillie.wilderman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-27T04:59:49.495Z','Affiliate','Gene Lueilwitz','Osakis','1989-09-09',45.9615434,56360,'86110665-b38e-452c-915a-7084f9c06a3e',1135,-95.1162006,'22762-23198 County Road 85','MN','gene-lueilwitz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-03T00:50:26.660Z','Google','Amely Wyman','Geyserville','1959-07-08',38.7638433,95441,'fba989e3-211b-44dd-a887-bf46486931b4',1136,-122.832752,'8770 Geysers Road','CA','wyman-amely@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-18T16:31:33.819Z','Google','Jamal Bayer','Tioga','1987-10-07',48.4035234,58852,'425777dd-7f3f-4c42-b532-df11309429a7',1137,-102.9192083,'10389 68th Street Northwest','ND','jamal.bayer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-08T16:11:47.144Z','Organic','Morris Gaylord','Lakeside','1993-03-14',47.9751825,59922,'3ea1d726-39ec-4f03-9a82-54fb3a66275a',1138,-114.1757164,'740 Lutheran Camp Road','MT','gaylord.morris@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-14T18:22:30.821Z','Organic','Kasey Roob','Bloomfield','1991-09-24',40.9201276,52537,'517097fa-76ad-461f-8d72-7e119264f267',1139,-92.4560922,'15164-15254 25th Street','IA','roob-kasey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-05T16:46:57.903Z','Affiliate','Curtis Morar','Deep River','1994-03-03',41.5910944,52222,'9364d4c0-ddf3-4dd6-a3f1-67de670bec61',1140,-92.3653186,'4852-4888 215th Street','IA','curtis.morar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-21T15:49:16.109Z','Organic','Onie Altenwerth','Bristol','1964-02-15',30.404479,32321,'57a0957c-7cc3-4872-af08-eaef82e7bd25',1141,-84.992762,'9893 Northwest 1st Street','FL','altenwerth.onie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-28T20:40:20.205Z','Twitter','Corbin Wiegand','Ashville','1970-05-19',40.54611269999999,16613,'e3df71cb-693c-4ecf-9020-1a8c1024e73c',1142,-78.578299,'232-486 Bottom Road','PA','corbin.wiegand@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-01T23:37:49.297Z','Organic','Triston Kuvalis','Elkhart','1989-03-15',41.6681975,46516,'435d8995-0219-4643-957f-04f3eb68bc84',1143,-85.9240149,'56901-56999 Wynridge Circle','IN','kuvalis-triston@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-21T15:26:00.524Z','Twitter','Gerald Mayert','Canyon Lake','1994-10-06',29.88653279999999,78133,'e1bfe66a-ef5a-4bf1-bfc4-908891b6673b',1144,-98.2046063,'15288-15770 Farm to Market Road 306','TX','mayert-gerald@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-16T20:41:38.936Z','Google','Deborah Boyle','Cottageville','1962-01-26',33.051018,29435,'a0d2e171-6871-4f21-9b08-ed338377fc25',1145,-80.42415299999999,'381 Cardinal Lane','SC','deborah.boyle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-09T05:33:11.868Z','Google','Hope Kassulke','Fayetteville','1960-03-31',35.91618400000001,72701,'17c3ce75-32b2-4a6b-bf63-b3dda1669ded',1146,-94.035088,'12678 South Whitehouse Road','AR','kassulke.hope@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-05T12:26:57.234Z','Organic','Nick Collier','Lanexa','1979-04-03',37.494411,23089,'69e55fde-ba5d-4078-bc3f-4c354e7c7e34',1147,-76.932346,'13901 Mountain Laurel Grove','VA','nick-collier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-21T02:09:26.420Z','Facebook','Dax Bartell','Merced','1967-08-02',37.1418162,95341,'7a82e086-94ed-45a5-8d83-20f86ade417b',1148,-120.4488007,'2331 East Roosevelt Road','CA','dax-bartell@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-16T03:03:07.679Z','Affiliate','Khalil Padberg','Pierre','1974-05-07',44.6405197,57501,'999194f7-35bd-4632-8342-f021b28eb689',1149,-100.3246272,'18959 291st Avenue','SD','padberg.khalil@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-01T10:45:50.656Z','Affiliate','Camron Homenick','Highwood','1996-07-18',47.6043511,59450,'33219981-3764-47ee-9032-237bde07a07c',1150,-110.8961427,'2086-2186 Shepherd Crossing Road','MT','camron-homenick@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-05T13:37:06.832Z','Google','Norene Cole','Tonasket','1972-04-24',48.8363749,98855,'5b5e9bcd-051a-4b2f-8564-9933bb9e50bc',1151,-119.5416849,'42 Offwhite Rock Road','WA','cole-norene@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-18T21:21:54.685Z','Organic','Erica Orn','Ezel','1959-01-27',37.8920912,41425,'624399e7-e30a-4ee8-8ace-6e035a9660ec',1152,-83.46088739999999,'210 Harrold Rose Road','KY','orn.erica@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-04T13:45:31.288Z','Affiliate','Carmela Schinner','Clarissa','1989-05-09',46.1943079,56440,'f0b2bbc4-1d5f-4397-ad80-a8edada7fb2a',1153,-94.9694342,'18280-18998 County Road 22','MN','carmela.schinner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-16T20:59:13.480Z','Twitter','Merritt Weber','Mount Pleasant','1985-02-08',33.1185029,75455,'f2c655c1-2f3b-4a35-90db-9a712599ab32',1154,-94.954814,'1B Southeast','TX','merritt.weber@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-20T23:58:38.781Z','Affiliate','Boris Gerhold','Bee Branch','1961-05-14',35.54464189999999,72013,'4202d014-3c56-4c14-a109-521f066689df',1155,-92.3177146,'1352 Clella Circle','AR','boris.gerhold@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-05T03:48:29.990Z','Google','Caleb Dare','Folsom','1958-10-18',30.5741978,70437,'cc947b52-ede4-4c0e-894d-61172c90f3b3',1156,-90.2788624,'27004 Teeney Weeney Lane','LA','dare.caleb@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-22T22:22:54.863Z','Organic','Jensen Dare','Burns','1994-01-11',43.4391224,97720,'fef5b302-a3e9-40b9-ab9a-32ced4cf9c92',1157,-118.5573503,'65053 Crane Buchanan Road','OR','dare.jensen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-16T20:58:17.722Z','Google','Muhammad Waters','Garfield','1991-07-19',45.9334388,56332,'d138abc3-8057-41c0-8a11-b643fe76e708',1158,-95.5630416,'12035-12483 39th Avenue Northwest','MN','muhammad.waters@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-26T21:06:43.860Z','Organic','Maeve Hilpert','Goldston','1969-07-11',35.5732073,27252,'a5028dbe-f715-4fdc-b8c4-7cb6d5f29480',1159,-79.3498272,'1000-1398 Roberts Chapel Road','NC','maeve.hilpert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-24T15:56:40.846Z','Affiliate','Patience Heidenreich','Bristol','1958-07-22',45.2415995,57219,'9151da57-e81e-441f-8734-d2334e35025a',1160,-97.8162801,'14786 420th Avenue','SD','heidenreich-patience@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-20T00:54:14.550Z','Affiliate','Cortney Zemlak','Valdosta','1996-07-02',30.91589999999999,31602,'6e61c144-d3c3-4026-a332-41f7d9f93be4',1161,-83.3531,'4443 Mathis Mill Road','GA','cortney.zemlak@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-07T13:27:36.998Z','Organic','Sherwood Larson','Conway Springs','1981-01-07',37.4452308,67031,'b74a1a53-c93d-4f6f-b879-55a8a1342442',1162,-97.5756004,'627 West 130th Avenue North','KS','sherwood.larson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-29T01:28:34.626Z','Organic','Otto Krajcik','Holmen','1978-02-28',43.9979139,54636,'b19a2db5-0558-4721-b4cd-444c4a386afe',1163,-91.20442670000001,'W5941 M Johnson Road','WI','otto-krajcik@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-08T19:57:24.593Z','Organic','Annetta Zulauf','Hayes Center','1972-07-24',40.6198602,69032,'c2d85208-0b2e-486f-9108-75fa6cbb0375',1164,-101.106952,'74384 Avenue 359','NE','annetta-zulauf@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-15T08:40:08.109Z','Facebook','Makayla Ondricka','Wahpeton','1998-02-11',46.4128687,58075,'f9e59c7c-2930-4e7d-b77c-3112df5ca716',1165,-96.6998875,'17701-17799 69th Street Southeast','ND','makayla.ondricka@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-28T06:39:05.097Z','Organic','Dusty Trantow','Pinola','1971-11-03',31.8095954,39149,'a42c0f5a-6146-499a-8e2b-7a3b9ec4bff4',1166,-90.04842359999999,'795-805 Shivers Road','MS','trantow.dusty@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-18T11:31:36.109Z','Twitter','Vanessa Jaskolski','Pavo','1973-06-12',31.0174011,31778,'6995f288-6f9b-4e47-92c1-fb7d1d443ebb',1167,-83.6686545,'1301 Branch Road','GA','vanessa-jaskolski@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-23T02:51:55.935Z','Facebook','Ernestine Erdman','Willow','1979-04-27',62.05103500000001,99688,'76cbc73b-933f-4c39-a9d0-07312ff5d145',1168,-150.721023,'50600 South Oilwell Road','AK','ernestine.erdman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-01T02:09:47.314Z','Affiliate','Jerrell Swaniawski','Genoa','1974-11-08',39.2767089,80818,'4e9f5bd7-465f-4350-b224-8ca2056d345f',1169,-103.4118139,'32372 County Road 3g','CO','jerrell.swaniawski@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-15T21:20:13.482Z','Twitter','Gunnar Huels','Waverly','1971-07-13',37.1011789,23890,'cfe0d63c-6c71-4442-837e-8b3e6eb4ee36',1170,-77.0112626,'6040 Carsley Road','VA','huels-gunnar@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-13T13:07:48.997Z','Google','Humberto Beer','Holderness','1974-09-28',43.699798,03245,'72f28eda-f08c-4df1-b2b1-94444aa7e625',1171,-71.5391219,'115 East Holderness Road','NH','beer.humberto@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-11T20:46:38.597Z','Organic','Camryn Wunsch','Garner','1984-01-07',43.0698422,50438,'1bc56dd8-dfc1-47b4-a289-48611cb1fcba',1172,-93.67516789999999,'2110-2198 Palm Avenue','IA','camryn.wunsch@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-16T17:14:14.857Z','Facebook','Anastacio Jaskolski','Concepcion','1983-08-22',27.2793536,78349,'58008d7c-4009-4292-83a4-9b26d7746f82',1173,-98.32633179999999,'1148-1472 County Road 238','TX','anastacio.jaskolski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-07T20:50:40.416Z','Twitter','Rosamond Wiegand','Princeton','1968-01-30',45.6421455,55371,'88ba4535-f376-4c8d-9090-15ce9999c15a',1174,-93.67648679999999,'6594-6850 130th Avenue','MN','rosamond-wiegand@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-20T02:54:57.381Z','Twitter','Aidan Jacobi','Sand Springs','1984-02-02',36.2373819,74063,'c963cacf-b708-4e06-95c1-00c63a543525',1175,-96.18286499999999,'4 Osage Pass','OK','aidan-jacobi@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-01T07:39:29.706Z','Facebook','Mylene Green','Industry','1965-04-04',40.2783021,61440,'972a575b-f555-499f-8e97-3aed8a473bcc',1176,-90.5944555,'16000-16498 County Road 00 North','IL','mylene.green@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-18T23:11:28.764Z','Google','Vincenzo Spencer','Galesville','1985-08-01',44.1457049,54630,'8e39eb6e-821f-442c-a0c0-3fc29179cfd5',1177,-91.4179048,'W23274 German Coulee Lane','WI','spencer.vincenzo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-30T19:37:36.075Z','Affiliate','Ronaldo Willms','Quarryville','1997-05-15',39.8587032,17566,'1f515497-836e-4108-9651-9d5072f16afb',1178,-76.1208754,'244 Wesley Road','PA','ronaldo.willms@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-22T00:24:05.587Z','Facebook','Stone Koelpin','Thiensville','1986-03-01',43.254214,53092,'1734a01b-94b7-4cce-8460-c30a7954a669',1179,-87.97157399999999,'4550 Highland Road','WI','koelpin-stone@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-09T02:07:13.069Z','Twitter','Fred Mueller','Valley View','1999-07-05',33.4625962,76272,'a897e223-f34e-4b24-8d4a-e2696ddb20c8',1180,-97.20268800000001,'2225 FM 2848','TX','mueller-fred@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-23T04:39:04.290Z','Facebook','Giovanni Smitham','Englewood','1976-04-20',39.906048,45322,'9db6595a-487a-4ec1-bb1a-da2427e80016',1181,-84.30404,'401 North Main Street','OH','giovanni-smitham@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-10T01:49:29.329Z','Twitter','Jean Larson','Oxford','1991-05-09',43.7038961,53952,'4383791a-8b00-4df2-8c81-02262e279858',1182,-89.6077495,'3701-3793 1st Lane','WI','jean.larson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-11T14:39:01.557Z','Facebook','Vito Eichmann','Morven','1970-03-01',34.8764255,28119,'07849777-a948-41f3-969a-c7d61584f198',1183,-79.9231124,'815 Cairo Road','NC','eichmann-vito@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-13T22:34:37.877Z','Google','Dave Lesch','Manitowish Waters','1999-01-22',46.1814928,54545,'754dbfa9-ce29-49be-96f0-9bb0ff1b67d7',1184,-89.7852925,'6945 County Road P','WI','lesch-dave@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-13T20:29:54.865Z','Organic','Coby Stiedemann','Williston','1962-04-17',48.412799,58801,'cbcf0c9a-61af-4234-b025-5039b7be52d4',1185,-103.836241,'6894 146th Avenue Northwest','ND','stiedemann.coby@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-09T19:21:39.798Z','Twitter','Marcellus Wolf','Isabella','1991-01-12',47.6064546,55607,'fb9a6415-0a5f-4ea4-a612-0faba31d2cdd',1186,-91.6451022,'601-685 US for Service Highway 15','MN','marcellus-wolf@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T05:51:49.873Z','Google','Ashtyn Orn','Standish','1985-08-09',44.0120672,48658,'363a0ffa-285f-4056-9166-4acadf2a77ac',1187,-83.8757284,'1700-1762 Wyatt Road','MI','ashtyn.orn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-16T04:42:17.520Z','Facebook','Arno Nienow','Lufkin','1992-03-19',31.36881,75901,'345d88c7-7173-4a04-8cb5-ecaeab3c7b3c',1188,-94.6864782,'9 Farm to Market 842','TX','arno.nienow@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-11T04:06:38.032Z','Google','Aniyah Bins','Bainbridge','1960-09-28',30.8445826,39819,'d4497286-63f8-43f7-99a0-5f6ed1a56bc3',1189,-84.61763049999999,'114 Pine Street','GA','bins.aniyah@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-27T00:04:57.408Z','Facebook','Adrienne Kessler','Webster','1981-06-04',43.200799,14580,'01f0a905-5c2a-46ae-8f05-27ee05018216',1190,-77.502127,'671 Strand Pond Circle','NY','adrienne.kessler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-14T23:44:39.225Z','Google','Alphonso Rodriguez','Douglas','1978-06-30',42.755688,82633,'cb6f9972-6e56-4209-a8f3-04401daeb95c',1191,-105.088047,'150 Wintermote Road','WY','alphonso.rodriguez@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-08T16:30:20.564Z','Organic','Dereck Hudson','Ashby','1964-03-07',46.1078384,56309,'d9cf18c4-57ee-435d-8513-9c9a975c5c19',1192,-95.6962695,'38045 County Highway 64','MN','hudson.dereck@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-26T11:58:45.291Z','Affiliate','Fay Thompson','Angier','1965-07-02',35.499251,27501,'529ba132-8a26-46ed-9f2d-35255baf2e44',1193,-78.6740839,'1220 Chisenhall Road','NC','thompson-fay@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-31T13:12:40.742Z','Affiliate','Phyllis Auer','Gautier','1986-05-14',30.3864414,39553,'d0f51025-b70f-4a3c-a298-1892baf37e40',1194,-88.69777719999999,'5504 Lighthouse Circle','MS','phyllis.auer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-31T13:36:39.517Z','Organic','Alessandra Feeney','Wisner','1969-03-13',42.0179096,68791,'74d2c3a4-eca4-4be0-bf7e-4a39c34cdbd2',1195,-96.80242539999999,'1213-1299 T Road','NE','alessandra.feeney@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-20T06:23:05.209Z','Google','Kitty Hessel','Warrensburg','1977-07-05',38.8145304,64093,'af25974e-0f49-4465-99d5-2a2ae7ccb065',1196,-93.7133188,'330-422 Northeast 151 Street','MO','kitty.hessel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-06T23:19:33.033Z','Google','Hanna Schaden','Jesup','1974-07-30',31.6480268,31545,'6bd8f1fa-342c-468e-a2da-4edd7fb9a91c',1197,-81.875192,'1369 Beechwood Drive','GA','hanna-schaden@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-14T04:50:28.176Z','Twitter','Harley Ziemann','Ash Grove','1983-08-24',37.2711474,65604,'5fcd4abc-5642-4e05-8343-3e43872ca0d8',1198,-93.6152909,'289-499 Lawrence 1245','MO','ziemann-harley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-01T11:10:52.762Z','Google','Kaya Satterfield','Beech Bluff','1962-03-24',35.610449,38313,'3b41a3ea-7588-4497-8a9c-f4160284fa7f',1199,-88.659165,'3864 Beech Bluff Road','TN','kaya.satterfield@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-29T03:28:28.400Z','Facebook','Vergie Rempel','Springville','1965-12-20',41.6704094,18844,'f91e9290-29b6-4447-94fc-52672426143f',1200,-75.9024223,'604 Quarry Road','PA','vergie-rempel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-26T21:35:02.842Z','Affiliate','Kaycee Keebler','Arvin','1958-05-11',35.147371,93203,'b8d36983-b38d-4923-adb8-45c4ca1dea3b',1201,-118.869354,'2909 Herring Road','CA','kaycee-keebler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-30T14:25:28.848Z','Facebook','Christine Hills','Kings Point','1991-01-07',40.8147975,11024,'efe4a91a-5ece-4c3f-8036-07daa1b03f8d',1202,-73.7218001,'448 East Shore Road','NY','hills.christine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-11T04:34:56.598Z','Google','Vella Fadel','Maple','1979-05-20',46.68863899999999,54854,'de75731a-bbbe-4bcb-b36f-714c14674bdd',1203,-91.718226,'2078 South Rudolphs Road','WI','fadel.vella@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-21T12:04:24.465Z','Google','Myrtle Bahringer','Fort Dodge','1999-07-17',42.5379342,50501,'8b3bfa30-202d-4898-bf73-8a6f8b0d2be7',1204,-94.2998509,'1700-1776 175th Street','IA','myrtle.bahringer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-10T05:42:12.492Z','Twitter','Monroe Kulas','Mayville','1986-09-20',42.236748,14757,'59e15d58-92d4-4a5d-a96b-686311c97ddd',1205,-79.576594,'8053 Hannum Road','NY','kulas-monroe@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-25T18:11:41.992Z','Google','Diamond Kuvalis','Black Hawk','1971-07-10',44.1525906,57718,'e4243d1b-fc35-4060-926f-1e14334b8cb9',1206,-103.3311907,'6700 Ridgeview Drive','SD','kuvalis-diamond@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-29T04:34:34.912Z','Google','Gage Labadie','Mauston','1958-12-11',43.7324515,53948,'d6ff9161-3639-4f10-bd15-ae0b819842f7',1207,-90.05891059999999,'2622 County Road K','WI','gage.labadie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-09T09:23:38.859Z','Twitter','Alva Conroy','Riverton','1986-08-29',43.3452106,82501,'c22c50d6-80ef-4381-8aa5-7bf069c8249e',1208,-108.5395218,'376-586 North Muddy Road','WY','alva.conroy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-16T20:58:51.674Z','Google','Juanita Kessler','Plattsmouth','1989-05-03',40.9983,68048,'2bc06846-9144-4c7a-bc3b-7e29b295fe9a',1209,-96.02075900000001,'311 South 18th Street','NE','juanita-kessler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-13T01:11:03.564Z','Twitter','Alfonzo Quigley','Morgantown','1994-01-30',37.3743483,42261,'a9dbfb23-dba6-48b2-88de-2f5e7bbefd3f',1210,-86.6127781,'4623 Oak Ridge Road','KY','alfonzo.quigley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-16T00:08:57.121Z','Facebook','Kelsi Douglas','Venus','1989-03-21',41.3678818,16364,'1dbf936a-024e-4ddb-b2f5-4dabc908a53e',1211,-79.4598893,'971-1135 Gowdy Road','PA','kelsi.douglas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-01T00:55:42.384Z','Facebook','Liam Schoen','Ryder','1978-12-10',47.9948865,58779,'5014abd8-d132-4b20-b0a5-49e3e22e33a3',1212,-101.7226229,'28201-28869 233rd Avenue Southwest','ND','liam-schoen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-27T21:41:20.740Z','Facebook','Russell Muller','Zephyrhills','1989-01-04',28.263284,33541,'81b30725-1921-45c2-a1ea-dccf6a1d715c',1213,-82.2049866,'7247 Fort King Road','FL','muller-russell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-12T14:57:50.678Z','Facebook','Susan Abernathy','Whitakers','1960-08-12',36.0779349,27891,'b3997e9e-fe0d-4b8d-9d8b-8d852785a326',1214,-77.813864,'9970 Watson Seed Farm Road','NC','abernathy-susan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-08T08:31:11.173Z','Twitter','Estefania Conroy','Thornville','1958-05-17',39.9127209,43076,'63c08401-6d3f-4c05-8157-1038180245d7',1215,-82.4083883,'14462-14560 Township Road 1061','OH','estefania.conroy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-13T18:35:21.911Z','Facebook','Johnson Mohr','Estacada','1989-06-19',45.0796555,97023,'07c75c12-9ca8-4e51-baab-418581a9d600',1216,-122.0547712,'59870-61498 Clackamas Highway','OR','mohr.johnson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-25T00:02:42.704Z','Organic','Bernita Volkman','Anchor Point','1998-03-04',59.83919119999999,99556,'8e2966a6-04ca-4536-846a-748d15f616cc',1217,-151.6843778,'29675 Komsolmol Street','AK','volkman-bernita@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-27T16:29:13.817Z','Organic','Freddie Dickens','Stonington','1961-09-26',44.1727998,04681,'ae6891f1-4201-4e0c-88aa-96a228436174',1218,-68.69405200000001,'3 Burnt Cove Road','ME','dickens-freddie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-21T18:18:05.240Z','Affiliate','Toby Sporer','Clarence','1958-07-05',42.981382,14031,'f50205b3-2b0b-4202-8c54-3729c2b339fc',1219,-78.589715,'10684 Main Street','NY','sporer.toby@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-09T01:23:00.914Z','Google','Lizeth VonRueden','Pickrell','1970-03-19',40.3666232,68422,'1bcf9f60-6c34-4549-95f8-e8a558b80f54',1220,-96.6132913,'16467 South 82 Road','NE','lizeth-vonrueden@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-16T05:06:53.866Z','Google','Edwin Von','Raymond','1984-09-05',37.2269742,93653,'7deef36c-51a7-482f-95cf-b16f33f3e5c0',1221,-119.8703536,'36728-36798 Road 606','CA','von.edwin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-28T00:21:38.670Z','Twitter','Chad Reynolds','Stapleton','1977-10-22',41.46605,69163,'878d3c19-0085-41b6-bf67-141216ab9132',1222,-100.4432582,'198 County Road 60','NE','reynolds-chad@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-29T22:56:51.441Z','Twitter','Antwan Fisher','Wisconsin Rapids','1985-10-25',44.3227491,54495,'687297ce-917a-48b7-9d74-802a140edabc',1223,-90.0942797,'7750 Michalik Lane','WI','fisher-antwan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-09T01:43:47.205Z','Twitter','Emmy Schimmel','Chelan','1975-06-11',48.047291,98816,'d6a07043-b399-457a-a732-a2d7ee3a9cd9',1224,-120.37601,'25 Mile Creek Road','WA','emmy-schimmel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-06T12:01:24.758Z','Facebook','Alayna Beatty','Cheney','1983-10-31',37.62904899999999,67025,'f96e8425-89b5-4b9f-8b88-d1e8c09bc433',1225,-97.736464,'3401 South 343rd Street West','KS','alayna-beatty@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-19T22:37:20.388Z','Twitter','Veronica Stark','Forestburg','1978-04-22',33.5128449,76239,'f2642b63-fa21-4622-91d9-0d39ced839ee',1226,-97.44727350000001,'5477 County Road 343','TX','veronica.stark@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-09T20:47:16.536Z','Organic','Murray Wintheiser','Danville','1963-03-12',32.6380644,31017,'a8982a38-e5f5-4a4c-a52a-14f976d20a21',1227,-83.18637799999999,'200 George Gray Rd','GA','wintheiser-murray@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-15T09:37:36.723Z','Affiliate','Joe Becker','Kannapolis','1959-08-25',35.511519,28081,'e8bdfb0a-b2e9-4e11-98d1-af5508ee475b',1228,-80.68258399999999,'6101 Wright Road','NC','joe.becker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-10T08:23:41.338Z','Facebook','Angel Auer','Tennessee','1987-08-21',40.4097473,62374,'f3fd227e-d525-4f04-9794-f092cc0475ac',1229,-90.89424960000001,'8600 East 90th Street','IL','auer-angel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-16T20:33:40.692Z','Twitter','Sigmund King','Bowman','1964-07-21',33.4477085,29018,'412ebc48-f238-4e1b-962e-f8cc3b7644fa',1230,-80.6425399,'175 Bronze Oak Court','SC','sigmund-king@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-08T11:52:47.999Z','Twitter','Brielle Ondricka','Murray','1971-12-06',36.5703326,42071,'78ea551e-a452-4e61-9dec-6c57ad0d66a3',1231,-88.1879546,'3261 Cherry Corner Road','KY','brielle.ondricka@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-03T08:44:58.003Z','Affiliate','Dane Monahan','Little Falls','1969-05-16',43.1903145,13365,'a8f6beec-8f48-4d76-9a16-fa33599e79ed',1232,-74.82838389999999,'465 Jerseyfield Road','NY','dane.monahan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-13T04:13:10.253Z','Organic','Agnes Spinka','Fallbrook','1981-10-15',33.3826153,92028,'66bdbb45-721a-4841-b835-ef723bf8ae31',1233,-117.1752984,'395 Old Highway 395','CA','spinka.agnes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-01T21:21:22.293Z','Facebook','Abdiel Huel','Lexington','1986-06-11',34.0129499,29072,'2d5e1074-aaa4-49fc-8678-90db312e2cb3',1234,-81.25298099999999,'313 Newridge Road','SC','huel-abdiel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-14T01:32:30.286Z','Organic','Nellie Wilderman','Bethune','1973-11-04',34.534264,29009,'fcadeaca-11ec-4dcc-a47b-0813063db217',1235,-80.3575819,'99 Private Lane','SC','wilderman-nellie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-07T17:06:48.417Z','Organic','Freida Wiza','New Providence','1983-05-05',39.9149203,17560,'00f6f51c-244f-496c-a386-be1014140aaf',1236,-76.2466936,'384 Lancaster Pike','PA','freida-wiza@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-18T04:24:20.068Z','Organic','Theresa Hudson','Northfield','1989-02-26',44.5399699,55057,'85f24625-4f0b-4e23-8820-f05f5794ab3d',1237,-93.112949,'2226 280th Street West','MN','theresa-hudson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-30T17:16:31.916Z','Twitter','Josh Schimmel','Olsburg','1997-02-24',39.4671914,66520,'2dbde6a7-5ffb-4343-afa7-9b74ffaae1bb',1238,-96.5883061,'18576-19008 Long Parkway Road','KS','josh-schimmel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-07T21:52:41.229Z','Twitter','Gianni Hansen','Cerro Gordo','1998-01-27',39.92080929999999,61818,'1eab9cec-95fd-4bbf-be6e-329c21fd0a3c',1239,-88.70722769999999,'850-898 North 200 East Road','IL','gianni-hansen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-18T12:21:17.439Z','Google','Clementine Schmitt','Valley Springs','1963-05-15',38.109368,95252,'6e9a73e1-5b4d-4c3a-9ea7-68172a10c5b5',1240,-120.931083,'9414 Warren Road','CA','schmitt-clementine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-05T22:02:03.684Z','Affiliate','Danial Hegmann','Brookville','1980-05-15',38.806465,67425,'f20e9262-13e4-4aa3-b92f-8b605d142603',1241,-97.922608,'1801 South Eff Creek Road','KS','hegmann.danial@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-11T17:54:47.130Z','Affiliate','Tad Ruecker','Arkdale','1976-11-30',44.1058552,54613,'ce21fafa-44ae-4c46-84a7-5ee717dce226',1242,-89.94022939999999,'1003-1075 County Highway Z','WI','ruecker-tad@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-03T00:44:47.057Z','Twitter','Nikolas Waelchi','Hollister','1961-09-18',36.8655304,95023,'098a068d-01ca-4a8b-ba1c-8320067f3482',1243,-121.4419804,'2136-2598 Wright Road','CA','nikolas-waelchi@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-05T05:42:47.402Z','Google','Hollie Carter','Jasper','1969-03-03',30.92620659999999,75951,'d96920b6-7736-47ad-9f06-92476e474abf',1244,-93.9435721,'766 County Road 293','TX','hollie-carter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-25T11:54:15.196Z','Organic','Justine Schneider','Gaffney','1984-12-14',34.9475899,29340,'bc4c0338-d46f-4d64-9eb0-e2a97e595a67',1245,-81.5415228,'3057 State Road S-11-54','SC','schneider-justine@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-19T10:24:36.794Z','Google','Leonardo Fahey','Sedan','1999-09-05',37.1022152,67361,'796580dc-0aa3-4a8d-8d71-1fa7d12ab102',1246,-96.3491523,'1076 Heritage Road','KS','fahey.leonardo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-07T21:32:58.682Z','Affiliate','Alysson Cartwright','Leland','1962-10-09',43.4055569,50453,'f44602e9-15bc-4326-aed7-a3089d76caec',1247,-93.6590501,'44386 160th Avenue','IA','alysson-cartwright@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-02T04:42:34.717Z','Google','Cassandra Nicolas','De Tour Village','1983-05-20',46.0147823,49725,'c6c1447f-2a38-4d81-aff9-6532508b41e5',1248,-84.0355428,'15341-15999 East North Caribou Lake Road','MI','cassandra.nicolas@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-15T05:13:10.610Z','Google','Janis Bode','Comanche','1958-06-08',31.9162303,76442,'922f99cd-4a1d-4bd7-a4e6-c2efddee43f0',1249,-98.7254346,'801 County Road 153','TX','janis.bode@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-20T12:50:29.898Z','Twitter','Brenda Buckridge','West Mansfield','1976-09-18',40.4061175,43358,'b670b9b9-deba-479b-9d8a-8891eb7e14b2',1250,-83.60290359999999,'2096-2398 Hamilton Street','OH','brenda-buckridge@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-10T03:52:39.304Z','Facebook','Flavio Blick','Greeleyville','1971-03-18',33.56305150000001,29056,'30241200-513b-4977-9735-b103c3352b4e',1251,-79.94783749999999,'1096 McMillan Road','SC','flavio.blick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-07T01:04:46.815Z','Twitter','Durward Kilback','Castalia','1977-04-16',43.1217277,52133,'f1234841-c8ce-463a-b0f4-63a563824e02',1252,-91.70698449999999,'1543-1583 U.S. 52','IA','kilback-durward@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-18T10:19:28.109Z','Facebook','Maeve Bernier','Ritzville','1998-03-12',47.1021951,99169,'295a68ae-5fed-4a96-808e-2e377e11214a',1253,-118.3224433,'1200-1298 North Benzel Road','WA','maeve-bernier@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-26T01:54:52.115Z','Twitter','Watson Gerhold','Scobey','1983-08-29',48.8441187,59263,'4a1e44dc-c54c-4907-b724-562e583df73b',1254,-105.5076285,'481 French Lane','MT','gerhold.watson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-22T19:27:51.881Z','Facebook','Tia Pfeffer','Shreveport','1993-07-18',32.4712106,71105,'9e71f2ff-f92f-4154-bf37-ca71b2a9a243',1255,-93.7013435,'300-1098 East Preston Avenue','LA','tia.pfeffer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-22T10:53:17.788Z','Google','Archibald Wunsch','Zebulon','1992-05-12',33.0973029,30295,'e03433f2-a3f0-46b2-9f9e-28a46fffe985',1256,-84.2695906,'248-298 East Milner Road','GA','archibald-wunsch@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-16T17:10:36.101Z','Facebook','Marley Gorczany','Fowler','1985-03-14',43.0992814,48835,'c411e23e-4685-4647-a41e-de04398e95fb',1257,-84.7479912,'11890 Fitzpatrick Road','MI','marley.gorczany@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-06T07:51:58.992Z','Organic','Vernice Bernier','Baldwinsville','1992-11-24',43.16911330000001,13027,'d6a35414-621d-43f4-889d-20ce4ed5c5a0',1258,-76.3968835,'1585-1593 West Genesee Road','NY','vernice-bernier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-01T22:04:06.657Z','Affiliate','Elinore Carroll','Grenada','1976-03-10',33.7403946,38901,'e98569b4-4620-49f4-b473-2a435cd9c29e',1259,-89.64976779999999,'735 Providence Road','MS','carroll.elinore@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-24T12:50:36.813Z','Twitter','Miles VonRueden','Summers','1970-01-04',36.0559801,72769,'339fa9b1-63e9-4ae7-a582-19ad78958ac5',1260,-94.5138154,'13683 Cincinnati Creek Road','AR','miles-vonrueden@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-12T09:47:15.890Z','Affiliate','Mariam Schumm','Kennedy','1960-06-02',33.6022302,35574,'29e72a9a-84c9-478f-acf3-ea6b5765daba',1261,-87.9937408,'6322-6726 County Road 49','AL','mariam-schumm@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-03T07:54:37.963Z','Google','Maurice Zboncak','Edna','1969-01-07',29.1215861,77957,'8c623f23-1f5c-4d6b-b2db-ff824917eb28',1262,-96.7785579,'11434 State Highway 111 North','TX','maurice-zboncak@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-22T22:48:25.929Z','Organic','Lila Von','Hammond','1998-08-31',39.81943580000001,61929,'7e737a3a-e803-4362-aa29-6b7de9de3532',1263,-88.6510236,'151-299 North 500 East Road','IL','von.lila@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-13T07:42:00.282Z','Google','Grace Hills','Sheridan Lake','1984-04-09',38.4334314,81071,'fbb79a77-d97f-407f-b156-f45964e59a71',1264,-102.4183399,'11500-11998 County Road 60','CO','hills.grace@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-01T16:08:52.989Z','Facebook','Rebeka Wisoky','Dover','1997-06-12',35.289251,28526,'1dc053e7-8242-44d1-ac8a-b2388deb45d7',1265,-77.2919639,'585 Core Creek Landing Road','NC','wisoky-rebeka@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-09T23:49:05.891Z','Facebook','Leta Heidenreich','Ekalaka','1995-12-15',45.8947399,59324,'c4d0da9b-c80e-47e6-a304-1562585ba9c9',1266,-104.30428,'1131 Mill Iron Camp Crook Road','MT','leta-heidenreich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-27T18:08:35.268Z','Google','Fatima Murphy','Terry','1978-01-04',47.13607529999999,59349,'fa2dee12-08fe-4c3a-a46e-5f724ef51cca',1267,-105.3248207,'640-726 Road 209','MT','murphy-fatima@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-18T15:12:37.350Z','Facebook','Lenna Hahn','Montegut','1974-08-08',29.3509994,70377,'12b2efaa-9f6c-4ce1-bae3-b1ae6b97d473',1268,-90.48580489999999,'2211 South Madison Road','LA','lenna-hahn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-06T04:11:25.459Z','Google','Pat Jast','Lothian','1994-12-24',38.840185,20711,'2ac6e98d-17b8-4c23-9864-ee1727d0c20f',1269,-76.679547,'801 Ben Jones Lane','MD','pat.jast@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-19T15:11:37.304Z','Twitter','Hobart Dickinson','Dickson','1969-06-16',36.068326,37055,'c2f4adb3-437c-411d-8dcb-f2cd671d8529',1270,-87.443428,'811 Furnace Hollow Road','TN','hobart.dickinson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-07T09:07:24.429Z','Twitter','Pearlie Heidenreich','Appleton','1998-01-19',44.3350127,04862,'ee2d8cbc-1f6e-4003-9ce5-647bc66309b5',1271,-69.2917356,'2383 Collinstown Road','ME','heidenreich.pearlie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-13T09:28:13.055Z','Affiliate','Lonny Shanahan','Lexington','1961-08-28',39.1604578,64067,'5a6a1376-14c1-4d88-ad77-036f3515526f',1272,-93.84383489999999,'16638-16644 Linwood Lawn Drive','MO','shanahan.lonny@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-28T01:08:54.710Z','Organic','Rosella Bergstrom','Vicksburg','1971-11-17',32.4329092,39183,'cf8abcff-964b-4a64-8cb8-2bad8297c88d',1273,-90.657001,'2307-3099 Davis Road','MS','rosella-bergstrom@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-21T10:43:44.371Z','Facebook','Carmel Cummerata','Brook','1995-01-20',40.9060745,47922,'a6b7edda-1f22-4f08-bb3a-54fc70c2fb7a',1274,-87.415645,'6240-6298 South 125 West','IN','carmel.cummerata@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-09T20:39:24.021Z','Affiliate','Omer Sipes','Fulton','1973-08-30',33.5161402,71838,'f7e5fad8-3890-45b5-ae1a-269b73fb214a',1275,-93.74224780000002,'598 County Road 155','AR','sipes.omer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-11T11:34:25.657Z','Affiliate','Constantin Harris','Zephyr','1958-12-06',31.701504,76890,'89e1b814-4512-43de-8bd6-00d79c351ff0',1276,-98.761461,'1150 Farm to Market 590','TX','harris.constantin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-03T07:11:09.509Z','Affiliate','Pansy Hermann','Harlingen','1977-12-01',26.2982279,78550,'b45e9446-67d4-41fc-b4fb-0adf5b7425d0',1277,-97.6897418,'17789-18511 Briggs Coleman Road','TX','pansy.hermann@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-06T13:12:03.085Z','Facebook','Lazaro Keebler','Vinton','1973-10-12',42.088683,52349,'25c946ff-a045-422c-9de2-6a8b3052c87d',1278,-91.975566,'6425 27th Avenue','IA','lazaro.keebler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-15T23:29:43.563Z','Facebook','Patience Strosin','Merkel','1984-12-05',32.4656338,79536,'6a5cd896-8090-4072-9375-fcbb3c985f3a',1279,-99.8982004,'7092 Interstate 20','TX','patience.strosin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-31T06:22:26.238Z','Organic','Jimmie Lang','Holstein','1961-12-20',40.3663465,68950,'177c68a4-80b3-4cc9-99a4-e864313f0726',1280,-98.64840679999999,'16800-17998 South Holstein Avenue','NE','lang-jimmie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-01T19:28:24.164Z','Google','Noel Ziemann','Natchez','1960-12-15',31.660927,71456,'7e2dfcc5-6b95-4bb7-9c31-02d2d1e8778d',1281,-93.00252189999999,'4463 Louisiana 494','LA','ziemann.noel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-26T16:11:51.424Z','Organic','Verlie Bartell','Baldwin City','1974-01-09',38.800619,66006,'09684dbd-8a10-40d1-a544-7e76039fce2d',1282,-95.31160899999999,'424 East 1000 Road','KS','bartell.verlie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-02T12:17:38.827Z','Google','Yadira Conroy','Mitchell','1978-12-23',38.693861,47446,'d2cd5edf-d305-4ee5-91ba-fb1a5547b699',1283,-86.54561,'747 Liberty Church Road','IN','conroy-yadira@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-25T02:43:14.751Z','Twitter','Tiara Conroy','Ottumwa','1968-06-04',41.0578547,52501,'91fc1776-c0a7-4020-b862-716300ecad6d',1284,-92.54173519999999,'11988 198th Avenue','IA','tiara.conroy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-14T20:55:53.583Z','Organic','Eleazar Satterfield','Rosharon','1991-11-29',29.3565161,77583,'e30810ff-f591-407a-ae2e-8f1ce26db9a8',1285,-95.4306926,'2247 East Fm 1462 Road','TX','eleazar.satterfield@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-04T15:32:33.766Z','Facebook','Haven Yundt','San Marcos','1991-05-02',29.8013585,78666,'87644ce5-c20b-4c79-82cc-9e3ba2657525',1286,-97.990414,'2872-3380 South Old Bastrop Highway','TX','yundt-haven@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-02T19:29:34.852Z','Twitter','Celine Hegmann','Hoyleton','1970-05-18',38.4707749,62803,'51fbaa66-82cd-42fb-a2c8-1264ede7c4f6',1287,-89.37418699999999,'17752 Tree Road','IL','hegmann-celine@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-07T22:55:06.714Z','Facebook','Norwood Lind','Plentywood','1972-05-22',48.7510492,59254,'323083c9-6054-480b-858d-b01ed531de17',1288,-104.8423034,'306 Bolster Road','MT','lind-norwood@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-26T15:38:03.961Z','Google','Loy Krajcik','Le Roy','1974-12-03',43.5180785,55951,'0f44dea0-a52c-4543-97e4-c0363c6b9c37',1289,-92.3385188,'16037 110th Street','MN','loy.krajcik@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-24T11:06:31.077Z','Twitter','Pasquale Ryan','Ulysses','1971-05-09',41.8676153,16948,'87ac7311-28c4-47d5-8111-0d770767128d',1290,-77.7600223,'1820 Fox Hill Road','PA','pasquale-ryan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-29T21:57:45.805Z','Google','Tyshawn Hermiston','Shakopee','1966-03-19',44.7527495,55379,'51797d3a-4507-4ed5-a017-e9e74659ef3b',1291,-93.4898975,'2528 Wood Duck Trail','MN','tyshawn-hermiston@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-02T00:14:11.003Z','Facebook','Kaleb Schultz','Magnolia','1991-04-20',30.121331,77355,'fe5e3c41-3664-4d8b-a6fb-703e3f533797',1292,-95.752162,'25119 Sea Turtle Lane','TX','schultz-kaleb@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-26T18:25:24.636Z','Twitter','Oma Schulist','Chocowinity','1981-03-16',35.47772250000001,27817,'8391498d-a59e-4223-85e6-3aeba56cf5eb',1293,-77.0751494,'266 Warren Chapel Church Road','NC','oma.schulist@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-04T11:11:04.690Z','Affiliate','Santiago Luettgen','Indian Valley','1988-01-22',44.4914681,83632,'e3bedfa1-7382-4ff2-b5e9-25ec00ee74e6',1294,-116.3766215,'2216 Little Weiser River Road','ID','santiago.luettgen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-14T14:14:56.239Z','Facebook','Zachariah Cartwright','Pinnacle','1991-06-21',36.3622857,27043,'e40d71bf-1572-4fed-9d24-9e60e62c4bd3',1295,-80.5073991,'498 Whitaker Road','NC','cartwright-zachariah@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-14T12:09:50.833Z','Twitter','Sterling Koch','Swan River','1961-05-05',47.0520143,55784,'8c9204ed-fcf9-4718-8e15-d358bd8420c2',1296,-93.22411190000001,'11719 County Road 424','MN','koch-sterling@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-28T06:33:34.553Z','Twitter','Colt Leuschke','Douglas','1997-04-23',47.9614769,58735,'a8f98f59-76f1-4c62-85cb-8a0a0bf59139',1297,-101.3832517,'26200 62nd Street Southwest','ND','leuschke-colt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-08T11:48:12.829Z','Facebook','Rick Yost','Rush','1968-01-31',42.99556279999999,14543,'4a2825e3-939c-40c8-b34e-3c59ba8db0b4',1298,-77.628265,'2262-2286 Rush Mendon Road','NY','yost-rick@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-26T06:55:39.663Z','Affiliate','Easton Kuhlman','Pukwana','1963-12-29',43.9160787,57370,'ee04c63d-d19c-41a3-826d-864377402984',1299,-99.1229738,'23918 353 Avenue','SD','easton.kuhlman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-07T02:41:40.252Z','Google','Cleo Harber','Strong','1995-07-08',33.2159641,71765,'92ebe443-defa-41a2-b47d-4417a79e3ac9',1300,-92.2871031,'100-172 Christian Road','AR','harber.cleo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-22T14:16:34.763Z','Affiliate','Oda Yost','Albany','1992-02-26',42.650035,12203,'4c4b7e3b-f2d9-4d24-8bec-712931a8034a',1301,-73.77100100000001,'65 Warren Avenue','NY','oda.yost@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-23T18:22:59.225Z','Google','August Wiza','New Underwood','1970-04-25',44.394321,57761,'43a5199e-be51-428e-82c0-b7186e1cbb49',1302,-102.7478546,'16555 Hope Road','SD','wiza.august@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-10T09:59:22.398Z','Facebook','Ricky Kulas','Fredericksburg','2000-02-05',42.9113731,50630,'d26e0543-bfeb-4671-a81a-7966c85e1cfb',1303,-92.19915350000001,'3052-3098 Ridgeway Avenue','IA','kulas.ricky@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-12T08:17:03.330Z','Organic','Brenda Gibson','Rochester Mills','1971-05-28',40.8734659,15771,'4a27fae3-1172-49ff-a0ae-2d1f8e47f624',1304,-79.0551088,'2082-2474 Beaver Drive','PA','brenda-gibson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-16T16:54:37.593Z','Organic','Isabel Swaniawski','Red Creek','1969-09-22',43.3070802,13143,'195f6b0d-1781-4413-9938-1d4586475e63',1305,-76.72386759999999,'8569-8619 Blind Sodus Bay Road','NY','swaniawski-isabel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-16T08:48:03.001Z','Organic','Ana Cruickshank','Fredericksburg','1971-12-16',30.3173614,78624,'bca80731-0088-4b40-a68c-0d6344010a9a',1306,-98.62123969999999,'1902 North Grape Creek Road','TX','cruickshank-ana@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-04T17:20:02.746Z','Google','Filomena Larson','Jasper','1989-12-17',33.8240855,35501,'72cc7fc5-4acd-4cb2-ad1d-0ba14588d145',1307,-87.2232792,'4230 Old Birmingham Highway','AL','larson.filomena@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-14T05:13:41.842Z','Organic','Sabina Borer','Centerville','1961-06-18',43.0468514,57014,'c7e0cae0-7686-4c19-b57b-c1fe6a47f814',1308,-96.9233312,'29906-29980 464th Avenue','SD','borer.sabina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-05T18:47:03.303Z','Facebook','Camilla Wintheiser','Moneta','1958-04-26',37.172418,24121,'b292d972-9dc2-430b-8359-c23bc45abe9d',1309,-79.618302,'1651 White House Road','VA','wintheiser-camilla@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-14T17:27:32.270Z','Organic','Nicola Krajcik','Dilliner','1980-01-07',39.759614,15327,'e4cef544-39e9-45a7-941d-a4b26d5b1196',1310,-79.951199,'267 Holbert Stretch','PA','nicola-krajcik@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-31T14:22:54.077Z','Twitter','Vance Mueller','Clarksdale','1980-02-27',34.1455863,38614,'b324215e-57e8-442c-85bb-6bbb3db77d19',1311,-90.8787686,'516 Owens Road','MS','vance-mueller@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-10T04:02:47.776Z','Twitter','Isom Welch','Lanesboro','1976-10-30',43.8035213,55949,'82d2ea04-b219-4ebf-8cce-54848a34632a',1312,-91.9421715,'35552 Flag Road','MN','welch.isom@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-28T03:21:00.443Z','Organic','Darien Botsford','Yuma','1970-03-05',32.966564,85365,'34d6582f-25ee-4bfb-90bf-419fc4c63f83',1313,-114.461542,'10882 Fishers Landing Road','AZ','botsford.darien@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-05T09:09:05.025Z','Organic','Roel Gislason','Lind','1982-07-24',46.9988408,99341,'64b37522-4521-44cd-8f80-32b7b7d51dec',1314,-118.726044,'11 Roloff Road','WA','gislason-roel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-29T10:27:19.314Z','Organic','Lillian McDermott','Kiana','1959-01-11',66.9746522,99749,'89914269-d7aa-4c3f-b027-187f08743fbe',1315,-160.4243696,'9 Airport Road','AK','lillian-mcdermott@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-22T13:04:34.589Z','Google','Walker Carter','Upper Lake','1996-10-02',39.287272,95485,'efbc6755-fd2e-4ae1-a525-0a794c37e58c',1316,-122.999079,'17625 Elk Mountain Road','CA','walker.carter@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-06T23:06:27.990Z','Google','Everett Effertz','Reed City','1973-09-05',43.9419724,49677,'4608a483-c600-48e8-911c-5f53c4d892cc',1317,-85.5025347,'8500-8846 South 210th Avenue','MI','effertz-everett@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-09T09:30:35.267Z','Twitter','Gabrielle Frami','Rantoul','1985-03-05',38.5122,66079,'fb54005d-0a63-466a-be15-3d08cb7fd172',1318,-95.17989999999999,'1780 Oregon Terrace','KS','gabrielle-frami@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-07T22:01:16.949Z','Google','Arnold Krajcik','Paton','1979-04-04',42.1665281,50217,'3bf1018e-7a9b-45e8-a0f6-bd0d789954ec',1319,-94.2723487,'1944 130th Street','IA','arnold-krajcik@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-07T04:49:15.701Z','Twitter','Maud Wilkinson','Saint Edward','1975-05-27',41.626379,68660,'88aebc56-7bb1-4387-bce0-a02948937e50',1320,-97.7899607,'51020 400 Street','NE','wilkinson-maud@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-21T23:36:45.798Z','Facebook','Vincenza Lehner','Fife Lake','1979-08-31',44.5120082,49633,'c6cc558d-9639-4799-9f52-8071ff85146d',1321,-85.3419543,'11500-11998 East No 2 Road','MI','lehner.vincenza@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-08T02:31:38.965Z','Affiliate','Ole Krajcik','Chariton','1994-12-02',41.119998,50049,'9c608d8a-d1bb-4096-bcea-862e55b773df',1322,-93.193904,'55122 290th Avenue','IA','krajcik.ole@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-25T04:00:59.594Z','Organic','Ambrose Johnson','Saguache','1972-09-07',37.9156339,81149,'c132d426-6b42-4da2-9cdc-4cd2bc734798',1323,-106.0527209,'15206 US Highway 285','CO','ambrose.johnson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-25T11:42:03.261Z','Affiliate','Holden Huel','DeRidder','2000-03-06',30.6939267,70634,'3842081d-f4e8-4ccd-b5e2-71dcffa69704',1324,-93.17928409999999,'3358-3366 Harrington Drive','LA','holden.huel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-04T18:26:12.771Z','Facebook','Ozella Kautzer','Uvalde','1991-12-28',29.3688762,78801,'4ae10ba1-93f5-483d-88a9-b092de9381eb',1325,-99.7113421,'4391 FM 2690','TX','kautzer.ozella@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-04T22:09:04.203Z','Google','Maximillian Dickinson','Turner','1996-06-16',44.1423819,48765,'aecbc2b2-8eca-4c4c-9c0e-253bf02ebd33',1326,-83.6578768,'3598-3608 Turner Road','MI','dickinson-maximillian@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-04T00:25:38.931Z','Organic','Marian Rice','Austin','1961-07-19',30.1235445,78748,'a3d31375-2591-42fc-94c0-df60e397fde5',1327,-97.8063278,'1200 Estancia Parkway','TX','marian-rice@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-02T02:42:22.713Z','Facebook','Randy Blanda','Saegertown','1996-10-27',41.7180964,16433,'54c1686d-9d0b-4639-82df-88f97641baf7',1328,-80.10770459999999,'21794 Erie Street','PA','randy-blanda@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-15T00:12:52.653Z','Organic','Michale Mayer','Lake Crystal','1986-06-03',44.1819768,56055,'d6b0223a-64f3-4bdc-bcbb-fa03753746a9',1329,-94.273006,'49846 222nd Street','MN','mayer-michale@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-21T13:08:23.780Z','Facebook','Woodrow Hermann','Cissna Park','1999-04-17',40.5394955,60924,'4d9cc491-f51e-444e-9eee-e5dbc00baa1f',1330,-87.9628141,'867 East 400 North Road','IL','hermann.woodrow@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-01T02:56:04.494Z','Organic','Jed Bartell','Stephenville','1977-03-07',32.292281,76401,'f03247cd-3d19-49a6-a27e-ee4c9da5629f',1331,-98.3573976,'2283 County Road 406','TX','jed-bartell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-24T11:03:46.550Z','Twitter','Edmund Wilkinson','Marshfield','1990-03-18',44.293816,05658,'21e7c766-ad44-4c7a-a567-e43d68a7e1dd',1332,-72.322372,'6490 Route 232','VT','wilkinson.edmund@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-22T09:57:54.064Z','Twitter','Braeden Stehr','Islandton','1958-10-08',33.0120157,29929,'d502ab04-c085-464c-a068-cff77389635f',1333,-80.9379314,'3614 Willow Swamp Road','SC','braeden.stehr@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-18T18:22:53.659Z','Google','Liam Graham','Blossvale','1994-10-26',43.281389,13308,'01439a80-2098-4917-9d6f-8eb09a677cba',1334,-75.67327399999999,'3180 Wheeler Hill Road','NY','graham-liam@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-03T20:51:37.417Z','Google','Marilou Schultz','Laporte','1986-11-25',47.2294814,56461,'833d07ed-ae85-480c-a2e9-dcd61fd5fcf1',1335,-94.9404157,'39001-39999 205th Avenue','MN','marilou-schultz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-16T05:21:17.981Z','Organic','Raymond Larson','Ninilchik','1972-05-05',60.0127269,99639,'c7d1c96a-40f2-4f07-a836-ae3208d10749',1336,-151.4986941,'60648 Oil Well Road','AK','raymond-larson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-15T05:39:17.743Z','Affiliate','Hermann Sanford','Genoa','1969-06-13',39.3224735,80818,'5a93f2b0-7a1d-4174-9f85-24e56f232c13',1337,-103.4050819,'56251 County Road 36','CO','hermann.sanford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-03T16:34:27.930Z','Facebook','Joanne Powlowski','Souris','1987-07-11',48.9662213,58783,'36248e32-f69a-4c19-8342-a67f2fc835ad',1338,-100.7398374,'137-199 107th Street Northwest','ND','joanne.powlowski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-12T07:48:48.142Z','Google','Candida Turcotte','Augusta','1973-01-14',33.4579417,30901,'0485c648-432a-45a9-b513-bca29dd5412e',1339,-81.967394,'1228 Gordon Highway','GA','candida-turcotte@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-04T20:39:35.296Z','Organic','Lucinda Schmeler','Colcord','1998-01-23',36.2712265,74338,'80a1331f-356f-4b8d-a4eb-6629284c1a64',1340,-94.7352872,'15200 State Highway 116','OK','schmeler-lucinda@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-22T10:31:16.877Z','Facebook','Sigrid Runolfsdottir','Poplarville','1965-01-01',30.9326095,39470,'3637db61-2e79-4a5a-a106-7d8e4ca6defc',1341,-89.566231,'1147-1149 Stanford Lake Road','MS','runolfsdottir-sigrid@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-06T09:39:48.987Z','Twitter','Brittany Thompson','Ash Grove','1979-10-20',37.2913799,65604,'ead712db-6252-4739-af6f-890d5a204c09',1342,-93.56379299999999,'13140 West Farm Road 84','MO','thompson-brittany@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-19T02:20:17.113Z','Twitter','Brianne Jacobson','Castana','1971-12-23',42.1301637,51010,'9ba27856-631e-4e2b-9451-7c452d345a80',1343,-95.9202078,'15652 County Highway L20','IA','brianne-jacobson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-02T22:06:54.776Z','Twitter','Buddy Hills','Traverse City','1966-11-11',44.8608596,49684,'62b76600-e827-4b12-b2b5-47c9da20ca26',1344,-85.662477,'9331 East Summer Field Drive','MI','buddy-hills@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-12T20:56:38.802Z','Facebook','Alice Connelly','Doniphan','1985-09-14',40.7873348,68832,'b98b05b8-e7e1-4e41-8166-243dd4978f5c',1345,-98.3402758,'9695-9999 South Locust Street','NE','connelly-alice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-01T12:38:33.992Z','Facebook','Gerard Ruecker','Burkeville','1986-11-02',37.1774093,23922,'3e874a51-5921-4134-913b-db88f5e08d56',1346,-78.1800899,'2499 Schutt Road','VA','gerard.ruecker@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-12T04:33:13.314Z','Facebook','Mya Gleason','Brumley','1994-10-21',38.0326862,65017,'172365b5-8594-4d0b-82f6-a43ef5665271',1347,-92.47617,'344 Bentown Ridge Road','MO','mya-gleason@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-13T15:54:28.568Z','Organic','Maryam Nolan','Unalaska','1989-09-30',53.8940388,99692,'3132128c-650c-4700-b419-cc03b9196e98',1348,-166.5425726,'104 Airport Drive','AK','nolan-maryam@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-01T10:42:38.219Z','Organic','London Ryan','Corning','1980-01-04',39.981358,96021,'fb44dbe0-1940-4df7-92f4-4729fcb24f09',1349,-122.273938,'20520 No Name Road','CA','ryan-london@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-25T02:19:03.164Z','Google','Jacey Schoen','Willow','1996-08-10',61.7038908,99688,'1da04926-829f-433c-a401-5bb811fcfa43',1350,-150.1429048,'27515 West Beryozova Drive','AK','jacey.schoen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-05T23:09:55.096Z','Twitter','Carolina Crona','Hyannis','1979-06-17',42.0000164,69350,'6686c358-c470-4656-a489-4b56dd54161e',1351,-101.7142596,'43863 Nebraska 2','NE','crona.carolina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-18T13:03:39.547Z','Affiliate','Gaston McCullough','Jackson','1983-03-04',42.1885791,49203,'37a4055e-ee07-4144-a85a-4f06351dfabe',1352,-84.3863756,'1005 Floyd Avenue','MI','gaston.mccullough@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-02T05:18:25.229Z','Twitter','Merritt Hintz','Delhi','1965-09-13',37.4040114,95315,'d58d67ab-4e1a-4378-9eee-042d6b3ef4c6',1353,-120.8017099,'17315 Bloss Avenue','CA','hintz.merritt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-23T03:20:29.194Z','Affiliate','Melisa Reynolds','Chappell Hill','1984-04-22',30.069701,77426,'f80f92d5-bf20-44e8-89a4-76e60fa4ab8d',1354,-96.276923,'11235 Jones Wilke Road','TX','reynolds-melisa@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-28T05:23:56.997Z','Organic','Miracle Erdman','Sidney','1972-05-07',41.2071017,69162,'4feda2a4-233c-4cf3-ae88-bbd7be30ea72',1355,-102.8070772,'13001-13199 Road 30','NE','miracle.erdman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-18T21:28:14.492Z','Organic','Tressie Boyle','Pierceton','1998-02-02',41.291868,46562,'74ae3bfd-a46f-40a9-8b90-23fc1ed9ed68',1356,-85.694082,'19 EMS B4 Lane','IN','tressie-boyle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-11T15:23:26.516Z','Organic','Orlo Romaguera','Aledo','1991-07-24',41.1399049,61231,'7a041f1f-39b6-47da-872c-d20a44e3c07e',1357,-90.6578637,'2151-2297 50th Avenue','IL','romaguera.orlo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-10T01:19:13.944Z','Twitter','Chadd Doyle','Towanda','1968-06-29',37.814004,67144,'39747835-24bf-456a-a895-1bff2cf8ae78',1358,-96.97592399999999,'7250 Southwest 10th Street','KS','chadd.doyle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-12T15:20:19.270Z','Affiliate','Brett Koepp','New Albany','1975-12-24',34.4809811,38652,'cf4f462e-e7a2-4269-94e1-4502f324c268',1359,-89.04508229999999,'1040 Bratton Road','MS','koepp.brett@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-14T13:30:47.288Z','Organic','Kaleigh Dicki','Beaumont','1986-08-13',30.08156009999999,77713,'e8aae6c1-7835-482e-8155-14e3f9d07c89',1360,-94.2732719,'555 Sandringham','TX','kaleigh.dicki@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-26T04:54:26.369Z','Facebook','Jadyn Barrows','Avon','1966-10-07',40.6779436,61415,'5111f152-4521-4d1f-8dbe-c8ad83741c8e',1361,-90.31499459999999,'6503-6725 East Curve Road','IL','barrows-jadyn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-29T14:00:38.382Z','Organic','Marcus Kuhn','Tonopah','1993-12-16',33.48275040000001,85354,'eb7647af-939b-4dd2-8965-1f7aaf4ca39d',1362,-113.1013913,'3451 North 491st Avenue','AZ','marcus.kuhn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-19T10:46:48.889Z','Organic','Toy Osinski','Alexander','1973-10-03',42.811637,50420,'a2b14b49-fc91-43e9-af12-dac0d52a32b8',1363,-93.4376149,'1855 Dogwood Avenue','IA','toy-osinski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-26T19:07:39.139Z','Google','Trevor Smith','Many','1984-03-01',31.5672052,71449,'56d150a4-5b5b-4ae9-b012-ed783b2c0b5b',1364,-93.5244615,'1841 Shuteye Road','LA','smith.trevor@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-09T17:20:53.218Z','Organic','Mollie Kozey','Holts Summit','1963-09-28',38.6181693,65043,'7741f418-cad5-4dc0-af52-eb51e1dc42dc',1365,-92.1925908,'12209 Renz Farm Road','MO','mollie.kozey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-11T06:35:58.971Z','Twitter','Carlie Hilll','Ainsworth','1969-08-08',42.3862177,69210,'fadfffec-3c14-43dd-a390-fb37b70ef00d',1366,-99.88273369999999,'86683 Nebraska 7','NE','carlie-hilll@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-31T20:09:56.486Z','Twitter','Bonnie Kemmer','Camden','1983-12-24',34.39174879999999,29020,'9c7404ff-5a81-44e0-9b05-2102390c049c',1367,-80.72494530000002,'2301-2307 State Road S-28-697','SC','kemmer.bonnie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-02T07:39:01.504Z','Twitter','Hugh Konopelski','Pine','1968-10-18',39.3701702,80470,'81936903-5614-49da-a5af-519b61191a3d',1368,-105.3760011,'19519-19527 Eos Mill Road','CO','konopelski-hugh@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-19T15:25:38.643Z','Facebook','Rosalee Reinger','Starkweather','1963-10-03',48.5438796,58377,'82767e91-ca8b-4db8-8810-447b23f059c6',1369,-98.8271975,'8216-8298 Cavalier-Ramsey County Line Road','ND','rosalee-reinger@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-17T01:47:40.237Z','Twitter','Emanuel Corwin','Guffey','1982-09-26',38.9132154,80820,'41b5be91-1ca2-4bc1-95dc-f58ebffcfce9',1370,-105.7031712,'26800-27176 Colorado 9','CO','emanuel-corwin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-27T16:17:34.347Z','Facebook','Ida Kohler','Valdosta','1996-01-17',30.73168429999999,31601,'d97f1464-2157-45ae-875b-ff5f6d08a853',1371,-83.488559,'5314 Dewey Road','GA','kohler.ida@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-23T10:46:01.955Z','Affiliate','Celestine Rowe','Honeoye Falls','1966-02-18',42.940744,14472,'0fa52770-063c-4fee-b728-34e5a32124d7',1372,-77.56138399999999,'1855 Hickory Lane','NY','rowe-celestine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-17T03:00:15.875Z','Organic','Salvatore Hand','Wakarusa','1999-08-03',38.889392,66546,'b073f71c-6b2e-4548-91de-3e02af763b38',1373,-95.732744,'4501 Southwest 97th Street','KS','salvatore.hand@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-02T14:55:28.857Z','Google','Kory Bosco','McCall','1987-10-26',45.238332,83638,'2409de16-1b08-416c-9506-f41a1092d5a9',1374,-115.8133813,'24833 Warren Wagon Road','ID','bosco.kory@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-10T07:26:11.196Z','Organic','Serena Langosh','Springfield','1967-02-01',36.492435,37172,'483b5ee8-57e1-48b5-b775-a17a3d32dbc0',1375,-86.966335,'3724 Hoods Branch Road','TN','serena.langosh@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-20T13:47:35.331Z','Google','Nova Collins','Lovington','1963-08-20',32.9092579,88260,'8054d16d-4ec4-4c44-80c7-84006202fe9e',1376,-103.2659859,'24 Rosebud Lane','NM','nova-collins@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-13T10:21:43.303Z','Organic','Lempi Wyman','Holly Springs','1989-06-27',34.7794615,38635,'78bc5f52-8001-4c15-987b-7c4b5bc4f168',1377,-89.2971718,'3535 Little Snow Creek Road','MS','wyman-lempi@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-11T08:28:46.150Z','Affiliate','Magdalen Torp','Howard','1970-03-30',40.9873587,16841,'106401b9-ae9c-4d27-9c2a-b1d71d78df5e',1378,-77.5623052,'246 Hoy Road','PA','torp.magdalen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-27T21:09:17.662Z','Twitter','Domenick Cormier','Sedro-Woolley','1992-09-29',48.5014899,98284,'a8099627-fc1c-49a3-a6db-35106295a0e8',1379,-122.1953009,'25502 Hoehn Road','WA','cormier.domenick@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-15T23:06:53.946Z','Facebook','Ruthe Hane','Bybee','1997-11-20',36.1745853,37713,'23dc8a7c-1e84-4e52-b17b-61efd9caf30e',1380,-83.1806323,'4142-4198 Parrottsville Road','TN','ruthe-hane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-09T09:59:48.980Z','Organic','Kiarra O''Kon','Dodge Center','1972-01-05',44.0434558,55927,'c8aeceeb-cadf-436d-b4c4-fe690070647b',1381,-92.8169403,'21301-21361 625th Street','MN','kon-o-kiarra@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-31T16:28:49.814Z','Twitter','Carol Feil','Greenville','1959-09-13',31.8284709,36037,'12a363d6-4366-4cfb-945f-a1ba429f36fa',1382,-86.6683085,'423 Manningham Loop','AL','carol.feil@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-18T13:30:02.371Z','Organic','Una Hermann','Bryan','1975-03-19',30.79443929999999,77808,'d3c0db61-786d-4a93-9a88-44e83a6f04c3',1383,-96.29737539999999,'9520 Dilly Shaw Tap Road','TX','hermann.una@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-13T13:57:39.842Z','Facebook','Timothy Trantow','Ballston Spa','1981-05-20',42.979323,12020,'71f1c91f-0d02-4ee9-ab24-f47807bb3332',1384,-73.958883,'1417 Peaceable Street','NY','trantow-timothy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-31T12:51:11.360Z','Google','Evangeline Hartmann','Sherman','1977-09-05',33.6856683,75092,'6dfee9dd-f20b-4af3-bbf1-e02f54f8a961',1385,-96.77413949999999,'4084 Old Southmayd Road','TX','evangeline-hartmann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-09T20:49:39.680Z','Facebook','Eliza Anderson','Wellington','1997-07-21',40.5598283,60973,'1dbf54e6-1137-4073-a20b-787382146a46',1386,-87.73477539999999,'2001-2099 County Road 500 North','IL','anderson-eliza@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-19T07:29:06.045Z','Organic','Linnea Dickens','McGehee','1997-08-31',33.6263821,71654,'9ed5ae25-9250-416c-bf87-03330a0be183',1387,-91.4221505,'308 Baughman Road','AR','linnea.dickens@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-13T07:46:13.835Z','Organic','Ronny Kessler','Seymour','1968-07-17',41.367849,06483,'eb20aa88-6c46-497d-a22e-98424bf64b34',1388,-73.1448755,'5 Sunset Terrace','CT','ronny-kessler@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-04T13:29:11.619Z','Organic','Henriette O''Connell','Branchville','1997-01-21',33.2505184,29432,'b7d6f1b6-5fff-4b76-9157-42ec96410ac0',1389,-80.7431324,'1703-1825 Banbury Drive','SC','connell-o-henriette@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-04T08:13:14.005Z','Facebook','Marc Macejkovic','College Corner','1988-02-16',39.614977,45003,'ffdcc9df-ab15-43c7-8710-4188d1bffe9d',1390,-84.792006,'8774 Fairhaven College CRNR Road','OH','macejkovic-marc@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-10T01:35:17.448Z','Organic','Mittie Treutel','Palatka','1993-12-15',29.80548,32177,'85c5bb29-bc46-46f1-aaef-dd51089fdb4c',1391,-81.580928,'108 Creek Lane','FL','mittie.treutel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-29T19:17:47.850Z','Organic','Pietro Swift','Salinas','1962-12-01',36.6515872,93901,'a3307586-56ca-4bf4-9a07-1a8df86d7700',1392,-121.6238129,'1428 Abbott Street','CA','swift.pietro@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-29T13:55:25.362Z','Affiliate','Lamont Ondricka','Perry','1973-08-23',42.6929731,14530,'06a34724-5969-419b-8e8f-4ac3c8ed5f4b',1393,-78.0005899,'3980 Middle Reservation Road','NY','ondricka-lamont@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-17T19:28:46.815Z','Facebook','Mayra Hermann','Havre','1964-12-03',48.536864,59501,'d73e6923-981b-46da-924e-13869456b35a',1394,-109.697746,'1335 Washington Avenue','MT','mayra.hermann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-11T02:45:03.583Z','Organic','Jude Pacocha','Amherst','1962-10-02',37.5975641,24521,'213c73f0-8973-4ab2-b502-214321157576',1395,-79.0825886,'134-164 Berry Hill Lane','VA','jude-pacocha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-10T11:09:44.973Z','Twitter','Rupert Ondricka','Laramie','1960-03-01',41.17628510000001,82070,'ea544b5a-1dc1-44be-a1fb-4438173facf2',1396,-105.8302223,'61 Mason Lane','WY','rupert.ondricka@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-17T06:01:28.043Z','Organic','Antwon Reichel','Prairie Farm','1983-12-27',45.1875366,54762,'4298e5e8-ee6d-4723-93c5-8b99637072ab',1397,-92.04145539999999,'E2302 County Road V','WI','reichel-antwon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-11T11:05:51.926Z','Affiliate','Cale Ankunding','Plevna','1991-09-12',46.215794,59344,'12f1b6cf-9a63-45a7-90c5-711257cb1ea7',1398,-104.6251721,'312 Lame Jones Trail','MT','ankunding.cale@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-18T06:42:52.261Z','Twitter','Jamison Rodriguez','Luling','1961-07-16',29.7607019,78648,'e9f58317-f5c9-48aa-b91e-32b0448955d3',1399,-97.7324809,'1395 Callihan Road','TX','rodriguez-jamison@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-09T04:57:03.017Z','Twitter','Sherman Schmitt','Gunnison','1992-12-03',38.6832382,81230,'a6408f53-2478-4181-8507-6639b54294f8',1400,-106.9923199,'7911 County Road 730','CO','schmitt-sherman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-17T22:56:42.062Z','Facebook','Wilburn Bernhard','Marion','1960-07-15',42.065906,52302,'a8460dcf-c4cf-4a3e-a4e2-55e198425b4d',1401,-91.503693,'2818 Jordans Grove Road','IA','bernhard-wilburn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-18T11:31:43.535Z','Facebook','Natalia Herzog','Joshua Tree','1978-10-16',34.0908609,92252,'6887fde3-5310-4890-89ed-25ba84ff9706',1402,-116.269298,'9000 Rock Haven Road','CA','herzog.natalia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-14T10:43:19.635Z','Twitter','Alverta Rogahn','Meade','1988-06-25',37.1489336,67864,'d410d656-596e-4c5d-8231-330dd8e9636a',1403,-100.1449543,'23000-23524 29 Road','KS','alverta-rogahn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-25T06:00:39.729Z','Facebook','Nina Marvin','Houtzdale','1979-10-01',40.830092,16651,'7e7a56f5-6676-498c-9c92-9780276afbf7',1404,-78.328512,'1512 Spring Street','PA','marvin-nina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-26T10:49:57.974Z','Twitter','Leo Toy','Venango','1993-04-03',40.8326643,69168,'66cf9da8-46b6-4075-afde-85234161c75b',1405,-102.0270649,'75915 Road 312','NE','leo.toy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-27T08:15:27.892Z','Twitter','Jefferey Auer','Anacoco','1977-06-26',31.2528411,71403,'9d3fffa1-65bf-4bce-9545-621b048c685a',1406,-93.4338884,'230-240 Farris Cemetary Road','LA','auer-jefferey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-25T04:31:25.759Z','Google','Lorna Greenholt','Broadalbin','1964-11-06',43.1328381,12025,'77383a6f-5f9f-46cf-ae81-606eadd9a163',1407,-74.11540099999999,'551 Fayville Road','NY','lorna.greenholt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-31T06:00:50.851Z','Affiliate','Lilly Veum','Glennallen','1971-04-01',61.9880241,99588,'2325f463-e345-410f-a47a-7e40b2d3d882',1408,-147.0136133,'8110 Glenn Highway','AK','lilly-veum@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-09T23:11:11.112Z','Twitter','Destinee Mills','Fort Davis','1987-05-30',30.5900209,79734,'2243aa2c-36ff-4549-96f3-dc31b9cca4a9',1409,-104.0698574,'218 Cedar Trail','TX','mills-destinee@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-17T19:51:39.259Z','Twitter','Efren Kshlerin','Park City','1968-10-29',37.0965383,42160,'6c6319aa-f137-42f2-9b4d-c7c43c77b82e',1410,-86.13427329999999,'19366 Louisville Road','KY','efren-kshlerin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-19T20:17:02.487Z','Organic','Lilly Harber','Cochranton','1997-08-08',41.5211048,16314,'787e313c-616a-455f-8fa9-bfcc56df93d1',1411,-79.9952654,'25940-27498 Stockton Corners Road','PA','lilly.harber@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-08T07:53:07.155Z','Twitter','Leilani McCullough','Bay City','1991-11-09',28.913617,77414,'b73f3a60-6855-470b-a0fd-8f8c4b5a435a',1412,-95.97610309999999,'60 Avenue F North','TX','mccullough-leilani@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-10T21:20:00.507Z','Facebook','Erick Nitzsche','Glenfield','1993-11-05',47.4792833,58443,'3e3514b7-b46d-4464-befd-725c9cf33c43',1413,-98.7133154,'401-499 86th Avenue Northeast','ND','nitzsche.erick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-30T02:17:47.732Z','Google','Delores Kuhlman','Endicott','1997-04-06',46.9018564,99125,'c4341746-3208-4b6f-8505-36dde878b419',1414,-117.7551321,'2551 Storment Road','WA','delores.kuhlman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-05T22:24:16.623Z','Twitter','Anita Frami','Rochester','1964-10-11',41.1757901,46975,'5cf18871-03d1-4e6c-b7ce-373eaa57292f',1415,-86.3298392,'14036 Indiana 110','IN','frami.anita@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-22T20:06:15.682Z','Facebook','Michel Wilderman','Oakfield','1968-02-07',43.101427,14125,'6d713dc7-5aa8-4b6a-8bc6-a48f0eccb5fd',1416,-78.2494959,'6444 Fisher Road','NY','michel-wilderman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-16T03:17:18.479Z','Facebook','Greg Purdy','West Glacier','1993-11-12',48.6786822,59936,'bc0d3732-7c13-4e25-a128-1dd6698110cd',1417,-113.8184402,'16809 Going-to-the-Sun Road','MT','greg-purdy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-31T21:21:03.886Z','Affiliate','Reagan Senger','Fort Deposit','1992-06-09',32.025204,36032,'a9aa978e-7fde-4ae8-823d-97c5b42bff05',1418,-86.6599078,'5187 County Road 45','AL','senger-reagan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-07T22:26:39.486Z','Organic','Angelica Towne','Doon','1971-09-22',43.2662019,51235,'66ec9da2-0c05-4f0e-aef5-26cdc6f7bcb6',1419,-96.19779609999999,'2601-2699 Grant Avenue','IA','towne.angelica@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-25T07:27:35.046Z','Google','Leonardo Langworth','Townsend','1970-12-06',46.2787702,59644,'6606f76f-8a58-4ef6-bc5b-2d2f062e3830',1420,-111.2326623,'92 Upper Greyson Creek Road','MT','langworth.leonardo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-10T06:46:36.431Z','Organic','Cornell Cartwright','Pomeroy','1974-01-17',46.5612182,99347,'5caa600c-4e86-4d1b-bdd8-c3e65dee8d3f',1421,-117.5284755,'140 South Deadman Road','WA','cornell-cartwright@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-04T23:40:13.188Z','Organic','Sigrid Maggio','Iuka','1991-09-22',38.5058074,62849,'77d39aa8-c97c-4cdc-b2a2-a780b4ab0fdf',1422,-88.7177379,'818-898 County Road 2300 East','IL','sigrid.maggio@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-03T19:13:31.560Z','Facebook','Randi Howe','Jasper','1965-06-30',30.9197909,75951,'c789c8f1-dd90-435b-908d-a3f4710aa3ec',1423,-94.1673134,'1898 County Road 027','TX','howe-randi@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-19T19:11:21.167Z','Google','Rey Schumm','Wilson','1979-04-30',38.8271655,67490,'443f20e5-508d-426d-a8a9-e043c548b6bf',1424,-98.4199407,'411-467 Avenue D','KS','rey-schumm@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-29T07:30:17.755Z','Twitter','Annabelle Ernser','Titonka','1996-07-25',43.2543472,50480,'f36ef2b7-aa1b-42c7-ad8f-d1f1427a5817',1425,-94.0150718,'2208 340th Street','IA','ernser-annabelle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-21T20:00:46.213Z','Twitter','Filiberto Armstrong','Omaha','1966-07-06',33.1439027,75571,'fe9c3784-aeea-453e-88c4-f65e9b39f52b',1426,-94.74486329999999,'1564 County Road 3309','TX','armstrong-filiberto@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-30T10:52:59.665Z','Google','Daphne Gulgowski','Augusta','1990-08-01',47.459075,59410,'ac7ac6ab-6b6f-4df7-998a-705fbc856bf5',1427,-112.8400399,'2335 Mule Creek Road','MT','daphne-gulgowski@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-02T17:03:20.091Z','Twitter','Garrick Rolfson','Sardinia','1996-09-14',39.0120209,45171,'190545b1-2a06-4498-b744-edf9b7bab6a2',1428,-83.81941479999999,'13615-13827 Matthews Road','OH','garrick-rolfson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-21T00:48:23.408Z','Organic','Kris Schinner','Coxs Creek','1984-02-22',37.990355,40013,'e89ceddf-9e86-45b2-a300-c33494415456',1429,-85.4719301,'3900 Love Lane','KY','kris-schinner@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-07T11:21:21.512Z','Organic','Reyna Greenholt','Bryan','1989-11-02',30.78410239999999,77808,'cbca56a3-f39a-4e17-9244-d60b97cfdd28',1430,-96.24686849999999,'11459 Oak Lake Road','TX','reyna-greenholt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-23T13:01:58.455Z','Organic','Mireya Sporer','Midpines','1998-10-23',37.570637,95345,'ca54fc3f-6f2f-48d8-bc73-7106330902b0',1431,-119.978165,'5300 Rumley Mine Road','CA','sporer-mireya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-23T23:14:31.189Z','Facebook','Willie Nikolaus','Shawnee','1992-06-12',35.3526971,74801,'fe98ea85-426e-49b5-b7ad-c5dfd45524f8',1432,-97.10998529999999,'14508 North South 331','OK','nikolaus-willie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-07T11:33:18.761Z','Affiliate','Brennon Gerlach','Taylor','1969-05-18',30.557133,76574,'55edb033-aab6-47e8-81b9-714bf51cba78',1433,-97.37338349999999,'7197-7805 Farm to Market Road 619','TX','brennon-gerlach@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-29T22:11:34.937Z','Google','Eladio Steuber','Altoona','1970-10-10',41.6179294,50009,'deb90ded-d3c6-425f-98ed-0f484a2922b3',1434,-93.46465049999999,'2627-2687 Northeast 72nd Street','IA','steuber-eladio@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-07T11:23:11.808Z','Organic','Kiara Bayer','Rossville','1996-05-23',35.025246,38066,'4d852f39-c2ac-4db6-9a32-e0be9a244cc1',1435,-89.559371,'1437 Knox Road','TN','kiara.bayer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-05T08:03:46.927Z','Twitter','Tyrel Runolfsson','Grand Mound','1964-09-10',41.86593149999999,52751,'d6f2ec5b-f49c-4cfe-8a4d-b5d1be115e2f',1436,-90.72437719999999,'1896 215th Street','IA','tyrel.runolfsson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-16T19:48:43.897Z','Google','Marjolaine Torp','Wynot','1994-02-04',42.7013214,68792,'a565bd1e-c101-4b66-838f-c7795436108d',1437,-97.08685129999999,'57207 888th Road','NE','torp-marjolaine@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-20T16:51:13.933Z','Organic','Therese Schuppe','Purvis','1964-11-29',31.184549,39475,'4dfbf4d8-5303-4fa8-9426-971feeeaeaa3',1438,-89.451286,'223 Haden Road','MS','schuppe-therese@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-05T06:03:41.909Z','Facebook','Alayna Conroy','Chandler','1977-04-03',43.91931470000001,56122,'d21934c9-5351-44a3-832b-b783f689b8aa',1439,-95.9950034,'351 Valley Road','MN','conroy.alayna@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-06T06:19:58.232Z','Twitter','Jean Hickle','Elyria','1982-09-13',41.401808,44035,'2b4b5f8f-d3b8-4102-ae4b-88062235a60e',1440,-82.141712,'42270 Griswold Road','OH','hickle-jean@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-14T21:55:54.488Z','Twitter','Ashton Herman','Rushville','1977-06-11',39.625267,64484,'337b9336-7bfd-4257-9d8b-ff50b191d53d',1441,-95.006856,'12920 Southwest 81st Road','MO','ashton-herman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-10T02:54:05.362Z','Affiliate','Raoul DuBuque','Immokalee','1967-07-24',26.4487202,34142,'578ac079-4413-4604-a69e-adc886f5ea61',1442,-81.2721499,'2424 Thorp Road','FL','dubuque-raoul@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T18:30:43.385Z','Facebook','Tomasa Hartmann','Solon Springs','1972-03-17',46.3331733,54873,'818e34a0-e044-4a44-bfd1-0214c7c04520',1443,-91.53325819999999,'52000-52086 Wisconsin 27','WI','hartmann-tomasa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-08T16:50:31.376Z','Affiliate','Kaleigh Harris','Yuma','1964-03-12',32.7212981,85365,'0c0689c9-fe7a-40ab-bcd5-ba9102ad2d83',1444,-114.3471867,'7115 South Avenue 17 East','AZ','kaleigh.harris@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-04T16:54:23.797Z','Facebook','Cleve Crist','Selma','1963-08-31',35.492303,27576,'e09a7761-5db6-4eb0-9e21-9a117a322631',1445,-78.22756799999999,'481 Wc Braswell Road','NC','cleve.crist@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-17T20:37:25.436Z','Twitter','Gaetano Rogahn','Mizpah','1961-06-05',47.903819,56660,'7b433e06-a179-4100-9326-9b28c52a00f6',1446,-94.09948299999999,'11802 South Co Road 6','MN','gaetano-rogahn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T03:23:12.773Z','Twitter','Johathan Sanford','Cascade','1984-01-26',47.1241259,59421,'087bfd5f-1fc5-4640-8057-69870e01759c',1447,-111.550147,'970 Adel Road','MT','sanford-johathan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-21T00:44:00.637Z','Google','Deron Cremin','Somerset','1972-10-10',38.8777388,81434,'353dba11-1a9d-442e-9fef-72a926704bea',1448,-107.1770073,'12492-13498 County Road 12','CO','deron-cremin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-28T11:30:47.505Z','Affiliate','Jamar Miller','Whitefish','1959-11-27',48.4847586,59937,'a5a633ab-6b91-4ce6-ad51-a9ac2d70eed1',1449,-114.3989592,'67 Eagle Creek Trail','MT','jamar.miller@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-30T13:22:57.289Z','Facebook','Zachariah Bosco','Mission','1977-05-17',26.2078681,78572,'48d8e80c-d7fc-41c1-aad0-2c310dc7d7b2',1450,-98.3643379,'3104 Humberto Garza Junior Street','TX','bosco-zachariah@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-10T00:49:31.189Z','Affiliate','Electa Stehr','Shepherd','1973-09-05',43.4984703,48883,'bf12c655-f19a-4664-9c81-f4e5b3e10397',1451,-84.81185909999999,'9756 South Lincoln Road','MI','electa-stehr@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-06T00:41:08.496Z','Organic','Angeline Romaguera','Keswick','1992-10-26',38.0396349,22947,'72f44a91-ba57-4c23-9cee-c7463f7b19c0',1452,-78.313039,'478 Campbell Road','VA','romaguera-angeline@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-13T08:22:22.655Z','Organic','Ted Weber','Richmond','1987-02-01',39.4381138,64085,'25d2dad6-6aa8-4363-81b0-319fd6c0da7c',1453,-93.8289722,'46801 East 192nd Street','MO','ted-weber@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-27T20:03:12.603Z','Twitter','Arnaldo Rice','Vernon Center','1983-04-03',43.9437577,56090,'b06542e5-5e58-4c0c-988d-489ed4d5a5b7',1454,-94.2440666,'13478 507th Avenue','MN','rice.arnaldo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-25T17:34:52.196Z','Organic','Brandyn Deckow','Eudora','1982-09-06',38.885884,66025,'de3b0b86-f52b-4bcd-9d92-2591ea623d6d',1455,-95.095698,'1019 East 2200 Road','KS','deckow-brandyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-18T22:38:32.068Z','Twitter','Reyna Conroy','Lexington','1964-06-17',43.3300296,48450,'d54af336-453f-40c6-ace3-691212830975',1456,-82.53618829999999,'3384 Old Orchard Lane','MI','conroy.reyna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-04T04:18:29.907Z','Affiliate','Lydia Schultz','Allegan','1994-08-12',42.5477132,49010,'6204c08d-f941-4417-8325-8f85bd37f226',1457,-85.9206291,'3837 Forest Trail','MI','lydia.schultz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-08T06:00:14.350Z','Affiliate','Rex Boehm','Atwater','1996-01-15',37.3668518,95301,'27e5d89e-f9f6-4624-af8d-7aa67765ee1d',1458,-120.6647798,'5301-5315 Olive Avenue','CA','rex.boehm@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-10T02:03:11.492Z','Twitter','Jarrett Emard','Oologah','1968-01-26',36.411321,74053,'610651e1-7424-43ed-8c5b-57125b2d1e78',1459,-95.750602,'13996 U.S Highway 169','OK','jarrett-emard@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-01T10:27:12.442Z','Twitter','Miguel Stoltenberg','Moorefield','1996-12-03',39.1290762,26836,'1a255da8-e1d7-4c18-9d7a-1b7c68fc7315',1460,-78.88821709999999,'3936 Ashton Woods Drive','WV','stoltenberg-miguel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-22T15:25:57.803Z','Facebook','Benny Johnston','Bonesteel','1964-09-27',43.0902834,57317,'87196c90-996b-4a3a-a527-9a20ac83e988',1461,-98.9564362,'36150 Eldeen Avenue','SD','johnston.benny@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-02T12:03:08.479Z','Organic','Wilmer Leannon','Cle Elum','1984-04-29',47.150362,98922,'bbdcaffb-fa45-4713-97e6-74e96cdf2c74',1462,-120.872251,'470 Thornton View Road','WA','wilmer.leannon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-24T21:42:01.348Z','Facebook','Adolfo Flatley','Prospect Hill','1996-11-23',36.259424,27314,'8b21bb96-eabb-4d38-9875-f9069e00d0e6',1463,-79.161563,'1986 North Carolina 49','NC','adolfo.flatley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-05T08:07:10.424Z','Facebook','Jarrett Huel','Leland','1980-11-29',43.3785313,50453,'ddf448d1-69e8-41b4-870c-371b3a5334e8',1464,-93.675874,'42473 150th Avenue','IA','huel-jarrett@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-17T05:12:00.684Z','Affiliate','Meaghan Smith','Dennison','1998-07-20',44.403199,55018,'3fa07eff-86a2-486f-b405-cdbe321af8c5',1465,-93.00742400000001,'37929 20th Avenue','MN','smith-meaghan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-15T04:34:15.206Z','Affiliate','Monserrate Hermiston','Telephone','1999-10-13',33.8434868,75488,'7b0519d0-433a-4ad9-bf8b-bae523e4e6b3',1466,-95.90124290000001,'1987 Farm to Market 79','TX','hermiston.monserrate@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-17T15:29:39.573Z','Facebook','Ronny Jacobs','Flemingsburg','1991-01-02',38.3975096,41041,'e0ffcfcd-5d73-4797-92e4-16335512d794',1467,-83.6592131,'7219 Morehead Road','KY','jacobs-ronny@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-12T11:27:22.435Z','Organic','Elvie Parisian','Smithville','1978-01-07',39.0705916,26178,'5d3be1d2-0903-40b1-80bc-eb50f6a2aba8',1468,-80.907283,'864 Sunny Hollow Road','WV','elvie.parisian@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-01T22:09:53.263Z','Organic','Dianna Murray','Levelland','1986-11-26',33.704565,79336,'2ef7443f-0db8-4444-b3a1-720930991997',1469,-102.5888482,'4151-4199 Kenya Road','TX','dianna-murray@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-07T22:21:25.232Z','Affiliate','Tanner Walker','Thomson','1977-05-14',33.472702,30824,'8482762f-eaeb-4515-9b0d-0333992be832',1470,-82.48024939999999,'1496-1502 Harrison Road Southeast','GA','tanner-walker@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-12T01:57:33.811Z','Affiliate','Edyth Roob','Throckmorton','1975-05-26',33.2287456,76483,'63148748-608c-4d98-bb4b-c1581cb06491',1471,-99.195262,'1551 U.S. 283','TX','roob-edyth@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-14T04:49:26.729Z','Affiliate','Charity Blick','Malta Bend','1964-10-02',39.1898386,65339,'a7f768c1-8fe5-4e31-a476-8c0b4ce5d7d3',1472,-93.3398946,'27335 Durango Avenue','MO','blick.charity@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-06T11:30:42.580Z','Organic','Arvel Lakin','Western','1970-04-07',40.3536303,68464,'3c0b1680-0a2a-44cd-8548-de2352edd9e3',1473,-97.20280249999999,'1900 County Road Y','NE','arvel-lakin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-27T02:09:16.893Z','Affiliate','Dorthy Becker','Pearisburg','1975-02-11',37.278886,24134,'27994f62-7de8-4adf-a2a1-2937382c14fd',1474,-80.752978,'167 Cooper Lane','VA','dorthy.becker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-10T15:02:28.307Z','Twitter','Kobe O''Keefe','Bayboro','1965-10-08',35.1345926,28515,'63630794-481b-4b25-a2ce-f46833d3150f',1475,-76.7618676,'369 McCotter Road','NC','keefe-kobe-o@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-20T13:11:32.939Z','Google','Berneice White','Portales','1999-07-03',34.0696338,88130,'ac5458a9-8ae2-42a1-92ea-74c1a15a3dcd',1476,-103.2871496,'1400-1598 South Roosevelt Road 13','NM','white.berneice@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-26T00:26:03.250Z','Google','Efrain Mante','Marana','1979-01-20',32.429694,85653,'de946709-d2ed-4465-a5c0-f8e05fa6ca54',1477,-111.331505,'12402 North Carbine Road','AZ','mante-efrain@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-24T19:39:03.900Z','Affiliate','Vernie Lakin','East Canton','1992-09-27',40.792316,44730,'281ff4b7-4d37-4616-a9d6-58ca9b55f71c',1478,-81.224113,'9508 Lisbon Street Northeast','OH','lakin-vernie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-14T06:25:43.674Z','Affiliate','Colton Kuphal','Edmore','1992-09-22',48.42087129999999,58330,'9e7d333a-5acf-4df9-a166-5bf378d107f2',1479,-98.4923376,'6901-6963 100th Avenue Northeast','ND','kuphal.colton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-17T22:08:38.918Z','Organic','Floyd Douglas','Greenville','1959-09-22',30.583725,32331,'5be9f8a3-6190-4e5f-8bd8-4a5baa8796f9',1480,-83.7119063,'2-282 West 7th Way','FL','floyd-douglas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-25T23:14:57.918Z','Twitter','Erna Aufderhar','Livingston','1959-01-29',30.714283,77351,'716ab5de-1db1-42dc-9bcf-4f6bbf122a65',1481,-94.902378,'208 Dogwood Hill Road','TX','aufderhar-erna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-20T13:31:35.199Z','Organic','Connie Satterfield','Billings','1962-10-23',45.75160400000001,59102,'ea5d071f-0da4-47ac-beca-bf8d9f2b8d0a',1482,-108.604186,'22 Bridlewood Drive','MT','satterfield-connie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-17T17:08:34.052Z','Affiliate','Breanna Pollich','Bremen','1968-08-18',33.737525,30110,'aea39ba3-0148-439d-b125-fbc3118acaba',1483,-85.2354063,'219 Old Ridgeway Road','GA','pollich-breanna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-29T16:31:38.266Z','Affiliate','Ellsworth West','Kettle River','1980-10-04',46.5844548,55757,'df10b121-6d6e-4b7e-8416-51848f15cec2',1484,-92.9939555,'2612 South Finn Road','MN','ellsworth.west@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-09T04:39:34.765Z','Twitter','Erich Kris','Bokchito','1982-10-18',33.8833259,74726,'62b4b1bf-1114-4cc7-a253-4bedc6d82c7d',1485,-96.21635719999999,'5499-5529 N3820 Road','OK','erich.kris@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-19T06:35:31.028Z','Organic','Iva Wuckert','Woodville','1966-01-05',31.1658398,39669,'344f0e59-3a11-4421-adf2-736b0470dc9e',1486,-91.2507991,'498 Walker Lane','MS','wuckert.iva@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-05T03:06:13.169Z','Organic','Garret Schoen','Clay Center','1979-05-14',39.2245989,67432,'e36d3598-4a38-4782-a6ec-52982f1e7b33',1487,-97.42682169999999,'1833-1899 North 270th Road','KS','schoen.garret@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-15T20:19:34.031Z','Organic','Matt Kemmer','Geneseo','1964-01-25',38.6539478,67444,'ba0de102-ec62-42c3-a336-b05e6071b013',1488,-98.01970569999999,'5 Bourbon Street','KS','kemmer-matt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-23T11:51:52.444Z','Affiliate','Burnice Marks','Circle','1964-05-05',47.41297850000001,59215,'c4e3256e-d407-4e0f-92d0-78abbfe626f1',1489,-105.7740833,'844-878 Mayberry Road','MT','burnice-marks@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-27T23:17:43.942Z','Facebook','Waylon Jaskolski','Gladstone','1989-11-03',46.8850376,58630,'39494d14-ccc4-4c4a-aec2-392c65bf81b3',1490,-102.5623717,'3639 100th Avenue Southwest','ND','jaskolski-waylon@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-05T02:03:38.832Z','Google','Payton Denesik','Catlettsburg','1969-12-29',38.329125,41129,'763ffa29-3059-4a51-b412-0ba4ea37a1cd',1491,-82.6987683,'16800-17498 Country Club Drive','KY','denesik-payton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-01T11:54:41.981Z','Affiliate','Jameson Grady','Castalia','1974-01-13',41.3518892,44824,'2573c1d8-4dc4-4520-98b2-8448c3ff3add',1492,-82.8445302,'500-550 Southwest Road','OH','jameson-grady@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-21T12:16:42.635Z','Organic','Mustafa Gleason','Mokelumne Hill','1978-11-27',38.294071,95245,'59372df1-d35e-427b-9c47-7e8c3a6cd67e',1493,-120.601589,'15469 Jesus Maria Road','CA','mustafa.gleason@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-31T04:49:55.636Z','Twitter','Viviane Kovacek','Horatio','1979-05-05',33.9167659,71842,'823612ef-2857-4dab-afb1-b0b818f11e00',1494,-94.38419499999999,'160 Riverview Drive','AR','viviane.kovacek@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-14T10:41:00.379Z','Twitter','Dena Schiller','Bostic','1990-02-18',35.472722,28018,'6022074e-9016-4d2c-a575-0ae146a7b23e',1495,-81.805212,'198 Pearson Moss Drive','NC','dena-schiller@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-01T19:10:57.909Z','Affiliate','Eugenia Stroman','Lakeside','1988-05-30',42.1307055,69351,'2f47d56a-e112-4397-9277-9292af45100b',1496,-102.4795368,'3466 183rd Trail','NE','eugenia-stroman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-22T05:22:28.140Z','Twitter','Jensen Mills','Ochopee','1978-07-13',25.8698057,34141,'69bbb978-1751-48a9-8bd9-df7b27352da6',1497,-81.173395,'47201 Tamiami Trail East','FL','jensen-mills@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-06T14:50:28.877Z','Facebook','Giovani Lesch','Sheridan','1983-07-29',44.696725,82801,'61bad009-7fde-4736-a055-d394f1c15fcc',1498,-107.214077,'37 Beckton Drive','WY','giovani.lesch@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-06T16:45:45.700Z','Organic','Lauryn Simonis','Jefferson','1981-11-24',39.1864188,80456,'bdcd44cb-ef4a-4365-a51c-22eb4ae661aa',1499,-105.4994581,'25800 County Road 77','CO','lauryn-simonis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-25T06:13:49.343Z','Facebook','Kadin Mraz','Buchanan','1992-02-06',47.0808663,58420,'951e1d44-01cb-498f-9d98-78142d9e3653',1500,-98.8165657,'7901-7999 23rd Street Southeast','ND','kadin.mraz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-24T16:44:22.206Z','Facebook','Winona Hickle','Los Banos','1975-07-07',37.0223516,93635,'d9482002-c970-44be-8846-7e13f817679b',1501,-120.890925,'18361-18655 South Creek Road','CA','winona.hickle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-21T06:08:03.998Z','Facebook','Alayna Halvorson','Webster','1990-03-21',48.37040150000001,58382,'a3ca0a17-9a27-4000-9c46-fd57859afba1',1502,-98.93015109999999,'7740-7798 66th Street Northeast','ND','alayna.halvorson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-19T01:24:43.112Z','Twitter','Amy Nolan','Brunson','1972-06-16',32.8409626,29911,'710a2daa-9f34-457b-a601-0996982b9a4d',1503,-81.20136839999999,'5016 Luray Highway','SC','nolan-amy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-08T22:58:39.687Z','Organic','Gracie Reichel','Pinckney','1979-04-20',42.4575898,48169,'886f44a2-a0c7-44a6-b97c-05fe2afe00cd',1504,-84.0450789,'15313 Livermore Road','MI','reichel.gracie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-17T01:41:34.240Z','Facebook','Joany Bartell','Niles','1978-05-26',41.7911848,49120,'d519a9f8-31ef-48f9-8e25-087b71726f72',1505,-86.11495819999999,'3205-3209 U.S. 12','MI','bartell-joany@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-11T10:08:01.860Z','Facebook','Ashlee Douglas','Princeton','1983-02-13',42.4367078,01541,'577cfbf4-e928-4fd4-9471-80804f7cedb7',1506,-71.8534573,'70 Coal Kiln Road','MA','ashlee-douglas@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-11T15:47:31.855Z','Facebook','Verla Legros','Prineville','1998-08-26',44.3916327,97754,'b111fad5-83f1-48b1-838c-4d15c6befc10',1507,-120.93806,'7337 Northwest Ryegrass Road','OR','legros-verla@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-30T15:52:39.479Z','Google','Danial Kohler','Pittsburg','1977-02-03',32.885575,75686,'147f5d52-2a3a-406c-9640-3995dd4c278d',1508,-94.810548,'12231 Farm to Market Road 2796','TX','kohler.danial@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-29T22:52:36.838Z','Twitter','Henry Rowe','Drumright','1960-12-22',36.012014,74030,'83135fa4-ab7a-4078-b2c1-f7c801e97cc9',1509,-96.559501,'10431 South 513th West Avenue','OK','henry-rowe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-15T19:40:26.069Z','Affiliate','Evelyn Weissnat','Abbeville','1997-09-22',31.9861377,31001,'a61ec11f-38b2-4fc5-883c-d96acb97911d',1510,-83.30078189999999,'470 South Broad Street','GA','weissnat.evelyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-22T12:19:01.579Z','Facebook','Otis Murazik','Coulterville','1980-09-26',37.67874,95311,'cdf2a804-b2a7-42d9-9943-2f3d48906546',1511,-120.195549,'4695 Crown Lead Road','CA','murazik.otis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-09T07:05:17.153Z','Twitter','Kade Heathcote','Kila','1994-02-14',48.026764,59920,'c7e7741c-f399-4b05-9c8a-9fdf045dee2e',1512,-114.5130826,'2734 Browns Meadow Road','MT','kade-heathcote@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-24T02:00:21.196Z','Google','Hortense Donnelly','Davenport','1973-01-21',47.6827165,99122,'8c343cd3-42bb-4750-b560-b8bf6cb20ff6',1513,-118.234703,'28515 Horwege Road','WA','hortense.donnelly@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-10T02:32:25.568Z','Facebook','Shaniya Roob','Lemhi','1965-02-10',44.8173148,83465,'2c0fc8b6-4537-46ad-9b52-d1ffbc18bd4f',1514,-113.6845403,'542 National Forest Development Road 008','ID','roob.shaniya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-22T20:27:44.152Z','Facebook','Mylene Kessler','Columbus','1968-01-21',35.22018,28722,'ffd9e6e5-8954-4986-aa1e-736f7175e82f',1515,-82.092621,'653 Green Fields Lane','NC','kessler.mylene@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-03T16:38:52.024Z','Facebook','Sydnie Labadie','Cadiz','1965-08-02',36.8504259,42211,'b09b1b43-c0a9-4c7e-9d24-3f68e53faee3',1516,-87.9559804,'6627 Blue Spring Road','KY','labadie.sydnie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-28T10:30:10.050Z','Organic','Clifton Tremblay','Fallon','1961-06-04',46.77222,59326,'57da7202-a712-4424-ac6a-7da9c9861c10',1517,-104.71361,'315 Pine Unit Road','MT','tremblay-clifton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-05T18:37:03.569Z','Affiliate','Serena Ziemann','Roosevelt','1968-10-25',45.8193559,99356,'249cb76a-da23-4f27-8044-264dbc4f5f39',1518,-120.4218159,'353-551 Newell Grade Road','WA','ziemann-serena@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-29T11:11:34.128Z','Google','Ashley Price','Emerson','1987-06-02',41.1167214,51533,'590e2737-5383-4a49-90d9-b37571c08fa3',1519,-95.33849479999999,'1224-1298 130th Street','IA','ashley.price@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-24T01:01:41.646Z','Facebook','Vilma Bednar','Union Springs','1973-08-22',32.0650555,36089,'bc26db68-2f54-4741-b135-30a73864a416',1520,-85.70541229999999,'3686 County Road 31','AL','vilma.bednar@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-31T19:02:37.657Z','Facebook','Terry Lehner','Reliance','1976-02-27',43.9630749,57569,'5ff1ff8b-2fd2-4c5f-939a-0e7702348a8d',1521,-99.5404085,'33151 South Dakota 47','SD','lehner.terry@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-26T06:42:18.451Z','Organic','Edmund Adams','Broadalbin','1997-10-18',43.1264718,12025,'2d9a3a17-23a3-4c92-9bbe-612bfce1feb2',1522,-74.08001809999999,'139 Hans Creek Road','NY','edmund-adams@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-24T02:43:04.848Z','Facebook','Mathilde Weissnat','Washington','1999-02-17',35.5942876,27889,'92e20669-b6b0-4b5f-a2de-2bb2243677d2',1523,-77.098241,'360 Page Road','NC','weissnat.mathilde@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-14T09:02:32.660Z','Google','Emma Crona','Covelo','1969-04-03',39.835329,95428,'f6b2f997-3c92-436e-97b5-bfa4b540ef7b',1524,-123.130293,'30374 Mendocino Pass Road','CA','crona.emma@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-09T11:04:00.460Z','Facebook','Quentin Morar','Necedah','1991-07-20',44.0337702,54646,'2e3a79b7-aab8-46ad-958d-a10852adbe70',1525,-90.0817086,'700-708 West Middle Street','WI','morar.quentin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-24T15:04:55.413Z','Twitter','Tyson Stehr','Whitefield','1991-10-13',44.2286948,04353,'56f5d709-b4b0-4460-9937-1a391eb2eefa',1526,-69.62147089999999,'51 Gorman Lane','ME','stehr.tyson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-14T21:40:23.188Z','Google','Annabell Tremblay','Fisher','1963-12-09',47.8437113,56723,'376b2fa1-304f-44c9-8291-36a056f20f4c',1527,-96.7390394,'22364 320th Avenue Southwest','MN','tremblay.annabell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-30T19:26:03.580Z','Organic','Donny Murazik','Winder','1980-10-29',34.054148,30680,'157aed28-17b3-474a-91a7-1c2560753d75',1528,-83.75065699999999,'546 Mulberry Road','GA','murazik-donny@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-29T10:05:19.886Z','Google','Deontae Brown','Royal Center','1989-12-31',40.8422394,46978,'701ea08a-7bfc-4af9-91aa-0702c2b6eea2',1529,-86.446347,'5001-5637 North Co Road 375 West','IN','brown-deontae@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-28T17:35:56.532Z','Facebook','Meta Abbott','Keosauqua','1977-09-24',40.7876069,52565,'90b5b6ff-5bb2-4498-88d2-33c0fd92ca82',1530,-91.96811699999999,'17736-18032 Lark Avenue','IA','abbott.meta@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-09T18:00:10.644Z','Affiliate','Jabari Schimmel','Rapid River','1972-09-05',45.7504108,49878,'85fa9f49-acbf-4ab1-bbf3-2413d54b9c81',1531,-86.91291009999999,'8905 15th Road','MI','jabari.schimmel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-26T05:34:57.234Z','Google','Marquis Fisher','Dickinson','1983-03-07',46.9343702,58601,'5b47033e-7aa6-48f9-8316-816e446e4cce',1532,-102.8765487,'11523 33rd Street Southwest','ND','marquis-fisher@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-30T23:13:21.349Z','Google','Alexanne Klocko','Bluffs','1991-08-11',39.71045609999999,62621,'a2824544-18da-45c3-a0a2-710ba8c32a6d',1533,-90.60765669999999,'225-299 West Phillips Ferry Road','IL','klocko-alexanne@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-02T03:33:07.220Z','Affiliate','Chelsie Bergstrom','Buhl','1958-05-29',42.6513994,83316,'b9084c9a-0c78-4a7e-9c71-177eee7b7d49',1534,-114.8666274,'901-921 East 4500 North','ID','bergstrom-chelsie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-09T03:44:05.256Z','Twitter','Eleonore Towne','Dillon','1991-03-02',39.593326,80435,'57d30fcd-c5f1-4464-a1e3-15f695f06a7a',1535,-106.0200552,'51-99 Circle B','CO','eleonore-towne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-19T20:36:04.808Z','Organic','Reece Kozey','Pickett','1979-03-22',43.863401,54964,'cfddd1f7-5e3b-4d27-92d6-043980c0e79e',1536,-88.6968,'W10733 Olden Road','WI','kozey.reece@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-31T02:33:41.948Z','Organic','Jessyca Mayert','Spencer','1973-11-02',38.8216915,25276,'fde220be-d631-4050-a303-1b72425937a7',1537,-81.3836443,'1501-1517 Parkersburg Road','WV','mayert.jessyca@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-18T18:50:24.753Z','Facebook','Blanche Bednar','Juneau','1977-12-15',58.2438,99801,'7ffafdd2-02cf-4ed8-bf55-b04c69268cbc',1538,-134.296,'6020 Thane Road','AK','bednar.blanche@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-05T08:29:13.010Z','Twitter','Jean Zulauf','Lockport','1999-08-31',43.150971,14094,'21af8ff4-62c2-433e-b206-82b8111a41f1',1539,-78.580462,'7922 Lincoln Avenue Extension','NY','jean.zulauf@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-08T07:43:08.578Z','Facebook','Blaze Barrows','Grandview','1998-03-09',35.770582,37337,'4ca5bd34-1a15-48e7-9bfc-4b508704aa47',1540,-84.92956099999999,'1100 Happy Top Road','TN','blaze.barrows@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-20T14:08:53.814Z','Affiliate','Dudley Upton','Owenton','1980-03-21',38.3971132,40359,'8d162085-ca11-472f-bd10-2724456764ee',1541,-84.7471047,'80 Old Teresita Road','KY','dudley.upton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-26T02:51:52.600Z','Organic','Camille Koepp','Farmersville','1976-12-27',33.2654697,75442,'e5a03eef-2d89-46ea-b8b2-e7817b4b78da',1542,-96.30465389999999,'7667 County Road 705','TX','camille.koepp@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-07T20:58:52.657Z','Google','Madelyn Hermann','South Fork','1959-07-12',37.7642515,81154,'3ea994f8-3504-484a-b057-84ae8164d423',1543,-106.7990794,'36 Stagecoach Drive','CO','hermann-madelyn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-03T12:10:12.547Z','Organic','Lionel Stoltenberg','Marthaville','1998-07-03',31.8048375,71450,'208d0adf-dedc-49d6-be66-b8d38f3624b0',1544,-93.3722943,'2191-2497 Allen-Beulah Road','LA','lionel.stoltenberg@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-19T05:02:04.993Z','Twitter','Kendall Dare','Granada','1989-02-27',38.02106089999999,81041,'b886f3c6-3445-492b-a5f0-c7563af657bf',1545,-102.3020413,'26496-28658 County Road 25','CO','dare-kendall@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-14T08:21:46.110Z','Google','Casimer Ward','Little Suamico','1978-12-22',44.688761,54141,'ec58e9f5-ef26-4a58-b5cd-68c1e5785663',1546,-87.99036,'4660 Brown Road','WI','casimer-ward@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-10T21:59:13.725Z','Facebook','Monique Cummerata','Palisades','1990-09-20',47.3486486,98845,'ce58f899-7594-491f-b3f1-a68d58219774',1547,-119.9857975,'299-373 Palisades Road','WA','monique.cummerata@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-02T13:56:24.466Z','Organic','Ethyl Zboncak','Fort Stockton','1988-03-22',30.6165006,79735,'1a823ecc-4635-4c43-bef8-3533b6eb494b',1548,-102.5659586,'185 Puckett Road','TX','zboncak.ethyl@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T21:27:45.919Z','Organic','Javon Jast','Sutherland','1990-12-03',41.5701556,69165,'71549889-ca6d-40e3-a410-ad106210d60a',1549,-101.3875156,'1796-1798 Nebraska 92','NE','jast.javon@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-23T09:50:51.962Z','Organic','Rosina Von','Chico','1998-09-21',39.8311148,95928,'63eb5333-4dd0-46b1-884b-08d8b30df359',1550,-121.7066288,'11422 Deer Creek Highway','CA','von-rosina@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-10T08:02:19.038Z','Affiliate','Nannie Boehm','Charlotte','1983-06-08',35.2979402,28213,'570e4a94-27ad-43c9-8c95-47a03557f22d',1551,-80.7213334,'1709 Jeffrey Bryan Drive','NC','nannie-boehm@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-04T14:32:59.220Z','Google','Albert Padberg','Troy','1991-07-19',38.9807004,63379,'7ccdf49f-75d9-412a-9ef4-fc4b006e7c6a',1552,-90.96349490000001,'242-298 Thompson Drive','MO','padberg-albert@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-02T16:30:50.468Z','Facebook','Litzy Schmitt','Holcombe','1969-03-05',45.1793539,54745,'790036da-81c1-427b-8f9b-3852dc4ae2da',1553,-91.082781,'29408 230th Avenue','WI','schmitt.litzy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-24T15:32:42.856Z','Twitter','Bernadette Friesen','Proctor','1990-05-09',35.085311,72376,'7b5650ca-7d95-43e9-8eec-53a36bba8060',1554,-90.246799,'1230 Caldwell Road','AR','bernadette.friesen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-10T05:55:51.896Z','Affiliate','Reba Howell','Rio Medina','1970-10-10',29.4831868,78066,'5f82e601-6e21-4b38-aad4-0f178dc51abc',1555,-98.8856216,'715 County Road 2615','TX','howell-reba@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-06T05:39:50.403Z','Facebook','Araceli Bechtelar','Cortez','1980-03-25',37.336518,81321,'05daa289-76b0-41cc-bcf7-51650bb6635a',1556,-108.490367,'30205 Highway 160','CO','araceli.bechtelar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-30T13:34:47.798Z','Facebook','Christy Gutkowski','Vacaville','1959-01-25',38.368046,95687,'4cae55ef-4c50-438e-bf40-340ac22b80d5',1557,-121.904845,'6418 Byrnes Road','CA','christy.gutkowski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-17T06:42:19.183Z','Facebook','Halie Adams','Mosca','1964-08-09',37.5995954,81146,'6df26611-be92-4370-b503-44143e483111',1558,-105.8436795,'1619 County Road 111','CO','halie-adams@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-03T05:25:12.546Z','Facebook','Victoria Weissnat','Clintonville','1977-02-22',44.55905389999999,54929,'8d859aa3-1b8f-4441-a635-dfa557b2263c',1559,-88.77040559999999,'E9075 Bear Creek Road','WI','weissnat-victoria@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-20T13:40:46.210Z','Google','Jerel Miller','Eleva','1999-08-02',44.657691,54738,'bfefbf05-b8b8-4c49-9188-65a90e3e3d2b',1560,-91.543655,'S11780 County Road B','WI','jerel.miller@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-27T14:49:43.829Z','Google','Juliet Hermiston','Wytheville','1998-05-07',36.944042,24382,'d1ab3ae6-ab1c-4a52-8717-bf3099807b2c',1561,-81.082864,'485 West Union Street','VA','juliet.hermiston@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-23T08:52:47.165Z','Affiliate','Alanna Lockman','Winthrop','1985-04-15',42.4936868,50682,'172eb0e8-132d-4041-8877-a12cae487724',1562,-91.6677739,'2010-2054 Victor Avenue','IA','alanna.lockman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-19T13:42:23.575Z','Organic','Bell Waelchi','Spiro','1969-02-13',35.2039787,74959,'24b0b8ec-c1c2-4094-a22d-09e0ffbb6207',1563,-94.7005509,'25540 Nubbin Ridge','OK','waelchi.bell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-11T21:30:50.741Z','Organic','Paula Dibbert','Omaha','1988-06-09',41.3055032,68022,'bc1631a1-bfb1-4c68-a4f7-0449eed05908',1564,-96.20784669999999,'18465-18849 Fort Street','NE','dibbert.paula@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-11T03:21:01.167Z','Organic','Jeanne Walker','Anita','1988-01-16',41.3314761,50020,'0137f707-0514-4352-a8fc-6d9ad27e289b',1565,-94.7418039,'75848 Memphis Road','IA','walker.jeanne@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-06T12:14:47.976Z','Facebook','Myles Brekke','Denali National Park and Preserve','1984-05-28',63.44814479999999,99755,'b83f8f1c-624d-4d79-bd2e-8135d786495d',1566,-148.8350787,'Mile 214.5 George Parks Highway','AK','myles.brekke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-06T13:11:58.975Z','Google','Kirsten Corkery','Benton','1999-10-14',41.3480212,17814,'a17a93bf-c5c9-4bcf-bda2-35c5e6a7cbae',1567,-76.3170663,'459 Ricketts Drive','PA','corkery-kirsten@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-20T13:42:59.401Z','Affiliate','Heath Prohaska','Monument','1992-10-03',39.067987,80132,'b54daf87-99fe-417c-9242-f922e2bced19',1568,-104.887748,'3245 Doolittle Road','CO','heath.prohaska@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-10T17:58:55.190Z','Affiliate','Winnifred Schinner','Stockton','1982-03-07',38.044187,95219,'9a4f60e0-f824-46d1-bba8-56d194682918',1569,-121.448421,'13222 West Rindge Road','CA','schinner-winnifred@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-02T02:16:52.567Z','Organic','Andrew Macejkovic','Boonville','1963-01-05',43.4394989,13309,'b904b548-1571-4670-a56f-beb46e0536d6',1570,-75.3129672,'8724-8768 Domser Road','NY','macejkovic.andrew@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-30T08:44:21.397Z','Facebook','Selina Dach','Pillager','1963-11-07',46.368827,56473,'57f15dc0-60da-4b79-ac9c-a1ab0184262c',1571,-94.577142,'12012 57th Avenue Southwest','MN','dach-selina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-24T23:34:06.622Z','Affiliate','Jana McKenzie','Mangham','1983-08-01',32.3276924,71259,'b52e99b7-dda0-48ca-a548-57b7f1931522',1572,-91.78834379999999,'615 Whitehall Road','LA','jana.mckenzie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-19T03:49:38.403Z','Twitter','Porter Lowe','Sardis','1964-04-30',32.1274578,36775,'21fadfb8-0371-4982-8a2e-64be0aa12767',1573,-86.8248954,'19 Casey Road','AL','lowe.porter@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-21T13:03:00.531Z','Twitter','Tito Metz','Royal City','1985-10-18',46.88974,99357,'accea0fb-4cdb-4f81-b4f1-6778674bf6f5',1574,-119.6439359,'58062 3rd Street Northeast','WA','metz-tito@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-26T09:49:41.983Z','Affiliate','Dylan Kertzmann','Crossville','1963-07-27',34.312091,35962,'37b1246c-e59c-4016-b621-8e5b0f817106',1575,-86.018813,'2961 County Road 28','AL','kertzmann.dylan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-01T09:14:45.605Z','Affiliate','Milton Schiller','Richland','1981-09-24',37.8714349,65556,'8194eb3c-d398-4e24-89da-e8d8f8708743',1576,-92.4307795,'19610 Highway 7','MO','milton.schiller@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-25T05:17:43.047Z','Google','Omari O''Conner','Hingham','1992-02-07',42.2611518,02043,'f581ed43-698b-41b9-add0-7f37b144ab20',1577,-70.89390490000001,'195 Downer Avenue','MA','o-conner-omari@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-28T16:07:57.809Z','Organic','Reta Mosciski','Moravia','1960-04-24',42.7077684,13118,'674d5c2f-3d36-4773-9c00-2b372d356ad7',1578,-76.4247091,'1 Joseph Drive','NY','reta.mosciski@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-01T12:38:36.022Z','Facebook','Jena Schoen','Pierson','1992-01-28',42.5332468,51048,'bc2b5edf-991c-4603-85f6-aba62be72201',1579,-95.90447019999999,'3559 120th Street','IA','jena.schoen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-06T01:10:39.439Z','Twitter','Lindsay Stark','Wetumpka','1993-12-25',32.6073554,36092,'1c585a3a-07cb-4659-aa70-fb358a474aca',1580,-86.11205770000001,'6695-7143 Georgia Road','AL','lindsay.stark@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-16T14:00:14.878Z','Facebook','Orval Zieme','Onida','1979-06-30',44.7075747,57564,'48e733d9-21f3-4909-bd1f-c4949fffe175',1581,-100.1775982,'29831-29999 185th Street','SD','orval-zieme@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-21T17:39:28.157Z','Google','Makayla Feest','Patterson','1962-03-24',31.458724,31557,'a8f01e82-f0ea-48d6-9bf4-c740e5b79026',1582,-82.1390318,'6046-7330 Scenic Drive','GA','makayla.feest@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-29T08:27:15.269Z','Facebook','Bernadette Brown','West Harrison','1997-12-17',39.365628,47060,'b9f0637a-605e-4ee7-b698-c36de063719c',1583,-84.85064,'5007 Wesley Chapel Road','IN','brown-bernadette@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-25T03:36:22.407Z','Facebook','Kristoffer Blanda','Milton','1998-08-15',30.7871609,32570,'96a9383a-45ee-49a0-aca3-8365848806e7',1584,-87.04861149999999,'6478 Southridge Road','FL','kristoffer.blanda@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-27T21:12:01.150Z','Affiliate','Danika White','Ritzville','1976-08-17',47.1320838,99169,'375e84f6-b57c-4a4f-8e0a-60086ea59eeb',1585,-118.525546,'901-939 Rosenoff Road','WA','white-danika@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-31T07:09:07.208Z','Google','Bethany Gusikowski','Geraldine','1970-01-11',47.8067285,59446,'7c0c0dc7-2685-4af7-b47b-7812c87c6fef',1586,-110.0965646,'11533 Flat Creek Road','MT','gusikowski-bethany@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-01T13:47:21.615Z','Google','Erick Yost','Orchard Park','1959-10-17',42.780005,14127,'a1af0532-f854-4acb-949d-8284f66c42f6',1587,-78.729653,'3837 Freeman Road','NY','yost.erick@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-17T10:56:57.217Z','Google','Scottie Schmidt','Rocksprings','1983-12-16',30.1642049,78880,'1971b589-b01f-4e05-a5f8-6af16ee3be24',1588,-100.0199915,'397 Sd 32740','TX','scottie.schmidt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-18T23:22:12.663Z','Affiliate','Rebeka Tromp','Taylor','1961-07-11',34.306449,38673,'4fb02ac7-cb41-4ab2-9e76-1ad7225fddf7',1589,-89.653038,'484 County Road 343','MS','rebeka-tromp@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-05T07:53:38.481Z','Google','Tommie Turner','Fairfield','1984-08-27',31.7038236,75840,'676f798c-ebc3-43aa-99f7-f5285f71fdcc',1590,-96.1186999,'145 Pr 507','TX','turner-tommie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-13T20:04:24.925Z','Organic','Natasha Abbott','Maple Plain','1958-11-16',44.9953209,55359,'441c80c6-3f19-425f-ae19-a7a9de707fe1',1591,-93.641418,'4680 Creekwood Trail','MN','natasha-abbott@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-16T03:55:28.431Z','Google','Nathan Waters','Burwell','1975-11-13',41.7620177,68823,'b1acd9d9-46b6-4498-911d-a65a45ee3d76',1592,-99.2775448,'45908 825th Road','NE','waters.nathan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-08T00:31:00.759Z','Twitter','Marquis Roob','Minden','1976-09-06',40.401603,68959,'5b4a9307-ad4b-4890-aec3-3cbdd6ca28cc',1593,-98.7812086,'401-499 41 Road','NE','roob-marquis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-28T14:10:58.207Z','Affiliate','Khalil Pacocha','Sarles','1986-11-20',48.9263308,58372,'1868a900-dc81-408c-8487-f9f248a57b6e',1594,-99.0443299,'10414-10498 76th Avenue Northeast','ND','pacocha-khalil@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-14T14:37:50.948Z','Organic','Olga Yost','East Berlin','1997-11-04',39.9552359,17316,'2cc8e5bd-24bc-49f6-bc5b-2b40c8d74eed',1595,-76.9656205,'53 Eisenhart Mill Road','PA','yost.olga@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-21T04:28:53.962Z','Affiliate','Lisette Wiza','Ridgway','1963-07-10',38.177664,81432,'38368723-e782-4d70-be5d-3e01a26f254b',1596,-107.789232,'3073 County Road 24','CO','wiza.lisette@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-19T12:07:07.844Z','Google','Tanya Connelly','Dazey','1994-08-25',47.1157639,58429,'6c20757f-9e3e-43ff-a93c-155e0264fccf',1597,-98.19402960000001,'2050-2100 109th Avenue Southeast','ND','connelly.tanya@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-02T01:24:02.732Z','Google','Paxton Glover','Allen','1992-09-03',34.8068352,74825,'e8154d13-1c91-4636-9bf6-fdadf64c3a1d',1598,-96.3323535,'5201 North 376 Road','OK','glover-paxton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-29T16:52:17.541Z','Google','Justina Ullrich','Elbert','1984-08-01',39.2305368,80106,'679d3097-9265-4e7c-a1ac-404ee5e051d4',1599,-104.3967876,'14041-14645 County Road 102','CO','ullrich-justina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-25T18:27:24.444Z','Facebook','Anderson Stoltenberg','Uxbridge','1982-05-16',42.0337619,01569,'89989bc9-da08-4813-b689-89ba51c33bf7',1600,-71.6630163,'131 Laurel Street','MA','stoltenberg-anderson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-11T13:03:28.170Z','Google','Olaf Sipes','Colerain','1977-04-06',36.1576989,27924,'9891832a-dd20-48f6-add5-cc5f43ca049d',1601,-76.9172385,'915 Elm Grove Road','NC','olaf.sipes@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-16T07:59:55.008Z','Organic','Abel Russel','White Sulphur Springs','1991-06-19',46.5779436,59645,'3af98c57-b06a-4ea8-8c5d-947d271f018e',1602,-111.2284119,'835 Camas Creek Road','MT','abel-russel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-03T13:08:08.676Z','Twitter','Lula Rutherford','Whitefish','1994-10-14',48.39654789999999,59937,'7d4930c9-c033-4766-a430-e34b89bf3ef6',1603,-114.4081103,'2875 U.S. 93','MT','rutherford.lula@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-18T07:27:18.152Z','Google','Nelle Swaniawski','Le Roy','1995-11-03',38.1592284,66857,'dbdeabf6-fcb6-4741-b4b6-82d72421d3ec',1604,-95.5663465,'935 Verdure Road Southeast','KS','swaniawski-nelle@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-25T13:51:56.942Z','Affiliate','Salma Treutel','Grygla','1961-01-25',48.4095875,56727,'f560775b-28af-4aa8-a1a4-b5ae82560dd2',1605,-95.5801213,'46801 White Wolf Road Northwest','MN','treutel-salma@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-19T08:28:51.288Z','Google','Alden Bednar','Francesville','1979-02-26',40.9809265,47946,'0499d2eb-0954-4fc4-b343-a77291d9e1cc',1606,-86.92298989999999,'500 South 5 Mi W Of 1600w','IN','bednar.alden@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-27T10:04:50.167Z','Google','Monty Abshire','Tappen','1978-06-17',46.9383783,58487,'fd967f48-c686-4237-8562-231c0b51cdea',1607,-99.5487438,'4281-4371 33rd Street Southeast','ND','monty-abshire@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-23T15:49:16.058Z','Affiliate','Edwina VonRueden','Vinton','1984-07-04',30.2242984,70668,'cbc3f8d7-2e77-4e6e-b851-17ee6573b533',1608,-93.587592,'257 Bigwoods Vinton Road','LA','edwina.vonrueden@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-20T09:24:47.116Z','Affiliate','Krista Bechtelar','Trenton','1966-04-06',44.4086145,04605,'bace25bc-5166-4e87-ada3-60fdadbb1cae',1609,-68.4235918,'1966 Bayside Road','ME','krista.bechtelar@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-08T10:12:55.700Z','Organic','Heath Dare','Tie Siding','1987-08-29',41.008783,82084,'41c10573-a311-4f1f-ad2f-2f0d40b14f04',1610,-105.5615779,'244 Elk Crossing Road','WY','heath-dare@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-05T19:40:00.395Z','Organic','Nicolas Goyette','Morganton','1972-03-11',35.7386538,28655,'e802ed8b-4cbb-4480-98a7-e9f1946bb709',1611,-81.82084689999999,'2510-2684 Conley Bumgarner Road','NC','goyette.nicolas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-22T22:39:38.318Z','Organic','Elmer Klocko','Dell City','1989-05-15',32.5134911,79837,'5947e9cb-290c-47c0-9a48-32ce67ea11fc',1612,-104.9464219,'5-101 G-032','NM','klocko.elmer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-21T10:42:24.083Z','Organic','Art Doyle','Gunnison','1962-09-10',38.427788,81230,'0e236428-21aa-47cc-a848-a9d132587c81',1613,-106.534436,'64103 U.S. 50','CO','doyle-art@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-10T14:21:16.869Z','Affiliate','Sallie Wehner','Nogales','1974-12-27',31.5035347,85621,'2ce69c71-5bec-4738-8e0c-8bc1c154d599',1614,-111.284977,'2805 Ruby Road','AZ','sallie.wehner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-29T18:42:51.369Z','Google','Sandy Feest','Vernon Center','1983-03-25',43.986271,56090,'fc9c77ef-b8f5-4cb2-80a9-64471c076c08',1615,-94.18518399999999,'52136 150th Street','MN','feest-sandy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-24T18:43:28.929Z','Twitter','Fritz Dickens','Hillsdale','1990-04-18',45.30644900000001,54733,'5fe615f4-cc87-41df-9406-f85f89c8d3ba',1616,-91.877477,'1363 7th Avenue','WI','fritz.dickens@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-03T22:45:00.974Z','Google','Dameon Nicolas','Aberdeen','1983-09-26',43.024329,83210,'85652223-0d63-4118-9c87-b66f265bf74a',1617,-112.824998,'2678 West 1200 South','ID','nicolas.dameon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-01T12:24:06.839Z','Google','Alisa Schmitt','Rifle','1967-06-19',39.8614895,81650,'9fbeb39e-2a35-4d27-95d6-948a21d63df2',1618,-108.2667581,'21144-22214 County Road 5','CO','alisa-schmitt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-21T12:39:04.125Z','Facebook','Kacey Jones','Carrizozo','1996-02-26',33.6274642,88301,'b4068ec2-15f7-41d0-9fe5-a28c752f5c63',1619,-105.8989291,'12167 U.S. 54','NM','jones-kacey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-24T12:34:15.776Z','Facebook','Mathias Maggio','Springfield','1970-03-23',39.9160374,19064,'2e806c23-630a-43ff-842b-7002cba0cb2c',1620,-75.3583661,'201-299 Papermill Road','PA','maggio-mathias@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-17T16:28:06.803Z','Affiliate','Jean Christiansen','Broadview','1967-05-11',34.8792474,88112,'cf2612a1-c504-4df5-8ad7-62d9713dc6cb',1621,-103.0762503,'300-498 Curry Road 43','NM','jean.christiansen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-23T03:54:10.807Z','Facebook','Ceasar Harvey','Bainbridge','1964-12-29',39.2079099,45612,'593eda4d-e66f-441b-95bd-9489bea20e6e',1622,-83.12939790000001,'1477-1645 Ohio 772','OH','harvey.ceasar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-05T20:30:44.034Z','Facebook','Cleveland Russel','Towner','1977-11-14',48.4928326,58788,'beb848b5-6e53-4779-ba0f-fb3b4e03770e',1623,-100.6789272,'7425 1st Avenue North','ND','cleveland.russel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-23T01:46:29.310Z','Twitter','Kimberly Brakus','Great Falls','1975-05-21',47.316261,59405,'66f4ca53-6556-491b-97a9-842c2db9bebd',1624,-111.2672231,'1210 Eden Road','MT','brakus-kimberly@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-03T09:28:24.223Z','Google','Demetris Hauck','Harrisburg','1997-05-06',40.370281,17112,'42d64786-f6fd-4272-b56a-56accfef80a0',1625,-76.759902,'1016 Piketown Road','PA','demetris.hauck@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-19T22:29:38.733Z','Facebook','Ricardo Gutkowski','Windom','1981-06-02',38.358731,67491,'d352359b-27fb-424a-86d6-6da75cb17d83',1626,-97.919955,'27 Kiowa Road','KS','gutkowski-ricardo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-29T17:23:11.052Z','Google','Sydnie Connelly','Americus','1967-06-17',32.0771818,31709,'b03589e3-d41e-4c15-b8e5-a4017ba24a3e',1627,-84.0684537,'1699 Georgia 195','GA','sydnie-connelly@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-29T19:02:32.664Z','Google','Orlando Conroy','Johnstown','1986-08-15',40.1744085,43031,'9674a495-fc0f-4b00-950a-cb60db9c6efc',1628,-82.5928914,'4500-6098 Dutch Lane Northwest','OH','conroy-orlando@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-05T20:59:39.486Z','Affiliate','Consuelo Streich','Silverthorne','1990-07-31',39.8006462,80498,'083ead57-951a-42d2-81c7-2a2f64cc9f1d',1629,-106.2671922,'1465 Black Creek Road','CO','consuelo.streich@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-18T11:00:49.117Z','Organic','Noelia Lynch','Dieterich','1960-08-10',39.031739,62424,'d685520b-c4a2-4a5e-acb9-0b92e3c4507c',1630,-88.42046599999999,'8047 North 2100th Street','IL','noelia.lynch@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-04T12:26:37.550Z','Facebook','Lauryn Zieme','Columbus Grove','1990-10-24',40.8826954,45830,'498a03b0-cc2a-4312-aa61-34f8f86d8a2e',1631,-84.1866254,'21900-21998 Road 17','OH','zieme-lauryn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-05T23:58:03.224Z','Organic','Ephraim Pfannerstill','Mocksville','1966-02-14',35.8027731,27028,'1512e0fd-68f5-4faf-b730-657bea886ba6',1632,-80.48833259999999,'224-238 Singleton Road','NC','ephraim-pfannerstill@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-20T10:35:35.180Z','Google','Tobin Braun','Chillicothe','1996-04-12',39.2667106,45601,'790c1876-9584-4fad-8d77-0d51acecf671',1633,-83.03588740000001,'484 Baptist Hill Road','OH','braun-tobin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-23T17:35:16.863Z','Affiliate','Emerson O''Keefe','Wolf Point','1999-07-13',47.9624757,59201,'e6f13e36-d4f5-4704-8428-8ead6a58a3f6',1634,-106.0816186,'339 Maxwell Hill Road','MT','emerson-o-keefe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-30T14:19:35.534Z','Organic','Shad Welch','Pall Mall','1979-05-04',36.609706,38577,'426e8327-bf13-490e-a8a3-1ed7ddc8cd8a',1635,-85.05463,'3072 Chanute Road','TN','welch-shad@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-25T14:44:06.851Z','Facebook','Sandra Maggio','San Jose','1983-12-13',37.286474,95136,'e3f4fd6c-c13f-4a52-990f-45e38c426df4',1636,-121.862554,'741 Batista Drive','CA','sandra.maggio@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-21T21:18:13.564Z','Google','Cecelia Herzog','Pottersville','1992-05-05',36.6981921,65790,'c65bc358-2299-4da1-8a62-8432af36e74e',1637,-92.1128186,'9700 County Road 7950','MO','herzog-cecelia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-01T02:36:32.877Z','Google','Mollie Bogan','Statesboro','1961-05-24',32.4484452,30458,'4a71ebfc-52d2-4b0b-9a80-899dc803f46a',1638,-81.8748105,'801 Brannen Cemetery Road','GA','mollie.bogan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-06T13:06:32.019Z','Facebook','Jarred Mraz','Rosenberg','1963-07-19',29.5870185,77471,'8e6dc9f2-47f8-4642-8c09-d83b66019ad5',1639,-95.8321783,'693-799 Huntington Road','TX','jarred-mraz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-25T12:26:59.131Z','Twitter','Kyler Altenwerth','Mer Rouge','1993-05-10',32.7711839,71261,'86dcf453-2240-488e-adfc-9974faa3f20e',1640,-91.7136507,'11638 Johnson School Road','LA','kyler-altenwerth@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-24T15:38:36.190Z','Facebook','Gregorio Terry','Philip','1992-06-06',43.9268497,57567,'91f6a6fc-7160-4e3e-a5e4-24fd45e4ddcf',1641,-101.7960548,'23950 Recluse Road','SD','terry-gregorio@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-18T12:13:24.498Z','Affiliate','Merl Steuber','Plainville','1972-01-19',39.3069469,67663,'267c4f02-3494-475b-a6f2-82e949286677',1642,-99.3298011,'1528-1598 South Road','KS','merl-steuber@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-22T20:11:19.286Z','Facebook','Horacio Smith','Chattanooga','1968-02-28',35.0778421,37416,'9b7e2fb2-8dd5-4f08-ac87-44dabdd37f90',1643,-85.1800033,'7700-7706 Cecelia Drive','TN','smith-horacio@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-17T03:51:54.381Z','Google','Laura Hills','Greentown','1999-05-21',41.3652452,18426,'5e452f15-a4e3-4e47-8ddb-4b27a0841e1c',1644,-75.2521935,'106 Spruce Lane','PA','laura.hills@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-01T06:28:35.260Z','Organic','Missouri Grimes','Perris','1980-12-18',33.7798117,92570,'1c95d805-4b6e-42ef-b7c1-02356f018631',1645,-117.4158073,'20090 Chalon Road','CA','missouri-grimes@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-25T03:26:59.888Z','Google','Trey Waters','Floyd','1968-01-08',43.1617463,50435,'df066ab1-00d8-45dd-94e6-859bf5224eea',1646,-92.7789888,'1350 River Road','IA','waters-trey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-20T21:23:23.923Z','Google','Jamel Stanton','Leoma','1985-05-16',35.1246269,38468,'637460c1-6e1b-47fe-ac31-fe3d9c9fdff8',1647,-87.35063,'20 Hardiman Road South','TN','jamel.stanton@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-22T00:08:33.873Z','Twitter','Ayla Jacobi','Dakota City','1977-03-19',42.38576,68731,'f866c7c8-96ba-4224-a5ca-6a790bb1e2a7',1648,-96.4448319,'1943-1957 U.S. 75','NE','jacobi-ayla@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-14T20:59:24.365Z','Facebook','Carolyne Leuschke','Andover','1964-01-31',41.578093,44003,'5ac9f4d7-38ea-454b-90dd-f206ce63349d',1649,-80.631832,'6339 Creek Road','OH','carolyne-leuschke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-26T16:14:29.450Z','Organic','Lyda Schulist','Ackworth','1963-12-02',41.383577,50001,'f305f0b1-a9f6-44fd-ae99-627fbdd5c6fb',1650,-93.369366,'9537 228th Avenue','IA','lyda-schulist@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-22T23:13:39.106Z','Facebook','Pink Littel','Clay City','1996-12-16',37.8261403,40312,'b32ff681-1cd8-4922-b286-bc430056e26c',1651,-83.955142,'2188-2226 Spout Springs Road','KY','pink.littel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-08T12:51:19.745Z','Affiliate','Arielle Dach','Banner','1985-07-11',44.755191,82832,'82c5a9d8-3f7c-4873-9832-b79886f45da8',1652,-106.673704,'924 Ulm Road','WY','dach-arielle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-16T16:05:59.454Z','Google','Roscoe Luettgen','Merrill','1986-07-24',45.1755568,54452,'ab3f6e12-34dc-4a5f-8307-c6e5c098dbd0',1653,-89.4512337,'W593 Spring Brook Avenue','WI','luettgen-roscoe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-12T02:49:17.323Z','Google','Braulio Jacobs','Del Rio','1967-10-02',29.633604,78840,'175291bf-c7f6-4f74-9f99-cbc9b632ef9e',1654,-100.9240923,'354 Summit Drive','TX','jacobs-braulio@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-23T16:41:00.102Z','Affiliate','Yvonne Ryan','Presque Isle','1976-05-08',46.640867,04769,'3ca2e329-80b1-4b4f-9cce-8a0c39f95888',1655,-67.968823,'157 Centerline Road','ME','yvonne.ryan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-21T04:49:54.435Z','Affiliate','Ruthe Gottlieb','Wibaux','1991-08-07',46.9913099,59353,'b8a1f6c5-dd67-4572-89d9-6dd651ef1496',1656,-104.2749999,'372 Hodges Road','MT','gottlieb-ruthe@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-21T05:22:35.109Z','Google','Ivory Ebert','Narvon','1997-11-21',40.110004,17555,'d1e9fb4c-06f7-40ff-beb0-f7b900d00e22',1657,-75.957448,'481 South Churchtown Road','PA','ebert.ivory@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-11T01:18:42.888Z','Affiliate','Aida Schneider','Dewy Rose','1995-03-06',34.2383253,30634,'867f53e8-21ef-49b0-9187-8f567971ca45',1658,-82.8546978,'1567 Coldwater Road','GA','aida.schneider@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-30T22:01:16.250Z','Google','Caleigh Hodkiewicz','Monroe','1960-04-03',33.92903100000001,30656,'72a3b43d-f617-4a25-b3b7-e14334ed484c',1659,-83.678337,'1405 Gin Mill Court','GA','caleigh-hodkiewicz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-20T13:30:12.368Z','Twitter','Tyrell Nikolaus','Hammond','1968-12-31',44.45397810000001,13646,'0f752edc-5668-49a2-9f9e-12d935eb11eb',1660,-75.5898072,'701 Turner Road','NY','tyrell.nikolaus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-24T17:07:31.142Z','Google','Marques Koch','Pine City','1997-02-07',45.8027586,55063,'353afb76-8807-4c08-9928-b7c8aad4cafb',1661,-92.7680673,'37656 Black Pine Road','MN','koch.marques@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-14T05:10:42.403Z','Facebook','Clay Pfannerstill','Fort Bridger','1992-01-10',41.0614976,82933,'b13fe693-5e74-4c26-afe5-ecae6a02dcd7',1662,-110.5364236,'271 County Road','WY','clay-pfannerstill@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-12T23:04:23.838Z','Affiliate','Abdiel Heathcote','Borrego Springs','1964-03-02',33.096877,92004,'365f40ec-3fde-4c93-b7eb-4bf6613b1390',1663,-116.1325306,'6599 Alvarado Street','CA','heathcote.abdiel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-05T11:18:11.880Z','Organic','Leonor Mitchell','Rudyard','1981-07-10',46.3109698,49780,'008c33b6-312f-42a3-a10a-4e34a077a90e',1664,-84.8021358,'13785-13865 Sullivan Creek Trail','MI','leonor.mitchell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-09T17:33:11.963Z','Twitter','Henriette Hane','Chico','1971-06-05',39.8092853,95928,'62e37bbf-c8d1-4844-bc10-2c3614eb9b98',1665,-121.7420029,'342 4 Acres Sec34 T23nr2e','CA','henriette-hane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-15T08:13:30.410Z','Organic','Minnie Cremin','Langsville','1986-04-06',39.0242849,45741,'7a2477db-3837-4837-b026-4499c7faa9c4',1666,-82.2628741,'30945 Ohio 325','OH','minnie.cremin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-28T19:06:25.128Z','Google','Delaney Gerhold','Rensselaer','1986-12-25',40.900784,47978,'15dd9414-7332-42c6-8870-45e554c45ac8',1667,-86.99796900000001,'7577 South County Road 210 East','IN','gerhold-delaney@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-07T18:14:25.549Z','Facebook','Aglae Rutherford','Gilson','1958-07-10',40.8104888,61436,'ae4bad87-9ca0-4736-b3cd-ffe7fdcc79e1',1668,-90.2666866,'641 Knox Road 900 East','IL','aglae.rutherford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-24T15:58:36.584Z','Facebook','Gunner Hodkiewicz','Roundup','1960-08-27',46.6261015,59072,'6d112cd2-9ad1-4270-9429-949f88ca121f',1669,-108.6118494,'125-177 Snowy Mountain Road','MT','hodkiewicz.gunner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-24T15:51:21.501Z','Organic','Lonnie Beier','LaCrosse','1978-04-06',46.855473,99143,'0bdf66fe-6816-49de-8e8f-d72d5f07414b',1670,-117.7997662,'272 Guske Road','WA','lonnie.beier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-09T11:46:18.061Z','Google','Howell Morissette','Youngstown','1969-01-04',30.3724246,32466,'cbae5c5c-6201-4258-afc2-5ecdcd8785a2',1671,-85.43729569999999,'12404 U.S. 231','FL','morissette.howell@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-25T04:07:55.060Z','Google','Elisa Grady','Chiloquin','1991-02-08',42.595562,97624,'cd4249b6-b187-4706-9359-d784c86fd139',1672,-121.743452,'41351 Solomon Drive','OR','elisa-grady@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-25T14:49:43.446Z','Facebook','Dario Goldner','Argonne','1977-01-25',45.6720056,54511,'9da76f1a-7f3b-4cac-9742-5866a7cf9c95',1673,-88.93579230000002,'9942 Suring Lane','WI','goldner-dario@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-05T00:02:41.320Z','Twitter','Erwin Wilderman','New Brockton','1965-06-12',31.3300691,36351,'6a710fe8-e20c-4ef6-8f86-af2f615f0a5a',1674,-85.97398249999999,'23-999 County Road 545','AL','erwin.wilderman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-16T04:49:12.697Z','Facebook','Marlin O''Conner','Hazel Green','1972-12-28',37.7946338,41332,'b9f0c422-32d2-477d-874a-409a31b28e49',1675,-83.4015648,'141 Blankenship Road','KY','marlin.o.conner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-29T22:05:34.543Z','Organic','Ramiro Shields','Marlboro Township','1993-05-01',40.28411759999999,07746,'535e37d4-4347-4c47-af15-4dbdf42f67f1',1676,-74.2302674,'200 Sunnyside Drive','NJ','shields.ramiro@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-23T12:45:24.920Z','Twitter','Lacey Mitchell','Burlington','1967-09-25',40.9640534,52601,'b36ebfdc-4c6d-478a-8024-27403ab9981c',1677,-91.02591079999999,'4746-4998 195th Street','IA','mitchell-lacey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-26T13:56:03.505Z','Organic','Donato Padberg','Nelsonville','1976-06-01',39.516798,45764,'d3f8bf81-cd16-411e-a21f-158d5d211511',1678,-82.225859,'44600 Dawley-New Pittsburg Road','OH','padberg-donato@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-12T02:11:04.705Z','Affiliate','Cyrus Cummerata','Old Fields','1991-02-25',39.2393343,26845,'3c673a3f-c643-4f1e-8652-3e0a4ff88f58',1679,-79.0159398,'71 Meadow Farms Road','WV','cyrus-cummerata@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-18T00:42:25.296Z','Facebook','Mariano Botsford','Silverthorne','1996-05-07',39.72992869999999,80498,'4414417a-b32b-431e-b789-b64b540adf23',1680,-106.1713332,'2642 Meadowbrook Lane','CO','mariano.botsford@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-29T17:23:16.740Z','Google','Gino Kuhic','Charlotte','1968-07-04',41.9823355,52731,'6ce82ac9-d9aa-4e27-9468-896119efc228',1681,-90.4063305,'3536-3620 135th Street','IA','gino.kuhic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-24T06:12:23.018Z','Affiliate','Viva Zboncak','Jordan','1992-04-20',46.9822916,59337,'a80dc820-ce8f-454d-87e9-545f5f51d45f',1682,-107.2805484,'487 South Sand Creek Road','MT','viva.zboncak@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-30T00:40:15.501Z','Google','Margaret Kshlerin','Shohola','1960-12-28',41.4528115,18458,'df340869-3ed9-4021-aa44-1b5513beea92',1683,-74.9944647,'157-171 Neil Thompson Road','PA','kshlerin.margaret@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-05T13:55:37.626Z','Affiliate','Camila Pagac','Plattsburgh','1977-07-01',44.733007,12901,'8a00342c-3560-48a9-9954-ea7f9aeac76c',1684,-73.408199,'275 Allen Road','NY','pagac-camila@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-22T04:23:24.603Z','Google','Micheal Lang','Monticello','1982-05-19',42.765204,53570,'126d8ee2-55eb-4a3d-ba6b-e37e19bed2f3',1685,-89.598237,'N7109 Wettach Road','WI','lang-micheal@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-17T13:20:57.780Z','Organic','Malvina Effertz','Fort Wayne','1991-06-06',40.997771,46816,'5d8a2596-9b31-416e-939e-f9352253bd01',1686,-85.092398,'9431 Hessen Cassel Road','IN','malvina.effertz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-25T13:56:22.408Z','Affiliate','Santa Schimmel','Waynoka','1976-05-11',36.5902185,73860,'bc2a7870-ffd8-4fba-9004-f9916474ab96',1687,-98.8046696,'35860 Oklahoma 45','OK','schimmel-santa@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-02T05:05:40.434Z','Facebook','Kenna Walter','Morrisonville','1959-06-16',39.342818,62546,'48e50a13-cdd2-4214-b5e6-e4d5ce32be0a',1688,-89.420245,'23000-23220 East 15th Road','IL','kenna-walter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-25T14:13:26.394Z','Organic','Aliya Goodwin','Rocky Mount','1977-08-14',35.9029025,27803,'6a37f5f1-e77a-440c-b0a0-5e8660008a5d',1689,-77.8467766,'11905 North Carolina 97','NC','goodwin.aliya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-23T19:39:58.244Z','Twitter','Sterling Feil','Hayward','1975-07-03',45.9727092,54843,'6ac950b7-d32c-4652-9a68-bd46583114e1',1690,-91.1340783,'9032-9056 West County Highway B','WI','feil.sterling@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-11T03:36:25.364Z','Twitter','Johnnie Glover','Corinne','1988-05-05',41.4097631,84307,'2dd1ef69-05dd-4792-9305-2a4ebbff1b66',1691,-112.431176,'5311 Southeast Promontory Road','UT','johnnie-glover@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-06T21:34:18.129Z','Google','Jennifer Klocko','Olive Branch','1964-01-25',34.9942849,38654,'cfa8c457-b410-47cf-8a07-7c96a1492010',1692,-89.7761688,'12577 State Line Road','MS','jennifer-klocko@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-12T15:33:10.266Z','Twitter','Hulda Homenick','Concho','1970-12-08',34.4754932,85924,'eb0f8027-9bbe-4682-8aab-79ec1087e6d2',1693,-109.5960396,'37232 Arizona 61','AZ','homenick.hulda@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-05T20:21:04.073Z','Facebook','Rosalinda Stamm','Hayward','1981-02-03',46.03810379999999,54843,'516d27bd-3b31-4b1a-bbb2-900bc3f00b9c',1694,-91.0169315,'11715 North Fr 174','WI','rosalinda-stamm@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-24T12:13:08.796Z','Facebook','Zena Wolf','Mound City','1980-10-12',38.0881508,66056,'4e5c060f-ad45-4fd4-afec-e8f3ea416bb1',1695,-94.7917923,'4708 Paine Road','KS','wolf.zena@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-17T05:19:37.302Z','Organic','Jacky Jacobs','Palmersville','1975-11-23',36.489802,38241,'d8dadea5-4025-4d47-a789-87e6b9391ebd',1696,-88.5697129,'740 Harrison Road','TN','jacobs-jacky@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-29T04:31:33.170Z','Organic','Wilfred Schaden','Arbuckle','1992-01-10',38.9832517,95912,'c5c3f0d3-6e7e-4fd4-97fd-a6a50005a543',1697,-122.1164638,'6225 Boles Road','CA','wilfred-schaden@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-30T02:11:15.603Z','Organic','Malika Kuphal','Blandford','1993-10-24',42.1780297,01008,'40523cb3-723a-46c6-82d5-64eb1ac87685',1698,-72.9587426,'168 Otis Stage Road','MA','malika-kuphal@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-26T18:30:22.384Z','Facebook','Domenico Bailey','Wood','1965-07-27',40.1638939,16694,'a4e635c5-ac3c-48ea-ba1d-df9d4ced3a3d',1699,-78.13666529999999,'97 Po Box','PA','domenico.bailey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-01T11:25:28.097Z','Organic','Pete Reilly','Mount Eden','1967-06-16',38.0254997,40046,'051f7e50-657a-4f65-a47a-11ef6e47e56a',1700,-85.1213398,'3800 Murphy Lane','KY','pete.reilly@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-18T13:13:46.485Z','Organic','Lupe Konopelski','Sudan','1986-01-19',34.0996574,79371,'fe8ff4de-f7db-4264-8eab-c74e2d95c4bf',1701,-102.5112853,'1563 FM 303','TX','lupe-konopelski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-03T17:23:31.567Z','Organic','Eileen Hand','Cato','1993-06-29',44.15514599999999,54230,'f4ce375e-9009-4355-ade8-206f28149219',1702,-87.875097,'14428 San Road','WI','hand.eileen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-28T00:44:52.542Z','Twitter','Dorris Okuneva','Othello','1969-06-21',46.7882987,99344,'9f36788b-7b63-4705-a46e-6314f164dda3',1703,-119.1126247,'800-942 South Steele Road','WA','okuneva-dorris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-13T02:42:51.771Z','Twitter','Imani Cruickshank','Stantonsburg','1975-11-21',35.5156836,27883,'85104412-8e28-4a44-ae2a-b27291bfdaa8',1704,-77.82581379999999,'384 Landis Road','NC','cruickshank.imani@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-29T02:21:46.225Z','Facebook','Larue Torp','Bakersfield','1980-01-23',35.3017766,93307,'ef950839-ce01-4939-9bcb-260a27b512f4',1705,-118.8785867,'5064-6362 South Edison Road','CA','torp-larue@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-07T00:51:37.980Z','Facebook','Marley Cronin','Morganton','1975-08-08',35.6617665,28655,'21353cf1-1984-48a2-a36e-a45d0e6307d2',1706,-81.5617742,'1916 Off Road','NC','cronin-marley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-28T18:14:27.214Z','Organic','Dennis Parisian','Albany','1991-01-21',40.264102,47320,'b7becc73-d54b-42fa-8a9b-f1fc48beb49a',1707,-85.24811199999999,'11910 East Co Road 500 North','IN','dennis.parisian@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T23:07:06.026Z','Affiliate','Anika Little','Dawson','1989-02-07',34.3691713,35963,'357f8d6f-fa25-4e27-be84-cc4081b645e2',1708,-85.9096969,'509 County Road 49','AL','little-anika@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-21T14:44:22.220Z','Twitter','Leanna Cremin','Donnellson','1983-12-17',40.639914,52625,'b2c78751-f388-437f-ad82-bb21f7d1ea48',1709,-91.537768,'1939 Iowa 2','IA','cremin-leanna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-18T17:32:56.543Z','Organic','Emmalee Bruen','Nashua','1976-07-19',48.367617,59248,'a7361144-4ba5-4660-9a5e-5e91beb250d7',1710,-106.386911,'1172 Geer Road','MT','emmalee.bruen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-23T18:46:13.932Z','Organic','Marianna Heaney','Greenville','1995-03-10',37.5534413,24945,'bb1ee45e-dd90-4efa-9f83-c0865bf101ef',1711,-80.6684452,'153 Laurel Creek Road','WV','marianna-heaney@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-21T23:46:16.055Z','Affiliate','Marco Kihn','Saco','1964-08-06',48.5129061,59261,'da1b9abe-36f4-4bd3-a022-01473ec40ce7',1712,-107.450546,'4972 Lake Road','MT','marco-kihn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-08T05:31:01.401Z','Organic','Alvena Stehr','Sweet Home','1972-06-21',44.303249,97386,'1737b95d-c037-4d8d-a8e5-d6e023f49368',1713,-122.693011,'42750 Upper Calapooia Drive','OR','stehr.alvena@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-02T23:56:46.736Z','Organic','Nikko Bartoletti','Richland','1996-09-10',37.968924,65556,'97477248-4d59-4432-80aa-b47e66f49c94',1714,-92.4927889,'1185 Mountview Road','MO','nikko.bartoletti@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-16T16:39:33.376Z','Affiliate','Dorcas Brakus','Holdrege','1963-10-02',40.3180455,68949,'bff41650-6550-4d88-9e80-10c37bb9a030',1715,-99.34456770000001,'72382 O Road','NE','dorcas-brakus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-05T07:51:25.515Z','Twitter','Rick Ernser','Onancock','1985-11-05',37.7455954,23417,'a9c93e0a-239d-4669-bfa2-9a10163323e6',1716,-75.7387931,'22317 Deep Creek Road','VA','rick.ernser@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-04T04:04:44.224Z','Twitter','Lauretta Gislason','Pulaski','1961-07-06',35.266777,38478,'d09bf3b5-34c6-47aa-9b56-40ffbada48df',1717,-87.098073,'305 Ball Hollow Estate Road','TN','lauretta.gislason@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-26T03:34:07.573Z','Google','Dedrick Strosin','Ninilchik','1978-10-08',60.04188310000001,99639,'d56ffa68-add1-4225-9e95-eb0cdd1d95ad',1718,-151.3121206,'54117 Sisler Avenue','AK','strosin.dedrick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-07T06:22:18.172Z','Facebook','America Mayer','White Lake','1960-08-13',45.1750936,54491,'74178873-6d3e-4b47-8711-548a304c78a7',1719,-88.81815429999999,'4098 Fire Lane Road','WI','america-mayer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-18T12:21:20.192Z','Organic','Paul Ortiz','Cisco','1989-08-25',32.3732398,76437,'f19c8b7d-c14d-4637-8c67-708912efca8a',1720,-98.9501281,'15151 Interstate 20','TX','paul-ortiz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-12T06:17:45.553Z','Facebook','Faye Denesik','Portland','1994-07-27',42.8860049,48875,'0f84c7c5-b498-482d-8367-58b446419f4e',1721,-84.9869425,'4381 Klotz Road','MI','denesik-faye@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-15T20:08:45.630Z','Facebook','Rex Smitham','Lamar','1988-12-01',34.9344866,38642,'63f7e5ea-7da2-47cb-9296-db44653536e0',1722,-89.4021398,'2355-2665 Roberts Chapel Road','MS','rex.smitham@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-27T23:49:36.546Z','Google','Rozella Weber','Bowie','1970-04-25',33.67856039999999,76230,'14bd91d2-608e-4ae6-a247-b3c9702244b2',1723,-97.8830539,'159 East Rc Road','TX','rozella-weber@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-31T21:00:06.335Z','Affiliate','Delmer Ledner','Hastings','1982-12-02',42.5489375,49058,'e4c8fa98-f290-4b4a-ac79-f1202f8c00e1',1724,-85.1945466,'4770 Maple Grove Road','MI','delmer-ledner@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-13T08:25:19.687Z','Organic','Stanley Watsica','Kalona','1960-01-18',41.52784,52247,'a8e0d0fc-5765-4bb4-80f8-c645e736bebc',1725,-91.725444,'2096 560th Street Southwest','IA','watsica.stanley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-14T16:37:39.060Z','Twitter','Zane Romaguera','Morrison','1958-10-23',35.6193554,37357,'b702ea74-4775-48cf-ab72-c1a934525079',1726,-85.92264879999999,'724-1350 Jacksboro Road','TN','romaguera.zane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-28T16:28:33.824Z','Google','Estefania Goyette','South Mills','1983-09-09',36.399259,27976,'be050484-bda3-460b-b346-65acfce290a0',1727,-76.2899489,'102 Robin Drive','NC','estefania.goyette@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-03T05:36:27.022Z','Affiliate','Braeden Corwin','Spencer','1959-04-03',36.5620566,24165,'3abd8af9-91e0-438a-849e-d5aa1a680335',1728,-80.0153004,'175 Democrat Road','VA','braeden.corwin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-05T23:10:51.661Z','Organic','Cordelia Stokes','Lansford','1989-02-26',48.5784473,58750,'c3dea756-adc5-4cd8-987b-d08132b1e6c1',1729,-101.3426061,'8000-8054 29th Avenue Northwest','ND','stokes.cordelia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-25T04:22:43.316Z','Google','Stewart Sawayn','Hayward','1972-03-13',46.1444883,54843,'199babea-f1d7-4bb6-a6c7-c80e609136c7',1730,-91.37233309999999,'14108 North Sonby Road','WI','stewart.sawayn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-09T21:52:23.664Z','Facebook','Ricky Senger','Ray','1993-08-15',42.7471583,48096,'c7225b36-f39f-4eac-91cf-954b5728b9ac',1731,-82.90010029999999,'21875-22399 28 Mile Road','MI','senger.ricky@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-22T00:30:52.780Z','Google','Kirsten Reichel','Rochester','1998-02-11',41.11358389999999,46975,'ed3e5ea9-89b7-407b-918c-4497b566f335',1732,-86.38228640000001,'7346 West 400 North','IN','reichel.kirsten@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-22T07:37:31.474Z','Twitter','Adrianna Larson','Penrose','1997-07-21',38.5410306,81240,'c4d6db7a-fb47-4024-a948-731420a92cc7',1733,-105.030577,'7502 Upper Beaver Creek Road','CO','larson-adrianna@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-19T12:54:18.006Z','Facebook','Art Graham','Lenoir','1985-11-27',36.0810719,28645,'a6edbbb7-2903-4cc7-a15a-1c32a6487d7b',1734,-81.57605339999999,'2300-2332 Timber Run Drive','NC','art-graham@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-09T19:52:32.842Z','Twitter','Tyson Lynch','Grenora','1960-02-02',48.5178342,58845,'3855d783-060f-41fd-b1c9-43bd91605b39',1735,-103.8474234,'14601-14649 76th Street Northwest','ND','lynch.tyson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-17T02:17:06.648Z','Google','Joaquin Franecki','Wheeler','1990-08-20',35.3585085,79096,'bd42c3c9-523e-45dc-b9ab-c48c27ce5a4e',1736,-100.3074713,'7329-7499 County Road 13','TX','joaquin-franecki@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-01T15:08:59.333Z','Organic','Merritt Walker','Burbank','1964-12-22',46.1712919,99323,'da3afaf5-c0cf-49dd-a223-035f438499f4',1737,-118.8883021,'3500-3568 East Humorist Road','WA','merritt.walker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-11T18:10:18.770Z','Organic','Brandyn Douglas','Linn Creek','1959-06-24',37.9988509,65052,'6d9e2fbf-4ff0-44fe-9eeb-81bd43ab964b',1738,-92.65144699999999,'1443 Lowell Williams Road','MO','douglas-brandyn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-15T02:46:56.950Z','Google','Alexandrine Rosenbaum','Glencoe','1977-12-22',44.7876962,55336,'285f4f19-b6e1-439a-b5ba-708a5bdd3956',1739,-94.28539289999999,'11701 Melody Avenue','MN','alexandrine-rosenbaum@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-30T22:50:13.159Z','Twitter','Charity Quitzon','Winter Garden','2000-01-06',28.375405,34787,'4c043ad0-9646-4979-8fbc-e1eaf8fb7aae',1740,-81.649492,'17600 Flemmings Road','FL','quitzon.charity@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-19T22:34:32.702Z','Affiliate','Hudson Larkin','Sterling Heights','1959-03-18',42.6134894,48313,'c541314a-f459-4a40-a4e6-b7f80b0c175e',1741,-82.9754203,'43314 Hillcrest Drive','MI','hudson.larkin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-10T16:03:46.943Z','Google','Antwan Schmeler','Bethel Springs','1985-10-09',35.229939,38315,'3dd522dd-a60c-4f4f-99de-91a613653f7b',1742,-88.711297,'1263 Curtis Hill Church Lane','TN','antwan.schmeler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-31T23:37:25.309Z','Twitter','Darlene Terry','Polk City','1993-09-01',28.2967559,33868,'68ac8bf8-2a13-4822-9b25-78f493d33716',1743,-81.84640279999999,'A3 Van Fleet Road','FL','terry.darlene@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-17T21:05:40.120Z','Twitter','Abe Konopelski','Williams','1962-12-06',48.94182,56686,'2aaf85d5-0db9-4ec8-b899-28b47f9ccccf',1744,-94.92195559999999,'6298 Northwest Sandy Shores Drive','MN','konopelski-abe@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-04T08:30:39.886Z','Organic','Elnora Effertz','Hope Hull','1985-12-15',32.146161,36043,'47891337-596f-46b1-85d2-fece1268d2f2',1745,-86.406871,'1224 Plantation Road','AL','effertz-elnora@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-11T13:44:59.365Z','Twitter','David Hettinger','Fort Pierce','1996-05-13',27.472142,34951,'0d0d971f-69bd-4146-8af1-b75084ead14d',1746,-80.431026,'2001 Old Ffa Road','FL','hettinger.david@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-16T02:28:55.865Z','Facebook','Triston Nitzsche','Vicksburg','1994-12-24',32.270188,39180,'05bb092e-45a5-4d6e-8411-1885cc8b7e1f',1747,-90.9108059,'400 Wilbert Lane','MS','nitzsche-triston@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-12T07:48:48.560Z','Google','Evans Bins','Chickamauga','1965-10-08',34.8768839,30707,'eac985f0-b0be-4e2a-a930-9aadae04e265',1748,-85.24801699999999,'1174 Red Belt Road','GA','bins-evans@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-03T05:13:50.341Z','Facebook','Ivy Koelpin','Calumet','1990-10-19',35.5362926,73014,'e98c776f-7c8e-44bf-9f1c-0b859fb8d108',1749,-98.2195119,'23861 Route 66','OK','ivy.koelpin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-11T10:43:06.309Z','Google','Troy Pacocha','Carlyle','1961-01-22',38.6162698,62231,'0bb99419-cc91-475c-984f-6d005abefa5f',1750,-89.3774191,'1511-1591 Kane Street','IL','pacocha.troy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-18T11:08:50.023Z','Google','Theresia Russel','Corsica','1973-11-13',43.4144182,57328,'3a9fb51f-847d-4d88-8040-c0bd33e33e5b',1751,-98.64741860000001,'27358-27398 377th Avenue','SD','theresia-russel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-20T03:36:02.417Z','Facebook','Alaina Howell','Addison','1983-05-03',34.271229,35540,'ae5bec5d-7e0c-4d24-8378-88f54d843a1d',1752,-87.1796677,'99 County Road 3706','AL','alaina-howell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-26T16:06:37.451Z','Facebook','Leone Littel','Silver City','1963-01-09',32.862158,88061,'25c27ba0-c563-46df-adbe-f779bffc46c4',1753,-108.5860274,'473 Bill Evans Road','NM','leone-littel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-19T07:55:16.655Z','Affiliate','Zora Schamberger','Blackstone','1967-10-17',37.18846610000001,23824,'cd145441-39aa-4208-8824-e60c34014dfa',1754,-77.9081442,'3543 Rocky Hill Road','VA','schamberger-zora@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-12T17:33:30.505Z','Google','Keyon Gleason','Wolf Point','1970-06-04',47.959813,59201,'c811432e-f93a-4a15-bb17-e9324b0a6c4f',1755,-106.0802946,'339 Maxwell Hill Road','MT','keyon-gleason@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-28T02:14:36.735Z','Organic','Kiley Stark','Plains','1988-05-23',32.09018080000001,31780,'9ee98f32-db05-484e-bf5f-1d211c894386',1756,-84.41532629999999,'1460 Youngs Mill Road','GA','stark-kiley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-18T22:11:32.363Z','Facebook','Michael Frami','Mount Olive','1975-12-30',35.2428253,28365,'f11d79a5-e5da-4443-b5e4-9aec11258558',1757,-78.0706555,'756 Country Club Road','NC','frami-michael@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-16T15:00:54.887Z','Twitter','Adrien VonRueden','Verona','1987-12-14',46.4567953,58490,'7c4c715b-005c-40c8-911a-e0d4fd1af2ec',1758,-98.09833069999999,'11079-11099 66th Street Southeast','ND','vonrueden-adrien@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-03T14:24:38.064Z','Organic','Abby Larkin','Hopkinsville','1991-10-18',36.8523157,42240,'b229a1df-6476-4328-9c31-6b8c30c79ea2',1759,-87.5900484,'3095 Hensley Lane','KY','abby.larkin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-16T06:19:09.224Z','Organic','Isadore Homenick','Dale','1999-09-01',29.836327,78616,'6d6f44d3-2205-431d-ac40-c8b843ebb54b',1760,-97.43976699999999,'1026 Pine Gap Drive','TX','isadore.homenick@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-19T06:44:02.292Z','Google','Wilmer Schaefer','Effingham','1976-10-15',34.0710594,29541,'f4930e64-fbfa-4e50-8319-fa30a13029dc',1761,-79.6735174,'4139 Planer Road','SC','schaefer-wilmer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-27T02:51:06.042Z','Google','Francisco Robel','Evant','1990-07-30',31.477583,76525,'d18997ba-a697-4d07-a036-40db04967ef8',1762,-98.133838,'1636 U.S. 84','TX','francisco-robel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-08T18:57:35.555Z','Affiliate','Una Graham','North English','1997-02-13',41.5298448,52316,'a61cf9d2-7b69-43d4-9670-1ed3dfe26e17',1763,-92.1890238,'1564 325th Street','IA','graham-una@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-05T08:39:26.374Z','Google','Billy Harvey','Bear Creek','1974-01-05',35.6221391,27207,'f9a35163-c85a-498f-92ef-d8c695b138a8',1764,-79.2516907,'1118 Cole Thomas Road','NC','harvey.billy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-24T07:39:23.431Z','Twitter','Kristina Herman','Warrenton','1965-02-08',38.760812,20187,'f468e989-127a-4c1e-911d-0da2f1d509f9',1765,-77.74101399999999,'6742 Kirk Lane','VA','kristina.herman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-15T18:22:37.061Z','Facebook','Ferne Rosenbaum','Coulterville','1972-12-23',37.7204679,95311,'851b2681-3f79-481d-8a5f-ac05dfe6472e',1766,-119.934325,'8622 Bull Creek Road','CA','ferne-rosenbaum@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-03T16:29:06.720Z','Twitter','Jeffery Hermann','Shorterville','1979-02-25',31.4295568,36373,'9f305e2a-b377-400e-be42-96daad55a2b6',1767,-85.08885599999999,'2-8 Henry County 47','AL','jeffery.hermann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-18T02:34:34.079Z','Twitter','Roxane Little','Wellston','1995-01-19',44.25241339999999,49689,'38d7cfd2-97b2-44f8-a398-63dd11cb4609',1768,-86.02472209999999,'13841 Chicago Avenue','MI','roxane.little@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-28T17:33:52.971Z','Google','Vesta Lang','McKinleyville','1979-10-27',40.9866609,95519,'7c4a54d5-ffa4-4c5b-a7a4-ac5eed86dda5',1769,-124.0667605,'240 Wagle Lane','CA','lang-vesta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-21T19:49:23.146Z','Affiliate','Frank Rath','Haines','1995-02-19',44.94850520000001,97833,'3d595a11-6bd5-4ad9-bea2-dfd7791269ea',1770,-117.9031187,'46973 Haines Dump Road','OR','rath-frank@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-21T20:00:58.994Z','Affiliate','Susanna Will','Sisters','1959-01-14',44.4356448,97759,'06a4d524-c212-459e-94cb-7498f2f90259',1771,-121.9428254,'13000 U.S. 20','OR','susanna-will@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-09T13:54:53.162Z','Organic','Sallie Flatley','Plaquemine','1992-01-26',30.2388971,70764,'64f37999-cd0d-447d-8687-0416efed70ec',1772,-91.3172204,'27729-27757 Intracoastal Road','LA','sallie-flatley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-16T01:35:08.345Z','Facebook','Jasmin West','Ridgeland','1989-03-25',45.1555286,54763,'1e4adf04-554b-4f5c-b42b-13946011926e',1773,-91.9936049,'3254-3294 1300th Avenue','WI','west-jasmin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-16T08:32:27.756Z','Affiliate','Nat Hane','Tucson','1962-08-26',32.308539,85749,'073b9a87-0b1d-4511-8060-c0372b63b49d',1774,-110.793313,'5419 Shandon Place','AZ','hane.nat@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-07T16:51:38.522Z','Twitter','Ward Ernser','Phillips','1988-08-05',45.6170256,54555,'4aff17d9-70f8-45f4-ab96-5ccecddafbfb',1775,-90.4052562,'N6687 Aspen Road','WI','ernser-ward@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-25T10:44:25.058Z','Twitter','Tina Hahn','Campbellsburg','1984-12-22',38.5529525,47108,'a356722c-4163-4a9b-b66e-9154c65a93a8',1776,-86.2359341,'8335 West Vincennes Trail','IN','hahn-tina@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-04T22:31:49.368Z','Twitter','Stan Ernser','Goodhue','1963-10-30',44.407822,55027,'476f4f81-f63e-4e6d-915c-bb862d2d4f45',1777,-92.6516345,'37000-37912 190th Avenue','MN','ernser.stan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-11T16:03:58.130Z','Facebook','Angus Bergnaum','Bear Creek Village','1966-04-21',41.2424746,18702,'d10f1ccb-7c72-48e3-b9d1-e9c2ea5e90e1',1778,-75.7229472,'3001 Bald Mountain Road','PA','angus.bergnaum@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-06T19:07:37.309Z','Google','Billie Nolan','Brady','1974-09-17',40.8950958,69123,'eda5a1d2-ef71-487e-8459-0183f460a730',1779,-100.366425,'36844 East Palmer Road','NE','billie-nolan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-19T08:12:34.375Z','Facebook','Ubaldo Wolf','Forestburg','1999-11-21',33.4835755,76239,'0928d436-c9d8-4ae0-bccf-07638c99f9ba',1780,-97.5134693,'2840 Seldom Seen Road','TX','ubaldo.wolf@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-23T20:56:40.458Z','Organic','Nia Schoen','Chetek','1972-05-27',45.304834,54728,'004c6cae-fec6-4dd2-895a-ed1af90e30c2',1781,-91.5486899,'2963 7th Avenue','WI','schoen.nia@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-10T14:57:58.339Z','Twitter','Melyssa Miller','Belleville','1960-12-28',43.782105,13611,'c4465845-472e-439a-8228-4abeca212083',1782,-76.125839,'7859 Lake Road','NY','miller-melyssa@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-19T06:50:41.177Z','Organic','Tristin Champlin','Iroquois','1982-09-24',44.32127819999999,57353,'a6b4ed72-3b9b-4bcc-bc1d-2326281076b3',1783,-97.9138131,'21101-21199 415th Avenue','SD','champlin.tristin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-27T15:24:21.752Z','Google','Mafalda Medhurst','Howell','1971-05-25',42.7269199,48855,'21691a7f-6c28-4306-a265-be866236de2a',1784,-83.8923518,'6876 Dean Road','MI','mafalda.medhurst@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-27T07:23:28.540Z','Organic','Joannie Hudson','Lebanon','1965-07-11',39.4287889,45036,'52f8dc1f-07c3-4f5e-8434-0cabeb417d73',1785,-84.1343097,'3824-3938 Wilmington Road','OH','joannie.hudson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-10T12:45:58.674Z','Organic','Allison Doyle','Bonnerdale','1971-06-25',34.361765,71933,'622265e3-b61e-4289-bf00-68c8f6826769',1786,-93.3366379,'122 Falls Lane','AR','allison.doyle@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-28T12:27:42.605Z','Organic','Katheryn Jacobson','New Braunfels','1986-03-26',29.770311,78132,'68c27f12-c068-4bba-b8ad-78f72436b12a',1787,-98.291823,'628-998 Seay Lane','TX','katheryn-jacobson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-06T06:05:23.469Z','Affiliate','Mackenzie Ullrich','Meeker','1983-08-16',40.133207,81641,'1ab520a2-9e16-4d79-baf7-e3a4b045cc08',1788,-108.191913,'3200 Penny Drive','CO','mackenzie-ullrich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-28T15:50:54.996Z','Twitter','Rebekah Ledner','Salt Lake City','1960-09-24',40.77145489999999,84103,'37caa154-6076-4572-a6ae-a553125fb69b',1789,-111.8558905,'1100-1116 East 2nd Avenue','UT','rebekah.ledner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-09T17:42:28.278Z','Facebook','Claudie Dare','Potosi','1984-07-17',37.84206289999999,63664,'c05d11c8-02f2-4af9-ba75-f7b0e70ba1f7',1790,-90.8244859,'12949 Delbridge Road','MO','claudie-dare@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-27T04:23:51.781Z','Google','Cyrus Macejkovic','Narrows','1983-05-16',37.3419049,24124,'9dcc1125-6447-4313-89d1-b528ab3298a5',1791,-80.828667,'510 Stock Pen Mountain Road','VA','macejkovic-cyrus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-18T10:08:20.471Z','Google','Stanley Kuphal','Oakville','1977-02-09',41.0536659,52646,'28734df4-95ff-40b4-ad20-e74a79cf69e4',1792,-91.01103529999999,'25504-25986 42nd Avenue','IA','stanley.kuphal@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-17T04:24:17.652Z','Facebook','Anna Price','Fredericksburg','1967-05-31',30.493264,78624,'d5809a4b-fa9f-4974-81e3-03b91b1860ec',1793,-98.97051499999999,'721 Wasserfall Road','TX','anna-price@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-30T15:19:57.659Z','Organic','Darryl Stanton','Miles City','1997-01-06',46.1178152,59301,'012eae29-b8c4-4165-84e2-27d374a18a19',1794,-105.8201727,'1086 Tongue River Road','MT','darryl-stanton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-26T17:00:40.794Z','Organic','Ollie Corkery','Mescalero','1980-10-13',33.156414,88340,'cb2e1bc3-1b09-4d28-9db7-89111b51190f',1795,-105.782114,'111-199 Cottonwood Drive','NM','ollie.corkery@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-26T17:04:06.889Z','Organic','Hosea Thompson','Marion','1971-12-27',37.2891389,42064,'e96ae166-b7c1-43c2-952e-bfe285445a38',1796,-88.05956570000001,'1272-1980 Weldon Road','KY','thompson-hosea@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-29T07:27:25.480Z','Google','Julianne Leffler','Wheatland','1974-01-11',42.30973350000001,82201,'798fc0f7-5f33-4a6e-a73d-d3d8f8ffe208',1797,-105.0921531,'355 Coleman Road','WY','leffler-julianne@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-12T11:51:22.044Z','Affiliate','Paige Lueilwitz','Baldwin','1960-12-08',45.008201,54002,'cb7d6f53-6577-41ad-bc5e-a9235a62c58b',1798,-92.406273,'1950 County Road E','WI','lueilwitz.paige@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-05T21:44:19.516Z','Organic','Antonina Morissette','Comfrey','1973-03-13',44.1305376,56019,'399191db-2246-42a9-aef6-3a6fbc3353b8',1799,-94.9190122,'11560 370th Avenue','MN','antonina.morissette@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-04T11:21:33.619Z','Affiliate','Freddie Wisoky','Mandan','2000-02-12',46.7091378,58554,'40e23e5f-e1d5-49bd-a229-2f1157ea8db6',1800,-101.0908937,'4816-4820 30th Avenue','ND','freddie.wisoky@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-29T08:25:00.886Z','Facebook','Kaelyn Gislason','Wheatland','1970-04-15',42.1507858,82201,'1de3d6c7-a534-4b0a-8d36-3189849d1694',1801,-104.9566127,'251 East Johnson Road','WY','gislason-kaelyn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-04T07:01:25.932Z','Twitter','Blair Heaney','Mud Butte','1960-02-16',44.9003897,57758,'93017d8a-2c5c-479b-bd50-53265c821869',1802,-102.8874754,'17224 Old 212','SD','blair.heaney@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-30T21:20:15.101Z','Affiliate','Raymundo D''Amore','Tiptonville','1990-02-12',36.46426599999999,38079,'d4b4a057-bfc5-48d8-82df-7e09c011f785',1803,-89.352084,'2460 Tennessee 213','TN','d.amore.raymundo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-05T16:26:06.638Z','Facebook','Carter Hane','Drummond','1977-10-15',46.7180626,59832,'3cfbf3ff-dc68-4e01-bad0-5dad79035c99',1804,-113.1962918,'195 Big Sky Ridge Lane','MT','hane.carter@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-01T20:28:16.282Z','Google','Alvena Rempel','Jordanville','1972-01-04',42.927046,13361,'eba4c18d-6a19-4cca-a037-aa983b8fa715',1805,-74.853465,'1049 Travis Road','NY','rempel.alvena@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-07T23:37:20.121Z','Twitter','Melba Witting','Floral','1969-08-27',35.6341398,72534,'4f74d1c2-6854-422f-8c6b-36e14fd55110',1806,-91.7455191,'1000 Old Union Road','AR','melba-witting@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-08T01:04:27.844Z','Affiliate','Pearline Paucek','Kanab','1960-06-27',37.179507,84741,'b8b26de8-ea27-40d4-9be1-707903e11f52',1807,-112.386285,'7295 Johnson Canyon Road','UT','pearline.paucek@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-24T05:58:27.673Z','Twitter','Dariana Schneider','Horicon','1990-02-24',43.479399,53032,'05882a32-b895-4e02-a1e9-638c064690b2',1808,-88.583489,'N7851 Bay View Road','WI','dariana.schneider@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-19T03:13:12.217Z','Organic','Rita Schmeler','Norwood','1978-09-23',30.9974104,70761,'d3b459c6-cb60-44e2-a5f4-7a72f0564aee',1809,-91.0533414,'6310 Highway 422','LA','schmeler-rita@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-17T10:01:39.362Z','Affiliate','Kathleen Bernhard','Council Grove','1980-03-26',38.5767965,66846,'388bd191-b25c-4f87-a2db-363fd503464c',1810,-96.4920547,'2099-2199 South 850 Road','KS','bernhard.kathleen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-10T07:21:58.780Z','Google','Jennings Brakus','Imperial','1989-10-22',32.828037,92251,'3ae672e5-f896-4c41-811f-8c8dc7986099',1811,-115.574871,'2420 Enterprise Way','CA','jennings.brakus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-04T03:51:03.969Z','Organic','Trevion Raynor','Morrisonville','1974-09-04',44.630733,12962,'883c1e52-8b7a-408f-b6ec-0db9af5c8944',1812,-73.586221,'41 Austin Road','NY','raynor.trevion@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-11T08:04:01.778Z','Twitter','Myriam Witting','Grand Ronde','1975-07-13',45.0889128,97347,'ef4d1630-9ad4-4767-9b1f-42160fbcba0d',1813,-123.5819218,'24118-24500 Shadow Lane','OR','myriam.witting@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-24T13:10:57.849Z','Facebook','Shane Adams','New Creek','1989-12-23',39.3111942,26743,'e5de39aa-ff53-4e22-9500-a994ebabed58',1814,-79.09821339999999,'410 Burgess Hollow Road','WV','adams.shane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-03T07:47:32.242Z','Google','Ramiro Wehner','Quincy','1998-01-17',30.484739,32351,'3767712e-277d-4e94-87d0-25e83ed6c162',1815,-84.59702999999999,'7439 Old Federal Road','FL','wehner.ramiro@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-30T05:20:19.086Z','Google','Peggie Aufderhar','Vida','1960-02-27',47.6658559,59274,'2a52fa65-aed3-4539-9e62-3d5611015507',1816,-105.793456,'306-318 Thorgaard Road','MT','aufderhar-peggie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-24T00:01:23.463Z','Affiliate','Winifred Tillman','La Grange','1987-05-14',29.779582,78945,'a06ad5a4-69ee-43fa-9185-d3e8ae113ae4',1817,-96.8117989,'12016 Mazoch Road Holman Area','TX','winifred.tillman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-26T05:04:55.879Z','Organic','Nya Hilpert','Scottsburg','1995-12-18',38.698893,47170,'083865f5-7b50-494f-b1cc-ae738b308cf1',1818,-85.82955799999999,'2999 County Road 50 North','IN','nya-hilpert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-27T04:33:55.316Z','Twitter','Gabrielle Kohler','Clewiston','1998-10-08',26.630951,33440,'b2bfd16e-29f5-4feb-9e7d-26f5c87bb83f',1819,-80.910077,'10000 CR 835','FL','gabrielle.kohler@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-30T16:19:39.134Z','Google','Alvis Gleichner','Glenallen','1985-02-02',37.3210317,63751,'8a24c3ff-30e9-4ab4-9093-16dc713568a9',1820,-90.1330998,'1572 RR 1','MO','alvis.gleichner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-20T03:06:43.542Z','Organic','Otto Littel','Shelbyville','1973-12-04',39.6197165,46176,'73fb99ca-4605-4f92-8e77-035b4cc9cace',1821,-85.6859594,'6352-6746 North Range Line Road','IN','littel.otto@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-29T08:21:25.049Z','Google','Pearl Kovacek','Tappen','1969-10-18',46.8348647,58487,'98c399f5-cdad-4735-a70d-fbb37b20ba1e',1822,-99.59147390000001,'4120 40th Street Southeast','ND','kovacek-pearl@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-23T04:27:27.262Z','Affiliate','Mabel Ward','Towanda','2000-01-01',40.5671369,61776,'b5948a5f-2f2c-4ca4-a08b-9de6c86a9b3d',1823,-88.81208720000001,'21766 East 1750 North Road','IL','ward.mabel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-15T11:08:46.459Z','Organic','Trevor Kling','Florence','1977-11-04',34.8072897,35630,'17b1f4ed-e719-4d00-bc3b-740cd2bbddf1',1824,-87.6318849,'800 South Cox Creek Parkway','AL','kling.trevor@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-20T07:52:44.132Z','Organic','Wanda Thiel','Hooper Bay','1982-03-02',61.53484349999999,99604,'28143f8e-f9a9-4f9b-9aa6-94c87debe47c',1825,-166.0989777,'1 Uinaq Road','AK','thiel.wanda@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-09T14:44:33.545Z','Organic','Ervin Mitchell','Cut Bank','1966-10-08',48.66046,59427,'04ef6955-34dd-42d3-9dce-77008aaacf59',1826,-112.765961,'375 Meriwether Road','MT','mitchell-ervin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-06T19:50:50.709Z','Facebook','Savion Langworth','Powers Lake','1975-11-15',48.6799332,58773,'f985737b-7c4b-4fd3-97d3-8886fe3aa81b',1827,-102.6469106,'8701-8767 91st Avenue Northwest','ND','langworth-savion@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-17T11:10:51.157Z','Google','Sydnie Bode','Maryland','1987-11-17',42.5187101,12116,'3d5a6e01-9c52-4032-8c14-281d2a5cf912',1828,-74.94718449999999,'460 Burrillo Road','NY','bode-sydnie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-09T18:30:45.820Z','Affiliate','Kaitlyn Howe','Wahpeton','1973-12-13',46.1642053,58075,'6b0da174-c851-4950-8389-33f5ee55e131',1829,-96.67889219999999,'8601-8649 178th Avenue Southeast','ND','kaitlyn.howe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-10T18:13:43.676Z','Google','Alta Hansen','Union Springs','1989-05-04',32.0780224,36089,'722ee22f-003d-4bf0-bb66-49fb564097f3',1830,-85.57917119999999,'662 Foster Road','AL','hansen.alta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-26T01:57:43.642Z','Affiliate','Electa Barrows','Squaw Valley','1966-08-03',36.7672839,93675,'43975219-6b84-4334-bfa3-acf42878dc97',1831,-119.225824,'1444 Crane Lane','CA','electa.barrows@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-20T12:50:42.725Z','Organic','Fay Bayer','Brownwood','1961-01-25',31.982205,76801,'5317c262-e0b8-4bf2-b3df-2832d235a3c5',1832,-99.095485,'5580 County Road 411','TX','bayer.fay@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-15T05:54:33.362Z','Twitter','Gwen Cole','Schertz','1981-07-11',29.60951,78154,'5bf16ee1-814f-472e-8278-14ef1f2094df',1833,-98.283165,'7015 Farm to Market Road 3009','TX','cole.gwen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-01T19:22:27.743Z','Facebook','Amelie Crist','Maupin','1976-05-27',44.8499904,97037,'6b7f6a8a-293b-44ab-844a-41a9ccc0216f',1834,-121.0645029,'85104 South Junction Road','OR','crist.amelie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-05T23:33:10.655Z','Google','Aurore Yundt','Lebanon','1961-01-27',40.281903,17042,'a0aba67e-ad0c-43d9-a78e-d4b94523f2e3',1835,-76.52353099999999,'1581 Horseshoe Pike','PA','aurore-yundt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-15T01:32:58.285Z','Affiliate','Bianka Crona','Lake Cormorant','1994-07-05',34.9047695,38641,'5694fab9-f214-48ef-bb82-d5af4bea941c',1836,-90.2370013,'14036 Star Landing Road','MS','bianka.crona@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-21T10:31:36.595Z','Twitter','Sabrina Schmidt','Washington Court House','1968-05-07',39.514265,43160,'5c0360d9-65d0-4690-a758-37b6c87fd88a',1837,-83.53760559999999,'5765-5981 U.S. 22','OH','sabrina-schmidt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-14T00:47:25.587Z','Affiliate','Maymie Moen','Lynchburg','1968-05-14',37.369013,24501,'27374708-d60e-49e5-aa63-ed2ce3904519',1838,-79.1272089,'1986 Old Rustburg Road','VA','moen-maymie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-13T02:10:11.102Z','Organic','Nikita Little','Tuskegee','1977-08-16',32.3126203,36083,'18ec2ac2-0db7-481c-a03d-b0c069852ade',1839,-85.5588867,'4615 County Road 16','AL','nikita-little@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-21T05:09:50.013Z','Affiliate','Maryam Friesen','Red Oak','1967-04-10',40.9447254,51566,'903d4c93-7e19-489b-a140-ab46440974b2',1840,-95.26528990000001,'1601-1629 250 Street','IA','maryam.friesen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-16T14:10:17.189Z','Organic','Harrison Kris','Saint Helena Island','1984-06-14',32.3376667,29920,'e9b786e1-1534-40b6-859c-de110617d93f',1841,-80.528605,'1 Whitams Island','SC','harrison-kris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-18T07:58:33.598Z','Affiliate','Candace McKenzie','Mountain Home','1986-02-16',30.1073029,78058,'07c40e87-4dad-4eaf-bf39-c7887a659da1',1842,-99.6336451,'1-5 Texas 41','TX','mckenzie-candace@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-16T22:50:28.452Z','Facebook','Geo Thompson','Falmouth','1994-12-26',44.2163394,49632,'17ffc9ca-7072-44cc-8fc7-ecab9f88a3f0',1843,-84.8966808,'8001-9999 East Finkle Road','MI','thompson-geo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-20T05:05:03.035Z','Twitter','Shaylee Wisoky','Bunker','1981-05-20',37.4752539,63629,'ac7c3bb6-5fea-4bbf-b29a-1a52efc7dc81',1844,-91.1805078,'1272 County Road 900','MO','wisoky.shaylee@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-15T15:54:00.280Z','Affiliate','Verna Schinner','Spencer','1990-08-04',43.1691463,51301,'ad1b688d-7b73-442c-b496-0f52a1a87a61',1845,-95.1268561,'2301-2307 East 30th Street','IA','schinner.verna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-22T19:42:54.309Z','Google','Taya Morar','Delphi','1971-12-25',40.6847803,46923,'afc28608-0223-4523-bede-fcb1831e854d',1846,-86.688831,'900 East North Street','IN','morar-taya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-16T05:23:58.636Z','Affiliate','Sydney Rempel','False Pass','1997-09-26',54.8488896,99583,'360eecb7-8ee3-4dd5-a825-95a1fd9034cc',1847,-163.4073178,'180 Unimak Drive','AK','rempel.sydney@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-01T23:21:06.717Z','Affiliate','Danyka Kunze','Gould','1997-08-25',34.0070049,71643,'d74a9725-ab09-464f-83d1-9acb52de3411',1848,-91.5941429,'755 Cades Lane','AR','danyka.kunze@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-06T04:00:55.842Z','Google','Eryn Glover','Gunnison','1997-08-11',38.5792025,81230,'6296f828-4d5d-4e48-be43-25f3fa6a5398',1849,-106.887352,'321 Magnolia','CO','glover-eryn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-28T08:55:23.425Z','Twitter','Cristina Goldner','Rosebud','1961-12-30',46.1661469,59347,'d05a5390-f4bf-4192-b33f-83c5e3768cfe',1850,-106.2884395,'895 Sweeney Creek Road','MT','cristina-goldner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-24T11:50:59.718Z','Affiliate','Nolan Lebsack','Louise','1991-03-18',29.1169075,77455,'94ff89e8-f8f4-4a64-a19d-1950f14e9d59',1851,-96.3296448,'505 South FM 441 Road','TX','nolan.lebsack@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-19T05:23:03.686Z','Google','Joan Langosh','Prescott','1964-03-08',33.8299358,71857,'febd7899-a3bd-482a-a590-014f547ff3cb',1852,-93.5065874,'593 Hempstead 207 Road','AR','joan-langosh@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-17T00:39:08.926Z','Twitter','Hannah Hodkiewicz','Warren','1970-10-11',48.133432,56762,'7ad2d47c-f567-4c4b-8b62-df99451b0875',1853,-96.9065397,'39583 180th Street Northwest','MN','hodkiewicz-hannah@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-01T05:20:48.819Z','Affiliate','Gerhard Towne','Anderson','1996-08-06',40.041491,46013,'e6dbd44b-5c2d-4ec4-9e3c-6aa3bc9c81f1',1854,-85.717243,'2602 Enterprise Drive','IN','gerhard.towne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-25T22:05:20.198Z','Twitter','Stevie Ankunding','Watford City','1967-01-28',48.0997898,58854,'e323e0cb-ac24-4e1e-bffb-9118c60cb95a',1855,-103.2000809,'11851 46th Street Northwest','ND','ankunding-stevie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-13T01:43:13.260Z','Google','Laurie Ortiz','Lumberton','1985-04-10',31.1115134,39455,'bb7ce199-3970-4e8e-8b79-6c88ae2de7bf',1856,-89.6005565,'287 Tatum Salt Dome Road','MS','laurie.ortiz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-29T09:46:08.230Z','Affiliate','Beatrice Greenholt','Juneau','1987-06-21',58.4085,99801,'627a3223-343c-4ae7-9381-26e29524ee60',1857,-134.7549999,'17900 Glacier Highway','AK','beatrice-greenholt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-23T07:43:27.970Z','Twitter','Mariah Brown','Warden','1977-01-17',46.701241,98857,'4b1d5049-ae1a-4d7f-adaa-f06b7d2a7abd',1858,-119.5692451,'7026 Mallard Drive Southeast','WA','mariah-brown@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-17T09:57:09.025Z','Google','Murl Keeling','Bell City','1998-06-15',29.9892952,70630,'ece88313-3823-48ce-9353-517f8a8c347e',1859,-93.08805,'1019-1299 Louisiana 27','LA','keeling-murl@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-11T15:47:31.220Z','Google','Maiya Beier','Washington','1964-09-14',41.676099,06777,'d3dfb864-ba8c-4d9c-a3e2-fd8dd59db7c2',1860,-73.378096,'106 New Preston Hill Road','CT','maiya-beier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-11T13:22:14.727Z','Twitter','Jana Hilll','Hysham','2000-04-01',46.1091442,59038,'96fa844f-7cb1-4c68-b0c4-9b969646b147',1861,-107.0786299,'173 Bear Creek Road','MT','jana-hilll@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-16T10:59:46.273Z','Facebook','Lulu Ondricka','Rosie','1976-02-25',35.65109899999999,72571,'bf728bf0-58ed-45ab-904e-f8ec9fe6ff1d',1862,-91.54011799999999,'560 Goodie Creek Road','AR','lulu-ondricka@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-18T17:59:00.843Z','Affiliate','Monserrate Doyle','Snyder','1989-08-18',32.761235,79549,'a89be6c9-fcfe-454b-acf5-13b665a87f96',1863,-100.8384885,'5000 East County Road 126','TX','monserrate-doyle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-06T10:04:52.667Z','Google','Margarete Walsh','Alexandria','1974-11-29',43.6587436,57311,'317f0975-535d-407e-86e9-91ef136e453f',1864,-97.7557446,'42259 257th Street','SD','walsh-margarete@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-22T16:35:53.383Z','Affiliate','Jerome Koepp','Wolf Point','1992-05-21',48.1777173,59201,'3e855aeb-c210-4cdc-915d-bd11892dba8b',1865,-105.7346406,'5689 Road 1078','MT','jerome.koepp@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-09T13:53:14.491Z','Facebook','Tatum Feest','Victor','1983-09-11',38.7081942,80860,'6d05bf02-9f57-4aa3-b352-008361f5b7db',1866,-105.1350515,'114 Cedar Street','CO','tatum.feest@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-05T11:27:57.063Z','Google','Alicia Runolfsdottir','Free Soil','1997-09-08',44.0779761,49411,'0310efb5-cd4b-4179-91f3-f4ddcb7e104c',1867,-86.2130723,'2705 East Townline Road','MI','runolfsdottir.alicia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-04T12:07:26.687Z','Google','Maud Witting','Marshall','1967-03-05',38.938575,20115,'35becc07-fab9-4a32-bc3c-e5f01ee07315',1868,-77.883971,'2518 Rectortown Road','VA','witting-maud@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-07T22:50:56.229Z','Organic','Nya Mueller','Eads','1984-12-07',38.4676563,81036,'987ee203-a853-4f15-a17b-8e57c63e8019',1869,-102.678174,'44000-46998 Colorado 96','CO','mueller-nya@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-15T07:38:54.289Z','Facebook','Donato Spinka','Kingman','1961-03-13',35.03465,86401,'2392e951-7612-4ab9-b4f6-bdaca6dcbd32',1870,-113.681162,'11735 Desert Fire Trail','AZ','spinka-donato@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-07T11:11:58.983Z','Affiliate','Maxie Kilback','Pledger','1979-10-03',29.165482,77468,'970e94f1-313f-4415-9ea2-3e5f53d5f244',1871,-95.8897788,'7500 FM 1728','TX','kilback-maxie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-17T13:40:30.070Z','Affiliate','Paul Kozey','Dillon','1966-09-05',45.2686766,59725,'50403419-1914-4de5-965d-727fb558d307',1872,-112.508021,'3663 Stone Creek Road','MT','kozey.paul@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-23T20:23:02.363Z','Facebook','Jazmin Brekke','Flatwoods','1967-10-30',38.5078724,41139,'68a6f138-bb10-4079-98be-8a9b13af35b0',1873,-82.7571526,'4478 Indian Run Road','KY','jazmin.brekke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-29T14:59:04.106Z','Organic','Christop Schulist','Sutton','1970-03-30',47.3844573,58484,'5a700da6-c51e-4b0e-9fc6-eab912a40fc3',1874,-98.400517,'10064 2nd Street Southeast','ND','christop.schulist@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-17T22:08:55.008Z','Twitter','Georgianna Hoppe','Franklin','1986-05-14',29.732441,70538,'8179ecba-d4fc-4f6f-8ab6-7ccd517c484d',1875,-91.5441532,'9071 Highway 182','LA','hoppe.georgianna@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-16T05:56:46.266Z','Google','Bertrand Hayes','Park Hills','1971-06-20',37.8210517,63601,'fa68fa17-d832-4fef-b57b-32dc7d92b563',1876,-90.56398279999999,'1700-1710 Ellis Road','MO','bertrand-hayes@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-03T07:54:55.511Z','Google','Alysha Quitzon','Sonora','1987-12-04',37.5612611,42776,'b1456054-e4c9-4cfa-a5d5-75a5831188ed',1877,-85.9417637,'128 Shady Bower Lane','KY','quitzon.alysha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-09T18:09:42.502Z','Twitter','Herman Ratke','Jonesboro','1971-11-16',37.4489193,62952,'33f39177-e710-4018-8f29-03df354b8c33',1878,-89.2712877,'309-311 South Locust Street','IL','herman.ratke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-11T12:29:49.505Z','Twitter','Uriel Eichmann','Citra','1986-02-18',29.4095736,32113,'9fb06131-9031-4311-bb80-90df9d0565c1',1879,-82.12125309999999,'1579 Northeast 178th Place','FL','uriel-eichmann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-11T21:11:15.007Z','Organic','Nayeli Becker','Scituate','1998-05-01',41.851276,02857,'dfb084fe-6c65-4d9d-a46e-8e715a54c736',1880,-71.623779,'164 Rocky Hill Road','RI','nayeli.becker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-10T04:27:48.140Z','Facebook','Jalon Brakus','Highlandville','1998-08-02',36.8993552,65669,'61c9b2ca-f9f7-459d-86eb-33af1e49c229',1881,-93.37103309999999,'955-1163 V-20 C','MO','jalon-brakus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-20T06:00:59.348Z','Affiliate','Vallie Hamill','Helix','1965-10-08',45.871341,97835,'3cad5ae8-306a-4b35-9bfc-dc7c2b729212',1882,-118.7664048,'81140-81160 County 983 Road','OR','vallie-hamill@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-29T20:50:15.696Z','Twitter','Eleanora Senger','Manchester','1978-01-10',42.42348260000001,52057,'49298ade-ebbe-4252-8241-45f4587fe5e3',1883,-91.4372509,'1831 255th Street','IA','senger.eleanora@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-15T01:58:37.922Z','Google','Adelia Heidenreich','Braman','1967-03-27',36.8977589,74632,'1efd4db2-9d7d-4405-b291-b7acb66a4607',1884,-97.2649208,'6945 North O Street','OK','heidenreich.adelia@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-09T18:17:46.206Z','Facebook','Kiel Hyatt','Tracy','1968-05-05',37.75066169999999,95376,'7844f2c8-33ae-4cd8-b7c9-57198f7a9ae3',1885,-121.4455218,'1600-1620 Hurley Court','CA','kiel.hyatt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-20T20:04:04.431Z','Twitter','Hailie Walker','Germfask','1960-06-08',46.2182794,49836,'cec66e01-7af5-4e79-a366-faa446f972b8',1886,-85.8061999,'W18444 Hoffy Road','MI','walker.hailie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-25T17:06:26.928Z','Twitter','Desmond Monahan','West Point','1986-10-08',41.75712559999999,68788,'5572aada-4985-41cb-9e08-122868534b6a',1887,-96.7505654,'1476-1498 B Road','NE','monahan.desmond@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-20T06:26:21.728Z','Affiliate','Elinor Douglas','Clewiston','1959-04-26',26.764708,33440,'221fdbe0-55af-4a06-8642-83474b198041',1888,-81.20095599999999,'340 Witt Road','FL','elinor.douglas@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-15T14:04:33.318Z','Facebook','Billy Hickle','Douglas','1968-02-26',42.69133370000001,82633,'4af574c3-5514-4ca3-9965-6aa56e420c40',1889,-105.3532553,'323-355 Irvine Road','WY','hickle-billy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-16T16:09:40.810Z','Organic','Freeda Swaniawski','Milburn','1998-04-13',34.2297964,73450,'1f6bb276-eaa4-46ee-9159-bf3d80208694',1890,-96.58023569999999,'1002 Condon Grove Lane','OK','freeda.swaniawski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-22T02:33:30.645Z','Google','Justyn Nikolaus','Wakefield','1976-03-15',42.19197279999999,68784,'4b8ed401-fb80-478f-a96a-19c93a4f17aa',1891,-96.9166444,'58101-58155 853rd Road','NE','justyn-nikolaus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-28T12:12:53.898Z','Affiliate','Cathrine Langosh','Spencer','1999-05-06',44.8080149,54479,'a868ffa6-ce62-431f-a4fc-a96ccd14e0fe',1892,-90.2971223,'1095 Buxton Road','WI','langosh.cathrine@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-07T04:21:11.768Z','Affiliate','Delfina Luettgen','Trinidad','1986-01-04',32.1473028,75163,'d3a1acb9-7a39-4c5c-b4b3-32adbb7dc573',1893,-96.08273989999999,'350 North League Line Road','TX','delfina-luettgen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-09T14:02:47.390Z','Google','Baylee Kassulke','Springfield','1993-05-07',44.1879289,56087,'1dae4e84-9add-46fd-a108-01250b01dc27',1894,-94.9584548,'15436 County Highway 5','MN','baylee-kassulke@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-08T02:28:09.307Z','Google','Meta Rogahn','Fillmore','1975-02-28',42.40922399999999,14735,'2e8261c5-e7c2-4670-a1ac-e6024b3b6b04',1895,-78.112782,'6642 Shongo Valley Road','NY','rogahn-meta@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-23T01:21:03.375Z','Organic','Casimer Mitchell','Greensboro','1984-05-17',36.061302,27405,'8e7c01e8-ad30-4112-bfb4-c262405ff215',1896,-79.71980200000002,'3435 McConnell Road','NC','casimer-mitchell@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-23T09:21:23.011Z','Google','Berry Hirthe','Seymour','1970-03-07',38.961543,47274,'1a0b0479-491e-4403-9f0c-6551d20b3de3',1897,-85.862494,'192-198 Agrico Lane','IN','berry.hirthe@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-20T02:00:40.048Z','Affiliate','Virginia Macejkovic','Beckwourth','1995-06-04',39.8072259,96129,'976ed8a7-168a-4ba6-9eca-0e86c2ef750e',1898,-120.3030839,'86204 California 70','CA','virginia-macejkovic@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-13T16:27:42.964Z','Affiliate','Murl Abbott','Dixon','1992-01-14',37.5284349,42409,'df033e6a-4594-4703-9743-88533ccb428f',1899,-87.6383283,'1422 Kentucky 138','KY','murl.abbott@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-12T17:23:17.262Z','Facebook','Warren Gulgowski','Ellinwood','1959-08-26',38.327386,67526,'ddfaf131-a102-4aff-b9ab-3a42672aa6f1',1900,-98.5166596,'227-257 Southeast 140 Avenue','KS','warren.gulgowski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-02T10:32:53.132Z','Affiliate','Martin Greenholt','Denali National Park and Preserve','1977-11-23',63.63418100000001,99755,'e9df56cf-5a2b-4639-8647-a9878e1419ca',1901,-148.7870271,'229 George Parks Highway','AK','martin-greenholt@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-24T04:11:29.249Z','Facebook','Jace Kihn','Fallon','1975-08-07',46.7353089,59326,'8e7303e0-6445-46dc-9fb4-3452b0a13e41',1902,-104.7412436,'1602 Cabin Creek Road','MT','jace-kihn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-27T22:12:06.111Z','Twitter','Arturo Bahringer','Roland','1992-05-01',35.4267215,74954,'edf21752-1992-4061-a8af-1b685f59954c',1903,-94.4967037,'201 Lennington Street','OK','bahringer-arturo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-24T08:46:21.312Z','Organic','Mario Cassin','Marsing','1974-10-31',43.36129890000001,83639,'f68a0eac-ecac-4f0d-813d-8d27e4035729',1904,-116.8722702,'13684 US Highway 95','ID','cassin.mario@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-19T15:43:27.165Z','Affiliate','Thurman Pouros','Frankston','1985-02-07',32.0403894,75763,'147ad1f4-985f-4fc2-b5ec-0d6f91452871',1905,-95.5530392,'3930 County Road 312','TX','thurman-pouros@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-25T21:22:48.594Z','Organic','Price Smith','Albuquerque','1963-08-20',35.0765497,87108,'05691829-d09c-41da-baab-0b55fb646acc',1906,-106.5560287,'8101-8199 Chico Road Northeast','NM','smith-price@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-26T19:55:39.997Z','Organic','Deondre Koelpin','Gillespie','1975-07-05',39.1612492,62033,'1a75292e-0581-466e-a4c3-0e7d4ff2aea8',1907,-89.81132269999999,'18240 Quarry Road','IL','koelpin-deondre@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-21T06:18:45.124Z','Google','Jadyn Rice','Dysart','1968-07-09',40.5954602,16636,'dfcb2d6f-77eb-4b20-a02b-c7890162188d',1908,-78.5604488,'201 Dysart Drive','PA','jadyn-rice@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-28T04:27:46.133Z','Facebook','Norris Jacobs','Orofino','1986-12-19',46.55166,83544,'15a4a79c-1306-4c6a-9cd0-d80b71451a63',1909,-116.021097,'2869 Bashaw Road','ID','jacobs.norris@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-24T18:08:34.576Z','Affiliate','Harvey Nikolaus','Neosho','1972-04-02',36.8637617,64850,'0048ce5b-8c97-41dd-9693-f1132ab5e567',1910,-94.4574351,'14119 Haven Lane','MO','harvey-nikolaus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-26T16:40:11.478Z','Twitter','Talon Kreiger','Bridgeport','1979-11-09',38.0967399,93517,'2e74206c-da9b-4296-a822-10d08b69264f',1911,-118.990192,'9954 California 167','CA','talon.kreiger@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-05T06:46:16.842Z','Twitter','Loy Gleichner','Liberty','1998-05-04',37.2872133,42539,'336415db-d663-4e14-baa4-ad19688cfd22',1912,-84.9102649,'1217 Gosser Ridge Road','KY','loy.gleichner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-23T07:30:27.649Z','Facebook','Joana Pfeffer','Gordon','1959-11-24',32.9386966,31031,'955fdd2e-520e-4ea2-93f0-e262f341a176',1913,-83.3117592,'1748 Fred Hall Road','GA','joana-pfeffer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-27T12:47:17.993Z','Twitter','Lawson Heidenreich','Bowbells','1994-01-13',48.7637566,58721,'28890158-795e-4fa2-bb39-f4dbf4fb21a2',1914,-102.1365474,'53401-54799 506th Avenue Northwest','ND','lawson.heidenreich@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-24T19:10:29.941Z','Facebook','Eveline Gibson','Los Cerrillos','1960-08-26',35.3441291,87010,'d2112dfb-c561-4a1a-935f-035181e59914',1915,-106.207004,'2327-2391 Turquoise Trail','NM','gibson.eveline@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-21T18:45:37.325Z','Affiliate','Augustus Adams','Cascade','1994-02-02',47.0220841,59421,'7b27d22a-4fd7-4d26-a8fd-9fcfdecc8a5f',1916,-111.6467656,'2265 Adel Lane','MT','adams.augustus@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-04T05:14:23.815Z','Google','Elnora Langosh','Butte','1970-05-10',47.761038,58723,'cc2cd496-2cca-419f-955e-b3606ee53d91',1917,-100.7330401,'601-681 24th Street Northwest','ND','elnora-langosh@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-10T10:11:18.899Z','Twitter','Zackery Bailey','Santa Maria','1966-11-22',34.991869,93454,'664642db-fd9c-4ad1-a62e-2f4775e3d8f9',1918,-120.187257,'752 Tepusquet Road','CA','zackery.bailey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-11T08:28:52.162Z','Facebook','Lukas Olson','Jesup','1969-06-30',42.5428125,50648,'a5577513-1879-4497-8aa9-46e6d24ae94d',1919,-92.0625377,'1678-1684 Baxter Avenue','IA','olson-lukas@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-29T09:58:42.274Z','Google','Viviane Cummerata','Perkinston','1968-04-06',30.7372104,39573,'a64648bb-9d85-4bcf-b367-12e6d00ccb88',1920,-89.0382218,'1085-1249 Wire Road East','MS','viviane-cummerata@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-01T01:38:55.377Z','Organic','Kayli Ziemann','Benton City','1969-02-06',46.259491,99320,'3d89712b-b9e6-49e1-a52e-28e9c2f10a85',1921,-119.473502,'31703 North River Road Way','WA','kayli-ziemann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-16T03:42:18.467Z','Affiliate','Marge Stroman','Bozeman','1989-11-25',45.65729959999999,59718,'86673620-e2ee-4cd2-8828-2499741d154f',1922,-111.2469468,'10722 Pine Butte Road','MT','marge-stroman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-02T19:43:54.890Z','Twitter','Bryce Nader','Bristol','1979-09-10',36.6521744,24202,'476eca81-6794-4911-890e-f1e3a7a8226d',1923,-82.1788784,'9438 Goose Creek Road','VA','nader.bryce@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-09T04:25:30.843Z','Affiliate','Blaze Daugherty','Pleasanton','1971-09-16',28.95668,78064,'26aeaca4-7e12-4f80-bf13-3a66a74ed529',1924,-98.4589081,'1393 Coughran Road','TX','blaze-daugherty@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-14T00:16:02.103Z','Organic','Alda Kuhic','Prescott Valley','1962-06-14',34.689707,86315,'cb0fe722-4cfc-45cf-9a60-dad632cd950d',1925,-112.329328,'10150 North Antelope Meadows Drive','AZ','alda.kuhic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-09T06:25:33.569Z','Twitter','Elena Herman','Wayland','1964-12-22',42.7290184,49348,'b43325c1-bed0-4698-ab5b-c5565d4a2fd5',1926,-85.65195179999999,'4260-4264 Cloverfield Court','MI','elena-herman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-20T16:15:31.130Z','Google','Guido McKenzie','Crawfordsville','1959-08-26',41.1628398,52621,'05c9aaf5-77ed-4915-abb6-4603efea7b62',1927,-91.5400306,'1004 Henry-Washington Road','IA','guido-mckenzie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-03T06:34:22.884Z','Facebook','Dominic Jacobi','Fort Worth','1996-06-09',32.8014353,76117,'2f2bf767-da08-4c45-ae3a-64fbb01fffce',1928,-97.2434668,'2524 Minnis Drive','TX','dominic.jacobi@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-13T11:20:01.675Z','Affiliate','Lucile Gutmann','Prague','1977-12-09',35.5192539,74864,'7f41bfa8-590b-4b0f-b355-2e414c5115ce',1929,-96.793336,'103615 South 3490 Road','OK','lucile-gutmann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T23:39:16.328Z','Affiliate','Lucie Cormier','Valdez','1987-02-02',61.3830338,99686,'11426b70-3b7e-48e6-b6d0-ad3306b07209',1930,-145.2370339,'56 Richardson Highway','AK','cormier.lucie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-21T16:05:47.196Z','Twitter','Bryon Ward','Georgetown','1983-06-11',31.951665,39854,'fe0f7e58-3685-47dd-95b6-b9719a0b6b01',1931,-85.0065432,'1704 Georgia 27','GA','bryon-ward@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-03T16:35:04.040Z','Google','Kenyatta Kshlerin','Mason','1974-07-10',35.3371225,38049,'8a1b2865-f150-4f5c-a0aa-b8699a4ffdfc',1932,-89.548907,'2785 Porter Road','TN','kshlerin-kenyatta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-10T15:57:32.281Z','Affiliate','Rylee Upton','Lost Hills','1992-11-20',35.702655,93249,'9371aa0e-3fb6-4606-8562-5c1f84785feb',1933,-119.7611477,'1667 Shelco Road','CA','rylee-upton@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-29T05:04:53.856Z','Twitter','Murray Zemlak','Kiel','1974-10-03',43.963342,53042,'7a75461f-65b0-48bd-8ade-920b5d39e148',1934,-88.031961,'23933 Point Creek Road','WI','murray-zemlak@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-19T00:01:56.840Z','Twitter','Braeden Ryan','Great Falls','1973-03-27',47.4609631,59404,'0a8acc75-4d10-4e8b-a509-de45963d1279',1935,-111.3595861,'4700-5230 31st Street Southwest','MT','braeden.ryan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-06T22:30:57.049Z','Affiliate','Geovanni Effertz','Bolckow','1967-06-12',40.1041264,64427,'18c7f6df-b64e-4a84-9ee0-960ef5f60b1f',1936,-94.8880025,'1507 County Road 34','MO','geovanni-effertz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-27T14:23:24.490Z','Affiliate','Greta McClure','Hackensack','1998-10-25',46.9547514,56452,'633118e2-1a1e-4975-9bcb-00b489ac6e07',1937,-94.328178,'4081-4157 McKeown Lake Road Northwest','MN','mcclure.greta@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-04T07:16:06.901Z','Facebook','Cyril Stamm','Cecil','1975-03-07',41.2161147,45821,'73953e44-c942-4c3c-9a3f-cafac6356056',1938,-84.5251529,'15492 Road 218','OH','stamm.cyril@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-21T22:56:40.669Z','Google','Amya Marquardt','Slocomb','1973-12-07',31.1858,36375,'96983690-cfac-4ffb-91a3-bd91394deddd',1939,-85.54050000000001,'441 Pilgrims Rest Road','AL','amya-marquardt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-11T12:02:41.586Z','Affiliate','Deon Tromp','Circleville','1996-09-09',39.5623999,43113,'6c800265-ac78-4558-b8ce-ff446c56c86e',1940,-82.899913,'7117 Tarlton Road','OH','tromp.deon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-23T22:28:55.567Z','Affiliate','Deven Ruecker','Palmer','1967-12-16',61.51703819999999,99645,'94663286-193c-4be8-83b0-e81cc1d5db98',1941,-148.7885501,'20000 East Plumley Road','AK','deven-ruecker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-16T14:04:33.602Z','Twitter','Pink Kuhic','Mott','1996-10-06',46.176571,58646,'8d83271d-f524-4a17-9759-9b6ced69fad0',1942,-102.2612163,'1928-1968 13th Avenue Northeast','ND','kuhic-pink@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-06T13:35:42.664Z','Facebook','Coleman Keebler','Soap Lake','1962-02-19',47.380622,98851,'758fecf1-320d-4302-af5c-503d1cfc9af7',1943,-119.385335,'4917 Road 20 Northeast','WA','coleman-keebler@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-22T04:36:46.539Z','Twitter','Jany Torp','Thomson','1959-03-24',33.6260388,30824,'d4704b08-f8f3-4cd6-8bff-a1117e54cebf',1944,-82.5395871,'1055 Smith Mill Road','GA','torp-jany@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-24T22:17:45.654Z','Twitter','Kyra Schulist','Tifton','1972-12-09',31.4103163,31793,'a6ca91b1-310d-457c-acaa-980e89fa039e',1945,-83.5762767,'675 Isabella-Nashville Road','GA','kyra.schulist@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-08T20:23:09.687Z','Facebook','Logan Thompson','Brethren','1985-10-05',44.306777,49619,'0822e7e4-2ad5-41c6-b655-1ad05f2dc239',1946,-85.9339515,'18310 North Coates Highway','MI','thompson-logan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-22T07:13:16.842Z','Organic','Earnest Buckridge','Palmer','1977-08-23',61.52757399999999,99645,'d79aea03-cbc2-46cd-aa64-d21014535c8c',1947,-149.0397359,'16385 Sullivan Avenue','AK','buckridge-earnest@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-05T02:58:31.900Z','Affiliate','Gayle Towne','Concordia','1971-02-24',38.9740243,64020,'7f87550b-34c7-482a-92ca-0d4a91743e1d',1948,-93.6939909,'4766 Mock Road','MO','towne-gayle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-12T16:15:39.070Z','Google','Carley Orn','Endicott','1986-07-12',46.8588589,99125,'2f5da671-4b2f-40d4-a763-f346d911e70b',1949,-117.7999214,'3898 Union Flat Creek Road','WA','carley.orn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-19T18:55:54.005Z','Twitter','Alek Hickle','Ponchatoula','1995-07-28',30.4446267,70454,'3da88f46-9e44-4e70-b6f1-a2fd7f2183f6',1950,-90.4252506,'211-231 North Rateau Road','LA','hickle-alek@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-29T15:09:54.250Z','Twitter','Sienna Glover','Wainwright','1989-11-25',70.6355001,99782,'0583021d-0ac4-4278-89e4-b6340b33e829',1951,-160.043015,'1355 Milikruak Street','AK','glover.sienna@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-11T08:00:28.565Z','Facebook','Eveline Jenkins','Wolfe City','1995-02-25',33.374294,75496,'d996f4dd-17c3-4dad-a0d2-84917f577682',1952,-96.021456,'1622 Farm to Market Road 1563','TX','eveline.jenkins@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-01T05:38:46.115Z','Facebook','Mertie Shanahan','Recluse','1979-05-10',44.9507935,82725,'3c252e8f-023f-4354-9378-58f150f32d95',1953,-105.634956,'116-118 Weischedel Road','WY','shanahan-mertie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-13T12:17:49.754Z','Affiliate','General Steuber','Williamsburg','1964-08-11',41.6255455,52361,'5657693f-eab5-4f74-bb40-f6858e5a7f85',1954,-92.124358,'2625 J Avenue','IA','general.steuber@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-18T15:27:37.669Z','Affiliate','Hailie Weimann','London','1960-03-03',37.0615106,40744,'7ebc65c4-983f-4a65-9cb2-6a8d4bb8286d',1955,-83.92517699999999,'1547 Blackwater Road','KY','hailie.weimann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-19T21:12:28.941Z','Facebook','Kasandra Leffler','Liberty','1982-06-02',30.0033359,77575,'e4a0a85b-cf0d-42e0-b9a5-5c07bcda2ef6',1956,-94.6902803,'1150 County Road 118','TX','kasandra.leffler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-25T10:06:47.493Z','Google','Lamont Dooley','King City','1975-11-20',40.1186724,64463,'cb62044a-ce28-4185-a885-32299e7269a9',1957,-94.4976959,'4130 470 Road','MO','lamont.dooley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-14T06:06:57.599Z','Facebook','Bernardo Torphy','Heth','1963-10-04',35.1502163,72346,'b9feecf3-42a9-439a-a16b-3b4b35061294',1958,-90.5974762,'344-654 3 Way Road West','AR','torphy.bernardo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-01T23:42:01.543Z','Affiliate','Annamae Lind','Piñon','1958-10-24',32.6073483,88344,'94c254d6-473c-4d1a-a55d-8a8a1565a9c2',1959,-105.4085629,'4408 Owen Prather Highway','NM','lind.annamae@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-10T11:41:50.196Z','Facebook','Tremayne Price','Lyons','1975-04-16',32.3870464,30436,'6e16cecb-674d-400a-b5c5-b88a8e197f0a',1960,-82.37761669999999,'755 Georgia 46','GA','price.tremayne@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-17T00:54:56.332Z','Affiliate','Jaylon Stokes','Paris','1998-02-28',39.6597005,61944,'550ab902-c535-4aa3-96ac-e2c446822e64',1961,-87.8228669,'7393-7999 East 1300th Road','IL','stokes.jaylon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-26T23:12:39.479Z','Google','Ivory Jacobi','Friendship','1963-03-03',42.13567,14739,'744e9634-b7c6-4482-b41e-489d099e3f72',1962,-78.173823,'3149 Clair Carrier Road','NY','ivory-jacobi@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-12T04:40:40.847Z','Affiliate','Heath Hettinger','Oakland','1961-11-11',34.13038179999999,38948,'dd00fdc5-169e-4a17-9b7a-d4dd97406e6c',1963,-89.8219354,'2824 County Road 41','MS','hettinger-heath@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-27T20:36:52.049Z','Google','Elvera Kirlin','Pleasant Plains','1973-05-26',35.5366119,72568,'10cfc3fa-bc40-46a7-bb86-595906371537',1964,-91.6837504,'204-310 Staggs Drive','AR','elvera-kirlin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-08T12:51:11.942Z','Google','Eddie Dibbert','Quinhagak','1979-08-24',59.7496642,99655,'bf695c88-c871-4558-9672-eb67a6e17f58',1965,-161.9046606,'101 Qanirtuuq Road','AK','dibbert-eddie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-18T04:55:11.227Z','Facebook','Davonte Runolfsson','Lucas','1988-10-23',36.8587898,42156,'bd7263f5-47c5-4b97-b53a-59ad83ab8c9c',1966,-86.06222819999999,'1149 State Park Road','KY','runolfsson.davonte@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-16T12:12:18.438Z','Organic','Brandt Erdman','Kewaunee','1963-12-30',44.51793199999999,54216,'f54b2f4d-e42d-461c-9306-eea55553945d',1967,-87.595322,'N5334 Hemlock Lane','WI','brandt-erdman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-25T07:39:40.523Z','Affiliate','Demetris Tromp','Browning','1973-02-02',48.7385587,59417,'8e181bd6-302a-4bbb-a972-69127ce851a6',1968,-113.2676118,'309-605 Livermore Creek Road','MT','demetris.tromp@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-09T23:22:00.729Z','Organic','Freeman Stehr','Oxford','1977-03-08',36.2050501,72565,'44fa67f6-4409-4e3e-bb64-cffd013e1ef7',1969,-91.950527,'1325 Wideman Road','AR','stehr-freeman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-21T03:03:24.812Z','Facebook','Clark Luettgen','Athol','1977-02-04',39.79783990000001,66932,'6c76636e-5038-44c3-bba2-2f249d52a3bd',1970,-98.91230829999999,'150 Road','KS','clark-luettgen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-14T07:10:44.441Z','Google','Karen Dooley','Brownsboro','1988-03-11',32.3045134,75756,'e83f0e06-66eb-496e-a471-99753c624073',1971,-95.5923265,'11332-11338 Sunrise Drive','TX','dooley-karen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-14T01:08:26.478Z','Twitter','Kelsie Glover','Colbert','1977-08-16',33.966146,30628,'e431ec78-aca5-45b6-afc6-ff04bd35ef33',1972,-83.170627,'1709 Crawford Smithonia Road','GA','glover.kelsie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-17T17:12:52.325Z','Twitter','Lexie Bednar','Greensboro','1962-02-19',36.0135077,27406,'b599c792-91ad-466a-8bbf-7269adc5dbd0',1973,-79.83430729999999,'34100-34248 Interstate 85 Business','NC','bednar.lexie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-07T13:56:56.199Z','Affiliate','Candelario Blick','Damascus','1991-12-20',31.3418073,39841,'849b780f-0385-4ae4-a14e-eb878510570f',1974,-84.7140546,'10993 Georgia 45','GA','blick-candelario@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-05T15:22:39.922Z','Organic','Armani Kulas','Hale','1973-09-06',39.6956233,64643,'f4d5a418-60e6-4de0-b78a-d3a7a41ea4a3',1975,-93.3732881,'21609 Liv 306','MO','kulas-armani@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-21T21:12:10.638Z','Affiliate','Bill Pacocha','Anchor Point','1960-03-16',59.8500631,99556,'aa6e5e2c-7713-47be-b03d-7a012e7b1bb4',1976,-151.7150523,'67945 Stoddard Avenue','AK','bill.pacocha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-07T08:56:38.344Z','Organic','Tiana Parisian','Houstonia','1995-11-21',38.8952257,65333,'968215a5-e2e1-432e-95b3-c341471d14c5',1977,-93.2806047,'12851 Range Line Road','MO','tiana-parisian@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-20T17:42:10.633Z','Facebook','Giuseppe Morar','Dexter','1988-04-14',33.2018945,88230,'2660d6d2-6dab-4ea5-a5a5-1bae02dda7f0',1978,-104.568924,'242-254 Old Y O Crossing Road','NM','giuseppe.morar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-20T23:37:55.769Z','Affiliate','Trudie Armstrong','Russell','1997-05-03',41.029585,50238,'099580f9-2949-4608-ad81-93d0f4a1210d',1979,-93.153317,'48908 310th Avenue','IA','trudie-armstrong@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-23T13:05:52.245Z','Organic','Geraldine Kiehn','Zapata','1986-12-06',26.9229735,78076,'81d0b4d5-81a7-436b-b1fb-655c8a8da35c',1980,-99.2503988,'1803 Mier Avenue','TX','geraldine.kiehn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-16T10:55:36.840Z','Organic','Novella Marks','Meridian','1978-05-20',32.249878,39301,'4687577e-c644-45f3-b11b-aa1e39adc1c1',1981,-88.457056,'6311 Wallace Road','MS','marks-novella@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-24T07:20:40.897Z','Organic','Javier Tillman','Miles','1994-07-31',42.0848745,52064,'bb0f1d84-f517-41a6-ae52-c6ea651a5a7e',1982,-90.31647199999999,'5874 500th Avenue','IA','tillman-javier@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-23T16:56:22.062Z','Facebook','Christophe Wilderman','Garnett','1981-04-30',38.2981465,66032,'c179d625-2d7c-4ce9-b176-7c87bb6d7d2a',1983,-95.24883729999999,'27687 Northwest 1980th Road','KS','christophe.wilderman@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-28T09:05:31.585Z','Affiliate','Khalil Kiehn','Creede','1964-08-14',37.8417416,81130,'f7bc1801-ecd0-4c6e-a73d-442ddb6287f1',1984,-106.9536837,'463 County Road 517','CO','khalil.kiehn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-05T20:59:55.032Z','Facebook','Noelia Sanford','Barneveld','1994-10-11',43.0470953,53507,'16ac03ca-68d4-49a4-9d9f-dfdf72d07108',1985,-89.9016754,'7866-8194 Byrn Grwyn Road','WI','sanford.noelia@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-25T03:41:29.179Z','Twitter','Gino Weber','Onalaska','1979-02-25',43.8723442,54650,'314ef100-7692-4ec3-bf83-bd16d4c0a3a7',1986,-91.15840879999999,'4000 South Kinney Coulee Road','WI','weber-gino@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-14T01:44:18.373Z','Organic','Madge Ondricka','Ramona','1959-11-07',33.0377127,92065,'98ff59e1-1c8d-42d2-848f-890f8ce1d989',1987,-116.8830116,'100-112 Day Street','CA','ondricka-madge@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-25T20:18:32.342Z','Affiliate','Charley Renner','Darby','1960-12-29',46.06438,59829,'74a52e92-cd30-47b0-88c3-d75a85ed8880',1988,-114.161997,'2525 Rocky Mountain Road','MT','charley-renner@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-11T07:47:58.803Z','Affiliate','Adrian Lemke','Pittsfield','1973-02-22',44.77638719999999,04967,'b9fe3d3c-7368-4fb1-991c-bf2c0db9f3ea',1989,-69.3937615,'407 Stinson Street','ME','lemke-adrian@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-02T10:48:17.789Z','Google','Elvis Goyette','Ryegate','1972-02-27',46.1943865,59074,'85fbd049-cb26-4744-a3d1-8dd734534a53',1990,-109.4390499,'105-361 Haase Road','MT','elvis.goyette@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T06:59:18.484Z','Google','Lizeth Carter','Logansport','1979-09-09',40.852284,46947,'1fbf54eb-3a28-4c17-9b10-fc04c578bf55',1991,-86.351699,'1213 East Co Road 600 North','IN','carter.lizeth@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-16T11:06:19.649Z','Twitter','Olen Watsica','Beaufort','1997-11-02',32.486036,29907,'8e6ed455-0af3-4d56-b75c-44d527f1fe6f',1992,-80.571241,'43 Snapper Lane','SC','watsica-olen@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-05T01:41:18.780Z','Affiliate','Davin Turcotte','Downsville','1977-01-28',32.706736,71234,'e5a6347c-2925-4f0b-b8d3-c488dfa13390',1993,-92.3541071,'539 Mann Road','LA','davin-turcotte@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-08T22:34:42.333Z','Facebook','Casey Robel','Rudyard','1992-07-08',46.2678617,49780,'4e080802-9f30-4c6c-80d8-453d48daebc5',1994,-84.752438,'18640 U S F S 3136 Road','MI','casey.robel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-12T15:51:20.919Z','Affiliate','Jensen Schneider','Lake Wilson','1975-10-24',44.0269686,56151,'effc36a6-41e0-4b53-908c-3834d6c12702',1995,-95.984054,'1201-1239 40th Avenue','MN','schneider-jensen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-13T08:41:26.829Z','Google','Chasity Raynor','Fallon','1991-09-18',39.5259232,89406,'ddc68692-9972-4168-9e6b-ffac15c7e5f5',1996,-118.6169201,'8400 Austin Road','NV','raynor.chasity@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-02T20:38:54.757Z','Twitter','Jaden Hansen','Fairbanks','1995-01-23',64.86752899999999,99712,'8e721b7e-b23f-4cfd-a1e4-bce7837ed52e',1997,-147.660289,'271 Peters Road','AK','jaden.hansen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-24T23:31:06.749Z','Affiliate','Cayla VonRueden','Snelling','1962-07-30',37.499158,95369,'9276e408-6f1e-4cba-bd0c-b067178228f0',1998,-120.553747,'3728 Turlock Road','CA','cayla.vonrueden@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-28T12:43:26.175Z','Google','Bell Fritsch','Moville','1999-07-07',42.5105867,51039,'33c52c48-b01e-4d26-a6e1-faa66e800288',1999,-96.0165025,'1358-1398 Ida Avenue','IA','fritsch-bell@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-31T00:33:22.941Z','Organic','Marquise Mann','Carthage','1979-04-26',32.1078929,75633,'46f3eb0b-311f-4e1d-b73c-068ec54d69fd',2000,-94.4963762,'893 County Road 151','TX','mann-marquise@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-18T16:53:37.046Z','Facebook','Elza Williamson','Helotes','1961-12-25',29.56428,78023,'f256d2bf-01b1-45bf-b903-9c6eb9972258',2001,-98.71687899999999,'11220 Indian Trail','TX','elza.williamson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-19T20:58:39.644Z','Organic','Nadia Vandervort','Forest Grove','1984-12-18',46.871891,59441,'662f0de0-1192-4f75-84ec-fd9fd8c498d1',2002,-109.003212,'13160 Surenuff Road','MT','nadia-vandervort@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-04T16:54:38.078Z','Google','Precious Lakin','Conway','1983-05-12',37.4667781,65632,'0d91913e-b6d5-4547-9925-e0dbe7c1effc',2003,-92.8629958,'2059-2087 Country Trails Road','MO','precious-lakin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-12T12:52:46.879Z','Organic','Mark Bayer','Council','1973-11-16',44.6845383,83612,'01a6c477-5128-4bfa-b4d6-80e3db3832d3',2004,-116.3997104,'2368-2380 National Forest Development Road 199','ID','bayer.mark@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-21T21:54:45.087Z','Google','Lindsey Hegmann','Spring','1984-06-03',30.0520353,77379,'1ab5d579-97f0-4f64-9d6d-3b29cc116e37',2005,-95.5334307,'19020 Doerre Road','TX','lindsey.hegmann@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-26T05:05:35.516Z','Google','Misty Daugherty','McCrory','1971-08-21',35.250475,72101,'87c96bde-1aa4-4a8e-a6ca-37b687f10bb5',2006,-91.03065199999999,'93 U.S. Highway 64','AR','misty-daugherty@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-16T03:53:06.514Z','Facebook','Ethyl Little','Vevay','1962-01-08',38.809142,47043,'cd5482a0-5e41-421b-aa48-9b6617147605',2007,-85.04777299999999,'325 Plum Creek Road','IN','ethyl.little@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-04T04:24:47.524Z','Google','Afton Lesch','Hitchcock','1980-11-17',44.6804526,57348,'f9331470-cb6e-40ef-b122-ef66bc590708',2008,-98.13950709999999,'18622 404th Avenue','SD','afton-lesch@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-11T22:29:48.093Z','Facebook','Bessie Connelly','Gibbon','1987-03-19',40.7801538,68840,'a2c348db-c106-4202-a188-c156788c337b',2009,-98.8175242,'10870 Range Road','NE','connelly.bessie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-02T07:24:00.479Z','Organic','Hassan Dare','Grover','1987-12-15',40.9412188,80729,'59bb0aa9-06eb-439e-a180-0624efd774ca',2010,-104.0093035,'64920 County Road 111','CO','dare-hassan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-13T10:56:48.459Z','Affiliate','Elsa Dach','Iron River','1989-01-08',46.6835719,54847,'68202939-0bd0-4191-aa4e-de1965fa0f10',2011,-91.49065929999999,'76525 Middleman Road','WI','dach.elsa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-21T18:29:14.333Z','Affiliate','Kyler Halvorson','Hysham','1992-02-10',46.3307976,59038,'1fa7e129-1200-427e-8930-c56efb845f0b',2012,-107.0807389,'1360 Mission Valley Road','MT','kyler.halvorson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-16T12:48:27.170Z','Facebook','Mitchel Pouros','New Wilmington','1983-07-30',41.1401692,16142,'d5569d53-72b3-4a70-be4c-5c13ab4d142e',2013,-80.383175,'4529 New Castle Road','PA','mitchel-pouros@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-02T20:34:30.564Z','Twitter','Vilma Little','Dupo','1985-06-23',38.5239585,62240,'6708c2c7-b632-4cc1-940a-4b56ed5de7bb',2014,-90.2220954,'108 Coulter Road','IL','little.vilma@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-29T23:14:33.912Z','Twitter','Rigoberto Corkery','Muskogee','1986-10-19',35.7222386,74401,'43469b8c-16f9-4179-b78f-fc6691f7c1df',2015,-95.5312242,'2300 South 114th Street West','OK','corkery.rigoberto@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-21T11:35:18.278Z','Twitter','Alycia McCullough','Shepherdstown','1990-04-14',39.4734539,25443,'5a213171-4a9b-40ef-8a59-fa3879f2644c',2016,-77.850335,'1261 Cedar Lane','WV','alycia.mccullough@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-10T15:52:01.973Z','Google','Brannon Schroeder','Bemidji','1965-02-24',47.6225856,56601,'e3ac1d51-3c12-4562-a897-ae5f8c92da85',2017,-94.76550069999999,'15753 Gull Lake Loop Road Northeast','MN','schroeder.brannon@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-31T12:58:46.234Z','Affiliate','Kyle Herzog','Larimore','1967-07-30',47.8606576,58251,'03b6638b-cae8-41c6-a7be-b01952263b41',2018,-97.8522739,'4758-4798 13th Avenue Northeast','ND','kyle-herzog@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-24T04:39:05.711Z','Facebook','Jabari Gleason','Bedford','1996-09-13',42.9046042,03110,'f32f524a-021e-4cf4-b5c0-9828a163ddc0',2019,-71.5083034,'16 Cottage Walk','NH','jabari.gleason@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-02T12:34:52.165Z','Google','Andreane Spinka','Lexington','1998-07-09',38.0211479,40513,'73acab6f-cf3d-4715-bc97-e3fff409bf7e',2020,-84.579594,'1501 Beaumont Centre Lane','KY','spinka.andreane@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-05T14:51:07.722Z','Facebook','Kellie Price','Lesterville','1991-07-16',37.4740047,63654,'7c41dc69-c360-4281-bf15-d3e8cad0eb7b',2021,-90.7621156,'27645 Missouri 21','MO','kellie.price@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-03T03:39:37.611Z','Twitter','Maryam Watsica','Salem','1989-12-23',45.0111897,97305,'ec16d775-db6d-4fb9-a4f6-252972bac16a',2022,-122.9340654,'6225-6403 62nd Avenue Northeast','OR','maryam-watsica@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-18T22:29:55.353Z','Twitter','Jailyn Morissette','Jacksonville','1959-04-03',30.34925699999999,32220,'3a0877a8-8d22-42ac-9d69-384593898be5',2023,-81.810532,'9278 Derby Acres Lane','FL','morissette.jailyn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-10T08:00:28.728Z','Organic','Horace Schowalter','Burbank','1999-09-13',42.9353519,57010,'0da160f0-f05c-4b0e-bc43-f561a2551320',2024,-96.8425834,'30716 Greenfield Road','SD','horace.schowalter@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-25T16:23:45.263Z','Google','Broderick Tillman','Moyock','1963-05-26',36.4962399,27958,'8b7f0406-ce9b-4851-8030-8fc4b5c73ed2',2025,-76.1600948,'193-195 Eagle Creek Road','NC','broderick.tillman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-12T05:11:12.592Z','Twitter','Colin Kunze','Huntingburg','1960-04-04',38.237254,47542,'6a7ad7ed-fb46-42e8-a9fd-b8ec42920f6a',2026,-86.96439,'9426 U.S. 231','IN','kunze-colin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-17T18:12:24.367Z','Twitter','Simone Schaefer','Shepherd','1998-10-08',43.557459,48883,'254b4554-80e8-4111-acd5-b9e271b02895',2027,-84.6285341,'5782 South Chippewa Road','MI','schaefer-simone@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-16T07:58:51.894Z','Google','Janelle O''Hara','Monticello','1970-01-10',36.9634275,42633,'0a4fa997-46bc-4447-9c8f-1a20f2020c55',2028,-84.72491509999999,'148 Cedar Bluff Drive','KY','o.janelle.hara@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-06T14:37:11.890Z','Facebook','Estrella Collier','Mina','1996-10-03',45.3888078,57451,'9cd12232-9d6a-4b6f-92f5-b55da93f37dc',2029,-98.7651605,'37119 138th Street','SD','collier-estrella@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-09T00:10:43.666Z','Facebook','Joe Terry','Malta','1991-09-23',48.5907054,59538,'aa8ae31d-cc01-4a8b-b68b-5623ade5d775',2030,-107.675887,'2030 River Road','MT','terry.joe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-26T05:55:22.857Z','Google','Loyal Schiller','Palisade','1986-04-16',46.7991253,56469,'23315fd4-6495-430f-a26e-4b65d00fc1b1',2031,-93.42379489999999,'26989 560th Street','MN','schiller.loyal@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-26T19:02:31.452Z','Organic','Aurelio Borer','Ochopee','1975-04-09',25.8698057,34141,'3e3c407e-91d7-4328-82e4-4217b307bafe',2032,-81.173395,'47201 Tamiami Trail East','FL','aurelio.borer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-27T19:55:10.131Z','Organic','Destiny Murazik','Princeton','1978-12-06',41.4273558,61356,'be9932f2-6c86-4e0f-9630-c16eae93bd02',2033,-89.5586106,'19304 County Road 1550 East','IL','destiny-murazik@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-26T08:36:44.765Z','Facebook','Brando Yundt','Ashland','1980-04-03',33.3223142,36251,'3e068b8f-6daf-4fc0-bf37-b681d33ccfce',2034,-85.85702479999999,'256 Mountain View Road','AL','yundt-brando@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-24T23:48:17.233Z','Organic','Brisa Goodwin','Thonotosassa','1983-02-12',28.0595066,33592,'35cb4d45-1c87-4e59-bd5f-102c9a8b997b',2035,-82.32739939999999,'11898 Tom Folsom Road','FL','goodwin-brisa@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-29T20:58:30.811Z','Organic','Shanny Kuvalis','Plentywood','1980-11-08',48.686101,59254,'8d11b621-4126-4700-a145-368a6c89b2e3',2036,-104.741158,'515 Welliver Road','MT','shanny-kuvalis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-14T01:33:10.797Z','Affiliate','Ransom Davis','Earlville','1976-08-13',42.728378,13332,'bf995d21-39a6-48db-9b1f-4d94c96bad65',2037,-75.58789999999999,'132 Merrifield Road','NY','ransom-davis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-17T14:57:23.155Z','Twitter','Mario Wisoky','Myrtle Creek','1961-08-16',43.02555660000001,97457,'39a21891-3194-45a1-a80c-fee676b972f0',2038,-123.3808739,'2817 Boomer Hill Road','OR','mario.wisoky@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-10T21:05:02.908Z','Twitter','Cleta Cassin','Kirtland','1977-05-09',41.570531,44094,'20ee21c4-9e4d-4797-bb0d-dc9bc8e36c96',2039,-81.368055,'7698 Hidden Valley Drive','OH','cassin-cleta@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-14T13:53:36.102Z','Twitter','Meagan Stoltenberg','Ainsworth','1988-06-27',42.6449933,69210,'bd995ed6-3e40-488f-8216-6b4bd7934f4e',2040,-99.955286,'88413 426th Avenue','NE','stoltenberg.meagan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-04T03:53:16.628Z','Affiliate','Maurine Considine','Delbarton','1965-09-06',37.695751,25670,'19e099ab-f13b-429f-a3b8-58e85841964f',2041,-82.15174499999999,'455 Lower Curry Branch Road','WV','maurine-considine@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-26T15:55:48.685Z','Organic','Travis Buckridge','Fleetwood','1961-04-06',40.425112,19522,'0c94872f-d14b-4033-b4f6-70378040280a',2042,-75.74838,'143 Lobachsville Road','PA','buckridge.travis@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-16T05:10:29.683Z','Facebook','Jason Spencer','Ocala','1962-08-06',29.2867264,34475,'9b7e59cf-45b0-46e7-a547-3b716f16817a',2043,-82.15236399999999,'9370 US-441 South','FL','jason-spencer@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-19T15:02:04.880Z','Affiliate','Milan Ritchie','Portales','1972-02-01',34.1727417,88130,'837d4ac4-ef35-457c-a01b-8f38a701e3ad',2044,-103.3267628,'1680 South Roosevelt Road Q 1/2','NM','milan-ritchie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-12T21:41:11.701Z','Twitter','Mack Lakin','Sylvania','1998-09-15',32.7751699,30467,'c918f310-1304-41a1-9276-45f1524e865d',2045,-81.56260879999999,'3169 Brannens Bridge Road','GA','lakin-mack@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-01T03:08:39.023Z','Twitter','Kelley Turner','Fairbanks','1968-09-25',64.71566419999999,99709,'2b4b5123-ccb4-4643-bb63-2dfab04e4fea',2046,-148.5639821,'328 George Parks Highway','AK','turner.kelley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-28T18:00:36.561Z','Affiliate','Cyrus Wisozk','Lowville','1958-06-24',43.816909,13367,'6223bae3-3923-4921-9473-6de9e42e1d1e',2047,-75.421206,'6459 Benton Road','NY','wisozk.cyrus@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-14T07:32:39.266Z','Affiliate','Jedediah Huels','Carpio','1960-08-02',48.4882457,58725,'a66f7289-5c88-4807-b70b-3030f81ebca0',2048,-101.677415,'4412-4472 74th Street Northwest','ND','jedediah-huels@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-10T16:06:19.901Z','Facebook','Blake Will','Xenia','1961-11-03',39.665793,45385,'edb87e33-60ad-41b3-babd-06d3972fb893',2049,-83.993715,'812 Van Eaton Road','OH','will-blake@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-20T16:06:46.560Z','Affiliate','Tavares Metz','Depauw','1963-01-08',38.4189036,47115,'2d867380-a589-4875-8666-ff8e0725bc39',2050,-86.25064789999999,'14701-14899 West Pay Drive Northwest','IN','tavares.metz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-28T01:27:53.754Z','Twitter','Lonny Mosciski','Albany','1959-09-24',45.6316468,56307,'e02efffb-98e6-46dd-ba91-9a67bc735ec9',2051,-94.4986029,'18995 Quaker Road','MN','mosciski.lonny@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-21T18:08:00.773Z','Google','Henriette Gibson','Centerville','1976-10-27',45.79399,98613,'5d4db82a-7c69-4805-a4f3-12ab580afa58',2052,-120.9666936,'1 Appaloosa Court','WA','henriette-gibson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-15T14:07:27.283Z','Affiliate','Rosella Bergnaum','Rhinelander','1981-04-14',45.5686723,54501,'1e36af7c-3ecf-4832-b131-a71dc7cbfb73',2053,-89.3084379,'3507 North Faust Lake Road','WI','rosella.bergnaum@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-20T12:06:16.945Z','Organic','Hilma Wyman','Earlville','1984-06-10',42.590495,52041,'57dfcf61-422e-44ae-99bf-08f411913d4d',2054,-91.2598897,'2754 137th Street','IA','wyman.hilma@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-15T19:07:22.828Z','Affiliate','Ila Johnston','Iola','1965-07-09',44.64831,54945,'37a62a62-8c22-4d53-a4a7-e47bba527151',2055,-89.135053,'N11196 Fisher Road','WI','johnston.ila@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-17T16:50:41.716Z','Facebook','Earline Schmitt','South Boston','1993-09-04',36.7122979,24592,'308c7bee-9080-4032-911b-08b83547135c',2056,-79.1152288,'2150 Lewis Ferrell Road','VA','schmitt-earline@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-18T03:54:08.835Z','Twitter','Nathan Kassulke','Owatonna','1963-08-01',44.136243,55060,'bb8a87f2-5844-4648-94ed-92a151fda43c',2057,-93.1205566,'5653 Northeast 46th Street','MN','kassulke-nathan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-31T08:01:03.158Z','Twitter','Else Ankunding','Pine Apple','1960-03-08',31.8220068,36768,'8d36970b-5415-4863-9813-acf4a7a622ff',2058,-86.9211897,'911 George Swamp Road','AL','ankunding-else@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-08T19:49:06.960Z','Organic','Richard Kub','Magnolia','1974-02-02',33.1818402,71753,'428600be-aede-4d56-9f2d-75299f6e5dae',2059,-93.25339939999999,'70 Columbia Road 265','AR','richard-kub@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-23T19:15:38.953Z','Facebook','Darwin Abshire','Loraine','1973-11-01',32.4786567,79532,'704b391d-9dc0-40ff-a20f-bee50878ed25',2060,-100.6970409,'1-7 County Road 462','TX','darwin-abshire@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-18T13:06:39.051Z','Affiliate','Karelle Hodkiewicz','Henderson','1983-02-17',32.098464,75654,'0649825c-68b9-404d-8844-79810147c719',2061,-94.9092257,'9798 County Road 471','TX','karelle-hodkiewicz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-28T16:57:33.623Z','Twitter','Velva Zemlak','Creston','1981-07-07',47.6184996,99117,'2f96ffbe-e436-438c-8f6b-f1f827cfb20b',2062,-118.5427508,'19602 7 Springs Dairy Road','WA','zemlak.velva@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-24T20:17:49.104Z','Facebook','Winfield O''Kon','Tucumcari','1969-02-26',35.1566478,88401,'13525894-3a4b-4679-a355-854ce6e8243f',2063,-103.9041753,'6000-6398 Q R Az','NM','kon.winfield.o@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-24T01:20:52.097Z','Affiliate','Audra Hudson','Branson','1962-10-18',37.3314546,81027,'abc09593-a4d7-4eaa-8e8a-831b8de3b9ad',2064,-103.75748,'21000-23904 County Road 153','CO','hudson-audra@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-04T07:34:04.294Z','Twitter','Johnson Abshire','Uhrichsville','1958-07-21',40.308699,44683,'7f6d344d-f0e9-4f51-b983-64101d0584dc',2065,-81.3817131,'4325-4699 Watson Creek Road Southeast','OH','johnson.abshire@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-15T17:24:50.237Z','Google','Ardella Ernser','Butternut','1969-05-05',46.0871158,54514,'626dc44d-7d40-4ab0-8855-d8d4d105825f',2066,-90.2699255,'1008-1164 County Highway FF','WI','ernser-ardella@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-16T18:59:47.864Z','Twitter','Dana Bartell','Scotland','1970-04-02',43.14766710000001,57059,'d8a2dad2-055c-4607-b2a9-4cf76c297b68',2067,-97.7165775,'330 Washington Street','SD','bartell.dana@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-20T14:43:12.515Z','Google','Gerardo Mertz','Hopkinsville','1981-03-25',36.9358921,42240,'154fe2bc-e518-4f6e-a1b2-798c0500f7f9',2068,-87.41141139999999,'7330 Greenville Road','KY','mertz.gerardo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-17T08:32:37.738Z','Facebook','Monte Langworth','Stephen','1971-02-07',48.51422489999999,56757,'3e1c2951-b036-4211-8b76-2d04d855197f',2069,-96.9010531,'39296-39998 440th Street Northwest','MN','monte.langworth@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-05T02:52:42.723Z','Facebook','Loren Roob','Baudette','1997-03-03',48.6913934,56623,'865f04c0-582d-4a5e-b56e-2a4251711fa5',2070,-94.6949867,'869 25th Avenue Southwest','MN','loren-roob@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-26T19:22:39.352Z','Google','Joana Stoltenberg','Boswell','1958-11-24',40.1747307,15531,'0d408a3b-8d1a-4379-b621-d86abcddff94',2071,-79.07656639999999,'324 Spangler Road','PA','stoltenberg-joana@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-29T09:28:17.528Z','Twitter','Laisha Conn','Columbia','1993-08-26',35.630887,38401,'ec1085f7-ddaf-4a10-9201-ee5acf2d0a4a',2072,-86.95428799999999,'834 Cranford Hollow Road','TN','laisha.conn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-13T13:54:09.820Z','Google','Wilford King','San Tan Valley','1996-11-15',33.15448140000001,85143,'c662e723-8765-40fa-8232-3fa41355d60e',2073,-111.5760606,'899 West Daniel Road','AZ','wilford.king@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-06T15:33:41.249Z','Facebook','Marquise Crooks','Lake Minchumina','1978-07-10',63.88414579999999,99757,'51102c72-efcd-482e-adbb-41d603bda80f',2074,-152.3099922,'123 Airport way','AK','crooks.marquise@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-27T22:22:49.826Z','Affiliate','Royce Bins','Robinson','1976-09-24',47.0809647,58478,'b8ab6906-74a8-4f93-ba1b-52975354b443',2075,-99.7587157,'2290-2398 35th Avenue Southeast','ND','royce.bins@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-09T10:48:35.545Z','Affiliate','Emmanuelle Cruickshank','Cardington','1962-01-08',40.493902,43315,'dee5f200-733f-413b-8bcb-dd72046836f7',2076,-82.893883,'512 South Marion Street','OH','emmanuelle-cruickshank@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-02T02:46:13.538Z','Organic','Kaya Yundt','Piper City','1998-08-17',40.8077553,60959,'66892f1e-b448-4910-8786-147856bacdde',2077,-88.1398961,'1700-1794 East 2800N Road','IL','yundt.kaya@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-24T21:13:04.387Z','Twitter','Solon Spencer','Grafton','1965-09-11',39.337351,26354,'14c73be3-eb10-414b-a3a3-7de988420b21',2078,-80.111975,'539 Beverly Pike','WV','spencer.solon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-20T01:30:30.474Z','Facebook','Amparo Fadel','Lexington','1987-08-31',40.88742420000001,68850,'1f9d3d45-9002-4e1b-a514-6f45405da65b',2079,-99.7145264,'76299 Wiley Canyon Road','NE','amparo.fadel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-24T00:35:48.191Z','Google','Dorris Herzog','Rushville','1975-03-11',40.1645279,62681,'ba17dc4b-3c77-456b-92f6-a1fd2226b2a3',2080,-90.5143044,'20518 Carty Road','IL','dorris.herzog@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-19T16:43:15.198Z','Affiliate','Paxton Mayer','Winston','1977-11-24',39.9229843,64689,'c098dd94-3b06-4721-9709-eea552811fbc',2081,-94.17851689999999,'12175-12179 Oval Avenue','MO','mayer.paxton@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-14T08:25:36.301Z','Twitter','Nels O''Connell','Electra','1993-12-25',33.9322874,76360,'bbbceba2-63bc-438f-b8f1-e606fa3fb63b',2082,-99.0809671,'15551-16213 Thaxton Pens Road','TX','nels.connell.o@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-19T19:42:27.072Z','Google','Katharina Glover','Windsor','1976-10-11',36.035844,27983,'394278db-87ae-4929-8653-34d1466093be',2083,-77.00750239999999,'748 Governors Road','NC','glover.katharina@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-20T01:28:50.635Z','Facebook','Prudence Kihn','Imperial','1964-02-26',40.6770766,69033,'cc479953-996d-49ca-a961-2ee69428f689',2084,-101.6959374,'74868 330 Avenue','NE','kihn-prudence@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-10T09:30:32.739Z','Organic','Daryl Emmerich','Northfield','1974-06-21',44.47460299999999,55057,'e467870e-6d12-468f-aae1-dbda5130d013',2085,-93.2118069,'32811 Garrett Avenue','MN','emmerich.daryl@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-19T19:35:12.436Z','Affiliate','Neal Crona','Mosinee','1976-10-09',44.711761,54455,'2f164e32-8c5c-4bd2-b056-ac6659672ff1',2086,-89.80506299999999,'1706 Fisher Lane','WI','crona.neal@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-24T22:36:27.970Z','Organic','Dawson McGlynn','Moscow','1989-02-16',30.9204382,75960,'719f2ac1-251a-4608-ac25-f5b43c633f69',2087,-94.80944989999999,'181 Rock Island Road','TX','dawson-mcglynn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-24T07:40:49.758Z','Google','Donny Terry','Flushing','1962-10-05',43.0761346,48433,'d0102f83-640a-4f89-8336-85ba729d5bf6',2088,-83.8429441,'5001-5129 Deland Road','MI','donny.terry@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-06T12:09:12.360Z','Affiliate','Sarah Dach','Nenana','1975-07-29',64.67863249999999,99760,'71d10805-ad2c-4051-ab52-2581bd0f3565',2089,-148.8758712,'67 George Parks Highway','AK','sarah-dach@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-10T21:37:55.245Z','Facebook','Jannie Balistreri','Ellenville','1983-08-24',41.6846909,12428,'811d4b70-81c1-45b1-bad8-cc276058f7cf',2090,-74.4484736,'102-270 Tempaloni Road','NY','jannie-balistreri@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-03T03:52:43.656Z','Twitter','Joseph Lynch','Kirksville','1996-06-02',40.2436957,63501,'1a750cf3-a279-48ac-aabf-05f906f9165e',2091,-92.6596596,'22971 Rye Creek Road','MO','lynch-joseph@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-11T17:33:33.115Z','Organic','Vicente O''Hara','Port Lavaca','1961-11-12',28.59424,77979,'f2f381c4-dcb2-4a01-ae8a-0ae0a174a94b',2092,-96.735123,'2412 Farm to Market 1679','TX','hara-vicente-o@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-19T04:44:41.343Z','Affiliate','Royal Jast','Nahunta','1975-12-14',31.0430463,31553,'33d408f0-db1a-4d62-ad59-0fe6e1ae69b2',2093,-81.9712313,'13071 Winokur Road','GA','royal-jast@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-31T17:57:11.551Z','Twitter','Brant Klein','Cheney','1987-12-28',37.576548,67025,'1c0da03b-2d7e-4ee1-a62d-fa52f11be647',2094,-97.8057989,'40502 West 63rd Street South','KS','brant.klein@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-12T09:20:34.868Z','Facebook','Hillard Price','Hayward','1988-06-28',45.9095164,54843,'81902093-3fa8-4a4b-bb2b-46eb3217bfbb',2095,-91.19431709999999,'10094 Campfire Circle','WI','price-hillard@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-11T01:59:31.460Z','Twitter','Waino Feil','Mountain Home','1978-01-26',36.3751784,72653,'2a1e8d31-8c88-4c7d-aec1-f96171ed1757',2096,-92.2747564,'7039 U.S. Highway 62','AR','feil-waino@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-02T11:35:44.210Z','Affiliate','Maeve Bednar','Faith','1961-08-04',45.25263940000001,57626,'2e6387e5-3095-4232-9389-65edbb91fd07',2097,-102.3141182,'18635 Usta Road','SD','bednar-maeve@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-11T19:13:49.457Z','Affiliate','Desiree Schultz','Bluejacket','1969-01-10',36.8311004,74333,'f768a523-8be1-4e99-b091-3f48563851b5',2098,-95.0253779,'447534 East 130 Road','OK','schultz-desiree@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-03T02:10:47.756Z','Organic','Jayden Kris','Medford','1965-09-18',45.2530768,54451,'bc16dd5e-8591-49a1-863a-b54d71167598',2099,-90.206575,'W3110 Wood Creek Avenue','WI','jayden.kris@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-10T08:08:12.205Z','Twitter','Lila Rosenbaum','Montgomery','1967-11-18',30.2842935,77316,'6a98dd52-e1b0-41cb-8321-40442168fac9',2100,-95.5964412,'4739-5421 Honea Egypt Road','TX','lila-rosenbaum@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-12T05:26:25.623Z','Twitter','Jared Tromp','Aurora','1971-01-08',40.8287855,68818,'98e00aa6-e094-4456-bdce-89474a60d567',2101,-98.0202961,'1461-1493 West 10 Road','NE','tromp.jared@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-22T23:51:44.003Z','Google','Garrison Will','Catawba','1962-09-29',35.618299,28609,'10173297-9da1-48db-b487-8f17c7eb7151',2102,-81.070032,'3427 Joe Johnson Road','NC','will.garrison@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-14T01:56:20.347Z','Facebook','Brown Davis','Burlington','1993-10-01',38.1662389,66839,'812cf210-339a-41bf-980a-597608190324',2103,-95.68379499999999,'901-999 Planter Road','KS','davis.brown@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-14T23:33:00.369Z','Google','Virgil Schowalter','Dighton','1990-08-10',38.3983727,67839,'9595ef30-8434-40d4-8935-b3185834b480',2104,-100.5071491,'74 West Road 130','KS','schowalter.virgil@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-10T03:08:18.615Z','Twitter','Art McDermott','Hot Springs','1980-03-04',35.715097,28743,'7995734d-3411-4fff-ae98-3541ee28e70d',2105,-82.821319,'650 Halfmoon Ridge','NC','mcdermott-art@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-26T23:24:06.377Z','Affiliate','Tyree Reichel','Dimmitt','1981-12-25',34.4179036,79027,'c58a8d2f-de09-4ab6-af80-3469e5f0eb9f',2106,-102.0900064,'2303-2349 County Road 526','TX','reichel-tyree@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-30T02:16:06.270Z','Twitter','Leanne Orn','Forest Hill','1989-07-12',37.4976312,24935,'74167628-78e4-46ed-a0bc-61df3b80be01',2107,-80.745508,'204 Fritz Run Road','WV','leanne-orn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-30T19:42:47.336Z','Facebook','Karson Corwin','Tecumseh','1988-05-29',40.3159813,68450,'b263346a-34d9-45ae-ab28-1a2e8adaebde',2108,-96.3239148,'61345 724 Road','NE','karson-corwin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-01T17:54:04.383Z','Facebook','Gregorio Harvey','Lebanon','1966-04-12',37.7264844,65536,'a616c757-69e8-4424-aad2-5ec92c1a9af7',2109,-92.7464256,'26496 Noland Drive','MO','gregorio-harvey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-11T21:52:58.399Z','Facebook','Idell Murray','Rosebud','1987-01-14',46.2965995,59347,'e526ab41-717c-4976-94fb-3d363a867d0f',2110,-106.246808,'2446 Cartersville Road','MT','murray-idell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-17T14:10:19.665Z','Affiliate','Ryan O''Keefe','Bradenton','1999-03-29',27.4748437,34212,'e312a74d-4faf-43dc-bc56-88c3166715bb',2111,-82.3284395,'20890 Florida 64','FL','ryan-o-keefe@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-22T02:52:11.546Z','Google','Alicia Schimmel','Chatom','1993-10-22',31.5021188,36518,'3cf77267-59cd-481d-a6b5-31dcc67eb999',2112,-88.2518348,'565 Ellis Jordan Sawmill Road','AL','alicia.schimmel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-09T07:20:08.325Z','Twitter','Archibald Turner','Pikeville','1990-09-16',35.572079,37367,'2cd6a710-5882-4173-85cd-51f96f8089d2',2113,-85.157082,'701 Cherokee Ridge Road','TN','archibald-turner@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-02T05:09:49.618Z','Twitter','Jazmyne Medhurst','Marion','1991-01-28',40.5912064,46952,'0fae6f99-65d4-4944-8e8e-a2540cbe663c',2114,-85.77687759999999,'5399 West Henderson Court','IN','jazmyne.medhurst@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-22T15:15:30.440Z','Organic','Layla Abernathy','Luling','1994-10-16',29.693961,78648,'4b8edca5-804b-4c05-8fd6-ffa49cc2840f',2115,-97.501752,'5142 Fm 1386 Harwood','TX','layla.abernathy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-10T02:41:20.854Z','Facebook','Grace Smith','Toyah','1991-05-18',31.2508327,79785,'80ed24c3-b87c-4b3a-8943-aaf1bb0bbecd',2116,-103.9209099,'300 County Road 229','TX','smith.grace@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-16T09:38:55.749Z','Affiliate','Joanie Goodwin','Menomonie','1970-06-22',44.7851097,54751,'b413e40a-249e-4d6e-8120-c5074e9327c9',2117,-91.92887069999999,'4400-4410 290th Avenue','WI','goodwin-joanie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-19T12:21:26.630Z','Google','Odell Stehr','Gordon','1971-04-13',42.8251985,69343,'c1e63cad-8d28-4e36-adfd-e3e9695ae4f8',2118,-102.276917,'6680 240th Lane','NE','odell.stehr@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-23T08:53:18.150Z','Facebook','Samantha Nolan','East Tawas','1997-06-17',44.3388163,48730,'eb3b64aa-1f9c-4eca-a597-e127a9054a99',2119,-83.42027739999999,'1861 Davison Road','MI','nolan.samantha@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-08T21:36:20.860Z','Twitter','Bernardo Kshlerin','Talkeetna','1973-08-14',62.327013,99676,'87f46e8c-915e-4135-b210-0b9e0e3db130',2120,-150.0131199,'21871 Hancock Street','AK','kshlerin-bernardo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-15T19:08:17.360Z','Twitter','Orie Sipes','Chambersburg','1991-01-28',39.9534575,17202,'ed2c40df-3570-4e66-9fff-f764d800bea9',2121,-77.6047306,'3199 Fox Hill Drive','PA','orie-sipes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-29T13:11:23.791Z','Affiliate','Antwan Grant','Franklin','1996-12-14',31.6590638,36444,'75f361f0-233c-4bbd-92a9-c10c89831a86',2122,-87.53021179999999,'4000-5282 Mabien Lake Road','AL','grant.antwan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-10T16:15:25.367Z','Facebook','Nichole Funk','Trinchera','1999-08-12',37.1956175,81081,'451c7035-4df3-46de-81f2-0983e8878414',2123,-103.9941708,'13623-14999 County Road 127','CO','funk.nichole@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-20T00:48:26.910Z','Google','Jazlyn Murray','Troy','1984-11-17',46.6717504,83871,'559197bb-0429-4a56-8e27-693fcb582095',2124,-116.7632031,'1043-1057 Bethel Road','ID','murray-jazlyn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-16T14:38:05.766Z','Organic','Stefanie Barton','Macon','1971-06-02',39.7178499,62544,'52510f52-3c53-4a55-90d7-4e8d1cf29d15',2125,-88.9226398,'8417-9203 Walmsley Road','IL','stefanie.barton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-11T11:33:31.155Z','Twitter','Abraham Kerluke','Terre Haute','1981-09-11',39.30385709999999,47802,'2c6141b7-8938-481e-91ec-0a8d7640f099',2126,-87.4732437,'3675 West Evans Drive','IN','kerluke.abraham@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-11T15:23:33.239Z','Affiliate','Stephon Davis','Clayton','1989-12-07',31.7716629,71326,'d5004f5e-59eb-4550-80a0-889770a03fcb',2127,-91.59559,'974 Highway 567','LA','stephon.davis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-13T02:40:50.191Z','Google','Gunner Graham','Rockton','1997-09-12',42.4732457,61072,'321945cc-446b-43f2-9077-9dc844a54e12',2128,-89.1208698,'4002 Yale Bridge Road','IL','gunner.graham@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-23T08:51:16.443Z','Twitter','Rebecca Emard','Beatrice','1994-11-10',40.2688392,68310,'bdaad8fd-0e85-4392-a1fb-08d980cd8166',2129,-96.9157705,'26028 Southwest 142 Road','NE','emard-rebecca@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-12T15:49:43.325Z','Google','Abdullah Kerluke','Redmond','1960-07-25',44.2619463,97756,'8019ac2e-008e-4f8f-81fe-403d6b49481f',2130,-121.1254701,'2899 Oregon 126','OR','abdullah-kerluke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-04T18:41:31.476Z','Affiliate','Mina Dare','Morganton','1992-02-28',34.90789,30560,'dd79202a-9fd4-4e91-a47e-bb8ae906f1f2',2131,-84.214333,'100 Echo Valley Road','GA','dare-mina@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-11T04:07:29.108Z','Twitter','Mellie Abernathy','Buda','1977-04-24',41.2484208,61314,'8ae2a909-7054-453f-b575-c0321413549d',2132,-89.6577463,'10000-10484 County Road 700 North','IL','abernathy-mellie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-17T23:39:06.557Z','Google','Jaquan Treutel','Alto','1966-12-23',31.6778338,75925,'5b3423f1-9377-488a-ab01-888128ef1c0f',2133,-95.05052529999999,'2200 County Road 2501','TX','treutel.jaquan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-01T12:20:51.571Z','Organic','Stephon Greenfelder','Muscle Shoals','1988-05-24',34.788219,35661,'538d9e60-208d-4b93-820c-3915ab06deb0',2134,-87.5892764,'1815 River Road','AL','greenfelder-stephon@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-16T15:02:53.685Z','Affiliate','Mavis Fisher','Colman','1998-03-21',44.0660442,57017,'91fbaf19-3774-465d-9b6b-442db9351768',2135,-96.8579036,'46756 229th Street','SD','fisher.mavis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-26T13:30:21.620Z','Twitter','Elbert Homenick','Magazine','1991-12-11',35.1008912,72943,'ea96838e-e1d0-4e5f-873c-1bb8a370f79f',2136,-93.7577212,'602-606 Catlett Lane','AR','elbert-homenick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-31T14:57:51.835Z','Organic','Donato Bednar','Ames','1992-04-14',42.0012328,50010,'4c1e41e4-a43c-44da-a796-b18f9875b1e0',2137,-93.5811332,'1813-1899 560th Avenue','IA','donato-bednar@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-20T20:25:10.630Z','Organic','Priscilla Moore','Decatur','1994-06-30',42.1118798,49045,'3a7bb028-04d7-4bd4-bee5-7cd224092d3a',2138,-86.07009219999999,'84000-87998 54th Street','MI','moore.priscilla@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-25T04:46:22.173Z','Affiliate','Floyd Jacobson','Corbin','1971-09-08',36.8677232,40701,'657c03e3-17e5-4d28-b27f-4a07fe8774ac',2139,-84.2397771,'813 Rosetown Church Road','KY','floyd.jacobson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-20T20:07:14.234Z','Organic','Dalton Larson','Plattsburgh','1979-02-10',44.77214,12901,'3f13681e-c9b2-4d6f-a9a1-4fe2d1230d1d',2140,-73.4780679,'207 Ashley Road','NY','larson.dalton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-27T05:46:02.149Z','Facebook','Wilhelm Wunsch','Sonnette','1975-01-05',45.3850832,59317,'a029b643-49c9-47db-a690-36b0cb388f47',2141,-105.9586621,'108 15 Mile Road','MT','wilhelm.wunsch@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-30T18:25:11.261Z','Twitter','Austyn Doyle','Tinton Falls','1969-09-21',40.29477139999999,07724,'0a7dbe1a-fc1e-4754-bd79-d783b80a7d10',2142,-74.108205,'7 Duke Court','NJ','austyn-doyle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-02T17:26:17.661Z','Twitter','Mark Klein','Sealy','1960-09-02',29.796155,77474,'6234aae1-e100-47c2-bc43-5df9a2ac4833',2143,-96.17647799999999,'972 FM 2187 Road','TX','mark-klein@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-28T07:52:32.960Z','Facebook','Jenifer Aufderhar','Blakely Island','1999-08-06',48.5031535,98222,'696f604f-30bd-49a7-b36a-29431bb41e44',2144,-122.8041454,'134-372 Armitage Road','WA','jenifer.aufderhar@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-11T02:38:44.958Z','Organic','Camryn Schmeler','Reeder','1993-02-10',46.1421636,58649,'c90dab29-46ce-45c1-bd4d-cc54aacd1dcf',2145,-102.9751943,'1001-1075 17th Street Northwest','ND','camryn-schmeler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-30T21:59:45.279Z','Facebook','Gino Johnston','Chatfield','1998-04-26',43.886111,55923,'826e7ce4-6d40-41d2-9547-7578c3ab4b6e',2146,-92.16992599999999,'9241 County Road 10 Southeast','MN','gino.johnston@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-04T15:26:01.715Z','Affiliate','Winston Mohr','Kentwood','1958-08-17',30.9297181,70444,'18197568-c1e8-4b79-b2be-64d8ee83a935',2147,-90.5465336,'74212 Wyndotte Road','LA','mohr.winston@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-05T22:31:43.780Z','Organic','Marjory Bogisich','Lone Jack','1964-08-14',38.920534,64070,'bb920d32-16f9-405f-a96b-4508557cb300',2148,-94.180622,'34604 East Hammond Road','MO','marjory.bogisich@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-22T23:38:54.412Z','Organic','Myrtle Johns','Marysville','1999-12-03',39.8700699,66508,'fd298b07-f1b4-4329-9be5-216e6fb0df11',2149,-96.69368109999999,'1000-1098 7th Road','KS','johns-myrtle@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-23T10:14:24.788Z','Facebook','Marcelina Kuhn','Chicago','1978-12-11',41.69481,60617,'bdcbe584-6b0e-43a2-a04f-350a761fabf0',2150,-87.57314679999999,'11001 South Jeffery Avenue','IL','kuhn-marcelina@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-25T12:25:26.754Z','Google','Jamel Parisian','Tucson','1999-03-20',32.2916274,85750,'bc06f315-958f-47c2-91de-5c81e886acba',2151,-110.8232995,'4645-4653 North Black Rock Place','AZ','jamel.parisian@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-30T22:07:59.236Z','Facebook','Louisa Sauer','Kingsley','1964-07-31',44.5974832,49649,'6d7d13f3-3eb7-40a8-bbd2-26274a296386',2152,-85.6202182,'2125 Clous Road','MI','louisa-sauer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-21T15:50:50.659Z','Organic','Leola Marks','Eutawville','1966-04-18',33.43045740000001,29048,'c146be6d-3da3-4fa4-8f5c-89a497a44f4d',2153,-80.2814899,'729 Ferguson Landing Way','SC','marks-leola@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-04T11:28:29.989Z','Facebook','Eloise King','Salida','1987-04-15',38.52552,81201,'9fc03a36-47f9-4dde-920d-3606ddf66b20',2154,-106.162496,'7005 County Road 221','CO','king.eloise@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-17T18:05:42.836Z','Affiliate','Natalie Rolfson','Cresco','1959-02-16',41.1347313,18326,'0c8122b7-277b-41ad-a76e-277d6a490101',2155,-75.27136829999999,'588 Cranberry Creek Road','PA','rolfson.natalie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-31T06:29:20.285Z','Google','Citlalli Howe','Sheridan','1974-12-26',44.805811,82801,'37bbf7fd-4b60-4ea1-b952-7af90a457db2',2156,-106.662583,'366 South R Buffalo Creek Road','WY','howe.citlalli@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-04T14:35:49.581Z','Organic','Caitlyn Mraz','Ionia','1985-09-20',43.105184,50645,'0e6a8dd2-1dd3-4554-a032-a405b9b15f85',2157,-92.559314,'3383 180th Street','IA','mraz.caitlyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-20T21:45:21.904Z','Facebook','Lexie Lakin','Urbana','1999-11-19',40.171608,61802,'9d2cd65f-522c-4408-a03a-cf54760714be',2158,-88.153183,'1652 County Road 2000 North','IL','lakin-lexie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-20T00:26:52.930Z','Facebook','Rickey Jerde','Newton Grove','1996-08-22',35.175917,28366,'3a456eae-6dea-4802-b024-f6caaf143432',2159,-78.318257,'163 Holiday Lane','NC','jerde.rickey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-24T20:12:15.478Z','Facebook','Haven Hoeger','Fowler','1981-05-06',37.26021110000001,67844,'3e9b9289-32bb-4379-9ebb-1532cefe978a',2160,-100.1818605,'15454-15806 27 Road','KS','hoeger-haven@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-20T23:45:07.115Z','Affiliate','Brody Gottlieb','Wasta','1963-08-19',44.3558952,57791,'0459648a-463f-479d-ba57-862c0fcb4408',2161,-102.4925634,'17938-17944 River Road','SD','gottlieb-brody@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-28T06:25:07.586Z','Facebook','Eldon Crona','Lobelville','1980-03-07',35.820176,37097,'7f1852d9-00e0-40eb-8b1b-9179e4c6fb37',2162,-87.7719951,'719 Lost Creek Road','TN','eldon.crona@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-20T07:35:50.027Z','Facebook','Alexys Jewess','Nashville','1963-12-18',38.3082323,62263,'1b90c5d5-69af-4e91-b583-03c1c17af35d',2163,-89.4215566,'15093-15749 Nixon Road','IL','jewess.alexys@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-14T20:36:30.638Z','Organic','Cordia Farrell','Raleigh','1965-08-01',35.8872101,27613,'df0b6e69-872a-4a08-8190-6b9d847c32f2',2164,-78.68693979999999,'3001 Howard Road','NC','cordia.farrell@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-08T02:09:14.545Z','Affiliate','Jordon Runolfsson','Bennington','1964-03-25',34.1413335,74723,'349590d4-f506-43f2-9289-48ae27e47700',2165,-96.00751199999999,'3078-3088 Mossy Lake Road','OK','jordon-runolfsson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-13T05:59:10.952Z','Google','Maeve Goldner','Mason','1974-07-24',46.48775879999999,54856,'a4c727eb-c084-4e7b-946c-55c8a2d030f1',2166,-90.99776849999999,'63201-63227 Franciskovich Road','WI','maeve.goldner@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-21T08:25:45.497Z','Facebook','Gideon Conn','Elizabethtown','1997-09-06',37.7011357,42701,'fb5b01d2-5b92-4ee0-8f91-b86fc7cf792d',2167,-86.0150568,'6626-7298 Long Grove Road','KY','conn-gideon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-28T02:05:21.031Z','Google','Meta Schimmel','Kellogg','1989-11-08',41.77538,50135,'a4a63745-5387-49b0-9ba5-d2b2cdc4edb8',2168,-92.8673,'11449 North 67th Avenue East','IA','meta-schimmel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-05T15:28:59.230Z','Affiliate','Jeffry Schowalter','Golden','1969-03-26',39.778217,80403,'3e63a6ff-5c8b-46a0-be5b-2f731fd570f4',2169,-105.29644,'26102 Golden Gate Canyon Road','CO','jeffry-schowalter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-22T23:28:13.761Z','Twitter','Misty Botsford','Colorado Springs','1960-08-24',38.620669,80928,'a59474f9-e256-4b3b-9914-6f0b039915bc',2170,-104.406894,'22771 Sagebrush Lane','CO','misty-botsford@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-14T01:38:18.831Z','Twitter','Chadd Larson','Guernsey','1988-02-29',42.287588,82214,'40e68a95-09d0-4b11-aeac-ba339f05b20c',2171,-104.8312269,'262-278 Wendover Road','WY','larson-chadd@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-16T11:31:59.850Z','Affiliate','Brooke Rempel','Montpelier','1977-12-03',46.6744302,58472,'ac427295-ea80-4cd7-b82e-1a3b4cb40666',2172,-98.6800164,'8453-8499 51st Street Southeast','ND','rempel.brooke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-02T17:06:46.112Z','Google','Wilton Senger','Damon','1987-05-19',29.355971,77430,'7d133b6f-2d2e-4984-a3db-df938e2e10ed',2173,-95.628168,'22416 East Farm to Market 1462','TX','wilton-senger@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-06T04:34:29.765Z','Facebook','Adele Parker','Florence','1976-06-18',32.154442,39073,'70023aa4-7a49-4856-8d44-073f58f19716',2174,-90.16464719999999,'193-203 Zelma Lane','MS','parker.adele@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-20T10:35:07.915Z','Facebook','Bernhard Bailey','Gainesboro','1975-06-22',36.3033271,38562,'8792e82b-caa5-4187-b30f-a83775eb9e55',2175,-85.7327644,'391 Frizzell Hollow Road','TN','bernhard.bailey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-04T04:24:33.859Z','Organic','Johathan Schaden','Curtis','1963-01-01',40.5445495,69025,'9fc09635-8369-4303-861b-12a770f99b38',2176,-100.6019921,'38619 Road 740','NE','schaden.johathan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-30T21:53:10.042Z','Google','Arch Ryan','Harlingen','1993-01-17',26.249905,78550,'ecb4f32b-d8b8-467d-aeb6-53d3557d979e',2177,-97.63499449999999,'21344 Krupala Road','TX','arch-ryan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-27T11:33:06.165Z','Affiliate','Meggie Blick','Kingsbury','1974-11-23',29.7187481,78638,'d2d8ab63-65da-43d6-9cd6-1a8a2ed39447',2178,-97.91061529999999,'4201 Old Lehman Road','TX','meggie.blick@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-09T03:04:12.392Z','Affiliate','Mohammad Weber','Gaffney','1958-04-28',35.114211,29341,'24e61311-f0e0-4ace-b5ed-e5d5636b5f80',2179,-81.7128989,'1403 Chesnee Highway','SC','weber-mohammad@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-07T22:37:02.380Z','Twitter','Eleanora Kunze','Redgranite','1966-06-23',44.0759145,54970,'0bb98c59-4a36-4c8f-b148-24f9f9486b0b',2180,-89.10181390000001,'4441 Buttercup Drive','WI','kunze.eleanora@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-09T03:47:03.931Z','Twitter','Jettie Rau','Apex','1989-02-17',35.6755522,27539,'aa5a1685-67d1-459d-8e70-a73919041e0e',2181,-78.76927649999999,'3904 Summer Brook Drive','NC','rau.jettie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-24T14:24:24.741Z','Facebook','Alva Brakus','Gillette','1967-07-02',44.7139688,82731,'357cd509-5256-44a4-b25b-9529d20f5b83',2182,-105.1429957,'1311 Heald Road','WY','brakus-alva@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-10T12:32:10.516Z','Affiliate','Freida O''Hara','Cottage Grove','1993-07-17',36.397726,38224,'f1bc0efb-e273-431e-9196-ab43b781a516',2183,-88.528498,'2285 Hunt Road','TN','o.hara.freida@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-30T03:35:54.612Z','Facebook','Jensen Champlin','Mount Nebo','1964-02-17',38.136482,26679,'a2ac06ab-7097-4974-8aab-467465414cf4',2184,-80.790978,'4182 Upper Anglins Creek','WV','champlin.jensen@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-22T16:14:06.896Z','Twitter','Arely Lubowitz','Shoreham','1971-03-17',43.9163659,05770,'85d69224-312f-42dc-b4f4-f494ee010ff6',2185,-73.3899132,'1800-1952 Lake Street','VT','arely.lubowitz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-05T01:55:11.364Z','Google','Rosemary Daniel','Oriental','1977-01-23',35.0182001,28571,'510d01fc-e7a6-48bf-a56e-9359c6f35c58',2186,-76.76226489999999,'106 Creekside Lane','NC','rosemary-daniel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-11T10:23:25.531Z','Affiliate','Chris Satterfield','Outlook','1978-12-16',48.9439658,59252,'cdc7363d-b06a-4bc5-8a31-e0a0b626861c',2187,-104.8569088,'295-299 Big Valley Road','MT','satterfield.chris@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-22T07:17:11.112Z','Google','Heber Gulgowski','Murrysville','1965-06-03',40.4370093,15668,'e98d7e32-59d8-4f6c-8197-3c7b172f02f4',2188,-79.6483465,'3475 Lake Ridge Drive','PA','heber-gulgowski@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-17T20:21:26.481Z','Twitter','Beaulah Konopelski','Glen Gardner','1985-02-11',40.711495,08826,'82287e1b-001d-49a1-8025-c6c8f5317b94',2189,-74.929238,'1 Spring Brook Lane','NJ','konopelski.beaulah@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-11T23:22:38.179Z','Facebook','Yesenia Green','Abilene','1973-03-20',32.4896481,79603,'6dcc9e24-7252-403c-9a78-2793bcae0b59',2190,-99.7583769,'3060 West Overland Trail','TX','green-yesenia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-24T03:01:16.758Z','Twitter','Demetrius Nikolaus','Lumberton','1997-12-22',34.6214936,28358,'99235c99-18a9-4af1-a416-5fb4371660cc',2191,-78.91809429999999,'166 Bessie','NC','demetrius-nikolaus@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-28T20:20:13.880Z','Organic','Kirstin Bosco','Bonanza','1966-11-04',42.2472548,97623,'6dd266ce-ed9d-4de6-985e-a541e67f4519',2192,-121.3915386,'1517-4093 Bly Mountain Cutoff Road','OR','bosco-kirstin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-07T05:42:45.553Z','Organic','Kathryn Lubowitz','Cortland','1970-07-14',42.6855014,13045,'edd65eab-9e01-4707-9f30-508b4ff6de92',2193,-76.2889201,'1-661 Poverty Lane','NY','lubowitz.kathryn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-11T16:10:33.474Z','Twitter','Walter Mueller','Gaylord','1968-02-02',44.5892651,55334,'76b7e413-7117-45dc-ba30-d80e1a8a4e0e',2194,-94.2497736,'48824 250th Street','MN','mueller-walter@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-02T23:46:40.483Z','Affiliate','Tremaine Jerde','Saint Maries','1965-10-10',47.272479,83861,'1de16cdd-d56d-4201-aafe-b99481976299',2195,-116.3010206,'4500 Gold Ridge Road','ID','tremaine.jerde@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-08T23:41:17.427Z','Twitter','Barrett Schuppe','Clifton','1988-09-26',39.5533571,66937,'5fc54c36-812f-4e3a-958f-f7eebba289bc',2196,-97.2362132,'801-881 30th Road','KS','schuppe-barrett@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-14T09:12:05.498Z','Organic','Aletha Huels','Davis City','1978-05-24',40.6242207,50065,'92037c60-c50a-4137-9803-fdb2f3f6fa73',2197,-93.865386,'28765 U.S. 69','IA','aletha.huels@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-19T08:24:50.895Z','Google','Amiya Veum','Anita','1967-05-31',41.3743424,50020,'f98c0dda-fb2d-46c0-9670-f9d72360548f',2198,-94.6883993,'1054-1076 190th Street','IA','veum-amiya@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-10T03:35:04.370Z','Twitter','Dante Harvey','Mediapolis','1996-12-10',41.00518599999999,52637,'266888da-b959-4f1d-8c42-dc84f24fb2af',2199,-91.153881,'136 Centennial Drive','IA','harvey.dante@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-15T04:49:10.146Z','Facebook','Richmond Adams','Norfolk','1969-11-12',36.8508045,23502,'4d6561a7-42ea-41d9-8eae-84ba74432084',2200,-76.24297589999999,'3448-3460 Trant Avenue','VA','richmond-adams@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-11T07:29:33.445Z','Affiliate','Cleveland Welch','McMinnville','1986-11-18',35.5537,37110,'19b42cae-aa2f-48bc-b2a5-47e016f6ef9c',2201,-85.543933,'17162 Tennessee 8','TN','welch-cleveland@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-08T21:19:06.979Z','Organic','Emiliano Block','West Glacier','1976-06-02',48.5054476,59936,'f3011268-c83c-428f-822e-ae9bfb95e6b9',2202,-113.9800674,'113 Logan Lane','MT','block.emiliano@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-13T03:00:37.977Z','Google','Micaela Kerluke','Castlewood','1996-04-30',44.6072478,57223,'c45a3db0-4c67-4d23-8b14-3152fa44d21e',2203,-97.04753799999999,'19149-19199 458th Avenue','SD','micaela.kerluke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-30T05:13:40.076Z','Affiliate','Lilliana Larkin','Savanna','1991-08-14',42.1794235,61074,'2dceee52-aa64-482f-a49b-cbf0ffe23a39',2204,-90.1845962,'6456-7908 Camp Creek Road','IL','larkin-lilliana@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-12T10:57:00.875Z','Google','Florence Raynor','Remer','1958-06-23',47.1812463,56672,'ef409586-f468-4799-8e0a-458cf32b0dd3',2205,-94.1146838,'3037-3167 104th Street Northeast','MN','raynor-florence@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-23T12:50:08.476Z','Google','Lucienne Crist','Denali National Park and Preserve','1985-09-07',63.5664678,99755,'8972bd01-d56e-486b-9a53-aa663ed7d8de',2206,-148.8142708,'224 George Parks Highway','AK','crist.lucienne@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-02T15:33:57.792Z','Google','Janelle Wolf','Bassett','1967-03-06',42.54258309999999,68714,'798bc35c-2a16-42b4-8e19-ad5977128659',2207,-99.48099270000002,'87743 450th Avenue','NE','wolf.janelle@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-13T08:26:55.637Z','Google','Jaunita Wehner','Hamburg','1984-02-23',33.3037867,71646,'fa0218c8-f860-4615-883f-d83f9ea20fb0',2208,-91.7920324,'244 Ashley Road','AR','wehner-jaunita@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-12T11:17:09.769Z','Organic','Luther Goyette','Ponca City','1981-08-28',36.607847,74604,'e7aac5ef-d7eb-4130-9ea0-15e97b90117b',2209,-96.9313729,'939 80 Road','OK','goyette-luther@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-24T09:56:03.880Z','Twitter','Abbey Satterfield','Wapato','1985-06-09',46.466885,98951,'1595fbdb-8e01-4cfd-a08d-4201edcc19f2',2210,-120.392185,'2141 Donald Wapato Road','WA','satterfield-abbey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-23T23:36:49.642Z','Twitter','Theodore Dach','O''Neill','1966-11-26',42.6573649,68763,'d06516b9-aa16-4eae-8413-6c52ebd426ee',2211,-98.5648155,'88536 496th Avenue','NE','dach-theodore@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-26T23:34:20.366Z','Affiliate','Braden Rempel','Grover','1979-09-04',40.97705,80729,'7724296e-b81f-4ed4-924a-854981b74a68',2212,-104.282042,'67125 County Road 83','CO','rempel-braden@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-22T11:12:53.252Z','Twitter','Cyrus Dach','Hill City','1971-01-20',43.2851418,83337,'ffa026ad-c39a-4d61-9ee2-2e4b27b663f0',2213,-115.1254857,'9546 County Line Road','ID','cyrus.dach@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-20T06:09:00.047Z','Organic','Kavon Dach','Red Bay','1990-01-07',34.5428605,35582,'747f36e8-0661-4c7c-923b-c7d54c45f6d5',2214,-88.07217159999999,'2508 County Road 90','AL','kavon-dach@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-08T15:44:34.510Z','Affiliate','Georgiana Willms','Sturgis','1971-08-11',33.3112533,39769,'60f81e19-2aaa-4bb4-b8ac-ac1c9167bae2',2215,-88.9530561,'444 York Road','MS','georgiana.willms@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-05T20:33:25.096Z','Affiliate','Zena Schowalter','Berlin','1983-11-25',38.290215,21811,'02da8084-74b5-4a3e-a948-d0cd17bca3ea',2216,-75.33184709999999,'8410 Ninepin Branch Road','MD','zena.schowalter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-01T18:10:58.431Z','Twitter','Green Schimmel','Leeds','1971-04-19',48.3250683,58346,'fc9aea20-0d2d-4a36-ad05-d1cb1382dc47',2217,-99.4660873,'5317-5323 63rd Street Northeast','ND','schimmel-green@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-08T19:37:35.281Z','Facebook','Nicklaus Langosh','Pickens','1964-11-10',32.85935,39146,'059ef3ed-d66e-4766-8eeb-3e3c687cd8ee',2218,-89.90156449999999,'504-766 Burrell Road','MS','langosh.nicklaus@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-22T19:34:54.950Z','Affiliate','Kirsten Kihn','Winnsboro','1969-01-11',32.0280591,71295,'f7690d1a-22bd-40b3-b304-b94337d7d339',2219,-91.83638619999999,'572-798 Louisiana 871','LA','kihn-kirsten@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-16T07:43:47.425Z','Affiliate','Cedrick Kessler','Meridian','1984-11-19',32.2929204,39307,'fa7308e7-8edb-471d-8de6-118e6d3aebeb',2220,-88.7441599,'5396-5492 Valley Road','MS','cedrick-kessler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-28T03:45:59.881Z','Organic','Percy Kassulke','Grant','1994-06-29',43.318729,49327,'53369468-9e24-4d72-9779-4e2d56d59d02',2221,-85.77300699999999,'1152 East 128th Street','MI','percy-kassulke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-30T12:22:55.556Z','Google','Fabian Heller','Allons','1982-12-27',36.4598366,38541,'5231dd22-d929-49be-a262-39e4845c4531',2222,-85.3474748,'100-312 Hunter Cove Road','TN','fabian.heller@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-08T08:57:55.086Z','Facebook','Cassidy Cronin','West Bend','1974-10-04',43.4705134,53090,'b46214d5-9e92-4a2a-a76a-911ec86b7518',2223,-88.0708804,'7701-7759 Meadow Road','WI','cronin-cassidy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-15T04:44:14.370Z','Facebook','Jaren Leannon','Victoria','1965-10-20',28.854199,77904,'55c80a6c-b8ff-49a3-bda4-da731a163a4a',2224,-96.92175739999999,'611 Foster Field Drive','TX','jaren.leannon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-24T02:38:19.843Z','Facebook','Nils Gaylord','Chestertown','1994-11-27',39.27953000000001,21620,'aede2771-8bd5-4c8d-90dc-55874d8170b5',2225,-76.01646099999999,'11020 Perkins Hill Road','MD','nils.gaylord@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-14T12:45:52.942Z','Organic','Danika Langworth','Woodbine','1964-01-08',30.8716958,31569,'5cf5fe14-7720-4fa4-85c4-4337ab1b0898',2226,-81.5971895,'155 Sunrise Drive','GA','danika-langworth@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-29T06:00:56.481Z','Facebook','Nelda Rau','Bethlehem','1995-07-23',33.9551463,30620,'dbc36ff5-aacd-4edd-a080-744f6252946b',2227,-83.8301824,'2200-2998 Harfield Court Southeast','GA','nelda-rau@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-11T04:47:08.962Z','Organic','Alfred Kihn','Pierre','1973-09-23',44.5646367,57501,'96b0f90d-16e1-4300-a4ed-6ad08a7511df',2228,-100.3644203,'19400-19484 288th Avenue','SD','kihn.alfred@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-19T16:02:09.110Z','Affiliate','Letha Koss','Toronto','1999-08-12',40.46128239999999,43964,'a6cf24c2-d3fd-4cd7-be27-d45fe79f7c4e',2229,-80.6199252,'443 Fairview Heights Drive','OH','koss.letha@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-11T19:01:24.587Z','Affiliate','Cristian Pouros','Finlayson','1998-09-11',46.22892179999999,55735,'5ebf354f-6185-4415-aca1-33def25e7255',2230,-93.0031521,'14256 Dahlstein Road','MN','pouros-cristian@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-01T23:07:52.852Z','Twitter','Jacey Hilpert','Cotulla','1987-01-26',28.171865,78014,'0330d6f9-e3ea-4511-875e-e4a20dcc7d89',2231,-99.040449,'2065 Huajuco Lane Lasalle Co','TX','hilpert.jacey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-22T19:23:12.966Z','Organic','Mohammad Swift','Boulder','1977-01-30',40.0093863,80302,'1316367d-968d-4b54-9668-3c9af837286e',2232,-105.4231668,'6181 Sugarloaf Road','CO','swift-mohammad@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-26T02:26:42.488Z','Twitter','Haven O''Reilly','Circle','1963-11-28',47.58456349999999,59215,'a8706589-8f6c-4288-9eca-0d9fcaf8ade2',2233,-106.1512125,'1798 Montana 24','MT','o.reilly.haven@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-08T01:39:35.796Z','Affiliate','Germaine O''Reilly','Fort Collins','1983-05-02',40.510231,80528,'313720f4-d2f5-4450-a17a-2a774cf3f5d0',2234,-104.974479,'5317 South Co Road 3f','CO','reilly-o-germaine@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-19T15:01:11.763Z','Organic','Mina Reynolds','Wayland','1990-08-26',42.3615365,01778,'7dfcbf2d-db10-403e-be5f-d9bae29a2128',2235,-71.3522355,'8 Melody Lane','MA','mina.reynolds@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-22T15:54:06.352Z','Affiliate','Emanuel Schmeler','Colbert','1973-07-02',47.873104,99005,'7753590d-b6f9-4eb6-8c09-beedb11ec32a',2236,-117.388124,'23626 North Perry Road','WA','emanuel.schmeler@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-25T03:46:15.033Z','Facebook','Shawn Fadel','Broken Bow','1991-10-03',41.2992808,68822,'fcde9910-442a-4997-83d4-715fa27286cc',2237,-99.6296247,'79369 Drive 439','NE','fadel-shawn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-03T07:42:05.740Z','Twitter','Arnaldo Rau','Liberty','1985-12-22',35.8696915,27298,'7c02fafa-55f5-401c-b460-6ea5f2a2ac41',2238,-79.6465757,'5346 Ramseur Julian Road','NC','rau.arnaldo@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-16T08:50:39.684Z','Google','Ethan Hudson','Eureka','1961-10-24',45.7665632,57437,'4fbd5fa9-2bff-45ea-94f9-8fd0d58cb99e',2239,-99.2717316,'34601-34605 112th Street','SD','hudson.ethan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-26T16:03:13.709Z','Twitter','Samir Hayes','Athens','1983-09-02',34.808124,35613,'9e5a4b64-63ba-435c-a5b0-85c719c80cfc',2240,-86.91013699999999,'17400 Oakdale Road','AL','samir.hayes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-30T14:32:04.913Z','Affiliate','Kamryn Eichmann','Gakona','1995-12-16',62.9602798,99586,'46d46b28-afa9-4563-ace1-2f91925d6c01',2241,-143.353976,'800 Tok Highway','AK','eichmann-kamryn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-27T14:14:57.536Z','Twitter','Oceane McCullough','Friendship','1980-10-15',44.005569,04547,'9251ec5a-9944-4825-9913-de2901217bf3',2242,-69.320786,'308 Cushing Road','ME','mccullough.oceane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-30T09:12:16.150Z','Organic','Durward Hirthe','Omaha','1966-08-25',41.3181687,68116,'8fd16d54-ec81-4a3f-9f56-551b52a2d686',2243,-96.17180270000001,'16500-16548 Bauman Circle','NE','hirthe-durward@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-23T11:09:31.551Z','Facebook','Maxie Rogahn','Big Stone City','1999-04-03',45.2915529,57216,'0cc51b90-fdc6-4f2f-b7cb-aaecb6b19eab',2244,-96.4570057,'101-151 Main Street','SD','maxie-rogahn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-16T12:41:37.577Z','Organic','Rudolph Ankunding','Kankakee','1970-09-15',41.046256,60901,'579b70a2-8674-4bcc-b21e-0637fafdb37d',2245,-87.95983199999999,'4777 West 5000 Road South','IL','ankunding-rudolph@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-20T17:39:24.910Z','Organic','Paula Reinger','Elberta','1987-12-30',30.415433,36530,'1baad83d-dc15-4687-9308-e1e89c2ba843',2246,-87.54827499999999,'13151 County Road 95','AL','reinger.paula@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-25T22:05:41.731Z','Facebook','Ettie Gislason','Pleasanton','1970-09-20',29.0252997,78064,'016e829f-afc8-46fb-9a1a-bf359f4612ca',2247,-98.50175449999999,'300 Hillside','TX','gislason-ettie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-23T00:10:54.495Z','Google','Elva Bailey','Flandreau','1964-02-26',44.10125660000001,57028,'d4d0357d-7f51-40d6-b9ac-99a3dd59ebd5',2248,-96.5869936,'22656 South Dakota 13','SD','elva.bailey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-30T15:27:20.223Z','Affiliate','Jayson Flatley','Spokane','1997-11-02',47.6908723,99224,'a3f47623-b075-442a-816d-3f8739221dbc',2249,-117.5036908,'3201-4915 North Indian Bluff Road','WA','flatley.jayson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-02T03:23:28.313Z','Google','Loyce Lemke','Stephenville','1960-10-17',32.3482789,76401,'5370d2e7-a9c7-429b-841e-187bb2009cbd',2250,-98.16811640000002,'27485 North Sh108','TX','loyce-lemke@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-27T19:08:12.661Z','Twitter','Reva Hermann','Fairbanks','1963-02-15',65.068141,99712,'b3f8902b-647d-4ab1-8b18-a4c99422655f',2251,-146.1060121,'17030 Chena Hot Springs Road','AK','reva.hermann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-05T18:50:48.493Z','Google','Adelia Metz','Washburn','1962-04-24',46.807219,04786,'95f8dafa-68e6-4779-acb1-8e9de8ea3af7',2252,-68.121844,'1747 Washburn Road','ME','adelia.metz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-22T12:00:32.610Z','Facebook','Jarvis Rosenbaum','Wellman','1964-06-10',41.4077159,52356,'f655c38b-9666-4d70-9736-815a71666306',2253,-91.79534540000002,'1795 170th Street','IA','jarvis.rosenbaum@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-07T01:07:47.706Z','Facebook','Kariane Hintz','Bellville','1982-10-28',29.9355215,77418,'2ed083c2-0fa3-467b-aefe-3f690d4c049d',2254,-96.1070745,'42560 Harpers Church Road','TX','kariane.hintz@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-08T19:18:50.655Z','Facebook','Camron Quigley','Flatonia','1976-12-22',29.7829284,78941,'cd202ff0-fc93-44d2-b814-ae49dd6c7dd0',2255,-97.2045977,'6921 Three Mile Road','TX','camron.quigley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-05T18:50:27.765Z','Twitter','Hayley Heaney','Virgin','1995-09-29',37.299598,84779,'331437fa-c4b0-404e-af17-70811393a863',2256,-113.101774,'9 Kolob Terrace Road','UT','heaney.hayley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-29T10:22:12.718Z','Twitter','Jerome Cremin','Mannford','1960-09-11',36.190323,74044,'65a167fb-54f1-44e9-9daa-78ae1c3ecfd1',2257,-96.37033199999999,'2229 North Cocomo Loop','OK','cremin-jerome@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-28T04:51:44.238Z','Twitter','Emmanuel Emmerich','Canaan','1977-03-31',44.9343023,05903,'5ec7b186-ce95-401e-887c-936a2a942f46',2258,-71.68654409999999,'185-1883 Sable Mountain Road','VT','emmerich.emmanuel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-01T07:04:44.455Z','Facebook','Dedrick Steuber','Gould','1970-02-08',33.9722673,71643,'624e6933-d9b2-47aa-a31b-ec47a4bedc30',2259,-91.6113769,'15729 Arkansas 114','AR','steuber.dedrick@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-07T02:47:39.457Z','Twitter','Reed Dach','Wells Tannery','1961-11-06',40.1208677,16691,'b41cbe74-2876-43a5-99a1-70a7e4569c09',2260,-78.13654430000001,'2139 Schenck Road','PA','dach-reed@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-30T11:35:59.436Z','Twitter','Reid Waelchi','Opelika','1967-04-07',32.5836029,36804,'85626de4-6d97-463d-899f-759855ffcdcf',2261,-85.344824,'575 Lee Road 40','AL','waelchi-reid@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-29T22:44:21.094Z','Google','Yasmeen Sauer','De Leon','1978-01-19',32.1291719,76444,'3b36d1b9-c6f1-4455-b86e-cdb98744b386',2262,-98.48731199999999,'770 County Road 462','TX','sauer.yasmeen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-12T02:08:16.510Z','Organic','Clark Schinner','Genoa','1962-09-30',39.5802385,80818,'54e61ba3-143b-409a-9cb6-a9b31f67caa5',2263,-103.5189258,'9794-10792 County Road 1','CO','schinner-clark@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-08T18:02:52.874Z','Affiliate','Darrell Fritsch','Kim','1982-12-06',37.46576719999999,81049,'3dac09d6-eed9-4761-8ff3-007432618286',2264,-103.4180605,'32523-32943 County Road 193.5','CO','darrell-fritsch@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-25T16:24:38.043Z','Affiliate','Amelie Kunde','Winner','1963-05-10',43.5907349,57580,'3554ee64-fb41-4c06-b163-4bfb59f4c428',2265,-100.0809238,'26279 304th Avenue','SD','amelie-kunde@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-05T13:08:54.504Z','Affiliate','Constance Stokes','Warren','1977-01-30',40.7147525,46792,'f7f63152-48ec-4209-b1fc-10c1df85db82',2266,-85.39709859999999,'2748 East 800 South','IN','constance.stokes@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-16T00:21:58.979Z','Twitter','Melisa Hilpert','Salisbury','1989-10-29',35.6193693,28146,'f04146c4-f32b-4616-a4a1-689275a574b6',2267,-80.34309979999999,'1550 Poole Road','NC','melisa.hilpert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-18T01:19:23.375Z','Affiliate','Dell Schimmel','Walden','1985-06-20',41.5718425,12586,'1eaa5a62-0cc4-4d3a-a180-f6a55daf4649',2268,-74.151854,'334-336 Lake Osiris Road','NY','dell-schimmel@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-05T01:45:18.796Z','Affiliate','Alexzander McKenzie','Lennox','1959-05-04',43.314036,57039,'a8207eb7-6b93-43bb-972f-ca0bfeb44d88',2269,-96.83119699999999,'46865 281st Street','SD','mckenzie-alexzander@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-13T08:57:35.571Z','Organic','Lola Ritchie','Sumner','1997-01-17',42.841993,50674,'afac4882-45a9-4360-a2b6-d3ec146161ed',2270,-92.182942,'1444 Tahoe Avenue','IA','ritchie-lola@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-06T05:13:52.749Z','Affiliate','Deontae Hansen','Campbell','1960-11-18',36.4249024,63933,'8e94c155-fff4-4ae7-bc1c-75b531e9d9d8',2271,-90.1034226,'29846 County Road 305','MO','deontae.hansen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-16T03:15:53.341Z','Facebook','Anika Beatty','Dairy','1992-02-09',42.2602933,97625,'a5af56be-dfc0-4fa7-a505-07399d697526',2272,-121.5564791,'19047 Highway 140 East','OR','anika.beatty@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-23T20:14:23.395Z','Affiliate','Marguerite Pouros','Kingman','1981-12-06',35.145161,86401,'0bcbc9e5-6595-484e-80c0-57ea6549e3fc',2273,-113.511055,'9161 North Concho Drive','AZ','pouros-marguerite@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-21T06:07:36.002Z','Google','Dorcas Dicki','Stetson','1967-04-08',44.9144835,04488,'287ff069-3a3e-46db-af38-5f7fe56207a7',2274,-69.1501892,'256 Clark''s Hill Road','ME','dorcas-dicki@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-10T18:45:43.005Z','Google','Sabina Green','Butte','1959-11-21',46.133132,59701,'57e66771-5df6-408b-9b68-e0061c88fb33',2275,-112.668086,'2627 Telegraph Gulch','MT','sabina.green@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-28T03:26:02.491Z','Twitter','Patricia Barrows','McEwen','1987-03-29',36.1289603,37101,'1f2c4128-3b07-4d33-b2e5-64060ec4284b',2276,-87.55618969999999,'1588 Tummins Road','TN','barrows-patricia@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-28T10:16:40.207Z','Organic','Rachel Gorczany','Old Bridge Township','1985-02-18',40.4173527,08857,'7bb08924-1486-40ab-b212-236a3fb1115c',2277,-74.3017223,'145-175 Jake Brown Road','NJ','gorczany.rachel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-15T02:46:58.035Z','Affiliate','Hertha Price','Minot','1982-12-06',48.0951728,58701,'7d5d61ba-5592-49b4-9188-2a33f5e64c1c',2278,-101.3786815,'6001 135th Avenue Southwest','ND','hertha.price@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-21T08:30:41.609Z','Twitter','Shaylee Lowe','Runnells','1970-11-28',41.514026,50237,'5578ad05-4176-4a88-ac74-ab3dd7f9a2ad',2279,-93.362155,'402 Molly Court','IA','lowe.shaylee@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-08T18:39:49.991Z','Twitter','Reva Carter','Velpen','1981-10-13',38.358538,47590,'41cd7f03-a6ce-44da-a999-d205a26b6c0c',2280,-87.102161,'4410 South 3rd Street','IN','carter-reva@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-08T22:39:59.047Z','Facebook','Fredrick Buckridge','Zachary','1992-08-14',30.6230283,70791,'74416365-0dea-43de-8510-bad67a9a699c',2281,-91.0465433,'12512 Greenwell Spring Pt Hudso Road','LA','fredrick-buckridge@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-10T05:43:43.143Z','Twitter','Arlene Dietrich','Warriors Mark','1990-06-07',40.7192098,16877,'be857497-22bd-49e7-bcbc-ff222f8e2c17',2282,-78.11898719999999,'1446 Centre Line Road','PA','dietrich-arlene@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-18T18:08:11.518Z','Twitter','Alverta White','Stonyford','1985-04-13',39.3107383,95979,'d92458f2-8338-40fc-b9b6-d13a94e62f70',2283,-122.5328865,'4475 Lodoga Stonyford Road','CA','alverta.white@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-28T13:48:34.956Z','Google','Deshaun Leffler','Brunswick','1978-03-10',43.9247077,04011,'f97735dd-4517-42d1-aa3d-ea98892b1a53',2284,-69.8961209,'261 Old Bath Road','ME','deshaun-leffler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-22T19:48:51.048Z','Affiliate','Lempi Gerhold','Burlington','1984-10-29',38.2939375,66839,'7816180f-84f0-43bb-ac13-bc14bb0ff505',2285,-95.76334899999999,'1825 Kafir Road','KS','gerhold.lempi@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-27T18:39:14.930Z','Affiliate','Okey Lueilwitz','Sedalia','1992-11-22',38.7039277,65301,'e8db745d-87af-4aeb-aaa0-38636f98cc1f',2286,-93.25010549999999,'901 South Limit Avenue','MO','lueilwitz.okey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-19T06:06:56.962Z','Facebook','Cyril Breitenberg','Trout','1960-01-05',31.6810774,71371,'5cafe928-582e-4b21-9772-9d6fed28bee5',2287,-92.2265779,'118 Belah Cemetery Road','LA','cyril.breitenberg@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-21T15:45:54.713Z','Facebook','Greyson Boyle','Hillsboro','1996-09-07',39.169834,45133,'84f2b19f-9138-48d6-9fd3-31f044243709',2288,-83.60190999999999,'5794 South R 247','OH','greyson.boyle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-07T22:08:54.735Z','Affiliate','Alanis Kovacek','Glennallen','1982-11-05',61.99231690000001,99588,'c2d085e2-1d9b-40b9-b348-f932287feed1',2289,-146.7686644,'2446 Glenn Highway','AK','alanis.kovacek@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-13T00:40:50.796Z','Google','Kathlyn Ruecker','Waverly','1993-02-01',38.3477305,66871,'cdde234e-cce3-4832-9f48-263c9e611341',2290,-95.6188909,'2200-2298 Shetland Road','KS','ruecker-kathlyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-17T16:48:35.991Z','Twitter','Kacey Glover','Ivor','1993-02-11',36.9082415,23866,'e8d53b34-652b-4939-bd1e-9e08f32dcca9',2291,-76.90512439999999,'8332 Bell Avenue','VA','glover-kacey@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-14T23:13:35.485Z','Facebook','Carmella Rogahn','Wantage','1984-08-30',41.1928259,07461,'5a9e8c0b-69ef-4f2d-89c4-d5a3667dcd37',2292,-74.66955899999999,'111 Haggerty Road','NJ','carmella-rogahn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-25T05:14:39.025Z','Affiliate','Chelsey Marvin','Lizella','1965-03-03',32.7562537,31052,'5eb961a0-7910-4ac4-ac8d-4c88f0048f5b',2293,-83.8201728,'5700 Stokes Road','GA','marvin.chelsey@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-23T07:47:24.467Z','Twitter','Cordie Kutch','Damon','1973-11-11',29.3102213,77430,'e103edb3-1bd9-44cc-9580-5f184acdeffa',2294,-95.74301249999999,'19028-19030 Old Guy Road','TX','cordie.kutch@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-20T12:27:33.328Z','Twitter','Gavin Hettinger','Meadville','1992-02-20',39.7652264,64659,'9d8684a6-53d7-41d3-b8e4-dce08f72f5f2',2295,-93.3202542,'28757 Bear Drive','MO','gavin.hettinger@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-27T12:01:39.652Z','Organic','Jamar Heathcote','West Union','1972-05-23',39.2299951,62477,'9c0e63dc-2992-49c4-8d23-da29da4d67e9',2296,-87.61143679999999,'21000-22464 County Road 550 North','IL','heathcote.jamar@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-04T11:02:05.833Z','Google','Immanuel Roberts','Adamstown','1958-08-05',39.2699827,21710,'b6520718-c689-4cb7-b9bc-85561e8135b3',2297,-77.43403359999999,'1619-1631 Park Mills Road','MD','immanuel-roberts@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-11-18T12:24:52.820Z','Organic','Antoinette Mertz','Turbeville','1974-09-10',33.9215182,29162,'3502fe97-8ccc-4a03-b393-5365c34be0f6',2298,-80.05810799999999,'8080 Forge Road','SC','mertz.antoinette@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-30T20:54:28.433Z','Google','Taya Daniel','Happy','1992-06-20',34.6621039,79042,'9f1ecb96-d1d7-4401-af3a-83048fb411ab',2299,-102.139477,'650-698 County Road 523','TX','daniel-taya@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-01T05:58:47.182Z','Affiliate','Brody Kassulke','Luverne','1992-07-21',31.809885,36049,'537fdf79-f157-468d-8bb4-5cad0f217786',2300,-86.4015411,'1183 Center Ridge Road','AL','brody.kassulke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-18T13:59:03.374Z','Twitter','Anais Zieme','Defiance','1972-11-05',41.3964881,43512,'96c75a05-b062-40de-968f-96e4eea8452c',2301,-84.4180001,'3001-3941 Wieland Road','OH','anais.zieme@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-15T01:57:35.655Z','Organic','Leann Jast','Cameron','1975-03-14',29.7936609,70631,'61709e72-f684-4341-b94e-f26b1265a8b0',2302,-93.18750399999999,'632 Wakefield Road','LA','jast.leann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-23T05:43:21.916Z','Google','Mohammed Mayert','Cheyenne','1992-11-02',41.272848,82009,'2f2e7770-ce24-4549-85a2-e1e6ad5e2ab1',2303,-104.617244,'2080 Road 136','WY','mayert-mohammed@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-03T05:59:58.772Z','Google','Janis Renner','Greensboro','1987-10-04',32.645886,36744,'292e1cf9-3e92-41ae-b168-3c372bad3452',2304,-87.5942093,'12771 Al Highway 25','AL','renner.janis@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-23T04:23:21.636Z','Twitter','Rodger Bogan','Comanche','1962-03-07',31.804467,76442,'22071bbe-26a8-4ad2-8173-73ffd098cfd7',2305,-98.63238,'2000 Ranch Road 573','TX','bogan.rodger@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-18T23:14:37.655Z','Facebook','Makenna Abshire','Eddyville','1976-06-15',41.14615440000001,52553,'216d113e-b63f-4902-9553-fde66170c077',2306,-92.5845738,'22087 Columbia Road','IA','makenna.abshire@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-22T03:04:17.293Z','Affiliate','Bernardo Heathcote','Chillicothe','1990-04-19',39.3056362,45601,'6ecf85e0-2ef2-43aa-9913-f7998fb1b528',2307,-83.0713213,'1329-2599 Alum Cliff Road','OH','heathcote-bernardo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-24T14:54:10.740Z','Organic','Edmund Altenwerth','Marshfield','1963-10-31',37.271048,65706,'016dd623-611a-4c26-9797-f1034529b8ee',2308,-92.973175,'1482 Ridge Road','MO','edmund.altenwerth@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-27T07:02:31.396Z','Twitter','Andreanne Mayert','Limestone','1973-11-02',42.082152,14753,'95ecb8cc-fcd8-4284-a9c0-96f6c72c33ff',2309,-78.66308099999999,'648 Parkside Drive','NY','andreanne.mayert@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-13T18:49:25.443Z','Organic','Kristian Kuhic','Arvada','1984-06-02',44.5315223,82831,'46074da6-94c1-4541-a5e2-e49e0ab9c28a',2310,-106.2157111,'2799 Tipperary Road','WY','kuhic-kristian@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-18T09:07:04.530Z','Organic','Karelle Koelpin','Carson','1970-01-15',46.4295937,58529,'31f8cb3d-233c-4d8f-b770-ffca41e40b25',2311,-101.6249409,'5746-5768 68th Street Southwest','ND','koelpin-karelle@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-19T05:36:35.933Z','Organic','Randi Bernier','Tecumseh','1964-10-18',36.5835077,65760,'c62af5c4-7048-4023-8f38-b40bedb7c742',2312,-92.247591,'220 Bluetick Ridge Lane','MO','bernier.randi@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-27T13:14:07.532Z','Affiliate','Stella Kshlerin','Bland','1999-03-26',38.1613425,65014,'011caa72-4bf2-4710-a55b-d0d746dbf694',2313,-91.60582130000002,'1183 State Highway U','MO','kshlerin-stella@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-24T06:53:41.590Z','Facebook','Easton Koch','Savonburg','1983-03-04',37.7563672,66772,'354c6379-7643-4742-ae8a-81e28400205e',2314,-95.098474,'151 4800th Street','KS','easton-koch@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-04T21:51:41.567Z','Facebook','Lysanne Brekke','Poplar Bluff','1968-09-21',36.8673735,63901,'edf35aca-7dad-4077-be22-21bcf9b9a6ba',2315,-90.289456,'859 County Road 572','MO','lysanne-brekke@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-08T21:34:59.322Z','Twitter','Hans Kozey','Adena','1980-05-10',40.26783959999999,43901,'eb0839a2-4d30-4a02-87b9-615cf3986afa',2316,-80.86239540000001,'4225-4433 Smithfield-Adena Road','OH','kozey.hans@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-23T02:40:05.391Z','Affiliate','Anderson Morissette','Garfield','1962-11-05',36.4587022,72732,'cb7258f0-9f42-455a-9825-e29f8eee3d4b',2317,-93.9533701,'19057 U.S. Highway 62','AR','morissette-anderson@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-13T08:56:07.402Z','Facebook','Jennyfer Gislason','Dixon','1968-08-12',41.7480865,61021,'2cb6de76-ce0c-47d4-9ed0-fef6a23cb10f',2318,-89.4574213,'1101-1185 Illinois 26','IL','jennyfer-gislason@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-05T11:16:16.747Z','Organic','Teresa Cartwright','Blissfield','1967-05-17',41.8207449,49228,'280260ff-5e80-4355-b31d-25a548e997b5',2319,-83.91851009999999,'6949 Crockett Highway','MI','teresa.cartwright@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-24T01:12:15.698Z','Affiliate','Emerald Robel','Taos','1968-04-15',36.5258829,87571,'49988dff-98ea-4937-a0f3-4a059d70aedc',2320,-105.4877284,'281 Cuchilla Road','NM','emerald-robel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-22T21:04:22.548Z','Google','Schuyler Baumbach','Mooers Forks','1994-02-24',44.9585579,12959,'7d26a7b0-ae18-4dae-9f7a-bf5bd069ec96',2321,-73.69073999999999,'507 Lamberton Road','NY','schuyler.baumbach@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-17T21:29:37.375Z','Affiliate','Jerod Altenwerth','Webbers Falls','1989-12-13',35.4931658,74470,'6c9f2a3d-8d92-4ddb-a8c1-ad4cc742a041',2322,-95.1962375,'936 U.S. Highway 64','OK','altenwerth.jerod@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-02T21:12:32.065Z','Twitter','Coralie Koss','Talkeetna','1961-09-05',62.599373,99676,'46c50018-d4c1-49fb-a3b2-1741939cee28',2323,-150.2273,'4142 North Parks Highway','AK','coralie-koss@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-19T05:21:46.897Z','Organic','Lysanne Ernser','Miami','1992-06-02',25.775827,33125,'09f74b25-cfb8-4855-87d6-0fc5ef3b2d62',2324,-80.2161845,'219 Northwest 13th Avenue','FL','lysanne-ernser@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-31T10:26:30.192Z','Twitter','Jayne Breitenberg','Delta Junction','1965-04-03',63.55269000000001,99737,'c45741f8-cabb-4918-a290-82b4f6f6000d',2325,-145.866618,'1221 Richardson Highway','AK','breitenberg-jayne@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-22T15:29:01.656Z','Twitter','Cleo Beer','Seminole','1958-07-30',32.5791956,79360,'e8abfda6-e3c3-49fa-be34-8e02cb0113d4',2326,-102.6688225,'1068 County Road 305','TX','beer.cleo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-06T03:04:24.869Z','Twitter','Torrance Kuhic','Conway','1961-03-17',33.943168,29526,'0ee979a3-d1e8-46ac-a934-d1b5783a5f5a',2327,-78.9874791,'6000-6244 Hucks Road','SC','kuhic.torrance@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-13T12:54:48.639Z','Organic','Kirk Harber','Hornbrook','1999-10-01',41.9291494,96044,'41cd435d-9030-4ddb-8513-91c84e565308',2328,-122.4036239,'11100 Heather Lane','CA','harber.kirk@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-23T20:30:10.405Z','Google','Ciara Dooley','Wagarville','1987-11-09',31.3419491,36585,'67df6982-579d-48a9-aeb7-190a8dc22a1b',2329,-88.0256923,'435 Toinette Road','AL','ciara.dooley@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-02T16:05:39.514Z','Twitter','Ardith Wisozk','Halfway','1992-03-01',44.954284,97834,'ae743130-86c1-4324-9d6a-ca631327621b',2330,-116.875041,'54253 Oregon 86','OR','ardith.wisozk@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-28T23:14:45.738Z','Organic','John Little','Andover','1985-04-02',41.583846,44003,'ec81c78d-8b41-4bb0-925e-c84ddc7cd622',2331,-80.54728399999999,'6123 Pymatuning Lake Road','OH','little.john@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-30T12:43:40.735Z','Facebook','Una Williamson','Darby','1961-12-24',45.9565305,59829,'99a797cd-b304-4d77-9a96-447a40a9da47',2332,-114.1214446,'100-198 Lazy Pine Road','MT','una.williamson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-07T15:39:00.693Z','Affiliate','Emmie Beatty','Memphis','1982-09-13',35.150464,38122,'e6171a6b-b6ed-4e02-bf7c-ba76d1c06cdb',2333,-89.92967600000001,'3887 Faxon Avenue','TN','beatty-emmie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-04T15:52:54.554Z','Affiliate','Hadley Kuphal','Linwood','1981-04-10',41.3616879,68036,'389d9def-32df-4f0d-8941-001abf4a679d',2334,-96.9324879,'2351 43 Road','NE','kuphal.hadley@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-17T11:19:54.683Z','Facebook','Iliana Padberg','Greenbush','1965-01-16',48.8364755,56726,'5ae79672-6f0f-46f9-9367-50a9c8736c92',2335,-96.1627155,'30000-30236 210th Avenue','MN','padberg.iliana@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-04T12:57:09.737Z','Google','Richard Harris','De Smet','1997-01-14',44.3398472,57231,'ab567643-b615-4479-923a-9ddad365988d',2336,-97.4646326,'43701-43745 210th Street','SD','harris.richard@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-29T20:48:44.861Z','Facebook','Keira Gorczany','Big Sandy','1962-01-20',47.97314060000001,59520,'0c7819d3-d241-490c-b08b-38c7f9f34ba0',2337,-110.1031342,'3091 White Rocks Road','MT','keira-gorczany@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-08T07:50:56.138Z','Google','Elsa Klocko','El Cajon','1961-06-17',32.7834189,92019,'06d92b17-b91e-4255-b5da-d88d4bcc0882',2338,-116.8897473,'804-880 Willow Glen Drive','CA','elsa.klocko@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-22T09:52:12.857Z','Twitter','Bernice Witting','San Antonio','1964-08-30',29.329903,78263,'b4f23c73-b5b3-4c93-923b-8c6350bc4c8b',2339,-98.287882,'9417 Stuart Road','TX','witting-bernice@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-05T20:39:39.736Z','Facebook','Elmo Schimmel','Creston','1983-01-28',41.0161228,50801,'028c4d7c-173f-4f25-a430-3c5bf66aafec',2340,-94.4307601,'1990 Clover Avenue','IA','elmo.schimmel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-08T19:47:10.899Z','Facebook','Lauretta Dickinson','Armour','1985-09-24',43.3737186,57313,'1a346f42-96cd-4314-84cb-fa0110c84f7c',2341,-98.3097361,'27600-27698 394th Avenue','SD','dickinson-lauretta@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-07T08:17:26.440Z','Organic','Jairo Simonis','Okolona','1992-09-21',33.9705571,38860,'fae4dbc1-8a69-4ba2-bf36-4ac1262bdbc7',2342,-88.6153678,'30001-30019 Quail Cove','MS','jairo-simonis@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-21T13:34:41.184Z','Facebook','Yasmin Stark','Haynesville','1985-05-30',32.9355839,71038,'c3074154-fc00-4a48-834c-7d253d0a92dd',2343,-92.8595831,'290 Ella Ford Road','LA','stark.yasmin@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-08T14:26:22.348Z','Google','Emmet Eichmann','Troy','1963-04-24',37.9335619,22974,'9743cdd5-43d0-4e93-8198-3b4f52a0ee5e',2344,-78.3050973,'399 Two Rivers Drive','VA','eichmann.emmet@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-26T10:21:09.843Z','Google','Marlene Brakus','Circle','1986-10-19',47.4686878,59215,'5bb0b664-90fd-4093-8c26-fe9897d2fde7',2345,-105.4528496,'467-605 Montana 200','MT','brakus.marlene@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-21T12:54:32.341Z','Google','Zane Paucek','Owatonna','1965-02-22',44.1133821,55060,'e84f973d-2a95-453c-9a3d-b0aa4e942b09',2346,-93.1815084,'2697 Kenyon Road','MN','zane.paucek@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-08T16:22:44.790Z','Google','Margarita Anderson','Clayton','1979-04-01',44.287157,13624,'16d8cfd3-ee99-4b26-817f-fe318e33d2d5',2347,-76.142338,'42662 Thurso Bay','NY','margarita-anderson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-16T22:34:30.899Z','Organic','Rollin West','Carpenter','1972-04-25',41.0662326,82054,'8f932b79-54df-4ffe-9b73-1ebcf02c1ee8',2348,-104.1784873,'400-496 County Road 158','WY','west.rollin@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-27T03:01:21.794Z','Affiliate','Laura Batz','Green City','1983-08-10',40.3243005,63545,'c7ceabdc-3c0d-4947-bdd0-281826d25252',2349,-93.0029117,'14470 East Gate Road','MO','batz-laura@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-25T11:10:31.586Z','Facebook','Lucinda Welch','Sherburne','1973-11-13',42.7346338,13460,'bf3fcbc9-9f67-41c7-9611-519517fb9e68',2350,-75.5133221,'198-422 Castle Hill Road','NY','welch-lucinda@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-17T04:22:01.075Z','Facebook','Maximillian Mohr','Donalds','1987-11-30',34.337856,29638,'01143e76-6121-4823-b96c-3dd4fb516b3c',2351,-82.322595,'219 Timms Road','SC','maximillian.mohr@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-14T14:19:41.399Z','Affiliate','Graham Kessler','Eden','1991-06-16',43.6759365,53019,'ba13170a-4085-45bc-907b-f06e83d01f6e',2352,-88.2080613,'W1722 County Road B','WI','graham-kessler@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-27T17:33:59.833Z','Facebook','Ryann Parker','Fulton','1970-08-28',38.8787613,65251,'415214a2-c070-480b-a113-0ed79f6aa787',2353,-91.8143237,'8290 County Road 134','MO','parker.ryann@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-02T06:09:22.615Z','Twitter','Jaquelin Botsford','Tolar','1966-11-01',32.3607249,76476,'0dc47599-0501-4d62-8201-1502de7e2e34',2354,-97.95839389999999,'2400 Rock Church Highway','TX','jaquelin-botsford@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-02T00:31:17.523Z','Twitter','Modesta Kessler','Urich','1981-05-11',38.51624109999999,64788,'1412a482-55a1-4913-9105-71eb449f9ed4',2355,-94.0457396,'1585-1615 Northwest 1050 Road','MO','modesta-kessler@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-03T08:24:05.172Z','Twitter','Alana Roberts','Thedford','1960-12-30',41.97421019999999,69166,'9a20da84-3bb4-41e2-bb24-a8745199e1c2',2356,-100.5062283,'83820 Gaston Road','NE','roberts-alana@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-14T12:29:58.194Z','Affiliate','Emiliano Durgan','Tremonton','1959-10-08',41.6188953,84337,'84046e87-6043-49d8-9e31-6af14a03b914',2357,-112.3642282,'13469-14379 Utah 102','UT','durgan-emiliano@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-28T20:58:40.905Z','Organic','Johnathan Kris','Miles City','1984-07-19',46.5532026,59301,'5bc4f1af-ab74-4318-adf5-c527acab2ce2',2358,-106.0391607,'1370 Montana 59','MT','johnathan-kris@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-04T08:24:59.338Z','Google','Chris Walter','Victor','1958-08-09',43.641095,83455,'29058345-3327-483f-93b0-9cf8f3513850',2359,-111.048747,'2699 East 5000 South','ID','walter.chris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-30T12:03:25.643Z','Google','Petra Durgan','Hondo','1960-10-24',29.4590646,78861,'c62349e5-f1d3-419f-8110-9ca71d700c55',2360,-99.1169827,'3883 Texas 173','TX','petra.durgan@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-09T08:29:57.469Z','Twitter','Citlalli Brown','Meadow','1983-03-25',33.3409668,79345,'5817234a-2c8c-4390-879b-70fe8f6af350',2361,-102.4427318,'932 County Road 230','TX','citlalli-brown@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-12T17:50:52.584Z','Google','Carson Rogahn','Belle Rose','1990-08-15',30.0251478,70341,'3006d429-0030-41ac-82f9-61af5ffc7fee',2362,-91.00133609999999,'7035 Louisiana 70','LA','carson.rogahn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-24T08:18:33.432Z','Organic','Alison Klocko','Spartanburg','1961-08-02',34.9966929,29303,'0f525726-be79-48af-9644-8160f7fd4e6c',2363,-81.89568729999999,'295 Mule Farm Road','SC','klocko-alison@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-27T12:26:14.384Z','Twitter','Margarete Tillman','Pagosa Springs','1972-09-20',37.0135164,81147,'96043d4f-e94a-4e55-a304-9950ecd541e0',2364,-106.9052055,'7390F County Road 359','CO','margarete.tillman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-31T11:16:10.546Z','Affiliate','Syble Langworth','Ridgeway','1975-12-16',34.3648639,29130,'528be040-492d-497f-bf56-35b7b4015fb5',2365,-80.7861429,'814 Rolling Hills Road','SC','langworth.syble@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-20T03:00:54.514Z','Google','Sandy Jenkins','Kannapolis','1981-02-14',35.5054713,28081,'b67676e7-63fa-42fa-8bb0-5a5b823ddd16',2366,-80.67574979999999,'6551-6651 Miller Road','NC','jenkins-sandy@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-01T06:55:42.243Z','Affiliate','Nyah Considine','Rayville','1988-04-08',32.3409754,71269,'9c540981-ebc5-49d6-aa85-5b896b58df37',2367,-91.7168365,'275 Highway 584','LA','considine-nyah@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-18T10:29:41.174Z','Google','Rafael Zulauf','Brawley','1995-05-13',33.0372336,92227,'1f34d80d-62df-4539-b8f3-17f478bdf056',2368,-115.5756934,'401-499 Boarts Road','CA','zulauf-rafael@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-01T19:38:22.119Z','Twitter','Deborah Dickens','Bainbridge','1988-04-08',30.8796596,39817,'79487610-a1df-40ab-9df9-f892e421c78e',2369,-84.6495801,'944 John Sam Road','GA','deborah.dickens@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-02T09:17:07.885Z','Affiliate','Halle Lueilwitz','Wasco','1997-09-08',35.7023803,93280,'b6b6de60-c669-425f-acc7-57348c1a41f0',2370,-119.5085531,'2479 Gun Club Road','CA','halle.lueilwitz@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-04T02:56:00.014Z','Google','Benjamin Collier','Carthage','1989-03-14',32.1138939,75633,'9ea3ab44-f500-4e06-ad09-73bba57aee12',2371,-94.367318,'382 County Road 302','TX','benjamin.collier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-31T19:32:33.793Z','Organic','Keith Bradtke','Warren','1993-01-13',40.7513715,46792,'71ed9144-aee0-444e-97f3-74707660aacc',2372,-85.4486616,'5112-5510 South Warren Road','IN','keith.bradtke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-30T05:44:54.842Z','Google','Alvis Hayes','Crescent','1960-07-25',43.5870284,97733,'95cb8d0f-358a-47d2-ab00-d1339b82517d',2373,-122.0120442,'26150 Oregon 58','OR','alvis-hayes@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-02T16:41:01.357Z','Affiliate','Dayne Strosin','Hempstead','1969-11-13',30.1014042,77445,'8f4abec0-8feb-4f5a-9580-09721a5daf2d',2374,-96.0686004,'145 Calvit Street','TX','dayne.strosin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-05T10:26:03.424Z','Twitter','Leonor Moore','Ewing','1981-11-03',39.9977088,63440,'244cfafb-76a1-4dcb-809a-56e4be57401c',2375,-91.7154652,'27525 State Highway N','MO','moore.leonor@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-07T02:47:05.081Z','Affiliate','Enrico Ferry','Hayfield','1969-01-12',43.9067968,55940,'f041dc4e-c09e-487d-ab60-9861f7cd8371',2376,-92.8634064,'18756-18998 720th Street','MN','ferry.enrico@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-18T22:56:10.797Z','Google','Devyn Kuvalis','Quantico','1978-03-31',38.319152,21856,'18bd0bfa-ab41-4b7a-b88c-94212168bdcd',2377,-75.838825,'22358 Deep Branch Road','MD','kuvalis.devyn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-15T11:34:47.377Z','Affiliate','Manuel Feeney','Sicklerville','1968-08-18',39.7386659,08081,'c432f973-222a-45a3-9553-7f47cd3d4758',2378,-75.0294809,'346 Johnson Road','NJ','feeney-manuel@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-22T04:07:38.909Z','Twitter','Felicity Erdman','Gillett','1987-02-28',41.9543142,16925,'d78d011f-0e0f-4c3a-9446-86b236e228f8',2379,-76.7888085,'260 Monkey Run Road','PA','erdman-felicity@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-06T20:16:57.132Z','Twitter','Mathilde Quigley','Winamac','1960-01-08',41.1009,46996,'c909d4bb-68b0-4056-a07f-55df5022a1bf',2380,-86.6770219,'3828 West 300 North','IN','mathilde.quigley@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-14T05:30:30.395Z','Affiliate','Kirsten Brekke','Neshkoro','1967-03-11',44.011282,54960,'63a17883-6ac9-48be-a159-13f91d836f29',2381,-89.2391004,'975 Cypress Road','WI','brekke.kirsten@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-21T11:04:08.545Z','Affiliate','Annamae Gislason','Woodworth','1986-09-16',47.0958654,58496,'d1ce0d20-8b29-45ab-8060-fd0a7f0eea94',2382,-99.3796684,'5252-5298 22nd Street Southeast','ND','gislason-annamae@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-08T13:30:45.706Z','Facebook','Judd Tromp','Roscoe','1991-07-21',32.4864678,79545,'8d2cab22-7e60-417c-94d0-45f107920e49',2383,-100.6358039,'579-1053 County Road 169','TX','judd.tromp@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-29T16:40:54.678Z','Organic','Verdie Mueller','Isle','1966-06-11',46.0631211,56342,'f1f67c5f-01f5-4c86-9948-9230471ba247',2384,-93.41270970000001,'3213 Falcon Street','MN','verdie.mueller@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-17T18:50:01.906Z','Facebook','Elton Streich','Plattsburgh','1999-07-20',44.6275708,12901,'3ddee9fd-f5fc-4de0-9406-7de71e8831f0',2385,-73.5379217,'35 Stone Bridge Way','NY','streich.elton@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-01T19:37:47.423Z','Facebook','Dortha Bradtke','Richmond','1981-05-15',40.4012142,43944,'57e0dfa7-fda4-4205-bc50-579962e5cfd0',2386,-80.763559,'1010-1311 Township Road 223','OH','bradtke-dortha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-21T00:19:26.023Z','Affiliate','America Halvorson','Ashland','1993-09-14',37.701113,23005,'44189e08-f9e4-4e6a-bc06-b380f284b7aa',2387,-77.42609999999999,'9479 Sliding Hill Road','VA','halvorson-america@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-10T02:36:12.219Z','Google','Lisette O''Connell','Indiantown','1967-04-29',27.0896397,34956,'368a9399-bc97-494b-85d6-c8a4571a9b0c',2388,-80.5149292,'9601 T M Road','FL','connell.lisette.o@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-12T06:15:50.773Z','Google','Roderick Aufderhar','Brenham','1977-12-17',30.2316212,77833,'eaff49ca-44e0-49f4-83e4-21b8076df3db',2389,-96.2623417,'10402 FM 2193','TX','roderick.aufderhar@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-09T04:03:24.604Z','Organic','Ward Swift','Quincy','1992-05-13',39.9809,62305,'10a7d33f-7d3d-4f3b-9fbc-70b667c6c538',2390,-91.35653490000001,'4134 North 36th Street','IL','swift.ward@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-11T15:43:09.083Z','Google','Jude Reinger','Agua Dulce','1998-12-24',27.780107,78330,'fa05cb60-4af8-46a0-b00e-fffd0f8a6cc9',2391,-97.91449,'1903 2nd Street','TX','reinger.jude@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-28T01:58:16.668Z','Google','Maud Upton','Kansas','1963-09-12',36.0824814,74347,'ba4e4450-50c8-467e-ac3e-c1879737b35b',2392,-94.78128149999999,'463210 East 594 Road','OK','maud-upton@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-15T07:10:02.480Z','Facebook','Wilhelm Hintz','Opheim','1988-02-29',48.889109,59250,'36053f45-b655-4046-a554-82286a6c31a5',2393,-106.46857,'247 Roanwood Road','MT','wilhelm-hintz@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-27T23:23:13.726Z','Organic','Grace Brown','Timmonsville','1958-12-13',34.2245448,29161,'8eed7d46-d5d3-455d-8587-79ea16465a9f',2394,-79.9830906,'1720 Country Manor Road','SC','grace-brown@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-01T01:56:31.163Z','Affiliate','Brennan Olson','Birnamwood','1992-10-10',44.9538531,54414,'3f6cc4df-3a8e-48a7-a365-88d14ac4f41d',2395,-89.07141879999999,'16480 Hemlock Road','WI','brennan-olson@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-25T01:38:40.490Z','Twitter','Halie Berge','Silver City','1999-07-18',33.0803727,88061,'e5a84e87-8c82-4c6e-833e-c4d345635875',2396,-108.4894079,'535 Turkey Creek Road','NM','berge-halie@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-13T01:53:21.279Z','Facebook','Jackeline Hane','Big Timber','1974-08-14',45.780511,59011,'666012c8-d8da-483a-9f73-018b0ce3fe17',2397,-110.115136,'398 North Yellowstone Trail Road','MT','jackeline.hane@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-26T23:01:49.246Z','Google','Otha Kiehn','Gatesville','1992-07-19',31.565726,76528,'c4e2d90c-fa3a-4f54-8b90-a1372a2e47ed',2398,-97.78056699999999,'820 Cr 239','TX','kiehn.otha@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-03T21:04:19.804Z','Affiliate','Janae Bahringer','Midlothian','1997-08-23',37.5001623,23114,'ea385d30-d0b8-4dd7-8234-d5e13d191ab9',2399,-77.654427,'112-208 Coalfield Road','VA','janae.bahringer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-26T08:34:09.172Z','Twitter','Rocio Gerhold','Glencoe','1986-06-30',33.4192279,88324,'343f2b29-1bd9-462c-a803-0f6ed5fc6b23',2400,-105.416806,'27587 U.S. 70','NM','gerhold.rocio@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-01T01:45:50.114Z','Organic','Judy Maggio','Sitka','1976-01-21',57.0565648,99835,'951f7db5-33cc-4434-8dda-c568dd645d7f',2401,-135.3704941,'1190 Seward Avenue','AK','maggio.judy@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-19T20:30:51.527Z','Facebook','Rosalyn Price','Caliente','1990-02-10',37.6143574,89008,'f5a9fe16-b409-4a1d-8292-584b42b95ee0',2402,-114.4812157,'600 Clover Creek Road','NV','price-rosalyn@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-29T16:09:34.206Z','Affiliate','Deven Brekke','Marine City','1960-04-21',42.669734,48039,'954d88df-9baa-48e3-b097-ae5ba180c824',2403,-82.57851099999999,'7882 Morrow Road','MI','deven.brekke@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-25T15:16:28.943Z','Affiliate','Werner Koepp','Algona','1958-06-24',43.1411556,50511,'1ff50844-c3c8-4028-ae05-56be438ea555',2404,-94.1562886,'1514-1568 260th Street','IA','koepp-werner@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-26T12:18:54.481Z','Twitter','Lazaro Rodriguez','Shelby','1960-11-22',35.4250248,28150,'32733676-eb46-4172-9b2f-b81d608cec31',2405,-81.5005142,'4632 Fallston Road','NC','rodriguez-lazaro@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-30T16:15:45.544Z','Affiliate','Clay Leannon','Gatesville','1989-03-22',31.2472719,76528,'d511b87e-4ffc-4358-95b0-221ff91f055c',2406,-97.5642558,'5690 Farm to Market 184','TX','leannon-clay@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-22T22:26:27.149Z','Organic','Elijah Rohan','Woodbury','1978-04-14',41.54929,06798,'ce2067a0-57c2-424a-86a5-ecab40c73bc8',2407,-73.2168571,'98-108 Judson Avenue','CT','elijah-rohan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-13T00:53:20.646Z','Google','Blake Jast','Cleveland','1997-04-06',35.225912,37312,'a39212de-44da-4ade-88dd-b107366838f2',2408,-84.789648,'637 Dry Valley Road Northeast','TN','jast.blake@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-28T08:35:46.474Z','Twitter','Karl Hansen','Westby','1979-01-19',48.91047709999999,59275,'12dba0ed-62f4-429f-89a3-2f967be3b236',2409,-104.1266629,'201-363 McElroy Road','MT','hansen-karl@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-18T00:31:34.770Z','Affiliate','Sandrine Herman','Harrisonburg','1993-12-01',38.5357658,22802,'76631904-55a2-4970-aaf4-eb6da15dddf6',2410,-78.74227309999999,'1358 Warner Lane','VA','sandrine-herman@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-23T05:30:11.409Z','Affiliate','Tyrel Beatty','Dawson','1985-09-04',31.7556515,39842,'4ed79f8c-2822-4b4e-9a6e-53ad80270e13',2411,-84.3729352,'1605-1611 Sellers Road','GA','tyrel-beatty@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-24T01:56:30.652Z','Facebook','Ashton Beier','Elizabethtown','1993-03-11',34.6606528,28337,'8cc821a1-5c13-42b3-ae23-d9d48bac2cb0',2412,-78.6013504,'852 Smith and Hair Road','NC','beier.ashton@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-23T15:08:42.399Z','Facebook','Twila Turcotte','Lewisburg','1966-03-23',35.4922289,37091,'ab99e4b6-0e97-44a2-9e33-15e5c65d87f2',2413,-86.82591479999999,'1797-1927 New Columbia Highway','TN','turcotte-twila@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-18T23:04:45.294Z','Affiliate','Dante Lesch','Statesville','1967-07-24',35.819588,28625,'e67aa0e1-d580-43e2-946a-98752226c82f',2414,-80.92777199999999,'2097 Old Wilkesboro Road','NC','dante.lesch@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-26T14:10:43.572Z','Facebook','Mikel Johns','Skaneateles','1975-07-03',42.826871,13152,'835c3e6d-aae5-45a7-8c15-3242cbc6c0ec',2415,-76.36948699999999,'5625 Mack Road','NY','johns-mikel@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-09T14:04:56.008Z','Google','Emery Gerlach','Tupelo','1991-06-28',34.36168,38804,'4cc6be2e-691f-465f-9ee9-c4c8d99c59d7',2416,-88.8239395,'100-198 Road 1','MS','emery.gerlach@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-10T22:19:20.433Z','Organic','Krystal Mills','South Fork','1979-07-04',37.685311,81154,'a8b77e54-9084-4a96-b170-410e92bc310f',2417,-106.6649902,'1077-1487 Colorado 149','CO','krystal.mills@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-03-24T06:30:23.731Z','Affiliate','Brooks Altenwerth','Twin City','1988-04-27',32.54768,30471,'7039f4cc-377b-4200-b754-4b6ef2db0a43',2418,-82.0425238,'41-51 Georgia 121','GA','altenwerth.brooks@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-13T02:36:32.392Z','Twitter','Kayden Grady','Abilene','1960-04-18',38.7840047,67410,'a03481a0-d227-41a4-be1f-5b2169640615',2419,-97.15234319999999,'1283-1293 1300 Avenue','KS','grady.kayden@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-24T05:26:38.015Z','Organic','Chelsey Schaefer','Miller','1981-04-21',37.285231,65707,'340f0d84-d1ea-44a3-9498-42408cda4eaa',2420,-93.7755416,'363 State Highway WW','MO','chelsey-schaefer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-26T07:50:21.776Z','Organic','Prince Schowalter','Elberton','1987-04-18',34.0449385,30635,'a48754e0-959c-4420-9d1d-f9b9ceb2f5e3',2421,-82.6381945,'1310 Bobby Brown State Park Road','GA','prince-schowalter@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-01T10:54:02.756Z','Organic','Susana Stiedemann','Etna','1965-09-10',41.29878480000001,96027,'7e864c89-b6e7-4dbf-9f58-4402c0669fe9',2422,-123.220365,'27529-27827 Sawyers Bar Road','CA','stiedemann-susana@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-20T08:20:37.179Z','Google','Felipe Johnston','Tunkhannock','1966-11-10',41.44222329999999,18657,'b3b1d475-f48f-44b3-af4d-8e647719a162',2423,-75.8678892,'1515 Keelersburg Road','PA','felipe-johnston@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-05T14:43:45.071Z','Affiliate','Mekhi O''Conner','Spencer','1996-01-04',36.60397409999999,24165,'4613833f-38a8-4061-83a3-eb1118f56495',2424,-80.0159182,'945 Old Well Road','VA','conner.o.mekhi@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-26T10:04:20.720Z','Twitter','Dustin Armstrong','Hydro','1965-06-25',35.5220545,73048,'a1c691a0-1a0f-4bfa-b0a4-40af9c18c6bd',2425,-98.5358859,'3006 County Street 2500','OK','dustin.armstrong@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-12T22:29:43.431Z','Facebook','Jonas O''Keefe','Superior','1964-12-15',47.1815654,59872,'af13c470-d4ac-48bc-8622-e8b32a9dd1c0',2426,-114.93413,'16-62 Thompson Creek Road','MT','keefe-o-jonas@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-30T19:29:22.142Z','Facebook','Jacey Dach','Weiser','1973-09-01',44.2569619,83672,'7c0e7da2-ca7b-41fd-b34d-752015d15d6b',2427,-117.0542315,'729 Jonathan Road','ID','jacey.dach@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-25T21:11:55.987Z','Google','Magnus Carroll','La Grange','1959-07-24',29.8632357,78945,'10d390f4-70d5-43f8-8da0-d259ab9bf5e8',2428,-96.86068159999999,'1900-2012 George Road','TX','magnus.carroll@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-19T04:18:11.734Z','Google','Demetris Schmeler','Interior','1960-06-12',43.7119068,57750,'4e121133-b639-4946-83f7-9c6fe9088333',2429,-102.1301612,'19651 South Dakota 44','SD','schmeler.demetris@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-23T19:15:03.471Z','Google','Nestor Hansen','Snowmass','1990-10-13',39.277648,81654,'4875e44a-0909-4507-907b-762275c83440',2430,-106.962145,'4305 Snowmass Creek Road','CO','hansen-nestor@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-23T21:51:01.368Z','Twitter','Melissa Mertz','Hereford','1972-02-24',34.7461054,79045,'baa58150-a609-4be0-bfe9-cb1a1496c93e',2431,-102.4947431,'3240 U.S. 60','TX','mertz.melissa@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-09-17T02:35:29.964Z','Facebook','Clay Johnston','Maynardville','1966-06-02',36.290432,37807,'eab6de63-4d5c-4f85-bb0b-c0d02f4c4cca',2432,-83.817886,'1878 Hickory Valley Road','TN','johnston.clay@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-11T08:18:14.560Z','Affiliate','Taurean Wolf','Cosmos','1998-10-10',44.9100772,56228,'7a07cc6d-b2b8-470a-9f8f-099c8b1096ff',2433,-94.6225424,'11258 570th Avenue','MN','taurean-wolf@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-27T23:38:20.343Z','Facebook','Domenico Ritchie','Cash','1979-01-19',35.8832669,72421,'277a2560-194f-4a16-9201-8f38a4a51e82',2434,-90.98008,'8399 CR 194','AR','ritchie-domenico@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-07T21:39:25.002Z','Google','Margot Lesch','Valentine','1963-11-15',42.5763337,69201,'9dcc915f-4cb9-4593-ade7-b8ce9786607f',2435,-101.1235419,'18-30 302nd Avenue','NE','lesch.margot@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-10T00:37:07.478Z','Twitter','Kayley Powlowski','Saint Helena Island','1994-01-20',32.3376667,29920,'b4fbe42c-58e7-44b8-a488-55b3c6fb0983',2436,-80.528605,'1 Whitams Island','SC','kayley.powlowski@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-19T19:43:56.732Z','Twitter','Carmelo Kilback','Cotopaxi','1994-07-01',38.2782884,81223,'7c4f6a36-dd8d-482b-8f55-dda7eb5de12a',2437,-105.6437323,'710 Lake Creek Lane','CO','kilback-carmelo@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-23T07:49:26.268Z','Organic','Antone Bechtelar','Embarrass','1975-07-29',47.605072,55732,'18e77261-a56b-492b-af1d-0326b985a5d6',2438,-92.3040578,'6500-6698 Giants Ridge Road','MN','bechtelar.antone@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-23T08:54:01.173Z','Google','Jeramie Pfannerstill','Mineola','1996-12-05',32.6444029,75773,'6e30460e-0d83-4e72-b721-330d9fdbc55a',2439,-95.56368700000002,'25678 County Road 457','TX','pfannerstill-jeramie@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-21T00:00:18.613Z','Twitter','Wendell Becker','Birch Run','1969-05-16',43.244654,48415,'8fb51406-0343-4984-89af-174dde9463fe',2440,-83.739317,'10787 Rose Lane','MI','wendell-becker@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-29T04:35:35.449Z','Twitter','Joelle Ullrich','Rapidan','1958-07-05',38.3867667,22733,'addbe0aa-33be-4f96-aefe-d722b48eaf8e',2441,-78.0820758,'23123-23159 Roland Road','VA','joelle-ullrich@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-28T08:12:10.167Z','Facebook','Ubaldo Gulgowski','Ukiah','1981-09-25',39.062332,95482,'8d5823d0-6128-4ed5-8dde-40ab1ba63f16',2442,-123.243362,'6091 Boonville Road','CA','gulgowski.ubaldo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-20T15:26:44.046Z','Google','Regan Corkery','Aurora','1993-10-31',42.7312246,13026,'2e6fa086-85a2-43a9-8ae0-dcddf9efed6f',2443,-76.7093886,'18 Sunset Beach Road','NY','corkery-regan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-09T08:10:35.542Z','Google','Karley Hermann','Fields','1965-02-06',42.1696132,97710,'c784b67f-a0a0-4b06-94ea-ffba2a6ccc24',2444,-118.5709799,'44289 Whitehorse Ranch Lane','OR','hermann.karley@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-09T11:33:04.700Z','Facebook','Haylee Hessel','Hot Springs Village','1969-12-09',34.61839,71909,'cd3565f7-1a6a-4f0b-aabe-785c70fef8a7',2445,-92.8443247,'24141 Old Hot Springs Highway','AR','hessel-haylee@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-10-06T02:42:35.225Z','Facebook','Brendon Hettinger','Pine Bluffs','1979-12-11',41.2517668,82082,'d27fdcb4-0dff-44e7-980f-a25e028f5673',2446,-104.2248914,'6255 County Road 213','WY','hettinger-brendon@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-08T09:01:42.115Z','Affiliate','Arne Mayer','Augusta','1979-01-02',33.485464,30904,'b97bba3c-c4c9-4e6e-937c-88455e036537',2447,-82.0220871,'501 Delano Street','GA','mayer.arne@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-18T11:31:07.574Z','Organic','Alize Keebler','Clayton','1995-12-02',39.9526071,62324,'a43e0ad0-3cd0-40e4-b50e-301a52750546',2448,-90.9820034,'2701-2799 North 1353rd Lane','IL','keebler-alize@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-06-24T13:11:07.084Z','Affiliate','Quinn Metz','Douglas','1961-08-09',43.0633923,82633,'6843b889-30b8-4149-877e-99c2868a0258',2449,-105.565439,'28 Highland Loop Road','WY','metz.quinn@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-27T11:31:53.730Z','Twitter','William Terry','Pingree','1982-08-16',47.1533778,58476,'50d7c682-3f6e-4cac-96af-1d35e7c41506',2450,-99.0071076,'7001-7089 18th Street Southeast','ND','terry-william@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-21T23:52:19.691Z','Facebook','Brett Rogahn','College Station','1973-04-14',30.557063,77845,'0696801a-9583-47e9-88c6-af37750e8a0f',2451,-96.30854199999999,'13546 Alacia Court','TX','brett-rogahn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-21T10:45:37.174Z','Twitter','Nicholaus Brakus','Crawfordsville','1962-03-30',40.0936749,47933,'4f749ec0-e8b3-44d7-930b-df875f83d545',2452,-86.92878619999999,'1435 West 400 North','IN','nicholaus.brakus@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-28T02:17:31.405Z','Facebook','Rozella Tremblay','Pittsburgh','1973-02-09',40.429191,15220,'48c2e7b9-7476-4b88-86f3-6862afb44da4',2453,-80.038403,'666 Hestor Drive','PA','rozella-tremblay@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-07T07:51:53.572Z','Organic','Mabel Grimes','Twisp','1970-08-06',48.306407,98856,'7c0e6952-6ef1-4596-a173-94659daf9e47',2454,-120.0517531,'1 Benson Creek Drive','WA','mabel-grimes@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-14T18:07:01.542Z','Google','Dana Kozey','Bells','1990-12-26',33.6578638,75414,'4afb8f59-21cf-4c82-a9b6-c395f7d68448',2455,-96.4607095,'435 Craft Road','TX','dana.kozey@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-05T16:21:43.410Z','Affiliate','Susanna Luettgen','Dearborn','1980-08-17',42.2964941,48120,'b5d470da-0bc4-4905-8b56-117ecfb20407',2456,-83.148913,'12821 Dix','MI','susanna.luettgen@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-09-02T03:09:42.234Z','Google','Princess Tillman','Topton','1993-11-18',35.24744099999999,28781,'63a6c2dc-dea4-4e9c-aa64-c2705022b24e',2457,-83.625271,'254 Otter Creek Road','NC','princess-tillman@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-20T07:03:09.118Z','Facebook','Mazie Nienow','The Dalles','1965-01-01',45.5650285,97058,'9042b9a4-e04d-4912-800e-e280ef28b3eb',2458,-121.0089962,'4757-5201 Emerson Loop Road','OR','mazie.nienow@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-02T23:22:57.124Z','Facebook','Sterling Yundt','Wayne','1966-11-05',42.1992991,68787,'1e660a35-308d-4bd4-8026-d33da3898491',2459,-97.03739809999999,'85346-85398 575 Avenue','NE','sterling.yundt@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-09T19:54:32.349Z','Facebook','Shad Bernhard','Manitowish Waters','1979-04-19',46.15602,54545,'dd7bc2fd-e2aa-485c-91d5-ab22adaa1d17',2460,-89.907809,'14077 East Circle Lily Road','WI','shad.bernhard@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-20T19:15:31.237Z','Organic','Kim Cormier','Waverly','1978-04-18',44.98760499999999,55390,'f710a4cc-1ab9-4f6c-8a5e-957496fb448a',2461,-93.990574,'11500 Ferman Avenue Southwest','MN','kim-cormier@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-11T05:55:44.090Z','Twitter','Dean Anderson','Harrisonville','1992-06-07',38.563198,64701,'5cd36c72-b5c2-4fe8-a02c-e3beda7dc936',2462,-94.270044,'28909 South Kircher Road','MO','anderson-dean@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-02-25T21:42:49.217Z','Facebook','Domenic Keebler','Abilene','1996-08-01',32.5621624,79601,'5a0fd52f-facb-4278-8251-9845fd6cd21d',2463,-99.7002526,'822 Comanche Trail','TX','keebler-domenic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-02-18T05:20:55.047Z','Twitter','Eulah Gorczany','Yorktown Heights','1981-09-14',41.2800528,10598,'0ad3ccbf-b3e6-4b89-ab9f-e967367c01c3',2464,-73.8347881,'1510-1580 Whitehill Road','NY','gorczany-eulah@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-06-11T04:03:40.624Z','Google','Madisyn Braun','Salineville','1984-01-23',40.593251,43945,'9af87555-0426-4000-a1fc-f47f1b66309a',2465,-80.84441,'628 Ohio 164','OH','braun.madisyn@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-07T11:25:35.331Z','Organic','Jammie Gulgowski','Waynesboro','1994-06-08',33.0242556,30830,'8985f34a-c004-4ec9-83fc-3222e0484ba0',2466,-81.9565897,'501-899 Idlewood Road','GA','gulgowski-jammie@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-05-01T09:49:48.275Z','Twitter','Lyda Predovic','Bishopville','1971-01-26',34.3102816,29010,'32c0cba9-1fce-4d7e-8d02-6e24ba70669b',2467,-80.251449,'681 Newsome Road','SC','lyda.predovic@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-18T13:31:23.862Z','Organic','Jesus Marquardt','Winchester','1961-12-18',39.332676,22603,'c97d5739-546a-4656-bd62-4a7887971b02',2468,-78.240403,'2616 Siler Road','VA','jesus-marquardt@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-01-25T06:49:02.222Z','Affiliate','Mylene Sporer','Milton-Freewater','1973-05-05',45.96328279999999,97862,'ab8b4b2c-c2af-4a8f-81e7-8b7affa01c8f',2469,-118.3866197,'84325 Oregon 11','OR','mylene-sporer@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-20T06:28:18.827Z','Twitter','Naomi Waelchi','Wellington','1959-09-23',45.0264787,04942,'836a6420-02dc-4371-b755-9cafc4e6c103',2470,-69.599564,'24 Cross Road','ME','naomi-waelchi@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-03T14:59:57.859Z','Organic','Jasen Stanton','Warsaw','1980-10-11',41.3111215,46582,'794e4215-f00c-48ce-84ff-0308bdb08f18',2471,-85.8015207,'2071-2199 East Riverside Drive','IN','jasen.stanton@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-10-22T07:47:32.931Z','Affiliate','Alberto Gulgowski','Magnolia','1983-10-21',37.4179811,42757,'a6a2109e-be9c-44d9-a278-4ed1fba21e5a',2472,-85.7573845,'12280 North Jackson Highway','KY','alberto.gulgowski@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-05-02T11:48:03.052Z','Affiliate','Boris Boyer','Ashfield','1967-06-22',42.484824,01330,'9e8756f7-e31c-49e1-8140-aefe07e2959d',2473,-72.8480639,'1876 Spruce Corner Road','MA','boyer.boris@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-04-24T12:55:21.578Z','Twitter','Ubaldo Rath','Rio Rancho','1964-02-12',35.2600134,87124,'e4748af6-f334-4ff7-83c0-95fda720c78b',2474,-106.7031468,'125-127 2nd Street Southeast','NM','rath-ubaldo@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-12-22T07:01:29.001Z','Google','Ophelia Herzog','Los Gatos','1985-11-26',37.155673,95033,'6084ca6c-48d8-4d17-9854-4c9557a9077f',2475,-122.024959,'1000 Wilderfield Road','CA','herzog-ophelia@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-11-16T12:38:40.997Z','Google','Madalyn Roob','Ely','1968-11-26',47.9367019,55731,'e51ec050-9605-4360-8281-98fe80a8a162',2476,-91.4237666,'3191 Fernberg Road','MN','madalyn-roob@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-01T01:09:23.310Z','Organic','Wilhelmine Ullrich','Buda','1970-10-04',30.114453,78610,'7c2613c2-f18a-4698-9c5f-cd442f4e86e8',2477,-97.9510375,'8700 Farm to Market 967','TX','ullrich-wilhelmine@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-02-27T20:46:41.700Z','Twitter','Kailyn Leuschke','Forestburg','1985-09-03',44.1517741,57314,'fadb1cd9-d2b9-4596-9f27-e97ff8ac502d',2478,-98.0955537,'22310 406th Avenue','SD','kailyn.leuschke@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-04-22T14:45:26.341Z','Facebook','Demario Tromp','Pearsall','1982-07-14',28.8448101,78061,'4e902eac-0fd1-4672-b3c7-722177921f4e',2479,-99.0027399,'5056-5638 Keystone Road','TX','tromp-demario@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-04-12T03:02:56.584Z','Affiliate','Germaine Brakus','Pine Mountain','1971-10-06',32.918188,31822,'6d988950-59fa-4a08-8073-8e2962d1fad4',2480,-84.89107200000001,'493 Old Chipley Road','GA','germaine-brakus@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-08-22T07:44:19.209Z','Google','Sasha Nolan','Raleigh','1996-09-10',35.872716,27615,'c05d461c-46a4-4c73-bc47-cfee1edc745e',2481,-78.63470640000001,'409 Westbrook Drive','NC','sasha.nolan@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-06-25T12:07:30.869Z','Organic','Ruthe Goldner','Chapel Hill','1984-11-23',35.9351531,27516,'91d96815-e968-4339-be69-ea8d1d633966',2482,-79.0572364,'875-893 Estes Drive Extension','NC','goldner.ruthe@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-07-23T04:11:49.451Z','Google','Lila Roob','Hazen','1998-06-02',34.8583854,72064,'f620e422-76f7-4809-9e56-9998e4e24ddb',2483,-91.6012164,'2993 Arkansas 249','AR','roob-lila@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2019-04-14T02:53:58.813Z','Google','Adrain Kilback','Armonk','1965-10-13',41.1521072,10504,'e58a5862-eeaa-469f-a92c-9d28b09be62e',2484,-73.7005391,'99 Pioneer Trail','NY','adrain-kilback@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-07-14T16:21:57.848Z','Affiliate','Alverta Sipes','Allakaket','1986-11-06',66.5295218,99720,'e97a2c27-0caa-4a42-a945-a293732ee0ff',2485,-152.6634842,'21 Tanana-Allakaket Winter Trail','AK','alverta.sipes@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-05-07T12:14:50.596Z','Google','Emmalee Goodwin','Kenney','1995-05-22',40.1315377,61749,'4d45ab59-ea0c-4ed7-85c3-e7ace72b3751',2486,-89.09725139999999,'2499 Bungtown Road','IL','emmalee.goodwin@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-02T21:40:12.085Z','Affiliate','Effie Wolff','Munfordville','1989-02-28',37.3424648,42765,'75f75d30-1e16-46b0-8c75-89e90b4b1652',2487,-86.01359289999999,'770 Cave Hill Road','KY','effie.wolff@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-09-02T20:15:28.474Z','Facebook','Alberta Kutch','Hamden','1967-12-07',39.2092304,45634,'1618af3e-fd4f-4e6f-b686-4a3cb73ab2e9',2488,-82.4539298,'35887 State Route 324','OH','alberta-kutch@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-18T12:43:29.925Z','Affiliate','Enos Morissette','Eure','1970-12-10',36.456136,27935,'26ab60d4-fe2a-4f0d-91f1-3760e8b60dd9',2489,-76.87827,'70 Tinkham Road','NC','morissette-enos@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-07-16T12:03:37.853Z','Facebook','Macy Kub','Chinook','1960-03-01',48.3779906,59523,'8fea78c2-f493-4d4a-950f-ee236f117396',2490,-109.2142716,'16475 Cleveland Road','MT','kub.macy@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-10-29T00:43:30.020Z','Affiliate','Annamarie Block','Bixby','1969-04-02',37.6707712,65439,'ad3c5a45-f988-4163-ba14-77492e9e8a0e',2491,-91.1372466,'1465 Ponderosa','MO','annamarie.block@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-01-05T05:11:42.820Z','Facebook','Doris Fadel','Grand Island','2000-03-24',40.8572074,68801,'ed5e2b7f-f09b-4ef1-8fc6-c57616a52c3b',2492,-98.3295741,'1099 East Wildwood Drive','NE','fadel-doris@hotmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-08-30T14:40:13.789Z','Twitter','Edyth Emard','Lyons','1997-11-30',41.9850861,68038,'0e06758d-b3e8-43ea-8873-ced144259590',2493,-96.4640027,'2160 U.S. 77','NE','edyth-emard@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-12-12T04:31:00.441Z','Twitter','Tamara Pagac','Wessington','1981-12-11',44.5762138,57381,'24f8987e-7fa9-4eac-9b18-75f06ff8d566',2494,-98.681271,'37500-37598 194th Street','SD','tamara-pagac@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-12-14T14:18:36.711Z','Affiliate','Alfonzo Monahan','Big Spring','1998-01-14',32.2830071,79720,'1dcfc14d-19cb-4f15-9499-41605958fb1e',2495,-101.4354302,'104 Broken Bow Road','TX','alfonzo.monahan@yahoo.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-11-26T04:53:41.010Z','Affiliate','Jettie Yost','Yuma','1988-05-15',39.9008824,80759,'4f3de414-f0a7-4cf1-80b6-dad18f5cf1be',2496,-102.6886584,'22000-22998 County Road G','CO','jettie-yost@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-01-05T02:58:59.217Z','Organic','Sadye Gibson','Lewes','1986-06-12',38.6578676,19958,'b147382c-29d2-4801-a606-3d1d8f840082',2497,-75.1426649,'23402 Camp Arrowhead Road','DE','sadye.gibson@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2016-08-31T11:49:59.777Z','Affiliate','Verner Hamill','Milford','1962-07-29',38.32789959999999,84751,'45afa7ae-0df9-42dc-ae22-6ea667085ef4',2498,-113.0122461,'186 4500 South','UT','verner.hamill@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2017-03-24T09:27:51.686Z','Twitter','Cloyd Beer','Spokane','1964-08-13',47.726737,99217,'0a25bd21-90ac-461d-903f-8ecf6dfc4af1',2499,-117.19418,'15708 East Lincoln Road','WA','cloyd-beer@gmail.com'); +INSERT INTO users(created_at,source,name,city,birth_date,latitude,zip,password,id,longitude,address,state,email) VALUES ('2018-03-30T18:16:16.900Z','Google','Kenny Schmidt','Verona','1962-02-23',38.821582,41092,'16abfe77-ec60-44cb-a749-3ea1e8845d06',2500,-84.659021,'14933 Walton-Verona Road','KY','kenny-schmidt@yahoo.com'); diff --git a/yb_release_manifest.json b/yb_release_manifest.json index 8438e012c4b7..0f90a61b49a4 100644 --- a/yb_release_manifest.json +++ b/yb_release_manifest.json @@ -27,7 +27,12 @@ "lib" : ["thirdparty/installed/common/cqlsh/lib/*"], "pylib" : ["thirdparty/installed/common/cqlsh/pylib/*"], "share": [ - "$BUILD_ROOT/share/initial_sys_catalog_snapshot" + "$BUILD_ROOT/share/initial_sys_catalog_snapshot", + "sample/orders.sql", + "sample/products.sql", + "sample/reviews.sql", + "sample/schema.sql", + "sample/users.sql" ], "%symlinks%": { "bin/ysqlsh": "../postgres/bin/ysqlsh",