-
Notifications
You must be signed in to change notification settings - Fork 0
/
shopmedb_dump.sql
997 lines (870 loc) · 430 KB
/
shopmedb_dump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
-- MySQL dump 10.13 Distrib 8.0.40, for Win64 (x86_64)
--
-- Host: localhost Database: shopmedb
-- ------------------------------------------------------
-- Server version 8.0.40
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `addresses`
--
DROP TABLE IF EXISTS `addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `addresses` (
`id` int NOT NULL AUTO_INCREMENT,
`customer_id` int DEFAULT NULL,
`country_id` int DEFAULT NULL,
`first_name` varchar(45) NOT NULL,
`last_name` varchar(45) NOT NULL,
`phone_number` varchar(15) NOT NULL,
`address_line_1` varchar(64) NOT NULL,
`address_line_2` varchar(64) DEFAULT NULL,
`city` varchar(45) NOT NULL,
`state` varchar(45) NOT NULL,
`postal_code` varchar(10) NOT NULL,
`default_address` bit(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKn3sth7s3kur1rafwbbrqqnswt` (`country_id`),
KEY `FKhrpf5e8dwasvdc5cticysrt2k` (`customer_id`),
CONSTRAINT `FKhrpf5e8dwasvdc5cticysrt2k` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
CONSTRAINT `FKn3sth7s3kur1rafwbbrqqnswt` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `addresses`
--
LOCK TABLES `addresses` WRITE;
/*!40000 ALTER TABLE `addresses` DISABLE KEYS */;
INSERT INTO `addresses` VALUES (1,5,234,'Tobie','Abel','19094644166','4213 Gordon Street','','Chino','California','91710',_binary ''),(2,5,106,'Adri','Hora','04426585493','28, Ebenezer Street, Pudur, Ambattur','','Chennai','Tamil Nadu','600053',_binary '\0'),(3,7,199,'Chan','Yi','068900012','28 Ayer Rajah Cresent #05-01','Ayer Rajah Industrial Estate 1399','Singapore','','139959',_binary '\0'),(4,34,234,'Robert','Martin','703-325-3192','92 Golf Course Drive','','Alexandria','Virginia','22303',_binary '\0'),(5,18,234,'Juanita','Mason','608-827-2230','256 Irish Lane','','Verona','Wisconsin','53593',_binary '\0'),(6,16,199,'Bao','Shao','068601449','30 Tuas Ave 2, 639461','','Singapore','','639461',_binary '\0'),(7,14,106,'Hastimukha','Krishna','02224033183','44 New Nehru Nagar Hsg Society Gr Floor','Feet Road, Opp Santac','Mumbai','Maharashtra','400017',_binary ''),(8,14,106,'Varun','Ramkissoon','01126910573','B 9, Lajpat Nagar','',' Bangalore','Karnataka','110024',_binary '\0'),(9,25,242,'Diep','Ngoc Hao','0909102509','56 Cu Lao St., Ward 2','Phu Nhuan District','Ho Chi Minh city','','71011',_binary '\0'),(10,4,39,'Bryan','Rodriquez','905-513-6645','1331 Harvest Moon Dr','','Unionville','Ontario','L3R 0L',_binary '\0');
/*!40000 ALTER TABLE `addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `articles`
--
DROP TABLE IF EXISTS `articles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `articles` (
`id` int NOT NULL AUTO_INCREMENT,
`alias` varchar(500) NOT NULL,
`content` longtext NOT NULL,
`published` bit(1) NOT NULL,
`title` varchar(256) NOT NULL,
`type` tinyint DEFAULT NULL,
`updated_time` datetime(6) DEFAULT NULL,
`user_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKlc3sm3utetrj1sx4v9ahwopnr` (`user_id`),
CONSTRAINT `FKlc3sm3utetrj1sx4v9ahwopnr` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `articles`
--
LOCK TABLES `articles` WRITE;
/*!40000 ALTER TABLE `articles` DISABLE KEYS */;
INSERT INTO `articles` VALUES (1,'about','<div>Founded in 2012, Shopme Group is Southeast Asia’s leading\r\neCommerce platform. With a presence in six countries – Indonesia, Malaysia, the\r\nPhilippines, Singapore, Thailand and Vietnam – we connect this vast and diverse\r\nregion through our technology, logistics and payments capabilities. Today, we\r\nhave the largest selection of brands and sellers, and by 2030, we aim to serve\r\n300 million customers. In 2016, Shopme became the regional flagship of the\r\nAlibaba Group, and is backed by Alibaba’s best-in-class technology\r\ninfrastructure.<o:p></o:p></div>\r\n\r\n<div>Shopme\'s constantly evolving technology, logistics and\r\npayments infrastructure connects this vast and diverse region, and offers\r\nSoutheast Asia a shopping experience that is safe, seamless and enjoyable. At Shopme,\r\nnothing stands still. As the demands of discerning shoppers and ambitious\r\nretailers continue to grow, we’re always a few steps ahead.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><b><span style=\"font-size:12.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">OUR CORE\r\nPILLARS:<o:p></o:p></span></b></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><!--[if !supportLists]--><b><span style=\"font-size:14.0pt;mso-bidi-font-size:\r\n11.0pt;line-height:107%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">1.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span></b><!--[endif]--><b><span style=\"font-size:14.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">Logistics\r\nWE GET IT THERE<o:p></o:p></span></b></div>\r\n\r\n<div>With end-to-end logistics capabilities and complete control\r\nover our supply chain, virtually any product is a click away. We have\r\nfulfillment centres across 17 Southeast Asian cities, and our investment in\r\nwarehouses, sorting centres, and digital technologies complement our partner\r\nnetwork and our cross-border and last mile arrangements in each country.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><!--[if !supportLists]--><b><span style=\"font-size:16.0pt;mso-bidi-font-size:\r\n11.0pt;line-height:107%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">2.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span></b><!--[endif]--><b><span style=\"font-size:16.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">Technology\r\n- A SMARTER WAY TO SHOP<o:p></o:p></span></b></div>\r\n\r\n<div>At Shopme, we harness both existing and emerging\r\ntechnologies to redefine the retail experience. Leveraging data in real time\r\nallows us to quickly adapt to changing demands and conditions. We connect\r\nconsumers to brands, create customised experiences, and have evolved into a\r\nretail destination that customers come to for both shopping and entertainment.\r\nAnd we continue to push the boundaries. Project Voyager, our technology stack\r\njointly developed with Alibaba, powers Shopme with the most scalable and\r\ncompetitive product and technology solutions for the next decade.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><!--[if !supportLists]--><b><span style=\"font-size:16.0pt;mso-bidi-font-size:\r\n11.0pt;line-height:107%;mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin\">3.<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span></b><!--[endif]--><b><span style=\"font-size:16.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">Payments -\r\nSAFE, SEAMLESS TRANSACTIONS<o:p></o:p></span></b></div>\r\n\r\n<div>Ensuring secure and seamless transactions guides the\r\ndevelopment of Southeast Asia’s most secure payments and financial services\r\ninfrastructure. In a region still at varying stages of e-payment and eCommerce\r\nadoption, we’ve evolved a suite of options that cater to existing preferences\r\nwhile easing customers into digital payments through intuitive solutions they\r\ncan trust.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div>At Shopme, people are at the heart of everything we do. Our\r\npassionate leadership team embodies our fearless and forward-thinking spirit,\r\nand drives our vision to revolutionise retail.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>',_binary '','About Shopme',0,'2022-04-18 15:35:32.220000',6),(4,'shipping','<div><div><b>[Buyer Basics] Shipping Fee Rates With Shopme Supported\r\nLogistics</b><o:p></o:p></div>\r\n\r\n<div><b>[Buyer Basics] How Does Free Shipping Work?</b><o:p></o:p></div>\r\n\r\n<div><span style=\"font-size: 10pt; line-height: 107%; font-family: Helvetica, sans-serif; color: black; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Free\r\nShipping is a program initiated by Shopme with shipping rebates for Shopme\r\nsupported shipping channels.</span><span style=\"font-size:10.0pt;line-height:\r\n107%;font-family:"Helvetica",sans-serif\"><br>\r\n<br>\r\n<span style=\"color: black; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">The free\r\nshipping fee will be automatically deducted on the checkout page.</span><br>\r\n<br>\r\n<span style=\"color: black; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">For a\r\nsmooth checkout, please ensure your products are <b>available with\r\nShopme’s supported shipping</b> and <b>minimum spend</b> is met.</span><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div>[UrbanFox] What Is UrbanFox? What Are The Shipping Rates And\r\nParcel Dimensions?<o:p></o:p></div>\r\n\r\n<div>[Ninja Van] How Are Ninja Van Shipping Fees Calculated By Shopme?<o:p></o:p></div>\r\n\r\n<div>[J&T Express] What Are The Shipping Fees For J&T\r\nExpress?<o:p></o:p></div>\r\n\r\n<div>[Speedpost Economy] How Are Speedpost Economy Shipping Fees\r\nCalculated By Shopme?<o:p></o:p></div>\r\n\r\n<div>[Buyer Basics] What Is Shopme Supported Logistics?<o:p></o:p></div>\r\n\r\n<div>[Buyer Basics] When Will I Receive My Order ? What Is The\r\nDelivery Lead Time For My Order?<o:p></o:p></div>\r\n\r\n<div>[J&T Express] How Can I Track My J&T Express Parcel?<o:p></o:p></div>\r\n\r\n<div>[Shipment For Buyer] How Long Will It Take To Deliver An\r\nOverseas Product?<o:p></o:p></div>\r\n\r\n<div>[Shipment For Seller] Why Can’t I Use My Own Fleet/Other\r\nLogistics Provider To Ship Out An Order That Is Already Pre-Assigned To Shopme\r\nIntegrated Logistics?<o:p></o:p></div>\r\n\r\n<div>[Seller Basics] How Should I Pack My Products?<o:p></o:p></div>\r\n\r\n<div>[Ninja Van] What Is The NinjaVan Drop Off Process And Where\r\nAre The Drop Off Service Points?<o:p></o:p></div>\r\n\r\n<div>[Shipment For Seller] Why Can\'t I Print My Airway Bill?<o:p></o:p></div>\r\n\r\n<div>[Buyer Basics] When Can I Expect My Order To Arrive?<o:p></o:p></div>\r\n\r\n<div>[J&T Express] What Would Happen If J&T Express\r\nPersonnel Failed To Show Up On Pick Up Day?<o:p></o:p></div>\r\n\r\n<div>Important News Regarding Singpost Scam<o:p></o:p></div>\r\n\r\n<div>[Buyer Basics] What Are Overseas Products?<o:p></o:p></div>\r\n\r\n<div>[Buyer Basics] How Do I Track Overseas Orders?<o:p></o:p></div>\r\n\r\n<div>[Shipment For Buyer] How Is Ship Out Time Calculated?<o:p></o:p></div></div>',_binary '','Shipping & Delivery',0,'2022-04-18 15:32:29.317000',1),(5,'returns-refunds','<div><div>[ShopmePay Merchant] General Enquiries Regarding ShopmePay\r\nMerchant<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><b>[ShopmePay Merchant]\r\nHow Is The Refund Process For Payments At ShopmePay Offline Merchants?<o:p></o:p></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">There are\r\ntwo options available on how you can get your refund from the merchants.<br>\r\n<br>\r\n<b><u>Option 1</u></b><br>\r\n<br>\r\n1) Customers who paid wrongly to report wrong payment and request refund\r\nfrom Shopme\'s customer service</span><span style=\"font-size:10.0pt;font-family:\r\n"Helvetica",sans-serif;mso-fareast-font-family:"Times New Roman"\"><o:p></o:p></span></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">2)\r\nDocuments required from customer/merchant side:</span><span style=\"font-size:\r\n10.0pt;font-family:"Helvetica",sans-serif;mso-fareast-font-family:"Times New Roman"\"><o:p></o:p></span></div>\r\n\r\n<ul type=\"disc\">\r\n <li class=\"MsoNormal\" style=\"line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\n mso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">Photo\r\n of customer\'s bill receipt issued by merchants (correct amount that user should\r\n pay)</span><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\n mso-fareast-font-family:"Times New Roman"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\n mso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">Photo\r\n of payment received history (actual amount that merchant received)</span><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;mso-fareast-font-family:\r\n "Times New Roman"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\n mso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">Customer\r\n just need to quote the values for the above 2 items in the conversation\r\n with Shopme customer service</span><span style=\"font-size:10.0pt;\r\n font-family:"Helvetica",sans-serif;mso-fareast-font-family:"Times New Roman"\"><o:p></o:p></span></li>\r\n</ul>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">3)\r\nShopmePay will proceed the refund to user with amount (2-a) in step 2</span><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;mso-fareast-font-family:\r\n"Times New Roman"\"><o:p></o:p></span></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black;mso-color-alt:windowtext\">4)\r\nShopmePay will claw back the refunded amount in step 3 in future merchant’s\r\nsettlement<br>\r\n<br>\r\n<b><u>Option 2</u></b><br>\r\n<br>\r\nDirectly get the cash refund from merchants.</span><span style=\"font-size:10.0pt;\r\nfont-family:"Helvetica",sans-serif;mso-fareast-font-family:"Times New Roman"\"><o:p></o:p></span></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div>[Buyer Basics] What Happens If I Do Not Receive My Order?\r\nCan I Ask For A Refund?<o:p></o:p></div>\r\n\r\n<div>[Return Refund] What Should I Do If I Want To Apply For\r\nRefund/Return Request?<o:p></o:p></div>\r\n\r\n<div>[Return Refund] What If My Order Was Cancelled Or Refunded\r\nAnd I Did Not Receive My Voucher Or The Coins That I Spent On The Order.<o:p></o:p></div>\r\n\r\n<div>[Return Refund] When Would My Refund Be Processed And How Long\r\nWill It Take To Receive My Refund?<o:p></o:p></div>\r\n\r\n<div>[Seller Basics] What Should I Do If I Receive A Return\r\nRequest From The Buyer?<o:p></o:p></div>\r\n\r\n<div>[Return Refund] How Do I Return My Wrong/Damaged Item Once\r\nThe Return Request Has Been Confirmed?<o:p></o:p></div>\r\n\r\n<div>[Buyer Basics] How Can I Get The Refund For My Cancelled\r\nOrder?<o:p></o:p></div>\r\n\r\n<div>[Shopme Resolution Centre] How Can We Negotiate With The\r\nSeller Or Buyer Using Shopme Resolution Centre?<o:p></o:p></div></div>',_binary '','Returns and Refunds',0,'2022-05-21 12:14:09.346000',1),(6,'Privacy-Policy','<div><span style=\"font-size: 10pt; line-height: 107%; font-family: Arial, sans-serif; color: rgb(17, 17, 17); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">We know that you care how\r\ninformation about you is used and shared, and we appreciate your trust that we\r\nwill do so carefully and sensibly. This Privacy Notice describes how Shopme.com\r\nand its affiliates (collectively \"Shopme\") collect and process your\r\npersonal information through Shopme websites, devices, products, services,\r\nonline and physical stores, and applications that reference this Privacy Notice\r\n(together \"Shopme Services\"). <strong>By using Shopme Services, you are consenting to the\r\npractices described in this Privacy Notice.<o:p></o:p></strong></span></div><div><span style=\"font-size: 10pt; line-height: 107%; font-family: Arial, sans-serif; color: rgb(17, 17, 17); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><strong><br></strong></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">What Personal\r\nInformation About Customers Does Shopme Collect?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">We collect your personal information in order\r\nto provide and continually improve our products and services.<o:p></o:p></span></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">Here are the types of personal information we\r\ncollect:<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Information\r\nYou Give Us:</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We receive and\r\nstore any information you provide in relation to Shopme Services. You can\r\nchoose not to provide certain information, but then you might not be able to\r\ntake advantage of many of our Shopme Services.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Automatic\r\nInformation:</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We automatically\r\ncollect and store certain types of information about your use of Shopme\r\nServices, including information about your interaction with content and\r\nservices available through Shopme Services. Like many websites, we use\r\n\"cookies\" and other unique identifiers, and we obtain certain types\r\nof information when your web browser or device accesses Shopme Services and\r\nother content served by or on behalf of Shopme on other websites.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Information\r\nfrom Other Sources:</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We might receive\r\ninformation about you from other sources, such as updated delivery and address\r\ninformation from our carriers, which we use to correct our records and deliver\r\nyour next purchase more easily.<o:p></o:p></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> </span></b></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">For What Purposes Does\r\nShopme Use Your Personal Information?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">We use your personal information to operate,\r\nprovide, develop, and improve the products and services that we offer our\r\ncustomers. These purposes include:<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Purchase\r\nand delivery of products and services.</span></b><span style=\"font-size:10.0pt;\r\nfont-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";\r\ncolor:#111111\"> We use your personal information to take and handle\r\norders, deliver products and services, process payments, and communicate with\r\nyou about orders, products and services, and promotional offers.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Provide,\r\ntroubleshoot, and improve Shopme Services.</span></b><span style=\"font-size:\r\n10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";\r\ncolor:#111111\"> We use your personal information to provide functionality,\r\nanalyze performance, fix errors, and improve the usability and effectiveness of\r\nthe Shopme Services.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Recommendations\r\nand personalization.</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We use your\r\npersonal information to recommend features, products, and services that might\r\nbe of interest to you, identify your preferences, and personalize your\r\nexperience with Shopme Services.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Provide\r\nvoice, image and camera services.</span></b><span style=\"font-size:10.0pt;\r\nfont-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";\r\ncolor:#111111\"> When you use our voice, image and camera services, we use\r\nyour voice input, images, videos, and other personal information to respond to\r\nyour requests, provide the requested service to you, and improve our services.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Comply\r\nwith legal obligations.</span></b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\"> In\r\ncertain cases, we collect and use your personal information to comply with\r\nlaws. For instance, we collect from sellers information regarding place of\r\nestablishment and bank account information for identity verification and other\r\npurposes.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Communicate\r\nwith you.</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We use your\r\npersonal information to communicate with you in relation to Shopme Services via\r\ndifferent channels (e.g., by phone, email, chat).<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Advertising.</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\"> We use your personal information to\r\ndisplay interest-based ads for features, products, and services that might be\r\nof interest to you. We do not use information that personally identifies you to\r\ndisplay interest-based ads.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Fraud\r\nPrevention and Credit Risks.</span></b><span style=\"font-size:10.0pt;\r\nfont-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";\r\ncolor:#111111\"> We use personal information to prevent and detect fraud\r\nand abuse in order to protect the security of our customers, Shopme, and\r\nothers. We may also use scoring methods to assess and manage credit risks.<o:p></o:p></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> </span></b></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">What About Cookies and\r\nOther Identifiers?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">To enable our systems to recognize your\r\nbrowser or device and to provide and improve Shopme Services, we use cookies\r\nand other identifiers.<o:p></o:p></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">Does Shopme Share Your\r\nPersonal Information?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">Information about our customers is an\r\nimportant part of our business, and we are not in the business of selling our\r\ncustomers\' personal information to others. We share customers\' personal\r\ninformation only as described below and with subsidiaries Shopme.com, Inc.\r\ncontrols that either are subject to this Privacy Notice or follow practices at\r\nleast as protective as those described in this Privacy Notice.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Transactions\r\ninvolving Third Parties:</span></b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\"> We\r\nmake available to you services, products, applications, or skills provided by\r\nthird parties for use on or through Shopme Services. For example, you can order\r\nproducts from third parties through our stores, download applications from\r\nthird-party application providers from our App Store, and enable third-party\r\nskills through our Alexa services. We also offer services or sell product lines\r\njointly with third-party businesses, such as co-branded credit cards. You can\r\ntell when a third party is involved in your transactions, and we share\r\ncustomers\' personal information related to those transactions with that third\r\nparty.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Third-Party\r\nService Providers:</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We employ other\r\ncompanies and individuals to perform functions on our behalf. Examples include\r\nfulfilling orders for products or services, delivering packages, sending postal\r\nmail and email, removing repetitive information from customer lists, analyzing\r\ndata, providing marketing assistance, providing search results and links\r\n(including paid listings and links), processing payments, transmitting content,\r\nscoring, assessing and managing credit risk, and providing customer service.\r\nThese third-party service providers have access to personal information needed\r\nto perform their functions, but may not use it for other purposes.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Business\r\nTransfers: </span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">As we continue to\r\ndevelop our business, we might sell or buy other businesses or services. In\r\nsuch transactions, customer information generally is one of the transferred\r\nbusiness assets but remains subject to the promises made in any pre-existing\r\nPrivacy Notice (unless, of course, the customer consents otherwise). Also, in\r\nthe unlikely event that Shopme.com, Inc. or substantially all of its assets are\r\nacquired, customer information will of course be one of the transferred assets.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><b><span style=\"font-size:10.0pt;font-family:\r\n"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#111111\">Protection\r\nof Shopme and Others:</span></b><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> We release\r\naccount and other personal information when we believe release is appropriate\r\nto comply with the law; enforce or apply our </span><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:black;mso-color-alt:windowtext\">Conditions of Use </span><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">and other agreements; or protect the rights,\r\nproperty, or safety of Shopme, our users, or others. This includes exchanging\r\ninformation with other companies and organizations for fraud protection and\r\ncredit risk reduction.<o:p></o:p></span></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">Other than as set out above, you will receive\r\nnotice when personal information about you might be shared with third parties,\r\nand you will have an opportunity to choose not to share the information.<o:p></o:p></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">How Secure Is\r\nInformation About Me?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">We design our systems with your security and\r\nprivacy in mind.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">We work to protect the\r\nsecurity of your personal information during transmission by using encryption\r\nprotocols and software.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">We follow the Payment\r\nCard Industry Data Security Standard (PCI DSS) when handling credit card data.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">We maintain physical,\r\nelectronic, and procedural safeguards in connection with the collection,\r\nstorage, and disclosure of personal customer information. Our security\r\nprocedures mean that we may occasionally request proof of identity before we\r\ndisclose personal information to you.<o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">Our devices offer\r\nsecurity features to protect them against unauthorized access and loss of data.\r\nYou can control these features and configure them based on your needs. <o:p></o:p></span></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-size:10.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;\r\nmso-bidi-font-family:Symbol;color:#111111\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]--><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">It is important for\r\nyou to protect against unauthorized access to your password and to your\r\ncomputers, devices, and applications. Be sure to sign off when finished using a\r\nshared computer.<o:p></o:p></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> </span></b></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\"> </span></b></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">What Information Can I\r\nAccess?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">You can access your information, including\r\nyour name, address, payment options, profile information, Prime membership, household\r\nsettings, and purchase history in the \"Your Account\" section of the\r\nwebsite.<o:p></o:p></span></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">Are Children Allowed\r\nto Use Shopme Services?<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">Shopme does not sell products for purchase by\r\nchildren. We sell children\'s products for purchase by adults. If you are under 18,\r\nyou may use Shopme Services only with the involvement of a parent or guardian.\r\nWe do not knowingly collect personal information from children under the age of\r\n13 without the consent of the child\'s parent or guardian. <o:p></o:p></span></div>\r\n\r\n<div><a name=\"GUID-8966E75F-9B92-4A2B-BFD5-967D57513A4\"></a><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\"> </span></b></div>\r\n\r\n<div><b><span style=\"font-size:16.0pt;font-family:"Arial",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:#111111\">Conditions of Use,\r\nNotices, and Revisions<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">If you choose to use Shopme Services, your use\r\nand any dispute over privacy is subject to this Notice and our </span><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:black;mso-color-alt:windowtext\">Conditions of Use</span><span style=\"font-size:10.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:\r\n"Times New Roman";color:#111111\">, including limitations on damages, resolution\r\nof disputes, and application of the law of the state of Washington. If you have\r\nany concern about privacy at Shopme, please contact us with a thorough\r\ndescription, and we will try to resolve it. Our business changes constantly,\r\nand our Privacy Notice will change also. You should check our websites\r\nfrequently to see recent changes. Unless stated otherwise, our current Privacy\r\nNotice applies to all information that we have about you and your account. We\r\nstand behind the promises we make, however, and will never materially change\r\nour policies and practices to make them less protective of customer information\r\ncollected in the past without the consent of affected customers.<o:p></o:p></span></div>',_binary '','Privacy Policy',0,'2022-05-21 12:12:58.981000',1),(7,'Careers','<div><div style=\"text-align: center;\"><b><span style=\"font-size:24.0pt;mso-bidi-font-size:31.5pt;\r\nfont-family:"Times New Roman",serif;mso-fareast-font-family:"Times New Roman"\">Available\r\nPositions<o:p></o:p></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3408/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3408/\"><span style=\"color: black;\">Cross Border Ecommerce - Inventory\r\nManagement</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3408/\"><span style=\"color: black;\">Department: Cross Border eCommerce<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3408/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3408/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div><div><br></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3545/\"><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3545/\"><span style=\"color: black;\">Regional Strategic Talent Management</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3545/\"><span style=\"color: black;\">Department: People, Legal and Finance<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3545/\"><span style=\"color: black;\">Level: Manager<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3545/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/1960/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1960/\"><span style=\"color: black;\">Business Development Team Assistant</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1960/\"><span style=\"color: black;\">Department: Business Development and\r\nPartnerships<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1960/\"><span style=\"color: black;\">Level: Entry Level: <o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1960/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/2458/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2458/\"><span style=\"color: black;\">Regional Marketing Solutions</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2458/\"><span style=\"color: black;\">Department: Marketing<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2458/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2458/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/2488/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2488/\"><span style=\"color: black;\">Cross Border Ecommerce - Shopee\r\nInternational Platform (SEA Market)</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2488/\"><span style=\"color: black;\">Department: Cross Border eCommerce<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2488/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2488/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/378/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/378/\"><span style=\"color: black;\">Cross Border Ecommerce - Market\r\nAnalyst</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/378/\"><span style=\"color: black;\">Department: Cross Border eCommerce<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/378/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/378/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3541/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3541/\"><span style=\"color: black;\">Regional Brand Design Intern</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3541/\"><span style=\"color: black;\">Department: Design<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3541/\"><span style=\"color: black;\">Level: Internship<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3541/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3457/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3457/\"><span style=\"color: black;\">Cross Border Ecommerce - Warehouse\r\n(Data Analytics)</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3457/\"><span style=\"color: black;\">Department: Cross Border eCommerce<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3457/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3457/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3532/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3532/\"><span style=\"color: black;\">Business Development- Singapore,\r\nLifestyle Team Assistant</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3532/\"><span style=\"color: black;\">Department: Business Development and\r\nPartnerships<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3532/\"><span style=\"color: black;\">Level: Entry Level: <o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3532/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3463/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3463/\"><span style=\"color: black;\">Campus Recruiter</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3463/\"><span style=\"color: black;\">Department: People, Legal and Finance<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3463/\"><span style=\"color: black;\">Level: Entry Level: <o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3463/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3096/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3096/\"><span style=\"color: black;\">UI Developer Intern</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3096/\"><span style=\"color: black;\">Department: Design<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3096/\"><span style=\"color: black;\">Level: Internship<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3096/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/396/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/396/\"><span style=\"color: black;\">UI/UX Design Intern</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/396/\"><span style=\"color: black;\">Department: Design<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/396/\"><span style=\"color: black;\">Level: Internship<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/396/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/2500/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2500/\"><span style=\"color: black;\">NOC Engineer</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2500/\"><span style=\"color: black;\">Department: Engineering and\r\nTechnology<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2500/\"><span style=\"color: black;\">Level: Entry Level: <o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2500/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3525/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3525/\"><span style=\"color: black;\">PhD Research Engineer Intern (Search,\r\nRecommendation and Paid Ads)</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3525/\"><span style=\"color: black;\">Department: Engineering and\r\nTechnology<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3525/\"><span style=\"color: black;\">Level: Internship<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3525/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/2336/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2336/\"><span style=\"color: black;\">Software Engineer Intern</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2336/\"><span style=\"color: black;\">Department: Engineering and\r\nTechnology<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2336/\"><span style=\"color: black;\">Level: Internship<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2336/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3442/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3442/\"><span style=\"color: black;\">Business Development - Fashion Special\r\nProjects</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3442/\"><span style=\"color: black;\">Department: Business Development and\r\nPartnerships<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3442/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3442/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/3361/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3361/\"><span style=\"color: black;\">HR, Senior Data Analyst</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3361/\"><span style=\"color: black;\">Department: People, Legal and Finance<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3361/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/3361/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/2434/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2434/\"><span style=\"color: black;\">Risk Business Analyst (Anti-Fraud)</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2434/\"><span style=\"color: black;\">Department: SeaMoney<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2434/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2434/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/2617/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2617/\"><span style=\"color: black;\">Risk Business Analyst (Collection)</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2617/\"><span style=\"color: black;\">Department: SeaMoney<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2617/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/2617/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"><a href=\"https://careers.shopee.sg/job-detail/1326/\"><span style=\"color: black;\"><o:p></o:p></span></a></span></div>\r\n\r\n<div><b><span style=\"font-size:14.5pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1326/\"><span style=\"color: black;\">Risk Business Analyst (Credit)</span><span style=\"color: windowtext;\"><o:p></o:p></span></a></span></b></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1326/\"><span style=\"color: black;\">Department: SeaMoney<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1326/\"><span style=\"color: black;\">Level: Experienced<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Helvetica",sans-serif;\r\nmso-fareast-font-family:"Times New Roman";color:black\"><a href=\"https://careers.shopee.sg/job-detail/1326/\"><span style=\"color: black;\">Location: Singapore<o:p></o:p></span></a></span></div>\r\n\r\n<div><span style=\"font-size:12.0pt;font-family:"Times New Roman",serif;\r\nmso-fareast-font-family:"Times New Roman"\"> </span></div></div>',_binary '','Careers',0,'2022-05-21 12:11:00.981000',1),(8,'Sales-2022','<h1>BIG SALES in 2022</h1><h2>\r\nGood</h2><div>Best</div><div>Awesome</div><div>Excellent</div>',_binary '','Sales 2022',1,'2022-05-21 12:13:57.426000',1),(9,'Payments','<div><b><span style=\"font-size:14.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">What are\r\nthe payment methods available?<o:p></o:p></span></b></div>\r\n\r\n<div>To bring you the best online shopping experience, we offer\r\nmultiple payment methods:<o:p></o:p></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]-->Visa/Mastercard/American Express<o:p></o:p></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]-->Shopme Wallet<o:p></o:p></div>\r\n\r\n<div><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: "Times New Roman";\"> \r\n</span></span><!--[endif]-->Instalment Payment Plan<o:p></o:p></div>\r\n\r\n<div>Please also note that any transactions made off the Lazada\r\nPlatform violate our Terms of Service. If a seller on Lazada asks you to pay\r\noff-site or through another channel, please do not send them money and report\r\nthe matter to us.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><b><span style=\"font-size:14.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">Which\r\ncredit cards are accepted for payment?<o:p></o:p></span></b></div>\r\n\r\n<div>Lazada accepts all major credit cards supported by VISA,\r\nMasterCard and AMEX. Your card details will be protected using industry-leading\r\nencryption standards.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><b><span style=\"font-size:14.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">Will I\r\nreceive a confirmation on whether payment for an order is successful?<o:p></o:p></span></b></div>\r\n\r\n<div>An email notification on whether your payment was successful\r\nwill be sent to you once your order has been confirmed.<o:p></o:p></div>\r\n\r\n<div><o:p> </o:p></div>\r\n\r\n<div><b><span style=\"font-size:14.0pt;mso-bidi-font-size:11.0pt;line-height:107%\">Why did I\r\nget charged for adding a credit card?<o:p></o:p></span></b></div>\r\n\r\n<div>When you add a new credit card, Lazada charges a nominal sum\r\nto check the validity of your card. Please note that this amount will be\r\nreversed once we verify that the transaction has been successful.<o:p></o:p></div>',_binary '','Payments',0,'2022-05-21 12:11:50.314000',1),(10,'Best-Products-in-2021','<div>Most favored products in 2021</div><div>Samsung</div><div>Apple</div><div>Microsoft</div><div>Dell</div>',_binary '\0','Best Products in 2021',1,'2022-05-21 12:15:53.426000',1),(11,'Customer-Satisfaction-Report','<div>Customers loving buying stuffs on Shopme because...</div><div><br></div>',_binary '','Customer Satisfaction Report',1,'2022-05-21 12:17:17.873000',1);
/*!40000 ALTER TABLE `articles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `brands`
--
DROP TABLE IF EXISTS `brands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `brands` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
`logo` varchar(128) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UKoce3937d2f4mpfqrycbr0l93m` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `brands`
--
LOCK TABLES `brands` WRITE;
/*!40000 ALTER TABLE `brands` DISABLE KEYS */;
INSERT INTO `brands` VALUES (1,'Canon','Canon.png'),(2,'Fujifilm','Fujifilm.png'),(3,'Sony','Sony.png'),(4,'HP','HP.png'),(5,'SanDisk','SanDisk.png'),(6,'Western Digital','Western Digital.png'),(7,'Panasonic','Panasonic.png'),(8,'Pelican','Pelican.png'),(9,'Apple','Apple.png'),(10,'Samsung','Samsung.png'),(11,'Olympus','Olympus.png'),(12,'CADeN','Caden.png'),(13,'AmazonBasics','amazonbasics.png'),(14,'Nikon','Nikon.png'),(15,'Neewer','Neewer.png'),(16,'Sigma','Sigma.png'),(17,'Bosch','Bosch.png'),(18,'Joby','Joby.png'),(19,'GoPro','GoPro.png'),(20,'Manfrotto','Manfrotto.png'),(21,'Google','Google.png'),(22,'LG','LG.png'),(23,'Motorola','Motorola.png'),(24,'Pantech','Pantech.png'),(25,'Huawei','Huawei.png'),(26,'Xiaomi','Xiaomi.png'),(27,'HOVAMP','Hovamp.png'),(28,'Aioneus','Aioneus.png'),(29,'XIAE','XIAE.png'),(30,'Everyworth','Everyworth.png'),(31,'Lexar','Lexar.png'),(32,'Nulaxy','Nulaxy.png'),(33,'Fitfort','Fitfort.png'),(34,'PopSockets','PopSocket.png'),(35,'SHAWE','SHAWE.png'),(36,'Lenovo','Lenovo.png'),(37,'Acer','Acer.png'),(38,'Dell','Dell.png'),(39,'Intel','Intel.png'),(40,'ASUS','ASUS.png'),(41,'Microsoft','Microsoft.png'),(42,'DragonTouch','DragonTouch.png'),(43,'AMD','AMD.png'),(44,'XFX','XFX.png'),(45,'MSI','MSI.png'),(46,'Seagate','Seagate.png'),(47,'Cosair','Corsair.png'),(48,'Thermaltake','Thermaltake.png'),(49,'Kingston','Kingston.png'),(50,'Creative','Creative.png'),(51,'Crucial','Crucial.png'),(52,'HyperX','HyperX.png'),(53,'Gigabyte','Gigabyte.png'),(54,'TP-Link','TP-Link.png');
/*!40000 ALTER TABLE `brands` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `brands_categories`
--
DROP TABLE IF EXISTS `brands_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `brands_categories` (
`brand_id` int NOT NULL,
`category_id` int NOT NULL,
PRIMARY KEY (`brand_id`,`category_id`),
KEY `FK6x68tjj3eay19skqlhn7ls6ai` (`category_id`),
CONSTRAINT `FK58ksmicdguvu4d7b6yglgqvxo` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`),
CONSTRAINT `FK6x68tjj3eay19skqlhn7ls6ai` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `brands_categories`
--
LOCK TABLES `brands_categories` WRITE;
/*!40000 ALTER TABLE `brands_categories` DISABLE KEYS */;
INSERT INTO `brands_categories` VALUES (6,1),(1,2),(2,2),(3,2),(7,2),(8,2),(9,4),(4,5),(9,5),(10,5),(36,5),(37,5),(38,5),(39,5),(40,5),(4,6),(9,6),(10,6),(36,6),(37,6),(38,6),(40,6),(9,7),(10,7),(36,7),(37,7),(38,7),(40,7),(41,7),(42,7),(8,9),(12,9),(13,9),(1,10),(3,10),(7,10),(11,10),(14,10),(1,11),(3,11),(14,11),(15,11),(1,12),(14,12),(16,12),(17,13),(18,13),(19,13),(20,13),(9,14),(10,14),(21,14),(22,14),(23,14),(24,14),(9,15),(10,15),(21,15),(23,15),(25,15),(26,15),(27,17),(28,17),(29,17),(30,17),(5,18),(10,18),(31,18),(20,19),(32,19),(33,19),(34,19),(35,19),(39,22),(43,22),(43,23),(44,23),(45,23),(5,24),(6,24),(10,24),(46,24),(10,25),(22,25),(40,25),(40,26),(47,26),(48,26),(5,27),(6,27),(10,27),(49,27),(40,28),(50,28),(5,29),(6,29),(10,29),(47,29),(49,29),(51,29),(52,29),(40,30),(45,30),(53,30),(5,31),(54,31);
/*!40000 ALTER TABLE `brands_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cart_items`
--
DROP TABLE IF EXISTS `cart_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cart_items` (
`id` int NOT NULL AUTO_INCREMENT,
`quantity` int NOT NULL,
`customer_id` int DEFAULT NULL,
`product_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKdagcsk6v6x4n1kxw3rkp57921` (`customer_id`),
KEY `FK1re40cjegsfvw58xrkdp6bac6` (`product_id`),
CONSTRAINT `FK1re40cjegsfvw58xrkdp6bac6` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
CONSTRAINT `FKdagcsk6v6x4n1kxw3rkp57921` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cart_items`
--
LOCK TABLES `cart_items` WRITE;
/*!40000 ALTER TABLE `cart_items` DISABLE KEYS */;
INSERT INTO `cart_items` VALUES (2,1,42,30);
/*!40000 ALTER TABLE `cart_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`alias` varchar(64) NOT NULL,
`image` varchar(128) NOT NULL,
`enabled` bit(1) NOT NULL,
`parent_id` int DEFAULT NULL,
`all_parent_ids` varchar(256) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UKjx1ptm0r46dop8v0o7nmgfbeq` (`alias`),
UNIQUE KEY `UKt8o6pivur7nn124jehx7cygw5` (`name`),
KEY `FKsaok720gsu4u2wrgbk10b5n8d` (`parent_id`),
CONSTRAINT `FKsaok720gsu4u2wrgbk10b5n8d` FOREIGN KEY (`parent_id`) REFERENCES `categories` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Electronics','electronics','solid state drives.png',_binary '',NULL,NULL),(2,'Camera & Photo','camera','camera.jpg',_binary '',1,'-1-'),(3,'Computers','computers','computers.png',_binary '',NULL,NULL),(4,'Cell Phones & Accessories','cellphones','cellphones.png',_binary '',1,'-1-'),(5,'Desktops','desktop_computers','carrier cellphones.png',_binary '',3,'-3-'),(6,'Laptops','laptop_computers','unlocked cellphones.png',_binary '',3,'-3-'),(7,'Tablets','tablet_computers','tablets.png',_binary '',3,'-3-'),(8,'Computer Components','computer_components','computer components.png',_binary '',3,'-3-'),(9,'Bags & Cases','camera_bags_cases','bags_cases.png',_binary '',2,'-1-2-'),(10,'Digital Cameras','digital_cameras','digital cameras.png',_binary '',2,'-1-2-'),(11,'Flashes','camera_flashes','flashes.png',_binary '',2,'-1-2-'),(12,'Lenses','camera_lenses','lenses.png',_binary '',2,'-1-2-'),(13,'Tripods & Monopods','camera_tripods_monopods','tripods_monopods.png',_binary '',2,'-1-2-'),(14,'Carrier Cell Phones','carrier_cellphones','carrier cellphones.png',_binary '',4,'-1-4-'),(15,'Unlocked Cell Phones','unlocked_cellphones','unlocked cellphones.png',_binary '',4,'-1-4-'),(16,'Accessories','cellphone_accessories','cellphone accessories.png',_binary '',4,'-1-4-'),(17,'Cables & Adapters','cellphone_cables_adapters','cables and adapters.png',_binary '',16,'-1-4-16-'),(18,'MicroSD Cards','microsd_cards','microsd cards.png',_binary '',16,'-1-4-16-'),(19,'Stands','cellphone_stands','cellphone_stands.png',_binary '',16,'-1-4-16-'),(20,'Cases','cellphone_cases','cellphone cases.png',_binary '',16,'-1-4-16-'),(21,'Headphones','headphones','headphones.png',_binary '',16,'-1-4-16-'),(22,'CPU Processors Unit','computer_processors','computer processors.png',_binary '',8,'-3-8-'),(23,'Graphic Cards','computer_graphic_cards','graphic cards.png',_binary '',8,'-3-8-'),(24,'Internal Hard Drives','hard_drive','internal hard drive.png',_binary '',8,'-3-8-'),(25,'Internal Optical Drives','computer_optical_drives','internal optical drives.png',_binary '',8,'-3-8-'),(26,'Power Supplies','computer_power_supplies','power supplies.png',_binary '',8,'-3-8-'),(27,'Solid State Drives','solid_state_drives','solid state drives.png',_binary '',8,'-3-8-'),(28,'Sound Cards','computer_sound_cards','sound cards.png',_binary '',8,'-3-8-'),(29,'Memory','computer_memory','computer memory.png',_binary '',8,'-3-8-'),(30,'Motherboard','computer_motherboard','motherboards.png',_binary '',8,'-3-8-'),(31,'Network Cards','computer_network_cards','network cards.png',_binary '',8,'-3-8-');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
`code` varchar(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries`
--
LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'Andorra','AD'),(2,'United Arab Emirates','AE'),(3,'Afghanistan','AF'),(4,'Antigua and Barbuda','AG'),(5,'Anguilla','AI'),(6,'Albania','AL'),(7,'Armenia','AM'),(8,'Netherlands Antilles','AN'),(9,'Angola','AO'),(10,'Antarctica','AQ'),(11,'Argentina','AR'),(12,'American Samoa','AS'),(13,'Austria','AT'),(14,'Australia','AU'),(15,'Aruba','AW'),(16,'Åland Islands','AX'),(17,'Azerbaijan','AZ'),(18,'Bosnia and Herzegovina','BA'),(19,'Barbados','BB'),(20,'Bangladesh','BD'),(21,'Belgium','BE'),(22,'Burkina Faso','BF'),(23,'Bulgaria','BG'),(24,'Bahrain','BH'),(25,'Burundi','BI'),(26,'Benin','BJ'),(27,'Saint Barthélemy','BL'),(28,'Bermuda','BM'),(29,'Brunei','BN'),(30,'Bolivia','BO'),(31,'Bonaire, Sint Eustatius and Saba','BQ'),(32,'Brazil','BR'),(33,'Bahamas','BS'),(34,'Bhutan','BT'),(35,'Bouvet Island','BV'),(36,'Botswana','BW'),(37,'Belarus','BY'),(38,'Belize','BZ'),(39,'Canada','CA'),(40,'Cocos Islands','CC'),(41,'The Democratic Republic Of Congo','CD'),(42,'Central African Republic','CF'),(43,'Congo','CG'),(44,'Switzerland','CH'),(45,'Côte d\'Ivoire','CI'),(46,'Cook Islands','CK'),(47,'Chile','CL'),(48,'Cameroon','CM'),(49,'China','CN'),(50,'Colombia','CO'),(51,'Costa Rica','CR'),(52,'Cuba','CU'),(53,'Cape Verde','CV'),(54,'Curaçao','CW'),(55,'Christmas Island','CX'),(56,'Cyprus','CY'),(57,'Czech Republic','CZ'),(58,'Germany','DE'),(59,'Djibouti','DJ'),(60,'Denmark','DK'),(61,'Dominica','DM'),(62,'Dominican Republic','DO'),(63,'Algeria','DZ'),(64,'Ecuador','EC'),(65,'Estonia','EE'),(66,'Egypt','EG'),(67,'Western Sahara','EH'),(68,'Eritrea','ER'),(69,'Spain','ES'),(70,'Ethiopia','ET'),(71,'Finland','FI'),(72,'Fiji','FJ'),(73,'Falkland Islands','FK'),(74,'Micronesia','FM'),(75,'Faroe Islands','FO'),(76,'France','FR'),(77,'Gabon','GA'),(78,'United Kingdom','GB'),(79,'Grenada','GD'),(80,'Georgia','GE'),(81,'French Guiana','GF'),(82,'Guernsey','GG'),(83,'Ghana','GH'),(84,'Gibraltar','GI'),(85,'Greenland','GL'),(86,'Gambia','GM'),(87,'Guinea','GN'),(88,'Guadeloupe','GP'),(89,'Equatorial Guinea','GQ'),(90,'Greece','GR'),(91,'South Georgia And The South Sandwich Islands','GS'),(92,'Guatemala','GT'),(93,'Guam','GU'),(94,'Guinea-Bissau','GW'),(95,'Guyana','GY'),(96,'Hong Kong','HK'),(97,'Heard Island And McDonald Islands','HM'),(98,'Honduras','HN'),(99,'Croatia','HR'),(100,'Haiti','HT'),(101,'Hungary','HU'),(102,'Indonesia','ID'),(103,'Ireland','IE'),(104,'Israel','IL'),(105,'Isle Of Man','IM'),(106,'India','IN'),(107,'British Indian Ocean Territory','IO'),(108,'Iraq','IQ'),(109,'Iran','IR'),(110,'Iceland','IS'),(111,'Italy','IT'),(112,'Jersey','JE'),(113,'Jamaica','JM'),(114,'Jordan','JO'),(115,'Japan','JP'),(116,'Kenya','KE'),(117,'Kyrgyzstan','KG'),(118,'Cambodia','KH'),(119,'Kiribati','KI'),(120,'Comoros','KM'),(121,'Saint Kitts And Nevis','KN'),(122,'North Korea','KP'),(123,'South Korea','KR'),(124,'Kuwait','KW'),(125,'Cayman Islands','KY'),(126,'Kazakhstan','KZ'),(127,'Laos','LA'),(128,'Lebanon','LB'),(129,'Saint Lucia','LC'),(130,'Liechtenstein','LI'),(131,'Sri Lanka','LK'),(132,'Liberia','LR'),(133,'Lesotho','LS'),(134,'Lithuania','LT'),(135,'Luxembourg','LU'),(136,'Latvia','LV'),(137,'Libya','LY'),(138,'Morocco','MA'),(139,'Monaco','MC'),(140,'Moldova','MD'),(141,'Montenegro','ME'),(142,'Saint Martin','MF'),(143,'Madagascar','MG'),(144,'Marshall Islands','MH'),(145,'Macedonia','MK'),(146,'Mali','ML'),(147,'Myanmar','MM'),(148,'Mongolia','MN'),(149,'Macao','MO'),(150,'Northern Mariana Islands','MP'),(151,'Martinique','MQ'),(152,'Mauritania','MR'),(153,'Montserrat','MS'),(154,'Malta','MT'),(155,'Mauritius','MU'),(156,'Maldives','MV'),(157,'Malawi','MW'),(158,'Mexico','MX'),(159,'Malaysia','MY'),(160,'Mozambique','MZ'),(161,'Namibia','NA'),(162,'New Caledonia','NC'),(163,'Niger','NE'),(164,'Norfolk Island','NF'),(165,'Nigeria','NG'),(166,'Nicaragua','NI'),(167,'Netherlands','NL'),(168,'Norway','NO'),(169,'Nepal','NP'),(170,'Nauru','NR'),(171,'Niue','NU'),(172,'New Zealand','NZ'),(173,'Oman','OM'),(174,'Panama','PA'),(175,'Peru','PE'),(176,'French Polynesia','PF'),(177,'Papua New Guinea','PG'),(178,'Philippines','PH'),(179,'Pakistan','PK'),(180,'Poland','PL'),(181,'Saint Pierre And Miquelon','PM'),(182,'Pitcairn','PN'),(183,'Puerto Rico','PR'),(184,'Palestine','PS'),(185,'Portugal','PT'),(186,'Palau','PW'),(187,'Paraguay','PY'),(188,'Qatar','QA'),(189,'Reunion','RE'),(190,'Romania','RO'),(191,'Serbia','RS'),(192,'Russia','RU'),(193,'Rwanda','RW'),(194,'Saudi Arabia','SA'),(195,'Solomon Islands','SB'),(196,'Seychelles','SC'),(197,'Sudan','SD'),(198,'Sweden','SE'),(199,'Singapore','SG'),(200,'Saint Helena','SH'),(201,'Slovenia','SI'),(202,'Svalbard And Jan Mayen','SJ'),(203,'Slovakia','SK'),(204,'Sierra Leone','SL'),(205,'San Marino','SM'),(206,'Senegal','SN'),(207,'Somalia','SO'),(208,'Suriname','SR'),(209,'South Sudan','SS'),(210,'Sao Tome And Principe','ST'),(211,'El Salvador','SV'),(212,'Sint Maarten (Dutch part)','SX'),(213,'Syria','SY'),(214,'Swaziland','SZ'),(215,'Turks And Caicos Islands','TC'),(216,'Chad','TD'),(217,'French Southern Territories','TF'),(218,'Togo','TG'),(219,'Thailand','TH'),(220,'Tajikistan','TJ'),(221,'Tokelau','TK'),(222,'Timor-Leste','TL'),(223,'Turkmenistan','TM'),(224,'Tunisia','TN'),(225,'Tonga','TO'),(226,'Turkey','TR'),(227,'Trinidad and Tobago','TT'),(228,'Tuvalu','TV'),(229,'Taiwan','TW'),(230,'Tanzania','TZ'),(231,'Ukraine','UA'),(232,'Uganda','UG'),(233,'United States Minor Outlying Islands','UM'),(234,'United States','US'),(235,'Uruguay','UY'),(236,'Uzbekistan','UZ'),(237,'Vatican','VA'),(238,'Saint Vincent And The Grenadines','VC'),(239,'Venezuela','VE'),(240,'British Virgin Islands','VG'),(241,'U.S. Virgin Islands','VI'),(242,'Vietnam','VN'),(243,'Vanuatu','VU'),(244,'Wallis And Futuna','WF'),(245,'Samoa','WS'),(246,'Yemen','YE'),(247,'Mayotte','YT'),(248,'South Africa','ZA'),(249,'Zambia','ZM'),(250,'Zimbabwe','ZW');
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `currencies`
--
DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `currencies` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`symbol` varchar(3) NOT NULL,
`code` varchar(4) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `currencies`
--
LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` VALUES (1,'United States Dollar','$','USD'),(2,'British Pound','£','GBP'),(3,'Japanese Yen','¥','JPY'),(4,'Euro','€','EUR'),(5,'Russian Ruble','₽','RUB'),(6,'Chinese Yuan','¥','CNY');
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `customers`
--
DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customers` (
`id` int NOT NULL AUTO_INCREMENT,
`email` varchar(45) NOT NULL,
`password` varchar(64) NOT NULL,
`first_name` varchar(45) NOT NULL,
`last_name` varchar(45) NOT NULL,
`phone_number` varchar(15) NOT NULL,
`address_line_1` varchar(64) NOT NULL,
`address_line_2` varchar(64) DEFAULT NULL,
`city` varchar(45) NOT NULL,
`state` varchar(45) NOT NULL,
`country_id` int DEFAULT NULL,
`postal_code` varchar(10) NOT NULL,
`created_time` datetime(6) DEFAULT NULL,
`enabled` bit(1) NOT NULL,
`verification_code` varchar(64) DEFAULT NULL,
`authentication_type` enum('DATABASE','FACEBOOK','GOOGLE') DEFAULT NULL,
`reset_password_token` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UKrfbvkrffamfql7cjmen8v976v` (`email`),
KEY `FK7b7p2myt0y31l4nyj1p7sk0b1` (`country_id`),
CONSTRAINT `FK7b7p2myt0y31l4nyj1p7sk0b1` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `customers`
--
LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
INSERT INTO `customers` VALUES (1,'[email protected]','$2a$10$ZQdbl6XeG/Z3frq.iJxnyucOhaoLhaa5BocnHnZKRPAntcZqQR9bu','Anh','Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','',242,'550000','2020-10-09 03:18:58.000000',_binary '',NULL,'DATABASE',NULL),(2,'[email protected]','$2a$10$II70xzaNTXp8WjJgGBq5k.xiDd8qiTp1yGPaCULGVeHtej/Hieb4O','Lorraine','Allbright','781-434-1947','2320 Romano Street','','Cambridge','Massachusetts',234,'2142','2020-10-09 03:21:29.000000',_binary '',NULL,'GOOGLE',NULL),(3,'[email protected]','$2a$10$iCc2M47GrRfzWV7/nrdZpuzkjLSxH5VEs1t02E55428eToiFo8pT6','Nancy','C Bass','519-791-4692','4703 Goyeau Ave','','Windsor','Ontario',39,'N9A 1H9','2020-10-09 03:24:42.000000',_binary '',NULL,NULL,NULL),(4,'[email protected]','$2a$10$mHz6KD.k5OTuTw9JWsa8OOZiF8gWxFRw6tjzIMxrx6GuaF2d.bvxG','Brian','Purcell','604-269-1384','4103 Tolmie St','','Vancouver','British Columbia',39,'V6M 1Y8','2020-06-09 03:27:48.000000',_binary '',NULL,NULL,NULL),(5,'[email protected]','$2a$10$zS.WEDVdrfraeTYXkh6kru0YT4dg14daWwxrPZKwImwt1S8I8Cbaa','Tina','D Jamerson','5139670375','934A Small Street','Amish Country Byway','Berlin','Ohio',234,'44610','2020-10-09 03:29:39.000000',_binary '',NULL,NULL,NULL),(6,'[email protected]','$2a$10$kBu.WfmGeYpcp.gNCVosx.2PY6dhUahdjPolgSOvYjY4DcUWRtnUm','Christopher ','Seldon','214-407-6337','3087 Marietta Street','','Vallejo','California',234,'94590','2020-10-10 11:11:19.000000',_binary '',NULL,NULL,NULL),(7,'[email protected]','$2a$10$og9uLgfaPjMbN0UQFPXQeeVhgfuArv3QQXLhM7ZfS4M.9j4Yp/Ksi','Alex','Stevenson','078 7586 952','56 Berkeley Rd','','Stretton-on-Dunsmore','',78,'CV23 3XN','2020-10-11 03:36:04.000000',_binary '',NULL,NULL,NULL),(8,'[email protected]','$2a$10$8Zc6kveZk1FR0HzVUQK/DuSQWFf2oGujkmDreapVXW0BtfDchP0yG','Ethan','Jones','070 2534 460','101 Gordon Terrace','','Barton','',78,'SY14 4FH','2020-10-11 03:38:09.000000',_binary '',NULL,NULL,NULL),(9,'[email protected]','$2a$10$Iybz9lJhA6FoeO7tviEWIuLaO4fC9lwjiiHwKCD0B5q4DLJ066mVW','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi',106,'110009','2020-10-11 03:40:04.000000',_binary '',NULL,NULL,NULL),(10,'[email protected]','$2a$10$QKr/DFMbrX9ItxJCcTd.RuiD.H8BgsThxfZMEAmAas6yGOdJZkH9S','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra',106,'400067','2020-10-11 03:43:12.000000',_binary '',NULL,NULL,NULL),(11,'[email protected]','$2a$10$SF6oz1JICybgPDOdrnTjFODxJBlCcUfj.HRF.TanU2pdjFcIT3X7S','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh',106,'500042','2020-10-11 03:44:55.000000',_binary '',NULL,NULL,NULL),(12,'[email protected]','$2a$10$UIQGuwvF9WU3cge7cGHBge6aX6/dGRpwqD8GuCxBghTpDos9Hx9yW','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi',106,'110008','2020-10-11 03:46:25.000000',_binary '',NULL,NULL,NULL),(13,'[email protected]','$2a$10$Q.Ctg6lFyvVEJ7ZnIuCIZ.UK5RlXuY2Iwwru4x.n9gtptDuhVLxRu','Saka','Prakash','02223011775','B/7/a Bharat Ngr, Grant Road','','Mumbai','Maharashtra',106,'400007','2020-10-12 10:09:30.000000',_binary '\0',NULL,NULL,NULL),(14,'[email protected]','$2a$10$nQjus79bd4dwNeEHTJ96U.Q7GIMffZQ7lqORWYv9VQQyh.9oqSgOK','Gautam','Nayak','02226200995','37 , Dhake Colony, J.p.rd, Andheri (west)','','Mumbai','Maharashtra',106,'400058','2020-10-12 10:10:50.000000',_binary '',NULL,NULL,NULL),(15,'[email protected]','$2a$10$NNQmIhQn6V1ZR9VpIbQL6OLpiLF.dJ.8qTDegkD3ZiDeMmwjSCyRW','Avatar','Cheema','03322684941','181 /, th Floor, M G Road, Burrabazar','','Kolkata','West Bengal',106,'700007','2020-10-12 10:12:04.000000',_binary '',NULL,NULL,NULL),(16,'[email protected]','$2a$10$QEOF7Xeue1enl9COCgB/deSu2DIewIlyEHGDm83hjpz3iNLkmD0sm','Jianhong','Zhou','65-6278 9444','456 Alexandra Road #16-02 NOL','Building Singapore 119962','Singapore','',199,'119962','2020-10-12 10:13:00.000000',_binary '',NULL,NULL,NULL),(17,'[email protected]','$2a$10$CVLvsCqcbzWcsRN/ZfGcAOr5wZAUIITu9kqG7.U2lWo4MgtIdITDa','Su','Geng','062566046','Braddell Tech 13 Lorong 8 Toa Payoh #04-01 319261','','Singapore','',199,'319261','2020-10-12 10:14:03.000000',_binary '',NULL,NULL,NULL),(18,'[email protected]','$2a$10$pBLzCgKPXfJsMiCHFB9BweUamtoJXnbPlh7eheH7zK02v/QW3UgPK','Alisa','Willcox','423-893-1283','1053 Broadway Avenue','','Chattanooga','Tennessee',234,'37421','2020-10-12 10:15:12.000000',_binary '',NULL,NULL,NULL),(19,'[email protected]','$2a$10$cyrxmp9dwNhUAEYqPiMHHO6n9vvLqgS/tbcYjaeyIMekfd35pvnOm','Chelsea','Greener','(07) 4918 39','79 Masthead Drive','','Great Keepel Island','Queensland',14,'4700','2020-10-12 10:16:23.000000',_binary '',NULL,NULL,NULL),(20,'[email protected]','$2a$10$LQT8mw/ZGHz1W5pd4/iDyuNjwv7yJSKKJUXnXWf6xAB46M5wDUOVG','Spencer','De Bavay','(02) 6146 87','37 Grayson Street','','Matong','New South Wales',14,'2652','2020-10-12 10:17:27.000000',_binary '',NULL,NULL,NULL),(21,'[email protected]','$2a$10$E6g8TKWzT6wPyGma.O3SweI4mqEMQyavjiy/qUk9ayyAQ7/FN/eq.','Daniela','Konig','08274368060','Alt Reinickendorf 61','','Schwenningen','Baden-Württemberg',58,'72477','2020-10-16 04:20:15.000000',_binary '\0',NULL,NULL,NULL),(22,'[email protected]','$2a$10$c9u299wIXYQ4GuNUtthJRO4/fxb/qaPXBIcgLqo.OzTqBM2e5Erm2','Tan','Nguyen Minh','0987667887','Ba Vi, Thanh Chuong','Soc Son','Ha Noi','Ha Noi',242,'142870','2020-11-12 14:35:37.000000',_binary '',NULL,NULL,NULL),(23,'[email protected]','$2a$10$pFQajpIUy38PV61fucqxmugLtQerPid3N1LvP2MsSlMMuUG283.Cm','Trang','Le Thi Quynh','0922664450','30 Do Huy Uyen','An Hai Bac district','Da Nang','Da Nang',242,'552000','2021-01-14 02:35:51.000000',_binary '',NULL,NULL,NULL),(24,'[email protected]','$2a$10$4YwxikvvFeDknQxWXoYHK.s0JicA2E1U4fjaomQ/tktD4Xx9R.Di6','Son','Nguyen Tuan','0984457819','123 Truc Bach','Tay Ho','Ha Noi','Hanoi',242,'127890','2021-01-10 02:40:58.000000',_binary '',NULL,NULL,NULL),(25,'[email protected]','$2a$10$80H.3RSBQS1iT6hCJI56suOJFE.pBUx.DyhnmDv/ZjOGiJAQxjR6K','Thu','Trinh Minh','0977882312','14H8 Phan Van Truong','Cau Giay','Ha Noi','Hanoi',242,'113000','2020-01-14 02:56:08.000000',_binary '',NULL,NULL,NULL),(26,'[email protected]','$2a$10$YkVzbGU89318I2nL8z.NGeJN77.UJCavjY7PH7x3LfL1zIEOVzF7m','Mai','Tran Thi','0954876291','256A Vo Van Kiet','Phuoc My','Da Nang','Da Nang',242,'555000','2021-01-16 10:15:37.000000',_binary '',NULL,NULL,NULL),(27,'[email protected]','$2a$10$G3RLX9mmiMafu0MxTomJp.43lX2khhp0IOKN4oZSDK689dRt71zGq','Bach','Nguyen Hoang','0910405069','620 Bach Dang','Hai Chau','Da Nang','Da Nang',242,'554000','2021-01-16 10:22:05.000000',_binary '\0',NULL,NULL,NULL),(28,'[email protected]','$2a$10$yYkH67VJ6LVGScLHvxtyyOTCslPiY3ZM0SYArvur0JR8F6IlGy.Gu','Ravi','Kumar','026715849','M 55 2nd Floor, Part 2','','Delhi','Delhi',106,'110048','2020-05-16 10:28:38.000000',_binary '',NULL,NULL,NULL),(29,'[email protected]','$2a$10$suovD4HuFHy632QdAQnNTOwyTwHLs4NI8mT0gARBNxavM0IXl.HdW','Xue','Hao Chu','081005992','Choa Chu Kang Crescent, 683690','','Singapore','',199,'683690','2021-01-17 10:25:06.000000',_binary '',NULL,NULL,NULL),(30,'[email protected]','$2a$10$JKIV3Hi4phMMKU/p2tqH8OXZaKNboZAwX6/nHdFoxWbeohie7NDuu','Mo','Liang','063237730','30 Robinson Road','#03-01B ROBINSON TOWERS','Singapore','',199,'048546','2020-04-12 10:35:37.000000',_binary '',NULL,NULL,NULL),(31,'[email protected]','$2a$10$KlcH7aIiy/Hvt3NhCYbDH.toghsP2CbeBY7ZO9YT03o9dLkdNluBS','Chan','Ding','6567321372','260 Orchard Road, The Heeren','04-30/31 238855','Singapore','',199,'238855','2021-01-18 10:47:17.000000',_binary '',NULL,NULL,NULL),(32,'[email protected]','$2a$10$E1IxQO8LTXWF0diVBB7bfOcwc8wwtWHu4dhRx3zkGemtcsb1Mf32G','Zak','Carey','0795602121','70 Guild Street','','London','',78,'N8 1HG','2021-01-20 11:03:49.000000',_binary '\0',NULL,NULL,NULL),(33,'[email protected]','$2a$10$9ZbxZO2gJul3ups2FXU9se3vd3d5zn0VRXQnp0l1bS04dq3UHy5g2','Katherine','McKnight','8153287288','922 Emeral Dreams Drive','','Chicago','Illinois',234,'60601','2020-12-26 11:20:07.000000',_binary '',NULL,NULL,NULL),(34,'[email protected]','$2a$10$eISh5FVdov6DSOWeXpNeVeieJOwGe8gBC1zrLfKUKVqWrBFeIaMKy','Pasty','Aston','2129229661','1482 Rosewood Lane','','New York','New York',234,'10016','2020-05-26 11:34:41.000000',_binary '',NULL,NULL,NULL),(35,'[email protected]','$2a$10$52Ah7rPRiReZ8FsQBRATfOlJl.XQfwGGaqa3vP6Z9uBKc7ADz7yCO','Rekha','Makavana','02226493101','Shop No 2, Shobhana Bldg.','Tilak Road, Opp. Dph, Santacruz (west)','Mumbai','Maharashtra',106,'400054','2020-09-01 09:26:20.000000',_binary '',NULL,NULL,NULL),(36,'[email protected]','$2a$10$8oaaz3VHFE/PqpRMPnvABuWLZSl9lCT3plI8aMMejqJeVtv3bNUH.','Flynn','Hackett','073758521','19 Shirley Street','','Yatala','Queensland',14,'4207','2021-02-01 08:42:40.000000',_binary '',NULL,NULL,NULL),(42,'[email protected]','$2a$10$V7P3xd.kWtmMCA5UNkUyseohrNMy6p9NfbvhdhjuzO.uCPeUX.hQK','thạch','lê','0583465424','nguyễn xiển thanh xuân','69 Yen','ha noi','Hà Nội',242,'100000','2024-11-08 02:29:56.157000',_binary '',NULL,'GOOGLE',NULL);
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `menus`
--
DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menus` (
`id` int NOT NULL AUTO_INCREMENT,
`alias` varchar(256) NOT NULL,
`enabled` bit(1) NOT NULL,
`position` int NOT NULL,
`title` varchar(128) NOT NULL,
`type` tinyint DEFAULT NULL,
`article_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK7fcv9rm1ecfeumh1lo4tuntgm` (`alias`),
UNIQUE KEY `UK752mo4d1g26knhksum5pek87` (`title`),
KEY `FKa5eajuapjflm0jk7xh5mangy5` (`article_id`),
CONSTRAINT `FKa5eajuapjflm0jk7xh5mangy5` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menus`
--
LOCK TABLES `menus` WRITE;
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` VALUES (8,'about',_binary '',1,'About Us',0,1),(9,'Careers',_binary '',3,'Careers',0,7),(10,'Payments',_binary '',2,'Payments',0,9),(11,'privacy',_binary '',1,'Privacy Policy',1,6),(12,'shipping',_binary '',4,'Shipping & Delivery',0,4),(13,'returns-refunds',_binary '',2,'Returns & Refunds',1,5);
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `order_details`
--
DROP TABLE IF EXISTS `order_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_details` (
`id` int NOT NULL AUTO_INCREMENT,
`order_id` int DEFAULT NULL,
`product_id` int DEFAULT NULL,
`quantity` int NOT NULL,
`unit_price` float NOT NULL,
`subtotal` float NOT NULL,
`product_cost` float NOT NULL,
`shipping_cost` float NOT NULL,
PRIMARY KEY (`id`),
KEY `FKjyu2qbqt8gnvno9oe9j2s2ldk` (`order_id`),
KEY `FK4q98utpd73imf4yhttm3w0eax` (`product_id`),
CONSTRAINT `FK4q98utpd73imf4yhttm3w0eax` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
CONSTRAINT `FKjyu2qbqt8gnvno9oe9j2s2ldk` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `order_details`
--
LOCK TABLES `order_details` WRITE;
/*!40000 ALTER TABLE `order_details` DISABLE KEYS */;
INSERT INTO `order_details` VALUES (1,1,1,1,599,599,503,3.35),(2,2,105,1,49.99,49.99,38,2.35),(4,2,86,1,44.84,44.84,40,2.25),(5,3,41,1,551.31,551.31,489,4.25),(6,3,53,2,79.99,159.98,71,0.95),(7,3,55,1,12.99,12.99,10.06,1.5),(8,4,99,1,65.59,65.59,59.96,1.86),(9,5,51,2,8.45,16.9,7.68,1.2),(10,5,45,2,11.99,23.98,9.03,1.5),(13,7,100,2,29.95,59.9,22.33,5.38),(14,8,23,1,35.19,35.19,29.99,12.88),(15,9,7,1,599.99,599.99,487,4.8),(16,10,48,2,10,20,8.02,2.57),(17,11,54,1,19.95,19.95,16.22,2.33),(19,13,61,1,1639,1639,1508,15.2),(20,14,99,2,65.59,131.18,57,0.99),(21,15,61,3,1639,4917,1228,36.75),(22,16,71,2,999.99,1999.98,801,17.5),(23,17,49,2,29.99,59.99,23,1.22),(24,18,23,1,35.19,35.19,28,3.75),(35,19,39,1,400.22,400.22,347.42,7.34),(36,19,89,2,19.99,39.98,347.42,7),(37,19,45,2,11.99,23.98,301,3.2),(38,18,63,1,915,915,838,12.68),(39,21,45,1,11.99,11.99,8.04,3.5),(40,22,45,1,11.99,11.99,8.04,3.65),(41,23,51,2,8.45,16.9,12.38,1),(43,24,66,1,499,499,398,15),(44,25,81,1,209.16,209.16,190,12.2),(45,26,23,1,35.19,35.19,29,26),(46,27,100,1,29.95,29.95,22,0.6),(47,28,29,1,230.33,230.33,189,15.56),(48,29,98,1,45.01,45.01,37,6.1),(49,30,99,1,65.59,65.59,54,2.95),(50,30,19,1,94.77,94.77,81,4),(51,31,79,1,365.75,365.75,323,12),(52,32,95,1,59.99,59.99,50,8.65),(53,33,41,1,551.31,551.31,538,3.48),(54,34,50,1,24.99,24.99,17,2.06),(55,35,48,3,10,30,7,30),(56,36,40,1,449,449,380,10.15),(57,37,104,1,74.99,74.99,60,40.21),(58,38,81,1,209.16,209.16,190,7.5),(59,39,100,2,29.95,59.9,22,1.24),(60,40,64,1,585.09,585.09,500,26.07),(61,41,40,1,449,449,380,10.43),(62,42,48,3,10,30,7,5.99),(63,43,1,1,599,599,511,13.98),(64,44,70,1,849.99,849.99,738,48.93),(65,45,95,1,59.99,59.99,50,7.75),(66,46,23,1,35.19,35.19,29,10.5),(67,47,81,1,209.16,209.16,190,11.78),(68,48,63,1,915,915,800,49),(69,49,50,1,24.99,24.99,17,2.95),(71,51,106,1,39.99,39.99,23,2.1),(72,52,1,1,599,599,511,5.79),(73,53,35,1,709.65,709.65,680,3.66),(74,54,1,1,598,598,511,15.35),(75,54,50,1,24.99,24.99,17,0.75),(76,52,51,1,8.45,8.45,7,1),(77,55,99,2,65.59,131.18,54,5),(78,55,106,1,39.99,39.99,23,7.25),(79,56,48,2,10,20,7,3.1),(80,56,45,1,11.99,11.99,8,3.33),(81,57,1,1,599,599,511,16.5),(82,57,23,1,35.19,35.19,29,6.8),(83,57,14,1,25.95,25.95,18,5.25),(84,58,76,1,849,849,733,11.51),(85,59,53,1,79.99,79.99,62,1.28),(86,59,55,1,12.99,12.99,9,2),(87,60,7,1,599.99,599.99,0,4.25),(88,61,48,3,10,30,7,3.23),(89,61,106,1,39.99,39.99,23,8.65),(90,62,73,1,598,598,418,4.25),(91,63,51,1,8.45,8.45,7,0.4),(92,63,9,1,100,100,82,1.75),(93,64,1,1,599,599,511,18.6),(94,64,21,1,147.25,147.25,130,14.5),(95,65,40,1,449,449,380,4.78),(96,66,55,1,12.99,12.99,9,3.64),(97,66,45,2,11.99,23.98,8,2),(98,67,63,1,915,915,800,59.7),(99,68,41,1,551.31,551.31,456,3.95),(100,69,88,1,55.0905,55.0905,41,12.844),(101,70,64,1,585.09,585.09,500,22),(102,70,56,1,8.18,8.18,7,8),(103,71,38,1,587.99,587.99,499,1),(104,72,63,1,915,915,800,7.5),(105,73,83,1,400.44,400.44,330,6.929),(106,74,103,1,169.19,169.19,123,23.55),(107,74,8,1,69.29,69.29,49,8),(108,75,6,1,249.99,249.99,201,4.94),(109,75,76,1,849,849,733,24.8777),(110,76,68,1,349.99,349.99,279,13.32),(111,77,22,1,695.2,695.2,605,14.985),(112,78,50,1,24.99,24.99,17,0.999),(113,78,23,1,35.1912,35.1912,29,12.9367),(114,79,7,1,599.99,599.99,513,1.998),(115,80,50,1,24.99,24.99,17,0.999),(116,80,10,1,349,349,289,4.995),(117,81,104,1,74.99,74.99,60,70.0201),(118,82,40,1,449,449,380,10.14),(119,83,10,1,349,349,289,6.855),(120,84,101,2,71.99,143.98,52,2.964),(121,84,102,1,188.35,188.35,145,32.8386),(122,84,8,1,69.2937,69.2937,49,5.928),(123,85,15,1,179.1,179.1,149,8.106),(124,86,73,1,598,598,418,85),(125,87,41,1,551.31,551.31,456,4),(126,88,84,1,185,185,123,24.332),(127,89,103,1,169.191,169.191,123,27.2328),(128,90,41,1,551.31,551.31,456,1.332),(129,91,101,2,71.99,143.98,104,2.607),(130,92,50,2,24.99,49.98,34,6),(131,92,3,1,298,298,235,17.5),(132,92,24,1,51.168,51.168,41,12),(133,93,59,1,549.99,549.99,466,73.26),(134,94,2,2,800,1600,29,4.49),(135,94,23,1,35.19,35.19,1565,19.39),(136,95,1,1,599,599,511,20),(137,95,50,2,24.99,49.98,34,6),(138,96,1,1,599,599,545,20),(139,96,50,2,24.99,49.98,511,6),(140,97,1,1,599,599,511,20),(141,97,50,2,24.99,49.98,34,6),(142,98,49,2,49.99,99.98,37.5,1.05),(143,98,11,1,1950,1950,1800,3.5),(144,99,53,1,79.99,79.99,62,0.9),(145,99,11,1,1950,1950,1800,4.5),(146,100,72,1,399,399,301,30),(147,101,91,1,57.94,57.94,49,4.95),(148,102,85,1,213.89,213.89,579,5),(149,103,7,1,599.99,599.99,2056,2),(151,102,40,1,449,449,579,12),(152,103,59,1,549.99,549.99,466,73.26),(153,103,88,2,55.09,110.18,41,4.33),(154,104,72,1,399,399,301,31.5),(155,105,95,1,59.994,59.994,50,10.5),(156,106,3,1,298,298,235,18.375),(157,107,53,1,79.99,79.99,62,2.1),(158,108,85,1,213.891,213.891,199,21.964),(159,109,105,1,49.99,49.99,38,11.56),(160,109,94,1,47.99,47.99,39,13.872),(161,110,100,2,29.95,59.9,44,1.8496),(162,111,49,1,29.99,29.99,311,0.35),(163,111,75,1,328.99,328.99,348.5,17.34),(164,112,63,1,915,915,800,177.75),(165,113,29,1,230.33,230.33,189,23.7),(166,114,83,1,400.44,400.44,330,9.717),(167,114,103,1,169.191,169.191,123,37.1357),(168,115,70,1,849.99,849.99,738,82.95),(169,116,87,1,150.092,150.092,171,5.684),(170,117,99,1,65.5918,65.5918,54,1.7864),(171,118,76,1,849,849,733,20.446),(172,119,49,1,29.994,29.994,37.5,0.2436),(173,119,28,1,414,414,390,11.368),(174,120,7,1,599.99,599.99,513,5.07),(175,121,23,1,35.1912,35.1912,29,32.8273),(176,121,90,1,67.0208,67.0208,75,6.76),(177,122,61,1,1639,1639,1550,207.025),(178,123,1,1,599,599,511,16.9),(179,123,53,1,79.99,79.99,62,1.69),(180,124,73,1,598,598,418,71.825),(181,125,63,1,915,915,800,126.75),(182,126,97,1,79.36,79.36,62,5.07),(183,126,105,1,49.99,49.99,38,8.45),(184,127,87,1,150.092,150.092,171,5.915),(185,127,90,1,67.0208,67.0208,75,6.76),(186,128,49,1,29.994,29.994,37.5,0.2535),(187,128,74,1,118.492,118.492,130,10.985),(188,129,70,1,849.99,849.99,738,60.83),(189,130,49,1,29.994,29.994,37.5,0.2607),(190,130,75,1,328.991,328.991,311,13.035),(191,131,11,1,1950,1950,1800,10.8625),(192,132,71,1,999.99,999.99,889,136.122),(193,133,99,1,65.5918,65.5918,54,1.7116),(194,133,106,1,39.99,39.99,23,7.78),(195,134,73,1,598,598,418,73.865),(196,135,85,1,213.891,213.891,199,16.511),(197,135,46,1,12.9124,12.9124,10.5,4.345),(198,136,65,1,599.99,599.99,525,57.0164),(199,137,63,1,915,915,800,133.2),(200,138,7,1,599.99,599.99,513,5.328),(201,139,83,1,400.44,400.44,330,2.7306),(202,139,85,1,213.891,213.891,199,6.327),(203,140,73,1,598,598,418,28.305),(204,141,2,1,789,789,711,2.997),(205,141,50,1,24.99,24.99,17,0.999),(206,142,90,1,67.0208,67.0208,75,2.664),(207,142,95,1,59.994,59.994,50,3.33),(208,143,22,1,695.2,695.2,605,14.985),(209,144,99,2,65.5918,131.184,108,2.1956),(210,144,92,1,319.99,319.99,289,4.7405),(211,145,76,1,849,849,733,12.5647),(212,146,4,1,54.95,54.95,42,7.485),(213,146,25,1,37.1907,37.1907,33,6.986),(214,147,59,1,549.99,549.99,466,73.26),(215,148,49,1,29.994,29.994,37.5,0.0999),(216,148,74,1,150,150,130,4.329),(217,149,1,1,599,599,511,16.9),(218,150,76,1,849,849,733,21.277),(219,151,16,1,265.05,265.05,252,6.591),(220,151,23,1,35.1912,35.1912,29,32.8273),(221,152,99,2,65.5918,131.184,108,1.4652),(222,152,87,1,150.092,150.092,171,2.331),(223,153,37,1,1103.2,1103.2,1299,3.33),(224,154,79,1,365.754,365.754,323,3.996),(225,155,66,1,499,499,399,79.04),(226,156,84,1,185,185,123,27.664),(227,156,105,1,49.99,49.99,38,9.88),(228,157,17,1,560,465.8,535,6.422),(229,157,50,1,24.99,24.99,17,2.964),(230,158,73,1,598,598,418,110.5),(231,159,57,1,24.99,24.99,18.95,1.3),(232,159,45,2,11.99,23.98,16,11.7),(233,160,76,1,849,849,733,25.1799),(234,161,70,1,849.99,849.99,738,69.16),(235,162,100,2,29.95,59.9,44,0.08),(236,162,8,1,69.2937,69.2937,49,0.3),(237,163,2,1,789,789,711,4.491),(238,164,63,1,915,915,800,74.85),(239,165,87,1,150.092,150.092,171,0.35),(240,167,82,1,148.33,148.33,115,0.42);
/*!40000 ALTER TABLE `order_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `order_track`
--
DROP TABLE IF EXISTS `order_track`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_track` (
`id` int NOT NULL AUTO_INCREMENT,
`order_id` int DEFAULT NULL,
`status` varchar(45) NOT NULL,
`updated_time` datetime(6) DEFAULT NULL,
`notes` varchar(256) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK31jv1s212kajfn3kk1ksmnyfl` (`order_id`),
CONSTRAINT `FK31jv1s212kajfn3kk1ksmnyfl` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `order_track`
--
LOCK TABLES `order_track` WRITE;
/*!40000 ALTER TABLE `order_track` DISABLE KEYS */;
INSERT INTO `order_track` VALUES (1,1,'NEW','2020-11-06 09:27:20.000000','Order placed by customer'),(2,2,'NEW','2020-11-06 09:36:37.000000','Order placed by customer'),(3,2,'PROCESSING','2020-11-07 10:00:10.000000','Order is being processed'),(4,3,'NEW','2020-11-09 05:02:15.000000','Order placed by customer'),(5,4,'NEW','2020-11-09 06:19:40.000000','Order placed by customer'),(6,5,'NEW','2020-11-09 06:38:33.000000','Order placed by customer'),(8,7,'NEW','2020-11-10 04:53:10.000000','Order was placed by customer'),(9,8,'NEW','2020-11-10 05:42:41.000000','Order was placed by customer'),(10,9,'NEW','2020-11-13 09:05:25.000000','Order was placed by customer'),(11,10,'NEW','2020-11-13 09:15:27.000000','Order was placed by customer'),(12,11,'NEW','2020-11-13 09:46:58.000000','Order was placed by customer'),(14,13,'NEW','2020-11-13 09:51:46.000000','Order was placed by customer'),(15,14,'NEW','2020-11-13 10:18:55.000000','Order was placed by customer'),(16,15,'NEW','2020-11-13 10:23:50.000000','Order was placed by customer'),(17,16,'NEW','2020-11-13 10:26:56.000000','Order was placed by customer'),(18,17,'NEW','2020-11-17 04:58:53.000000','Order was placed by customer'),(19,18,'NEW','2020-11-19 12:41:21.000000','Order was placed by customer'),(20,18,'PAID','2020-11-19 12:41:21.000000','Customer has paid this order'),(21,19,'NEW','2020-11-20 01:10:24.000000','Order was placed by customer'),(22,19,'PAID','2020-11-20 01:10:24.000000','Customer has paid this order'),(29,19,'PROCESSING','2020-11-29 01:57:22.000000','the order is being processed'),(30,18,'PACKAGED','2020-11-29 02:08:42.000000','products were packed'),(31,7,'PROCESSING','2020-11-29 02:10:40.000000','removed one product that is mainboard'),(32,19,'PACKAGED','2020-11-29 02:11:30.000000','products were packaged'),(33,19,'DELIVERED','2020-12-03 06:13:17.000000','customer received the package'),(34,5,'DELIVERED','2020-12-06 06:16:09.000000','customer got the product'),(35,18,'DELIVERED','2020-12-07 08:35:31.000000','products were delivered to customer'),(36,14,'DELIVERED','2020-12-07 08:40:15.000000','sent'),(37,3,'DELIVERED','2020-12-07 09:37:42.000000','customer got products'),(38,8,'DELIVERED','2020-12-07 11:11:23.000000','sent products'),(39,21,'NEW','2020-12-08 06:35:55.000000','Order was placed by customer'),(40,21,'DELIVERED','2020-12-08 06:36:26.000000','customer got the product'),(41,21,'PAID','2020-12-08 06:36:40.000000','customer paid (COD)'),(42,22,'NEW','2020-12-08 06:44:42.000000','Order was placed by customer'),(43,22,'DELIVERED','2020-12-08 06:45:05.000000','delivered to customer'),(44,22,'PAID','2020-12-08 06:45:07.000000','customer paid by COD'),(45,23,'NEW','2020-12-28 12:12:15.000000','Order was placed by customer'),(46,24,'NEW','2021-01-06 07:36:08.000000','Order was placed by customer'),(47,25,'NEW','2021-01-08 08:11:36.000000','Order was placed by customer'),(48,26,'NEW','2021-01-08 08:22:07.000000','Order was placed by customer'),(49,27,'NEW','2021-01-09 11:10:47.000000','Order was placed by customer'),(50,28,'NEW','2021-01-09 11:13:41.000000','Order was placed by customer'),(51,29,'NEW','2021-01-09 11:36:38.000000','Order was placed by customer'),(52,30,'NEW','2021-01-09 11:39:57.000000','Order was placed by customer'),(53,31,'NEW','2021-01-09 11:47:44.000000','Order was placed by customer'),(54,32,'NEW','2021-01-09 04:01:11.000000','Order was placed by customer'),(55,33,'NEW','2021-01-09 04:06:41.000000','Order was placed by customer'),(56,34,'NEW','2021-01-09 04:11:54.000000','Order was placed by customer'),(57,35,'NEW','2021-01-10 04:45:05.000000','Order was placed by customer'),(58,36,'NEW','2021-01-10 05:04:00.000000','Order was placed by customer'),(59,37,'NEW','2021-01-10 05:34:59.000000','Order was placed by customer'),(60,38,'NEW','2021-01-10 05:38:06.000000','Order was placed by customer'),(61,39,'NEW','2021-01-10 05:41:45.000000','Order was placed by customer'),(62,40,'NEW','2021-01-10 05:48:25.000000','Order was placed by customer'),(63,41,'NEW','2021-01-10 05:50:58.000000','Order was placed by customer'),(64,42,'NEW','2021-01-10 05:52:48.000000','Order was placed by customer'),(65,43,'NEW','2021-01-10 06:01:28.000000','Order was placed by customer'),(66,44,'NEW','2021-01-10 06:06:16.000000','Order was placed by customer'),(67,45,'NEW','2021-01-10 06:11:20.000000','Order was placed by customer'),(68,46,'NEW','2021-01-10 06:13:04.000000','Order was placed by customer'),(69,47,'NEW','2021-01-10 06:15:02.000000','Order was placed by customer'),(70,48,'NEW','2021-01-12 11:32:53.000000','Order was placed by customer'),(71,49,'NEW','2021-01-12 11:35:29.000000','Order was placed by customer'),(73,51,'NEW','2021-01-12 11:42:31.000000','Order was placed by customer'),(74,52,'NEW','2021-01-12 11:45:24.000000','Order was placed by customer'),(75,53,'NEW','2021-01-12 11:52:27.000000','Order was placed by customer'),(76,54,'NEW','2021-01-12 11:59:51.000000','Order was placed by customer'),(77,55,'NEW','2021-01-12 12:17:34.000000','Order was placed by customer'),(78,56,'NEW','2021-01-12 00:37:25.000000','Order was placed by customer'),(79,57,'NEW','2021-01-12 00:43:14.000000','Order was placed by customer'),(80,58,'NEW','2021-01-12 04:38:11.000000','Order was placed by customer'),(81,59,'NEW','2021-01-12 04:41:53.000000','Order was placed by customer'),(82,60,'NEW','2021-01-12 04:46:22.000000','Order was placed by customer'),(83,61,'NEW','2021-01-12 04:50:03.000000','Order was placed by customer'),(84,62,'NEW','2021-01-14 09:38:44.000000','Order was placed by customer'),(85,63,'NEW','2021-01-14 09:49:05.000000','Order was placed by customer'),(86,64,'NEW','2021-01-14 09:53:11.000000','Order was placed by customer'),(87,65,'NEW','2021-01-14 09:58:00.000000','Order was placed by customer'),(88,66,'NEW','2021-01-14 10:01:51.000000','Order was placed by customer'),(89,67,'NEW','2021-01-14 10:05:27.000000','Order was placed by customer'),(90,68,'NEW','2021-01-15 12:34:34.000000','Order was placed by customer'),(91,69,'NEW','2021-01-15 00:40:36.000000','Order was placed by customer'),(92,70,'NEW','2021-01-15 12:43:45.000000','Order was placed by customer'),(93,71,'NEW','2021-01-16 05:20:07.000000','Order was placed by customer'),(94,72,'NEW','2021-01-16 17:23:10.000000','Order was placed by customer'),(95,73,'NEW','2021-01-16 17:38:42.000000','Order was placed by customer'),(96,74,'NEW','2021-01-16 05:47:19.000000','Order was placed by customer'),(97,75,'NEW','2021-01-21 17:16:50.000000','Order was placed by customer'),(98,76,'NEW','2021-01-21 17:27:03.000000','Order was placed by customer'),(99,77,'NEW','2021-01-21 17:39:24.000000','Order was placed by customer'),(100,78,'NEW','2021-01-21 17:41:40.000000','Order was placed by customer'),(101,79,'NEW','2021-01-21 17:44:38.000000','Order was placed by customer'),(102,80,'NEW','2021-01-21 17:49:38.000000','Order was placed by customer'),(103,81,'NEW','2021-01-22 11:16:32.000000','Order was placed by customer'),(104,82,'NEW','2021-01-22 11:54:09.000000','Order was placed by customer'),(105,83,'NEW','2021-01-22 11:56:48.000000','Order was placed by customer'),(106,84,'NEW','2021-01-26 06:11:44.000000','Order was placed by customer'),(107,85,'NEW','2021-01-26 18:24:36.000000','Order was placed by customer'),(108,86,'NEW','2021-01-26 18:35:54.000000','Order was placed by customer'),(109,87,'NEW','2021-01-26 18:38:04.000000','Order was placed by customer'),(110,88,'NEW','2021-02-01 16:33:56.000000','Order was placed by customer'),(111,89,'NEW','2021-02-01 16:37:16.000000','Order was placed by customer'),(112,90,'NEW','2021-02-04 14:53:05.000000','Order was placed by customer'),(113,91,'NEW','2021-02-04 21:59:43.000000','Order was placed by customer'),(114,92,'NEW','2021-02-04 10:15:11.000000','Order was placed by customer'),(115,93,'NEW','2021-02-05 15:33:27.000000','Order was placed by customer'),(116,94,'NEW','2021-02-05 03:45:56.000000','Order was placed by customer'),(117,95,'NEW','2021-06-20 15:48:38.000000','Order was placed by customer'),(118,96,'NEW','2021-06-28 10:07:42.000000','Order was placed by customer'),(119,97,'NEW','2021-06-28 10:28:06.000000','Order was placed by customer'),(120,98,'NEW','2021-06-28 10:39:17.000000','Order was placed by customer'),(121,99,'NEW','2021-06-28 10:44:59.000000','Order was placed by customer'),(122,100,'NEW','2021-06-29 04:20:37.000000','Order was placed by customer'),(123,100,'PAID','2021-06-29 04:20:37.000000','Customer has paid this order'),(124,101,'NEW','2021-06-29 04:54:16.000000','Order was placed by customer'),(125,101,'PAID','2021-06-29 04:54:16.000000','Customer has paid this order'),(126,102,'NEW','2021-06-29 06:37:14.000000','Order was placed by customer'),(127,102,'PAID','2021-06-29 06:37:14.000000','Customer has paid this order'),(128,103,'NEW','2021-06-29 06:58:20.000000','Order was placed by customer'),(129,103,'PAID','2021-06-29 06:58:20.000000','Customer has paid this order 1'),(130,103,'PROCESSING','2021-07-26 10:55:57.000000','processed by team 2'),(131,103,'PACKAGED','2021-07-26 10:56:12.000000','products were packaged 3'),(132,103,'SHIPPING','2021-07-26 01:55:12.000000','on the way 4'),(133,103,'PICKED','2021-08-04 04:25:20.000000','picked'),(136,95,'PICKED','2021-08-05 17:22:10.000000','Shipper picked the package'),(137,94,'PICKED','2021-08-05 17:25:47.000000','Shipper picked the package'),(138,90,'PICKED','2021-08-05 17:26:35.000000','Shipper picked the package'),(139,76,'PICKED','2021-08-05 17:27:04.000000','Shipper picked the package'),(140,93,'PICKED','2021-08-05 17:30:09.000000','Shipper picked the package'),(141,91,'PICKED','2021-08-05 17:32:57.000000','Shipper picked the package'),(142,84,'PICKED','2021-08-05 05:37:36.000000','Shipper picked the package'),(143,75,'PICKED','2021-08-05 17:41:48.000000','Shipper picked the package'),(144,80,'PICKED','2021-08-05 17:43:16.000000','Shipper picked the package'),(145,72,'PICKED','2021-08-05 17:44:22.000000','Shipper picked the package'),(146,71,'PICKED','2021-08-05 17:45:02.000000','Shipper picked the package'),(147,65,'PICKED','2021-08-05 17:49:15.000000','Shipper picked the package'),(148,100,'PICKED','2021-08-05 05:51:30.000000','Shipper picked the package'),(149,101,'PICKED','2021-08-05 05:51:48.000000','Shipper picked the package'),(150,99,'PICKED','2021-08-05 18:54:10.000000','Shipper picked the package'),(151,98,'PICKED','2021-08-05 18:54:29.000000','Shipper picked the package'),(152,98,'SHIPPING','2021-08-05 18:54:36.000000','Package is on the way to deliver'),(153,98,'DELIVERED','2021-08-05 18:57:56.000000','Package was delivered'),(154,97,'PICKED','2021-08-05 18:58:13.000000','Shipper picked the package'),(155,97,'SHIPPING','2021-08-05 18:58:19.000000','Package is on the way to deliver'),(156,96,'PICKED','2021-08-05 06:59:05.000000','Shipper picked the package'),(157,96,'SHIPPING','2021-08-05 06:59:07.000000','Package is on the way to deliver'),(158,96,'DELIVERED','2021-08-05 06:59:10.000000','Package was delivered'),(159,96,'RETURNED','2021-08-05 06:59:12.000000','Package was returned'),(160,103,'DELIVERED','2021-08-05 07:00:40.000000','Package was delivered'),(161,101,'SHIPPING','2021-08-05 07:00:51.000000','Package is on the way to deliver'),(162,100,'SHIPPING','2021-08-05 07:01:00.000000','Package is on the way to deliver'),(163,102,'PROCESSING','2021-06-29 08:00:42.000000','the order is being processed'),(165,99,'SHIPPING','2021-08-06 18:08:44.000000','Package is on the way to deliver'),(166,100,'DELIVERED','2021-08-06 06:17:50.000000','Package was delivered'),(167,99,'DELIVERED','2021-08-06 18:18:14.000000','Package was delivered'),(168,95,'SHIPPING','2021-08-06 18:29:18.000000','Package is on the way to deliver'),(169,90,'SHIPPING','2021-08-06 18:30:14.000000','Package is on the way to deliver'),(170,71,'SHIPPING','2021-08-06 18:30:26.000000','Package is on the way to deliver'),(171,72,'SHIPPING','2021-08-06 18:31:41.000000','Package is on the way to deliver'),(172,76,'SHIPPING','2021-08-06 18:47:26.000000','Package is on the way to deliver'),(173,80,'SHIPPING','2021-08-06 18:49:04.000000','Package is on the way to deliver'),(174,75,'SHIPPING','2021-08-06 18:49:15.000000','Package is on the way to deliver'),(175,92,'PICKED','2021-08-06 06:54:10.000000','Shipper picked the package'),(176,91,'SHIPPING','2021-08-06 18:54:22.000000','Package is on the way to deliver'),(177,97,'DELIVERED','2021-08-06 18:55:00.000000','Package was delivered'),(178,94,'SHIPPING','2021-08-06 18:55:10.000000','Package is on the way to deliver'),(179,92,'SHIPPING','2021-08-09 00:41:36.000000','Package is on the way to deliver'),(180,93,'SHIPPING','2021-08-09 12:41:42.000000','Package is on the way to deliver'),(181,84,'SHIPPING','2021-08-09 00:41:48.000000','Package is on the way to deliver'),(182,70,'PICKED','2021-08-09 12:51:32.000000','Shipper picked the package'),(183,62,'PICKED','2021-08-09 12:51:40.000000','Shipper picked the package'),(184,70,'SHIPPING','2021-08-09 12:53:17.000000','Package is on the way to deliver'),(185,62,'SHIPPING','2021-08-09 12:53:21.000000','Package is on the way to deliver'),(186,63,'PICKED','2021-08-09 12:53:25.000000','Shipper picked the package'),(187,70,'DELIVERED','2021-08-09 12:53:29.000000','Package was delivered'),(188,70,'RETURNED','2021-08-09 12:53:35.000000','Package was returned'),(189,95,'DELIVERED','2021-08-09 14:13:09.000000','Package was delivered'),(190,101,'PROCESSING','2021-06-29 07:52:11.000000','the order is being processed'),(191,100,'PROCESSING','2021-06-29 09:01:05.000000','order is being processed'),(192,96,'PROCESSING','2021-08-01 07:58:54.000000','order is being processed'),(194,97,'RETURN_REQUESTED','2021-08-12 20:44:05.000000','Reason: The product arrived too late. Note: very late, unacceptable'),(199,3,'RETURN_REQUESTED','2021-08-12 21:22:07.000000','Reason: I received the wrong items. Note: I ordered a phone but got a stone'),(200,64,'RETURN_REQUESTED','2021-08-12 21:23:03.000000','Reason: The product was damaged/defective. Note: the product was damaged, unusable'),(202,8,'RETURN_REQUESTED','2021-08-12 21:43:09.000000','Reason: The product was damaged/defective'),(204,23,'RETURN_REQUESTED','2021-08-12 21:47:55.000000','Reason: I bought the wrong items'),(205,19,'RETURN_REQUESTED','2021-08-12 21:50:55.000000','Reason: The product was damaged/defective. Note: please return money'),(206,31,'RETURN_REQUESTED','2021-08-12 21:53:16.000000','Reason: The product was damaged/defective'),(207,100,'RETURN_REQUESTED','2021-08-15 12:16:59.000000','Reason: I received the wrong items. Note: I ordered iPhone 10 but you shipped 7 plus.'),(208,104,'NEW','2021-10-05 12:46:21.000000','Order was placed by customer'),(209,104,'PAID','2021-10-05 12:46:21.000000','Customer has paid this order'),(210,105,'NEW','2021-10-05 13:20:39.000000','Order was placed by customer'),(211,105,'PAID','2021-10-05 13:20:39.000000','Customer has paid this order'),(212,106,'NEW','2021-10-05 13:25:06.000000','Order was placed by customer'),(213,106,'PAID','2021-10-05 13:25:06.000000','Customer has paid this order'),(214,107,'NEW','2021-10-05 02:54:23.000000','Order was placed by customer'),(215,107,'PAID','2021-10-05 02:54:23.000000','Customer has paid this order'),(216,107,'PROCESSING','2021-10-05 02:55:08.000000','order is being processed'),(217,108,'NEW','2021-10-05 15:03:59.000000','Order was placed by customer'),(218,108,'PAID','2021-10-05 15:03:59.000000','Customer has paid this order'),(219,109,'NEW','2021-10-05 15:07:16.000000','Order was placed by customer'),(220,109,'PAID','2021-10-05 15:07:16.000000','Customer has paid this order'),(221,110,'NEW','2021-10-05 15:13:35.000000','Order was placed by customer'),(222,110,'PAID','2021-10-05 15:13:35.000000','Customer has paid this order'),(223,111,'NEW','2021-10-05 03:16:20.000000','Order was placed by customer'),(224,111,'PAID','2021-10-05 03:16:20.000000','Customer has paid this order'),(225,111,'PROCESSING','2021-10-02 15:17:07.000000','order is being processed'),(226,112,'NEW','2021-10-05 17:30:25.000000','Order was placed by customer'),(227,112,'PAID','2021-10-05 17:30:25.000000','Customer has paid this order'),(228,113,'NEW','2021-10-05 17:32:22.000000','Order was placed by customer'),(229,113,'PAID','2021-10-05 17:32:22.000000','Customer has paid this order'),(230,114,'NEW','2021-10-05 17:34:55.000000','Order was placed by customer'),(231,114,'PAID','2021-10-05 17:34:55.000000','Customer has paid this order'),(232,115,'NEW','2021-10-05 17:37:34.000000','Order was placed by customer'),(233,115,'PAID','2021-10-05 17:37:34.000000','Customer has paid this order'),(234,116,'NEW','2021-10-05 21:31:51.000000','Order was placed by customer'),(235,116,'PAID','2021-10-05 21:31:51.000000','Customer has paid this order'),(236,117,'NEW','2021-10-05 09:35:47.000000','Order was placed by customer'),(237,117,'PAID','2021-10-05 09:35:47.000000','Customer has paid this order'),(238,118,'NEW','2021-10-05 09:37:25.000000','Order was placed by customer'),(239,118,'PAID','2021-10-05 09:37:25.000000','Customer has paid this order'),(240,119,'NEW','2021-10-05 09:41:35.000000','Order was placed by customer'),(241,119,'PAID','2021-10-05 09:41:35.000000','Customer has paid this order'),(242,120,'NEW','2021-10-05 21:54:17.000000','Order was placed by customer'),(243,120,'PAID','2021-10-05 21:54:17.000000','Customer has paid this order'),(244,121,'NEW','2021-10-05 21:56:45.000000','Order was placed by customer'),(245,121,'PAID','2021-10-05 21:56:45.000000','Customer has paid this order'),(246,122,'NEW','2021-10-05 22:06:02.000000','Order was placed by customer'),(247,122,'PAID','2021-10-05 22:06:02.000000','Customer has paid this order'),(248,123,'NEW','2021-10-05 22:08:07.000000','Order was placed by customer'),(249,123,'PAID','2021-10-05 22:08:07.000000','Customer has paid this order'),(250,124,'NEW','2021-10-05 22:10:00.000000','Order was placed by customer'),(251,124,'PAID','2021-10-05 22:10:00.000000','Customer has paid this order'),(252,125,'NEW','2021-10-06 09:27:54.000000','Order was placed by customer'),(253,125,'PAID','2021-10-06 09:27:54.000000','Customer has paid this order'),(254,126,'NEW','2021-10-06 09:30:07.000000','Order was placed by customer'),(255,126,'PAID','2021-10-06 09:30:07.000000','Customer has paid this order'),(256,127,'NEW','2021-10-06 09:33:35.000000','Order was placed by customer'),(257,127,'PAID','2021-10-06 09:33:35.000000','Customer has paid this order'),(258,128,'NEW','2021-10-06 09:37:11.000000','Order was placed by customer'),(259,128,'PAID','2021-10-06 09:37:11.000000','Customer has paid this order'),(260,129,'NEW','2021-10-06 09:41:13.000000','Order was placed by customer'),(261,129,'PAID','2021-10-06 09:41:13.000000','Customer has paid this order'),(262,130,'NEW','2021-10-06 09:43:31.000000','Order was placed by customer'),(263,130,'PAID','2021-10-06 09:43:31.000000','Customer has paid this order'),(264,131,'NEW','2021-10-06 09:46:48.000000','Order was placed by customer'),(265,131,'PAID','2021-10-06 09:46:48.000000','Customer has paid this order'),(266,132,'NEW','2021-10-06 09:50:16.000000','Order was placed by customer'),(267,132,'PAID','2021-10-06 09:50:16.000000','Customer has paid this order'),(268,133,'NEW','2021-10-06 09:52:31.000000','Order was placed by customer'),(269,133,'PAID','2021-10-06 09:52:31.000000','Customer has paid this order'),(270,134,'NEW','2021-10-06 09:56:16.000000','Order was placed by customer'),(271,134,'PAID','2021-10-06 09:56:16.000000','Customer has paid this order'),(272,135,'NEW','2021-10-06 09:58:04.000000','Order was placed by customer'),(273,135,'PAID','2021-10-06 09:58:04.000000','Customer has paid this order'),(274,136,'NEW','2021-10-06 10:03:06.000000','Order was placed by customer'),(275,136,'PAID','2021-10-06 10:03:06.000000','Customer has paid this order'),(276,137,'NEW','2021-10-06 10:45:20.000000','Order was placed by customer'),(277,137,'PAID','2021-10-06 10:45:20.000000','Customer has paid this order'),(278,138,'NEW','2021-10-06 10:48:32.000000','Order was placed by customer'),(279,138,'PAID','2021-10-06 10:48:32.000000','Customer has paid this order'),(280,139,'NEW','2021-10-06 10:52:04.000000','Order was placed by customer'),(281,139,'PAID','2021-10-06 10:52:04.000000','Customer has paid this order'),(282,140,'NEW','2021-10-06 10:56:36.000000','Order was placed by customer'),(283,140,'PAID','2021-10-06 10:56:36.000000','Customer has paid this order'),(284,141,'NEW','2021-10-06 11:00:27.000000','Order was placed by customer'),(285,141,'PAID','2021-10-06 11:00:27.000000','Customer has paid this order'),(286,142,'NEW','2021-10-06 11:02:28.000000','Order was placed by customer'),(287,142,'PAID','2021-10-06 11:02:28.000000','Customer has paid this order'),(288,143,'NEW','2021-10-06 11:04:50.000000','Order was placed by customer'),(289,143,'PAID','2021-10-06 11:04:50.000000','Customer has paid this order'),(290,144,'NEW','2021-10-06 11:09:34.000000','Order was placed by customer'),(291,144,'PAID','2021-10-06 11:09:34.000000','Customer has paid this order'),(292,145,'NEW','2021-10-06 11:11:10.000000','Order was placed by customer'),(293,145,'PAID','2021-10-06 11:11:10.000000','Customer has paid this order'),(294,146,'NEW','2021-10-06 11:13:05.000000','Order was placed by customer'),(295,146,'PAID','2021-10-06 11:13:05.000000','Customer has paid this order'),(296,147,'NEW','2021-10-06 11:15:31.000000','Order was placed by customer'),(297,147,'PAID','2021-10-06 11:15:31.000000','Customer has paid this order'),(298,148,'NEW','2021-10-06 11:17:23.000000','Order was placed by customer'),(299,148,'PAID','2021-10-06 11:17:23.000000','Customer has paid this order'),(300,149,'NEW','2021-10-06 11:26:09.000000','Order was placed by customer'),(301,149,'PAID','2021-10-06 11:26:09.000000','Customer has paid this order'),(302,150,'NEW','2021-10-06 11:27:47.000000','Order was placed by customer'),(303,150,'PAID','2021-10-06 11:27:47.000000','Customer has paid this order'),(304,151,'NEW','2021-10-06 11:29:41.000000','Order was placed by customer'),(305,151,'PAID','2021-10-06 11:29:41.000000','Customer has paid this order'),(306,152,'NEW','2021-10-06 11:39:10.000000','Order was placed by customer'),(307,152,'PAID','2021-10-06 11:39:10.000000','Customer has paid this order'),(308,153,'NEW','2021-10-06 11:40:48.000000','Order was placed by customer'),(309,153,'PAID','2021-10-06 11:40:48.000000','Customer has paid this order'),(310,154,'NEW','2021-10-06 11:42:38.000000','Order was placed by customer'),(311,154,'PAID','2021-10-06 11:42:38.000000','Customer has paid this order'),(312,155,'NEW','2021-10-06 11:45:03.000000','Order was placed by customer'),(313,155,'PAID','2021-10-06 11:45:03.000000','Customer has paid this order'),(314,156,'NEW','2021-10-06 11:47:54.000000','Order was placed by customer'),(315,156,'PAID','2021-10-06 11:47:54.000000','Customer has paid this order'),(316,157,'NEW','2021-10-06 11:49:24.000000','Order was placed by customer'),(317,157,'PAID','2021-10-06 11:49:24.000000','Customer has paid this order'),(318,158,'NEW','2021-10-06 11:55:54.000000','Order was placed by customer'),(319,158,'PAID','2021-10-06 11:55:54.000000','Customer has paid this order'),(320,159,'NEW','2021-10-06 11:58:19.000000','Order was placed by customer'),(321,159,'PAID','2021-10-06 11:58:19.000000','Customer has paid this order'),(322,160,'NEW','2021-10-06 00:00:08.000000','Order was placed by customer'),(323,160,'PAID','2021-10-06 00:00:08.000000','Customer has paid this order'),(324,161,'NEW','2021-10-06 12:04:43.000000','Order was placed by customer'),(325,161,'PAID','2021-10-06 12:04:43.000000','Customer has paid this order'),(326,162,'NEW','2021-10-06 12:08:10.000000','Order was placed by customer'),(327,163,'NEW','2021-10-06 12:10:44.000000','Order was placed by customer'),(328,164,'NEW','2021-10-06 12:12:52.000000','Order was placed by customer'),(329,164,'PAID','2021-10-06 12:12:52.000000','Customer has paid this order'),(330,26,'DELIVERED','2021-11-10 14:46:17.000000','Customer received products'),(331,40,'PROCESSING','2021-01-11 21:26:03.000000','Order is being processed'),(332,40,'DELIVERED','2021-01-16 21:25:29.000000','Customer received products'),(333,57,'DELIVERED','2021-01-19 21:28:28.000000','Customer received products'),(334,56,'DELIVERED','2021-01-18 21:29:04.000000','Customer received products'),(335,66,'DELIVERED','2021-01-17 21:31:19.000000','Customer received products'),(336,159,'DELIVERED','2021-10-13 21:34:41.000000','Customer received products'),(337,101,'DELIVERED','2021-11-13 18:37:10.000000','Customer received products'),(338,69,'PROCESSING','2020-11-08 15:04:10.000000','Order is being processed'),(339,69,'SHIPPING','2020-11-09 00:08:54.000000','Shipper is delivering the package'),(340,69,'DELIVERED','2020-11-17 00:06:24.000000','Customer received products'),(341,54,'PROCESSING','2021-02-07 13:13:52.000000','Order is being processed'),(342,54,'SHIPPING','2021-02-08 14:14:11.000000','Shipper is delivering the package'),(343,54,'DELIVERED','2021-02-15 15:14:22.000000','Customer received products'),(344,119,'PROCESSING','2021-10-06 13:11:29.000000','Order is being processed'),(345,119,'SHIPPING','2021-10-07 13:11:44.000000','Shipper is delivering the package'),(346,119,'DELIVERED','2021-10-31 13:11:57.000000','Customer received products'),(347,118,'PROCESSING','2021-10-06 13:19:13.000000','Order is being processed'),(348,118,'PICKED','2021-10-07 13:19:24.000000','Shipper picked the package'),(349,118,'PICKED','2021-10-07 14:19:42.000000','Shipper picked the package'),(350,118,'DELIVERED','2021-10-12 17:19:54.000000','Customer received products'),(351,117,'PROCESSING','2021-10-06 13:23:06.000000','Order is being processed'),(352,117,'PICKED','2021-10-06 16:23:18.000000','Shipper picked the package'),(353,117,'SHIPPING','2021-10-06 17:23:32.000000','Shipper is delivering the package'),(354,117,'DELIVERED','2021-10-13 13:23:43.000000','Customer received products'),(355,143,'PROCESSING','2021-10-07 13:34:13.000000','Order is being processed'),(356,143,'SHIPPING','2021-10-07 15:34:22.000000','Shipper is delivering the package'),(357,143,'DELIVERED','2021-10-15 13:34:42.000000','Customer received products'),(358,142,'PROCESSING','2021-10-07 13:38:23.000000','Order is being processed'),(359,142,'SHIPPING','2021-10-07 14:38:34.000000','Shipper is delivering the package'),(360,142,'DELIVERED','2021-10-15 13:38:45.000000','Customer received products'),(361,131,'PROCESSING','2021-10-06 18:06:35.000000','Order is being processed'),(362,131,'SHIPPING','2021-10-07 16:06:49.000000','Shipper is delivering the package'),(363,131,'DELIVERED','2021-10-27 16:11:10.000000','Customer received products'),(364,133,'PROCESSING','2021-10-06 18:15:17.000000','Order is being processed'),(365,133,'SHIPPING','2021-10-07 16:15:30.000000','Shipper is delivering the package'),(366,133,'DELIVERED','2021-10-15 16:15:45.000000','Customer received products'),(367,132,'PROCESSING','2021-10-06 16:27:32.000000','Order is being processed'),(368,132,'SHIPPING','2021-10-07 16:30:10.000000','Shipper is delivering the package'),(369,132,'DELIVERED','2021-10-15 16:30:28.000000','Customer received products'),(370,28,'PROCESSING','2021-05-01 16:51:44.000000','Order is being processed'),(371,28,'PACKAGED','2021-05-01 18:51:57.000000','Products were packaged'),(372,28,'PICKED','2021-05-01 20:52:12.000000','Shipper picked the package'),(373,28,'SHIPPING','2021-05-01 22:52:24.000000','Shipper is delivering the package'),(374,28,'DELIVERED','2021-05-06 18:52:37.000000','Customer received products'),(375,150,'PROCESSING','2021-10-06 16:55:03.000000','Order is being processed'),(376,150,'PICKED','2021-10-07 18:55:15.000000','Shipper picked the package'),(377,150,'SHIPPING','2021-10-07 19:55:35.000000','Shipper is delivering the package'),(378,150,'DELIVERED','2021-10-14 16:55:44.000000','Customer received products'),(379,149,'PROCESSING','2021-10-06 17:59:34.000000','Order is being processed'),(380,149,'PICKED','2021-10-07 16:59:42.000000','Shipper picked the package'),(381,149,'SHIPPING','2021-10-08 16:59:52.000000','Shipper is delivering the package'),(382,149,'DELIVERED','2021-10-15 17:00:01.000000','Customer received products'),(383,151,'PROCESSING','2021-10-06 17:07:12.000000','Order is being processed'),(384,151,'PICKED','2021-10-07 17:07:22.000000','Shipper picked the package'),(385,151,'SHIPPING','2021-10-07 19:07:34.000000','Shipper is delivering the package'),(386,151,'DELIVERED','2021-10-12 17:07:45.000000','Customer received products'),(387,74,'PROCESSING','2021-01-17 17:16:08.000000','Order is being processed'),(388,74,'PICKED','2021-01-17 18:16:21.000000','Shipper picked the package'),(389,74,'SHIPPING','2021-01-17 21:16:33.000000','Shipper is delivering the package'),(390,74,'DELIVERED','2021-01-24 17:16:45.000000','Customer received products'),(391,156,'PROCESSING','2021-10-07 17:23:09.000000','Order is being processed'),(392,156,'PICKED','2021-10-07 17:23:19.000000','Shipper picked the package'),(393,156,'SHIPPING','2021-10-07 22:23:27.000000','Shipper is delivering the package'),(394,156,'DELIVERED','2021-10-12 17:23:38.000000','Customer received products'),(395,155,'PROCESSING','2021-10-07 17:29:50.000000','Order is being processed'),(396,155,'PICKED',NULL,'Shipper picked the package'),(397,155,'SHIPPING','2021-10-07 20:30:08.000000','Shipper is delivering the package'),(398,155,'DELIVERED','2021-10-13 17:30:18.000000','Customer received products'),(399,84,'DELIVERED','2021-08-17 17:32:32.000000','Customer received products'),(400,160,'PROCESSING','2021-10-06 17:47:25.000000','Order is being processed'),(401,160,'PICKED','2021-10-07 17:47:33.000000','Shipper picked the package'),(402,160,'SHIPPING','2021-10-07 19:47:42.000000','Shipper is delivering the package'),(403,160,'DELIVERED','2021-10-12 17:48:01.000000','Customer received products'),(404,92,'DELIVERED','2021-08-15 17:51:23.000000','Customer received products'),(405,165,'NEW','2024-11-08 01:17:10.062000','Order was placed by the customer'),(406,166,'NEW','2024-11-08 01:24:54.562000','Order was placed by the customer'),(407,18,'RETURN_REQUESTED','2024-11-08 03:00:41.600000','Reason: I received the wrong items'),(408,167,'NEW','2024-11-08 03:02:11.340000','Order was placed by the customer');
/*!40000 ALTER TABLE `order_track` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `orders`
--
DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `orders` (
`id` int NOT NULL AUTO_INCREMENT,
`customer_id` int DEFAULT NULL,
`order_time` datetime(6) DEFAULT NULL,
`payment_method` varchar(255) DEFAULT NULL,
`product_cost` float NOT NULL,
`shipping_cost` float NOT NULL,
`subtotal` float NOT NULL,
`tax` float NOT NULL,
`total` float NOT NULL,
`status` varchar(255) DEFAULT NULL,
`first_name` varchar(45) NOT NULL,
`last_name` varchar(45) NOT NULL,
`phone_number` varchar(15) NOT NULL,
`address_line_1` varchar(64) NOT NULL,
`address_line_2` varchar(64) DEFAULT NULL,
`city` varchar(45) NOT NULL,
`state` varchar(45) NOT NULL,
`postal_code` varchar(10) NOT NULL,
`country` varchar(45) NOT NULL,
`deliver_days` int NOT NULL,
`deliver_date` datetime(6) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKpxtb8awmi0dk6smoh2vp1litg` (`customer_id`),
CONSTRAINT `FKpxtb8awmi0dk6smoh2vp1litg` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=168 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `orders`
--
LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
INSERT INTO `orders` VALUES (1,1,'2021-02-25 21:27:19.000000','COD',479.2,3.35,599,0,602.35,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-02-27 00:00:00.000000'),(2,5,'2021-02-25 21:36:36.000000','CREDIT_CARD',75.864,4.6,94.83,0,99.43,'DELIVERED','Tina','D Jamerson','513-967-0375','934 Small Street','Amish Country Byway','Berlin','Ohio','44610','United States',8,'2021-03-06 00:00:00.000000'),(3,7,'2021-02-28 17:02:12.000000','COD',579.424,6.7,724.28,0,730.98,'DELIVERED','Molly','Norris','079 8802 955','88 Simone Weil Avenue','','London','','SS6 1W','United Kingdom',6,'2021-03-07 00:00:00.000000'),(4,12,'2021-02-28 18:19:35.000000','COD',52.472,1.86,65.59,0,67.45,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-03-06 00:00:00.000000'),(5,15,'2021-02-28 18:38:26.000000','COD',32.704,2.7,40.88,0,43.58,'DELIVERED','Avatar','Cheema','03322684941','181 /, th Floor, M G Road, Burrabazar','','Kolkata','West Bengal','700007','India',5,'2021-03-06 00:00:00.000000'),(7,13,'2021-03-01 16:53:10.000000','COD',47.92,5.38,59.9,0,65.28,'DELIVERED','Saka','Prakash','02223011775','B/7/a Bharat Ngr, Grant Road','','Mumbai','Maharashtra','400007','India',5,'2021-03-07 00:00:00.000000'),(8,5,'2021-03-01 17:42:41.000000','COD',28.152,12.88,35.19,0,48.07,'DELIVERED','Charles','A Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10013','United States',7,'2021-03-09 00:00:00.000000'),(9,1,'2021-03-04 09:05:25.000000','COD',479.992,4.8,599.99,0,604.79,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-06 00:00:00.000000'),(10,1,'2021-03-04 09:15:27.000000','COD',16,2.57,20,0,22.57,'DELIVERED','Trang','Le Thi Quynh','0918664450','Address Line 1','Address Line 2','Hanoi','','100000','Vietnam',2,'2021-03-07 00:00:00.000000'),(11,1,'2021-03-04 09:46:58.000000','COD',15.96,2.33,19.95,0,22.28,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-06 00:00:00.000000'),(13,1,'2021-03-04 09:51:46.000000','COD',1311.2,15.2,1639,0,1654.2,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-06 00:00:00.000000'),(14,1,'2021-03-04 10:18:55.000000','COD',104.944,0.99,131.18,0,132.17,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-06 00:00:00.000000'),(15,1,'2021-03-04 10:23:50.000000','COD',3933.6,36.75,4917,0,4953.75,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-06 00:00:00.000000'),(16,1,'2021-03-04 10:26:56.000000','COD',1599.98,17.5,1999.98,0,2017.48,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-06 00:00:00.000000'),(17,1,'2021-03-08 16:58:53.000000','COD',47.984,1.22,59.98,0,61.2,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-10 00:00:00.000000'),(18,1,'2021-03-10 12:41:21.000000','PAYPAL',760.152,16.43,950.19,0,966.62,'RETURN_REQUESTED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-03-12 00:00:00.000000'),(19,5,'2021-03-11 13:10:24.000000','PAYPAL',371.344,17.54,464.18,0,481.72,'DELIVERED','Tobie','Abel','19094644165','4213 Gordon Street','Novak Building','Chino','California','91710','United States',5,'2021-03-17 00:00:00.000000'),(21,8,'2021-03-29 18:35:55.000000','COD',9.592,3.5,11.99,0,15.49,'DELIVERED','Ethan','Jones','070 2534 460','101 Gordon Terrace','','Barton','','SY14 4FH','United Kingdom',5,'2021-04-04 00:00:00.000000'),(22,11,'2021-03-29 18:44:42.000000','COD',9.592,3.65,11.99,0,15.64,'DELIVERED','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh','500042','India',6,'2021-04-05 00:00:00.000000'),(23,5,'2021-04-18 12:12:15.000000','COD',13.52,1,16.9,0,17.9,'DELIVERED','Charles','A Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10013','United States',7,'2021-04-26 00:00:00.000000'),(24,7,'2021-04-27 19:36:08.000000','COD',399.2,15,499,0,514,'DELIVERED','Molly','Norris','079 8802 955','88 Simone Weil Avenue','','London','','SS6 1W','United Kingdom',6,'2021-05-04 00:00:00.000000'),(25,11,'2021-04-29 20:11:36.000000','COD',167.328,12.2,209.16,0,221.36,'DELIVERED','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh','500042','India',6,'2021-05-06 00:00:00.000000'),(26,15,'2021-04-26 20:22:07.000000','COD',28.15,26,35.19,0,61.19,'DELIVERED','Avatar','Cheema','03322684941','181 /, th Floor, M G Road, Burrabazar','','Kolkata','West Bengal','700007','India',5,'2021-05-02 00:00:00.000000'),(27,18,'2021-04-30 11:10:47.000000','COD',23.96,0.6,29.95,0,30.55,'DELIVERED','Alisa','Willcox','423-893-1283','1053 Broadway Avenue','','Chattanooga','Tennessee','37421','United States',8,'2021-05-09 00:00:00.000000'),(28,8,'2021-04-30 11:13:41.000000','COD',184.26,15.56,230.33,0,245.89,'DELIVERED','Ethan','Jones','070 2534 460','101 Gordon Terrace','','Barton','','SY14 4FH','United Kingdom',5,'2021-05-06 00:00:00.000000'),(29,13,'2021-04-28 11:36:38.000000','COD',36.008,6.1,45.01,0,51.11,'DELIVERED','Saka','Prakash','02223011775','B/7/a Bharat Ngr, Grant Road','','Mumbai','Maharashtra','400007','India',5,'2021-05-04 00:00:00.000000'),(30,12,'2021-04-25 11:39:57.000000','COD',128.288,6.95,160.36,0,167.31,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-05-01 00:00:00.000000'),(31,5,'2021-04-24 11:47:44.000000','COD',292.6,12,365.75,0,377.75,'DELIVERED','Charles','A Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10013','United States',7,'2021-05-02 00:00:00.000000'),(32,14,'2021-04-25 16:01:11.000000','COD',47.992,8.65,59.99,0,68.64,'DELIVERED','Gautam','Nayak','02226200995','37 , Dhake Colony, J.p.rd, Andheri (west)','','Mumbai','Maharashtra','400058','India',5,'2021-05-01 00:00:00.000000'),(33,10,'2021-04-28 16:06:41.000000','COD',441.048,3.48,551.31,0,554.79,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2021-05-04 00:00:00.000000'),(34,2,'2021-04-30 16:11:54.000000','COD',19.992,2.06,24.99,0,27.05,'DELIVERED','Allbright','Lorraine','781-434-1947','2320 Romano Street','','Cambridge','Massachusetts','2142','United States',7,'2021-05-08 00:00:00.000000'),(35,7,'2021-05-01 16:45:05.000000','COD',24,30,30,0,60,'DELIVERED','Molly','Norris','079 8802 955','88 Simone Weil Avenue','','London','','SS6 1W','United Kingdom',6,'2021-05-08 00:00:00.000000'),(36,12,'2021-05-01 17:04:00.000000','COD',359.2,10.15,449,0,459.15,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-05-07 00:00:00.000000'),(37,19,'2021-04-14 17:34:59.000000','COD',59.992,40.21,74.99,0,115.2,'DELIVERED','Chelsea','Greener','(07) 4918 39','79 Masthead Drive','','Great Keepel Island','Queensland','4700','Australia',5,'2021-04-20 00:00:00.000000'),(38,19,'2021-04-06 17:38:06.000000','COD',167.328,7.5,209.16,0,216.66,'DELIVERED','Chelsea','Greener','(07) 4918 39','79 Masthead Drive','','Great Keepel Island','Queensland','4700','Australia',5,'2021-04-12 00:00:00.000000'),(39,8,'2021-04-10 17:41:45.000000','COD',47.92,1.24,59.9,0,61.14,'DELIVERED','Ethan','Jones','070 2534 460','101 Gordon Terrace','','Barton','','SY14 4FH','United Kingdom',5,'2021-04-16 00:00:00.000000'),(40,14,'2021-04-12 17:48:25.000000','COD',468.07,26.07,585.09,0,611.16,'DELIVERED','Gautam','Nayak','02226200995','37 , Dhake Colony, J.p.rd, Andheri (west)','','Mumbai','Maharashtra','400058','India',5,'2021-04-18 00:00:00.000000'),(41,14,'2021-01-29 17:50:58.000000','COD',359.2,10.43,449,0,459.43,'DELIVERED','Gautam','Nayak','02226200995','37 , Dhake Colony, J.p.rd, Andheri (west)','','Mumbai','Maharashtra','400058','India',5,'2021-02-04 00:00:00.000000'),(42,14,'2020-12-30 17:52:48.000000','COD',24,5.99,30,0,35.99,'DELIVERED','Gautam','Nayak','02226200995','37 , Dhake Colony, J.p.rd, Andheri (west)','','Mumbai','Maharashtra','400058','India',5,'2021-01-05 00:00:00.000000'),(43,18,'2021-03-26 18:01:28.000000','COD',479.2,13.98,599,0,612.98,'DELIVERED','Alisa','Willcox','423-893-1283','1053 Broadway Avenue','','Chattanooga','Tennessee','37421','United States',8,'2021-04-04 00:00:00.000000'),(44,18,'2021-02-05 18:06:16.000000','COD',679.992,48.93,849.99,0,898.92,'DELIVERED','Alisa','Willcox','423-893-1283','1053 Broadway Avenue','','Chattanooga','Tennessee','37421','United States',8,'2021-02-14 00:00:00.000000'),(45,10,'2021-01-25 18:11:20.000000','COD',47.992,7.75,59.99,0,67.74,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2021-01-31 00:00:00.000000'),(46,10,'2020-11-29 18:13:04.000000','COD',28.152,10.5,35.19,0,45.69,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2020-12-05 00:00:00.000000'),(47,10,'2020-10-25 18:15:02.000000','COD',167.328,11.78,209.16,0,220.94,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2020-10-31 00:00:00.000000'),(48,17,'2021-05-03 11:32:53.000000','COD',732,49,915,0,964,'DELIVERED','Su','Geng','062566046','Braddell Tech 13 Lorong 8 Toa Payoh #04-01 319261','','Singapore','','319261','Singapore',3,'2021-05-07 00:00:00.000000'),(49,17,'2021-01-01 11:35:29.000000','COD',19.992,2.95,24.99,0,27.94,'DELIVERED','Su','Geng','062566046','Braddell Tech 13 Lorong 8 Toa Payoh #04-01 319261','','Singapore','','319261','Singapore',3,'2021-01-05 00:00:00.000000'),(51,1,'2021-01-01 11:42:31.000000','COD',31.992,2.1,39.99,0,42.09,'DELIVERED','Nam','Ha Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2021-01-03 00:00:00.000000'),(52,16,'2021-05-02 11:45:24.000000','COD',485.96,6.79,607.45,0,614.24,'DELIVERED','Jianhong','Zhou','65-6278 9444','456 Alexandra Road #16-02 NOL','Building Singapore 119962','Singapore','','119962','Singapore',3,'2021-05-06 00:00:00.000000'),(53,16,'2021-04-07 11:52:27.000000','COD',567.72,3.66,709.65,0,713.31,'DELIVERED','Jianhong','Zhou','65-6278 9444','456 Alexandra Road #16-02 NOL','Building Singapore 119962','Singapore','','119962','Singapore',3,'2021-04-11 00:00:00.000000'),(54,4,'2021-02-06 11:59:51.000000','COD',498.39,16.1,622.99,0,639.09,'DELIVERED','Brian','Purcell','604-269-1384','4103 Tolmie St','','Vancouver','British Columbia','V6M 1Y8','Canada',7,'2021-02-14 00:00:00.000000'),(55,9,'2021-05-03 12:17:34.000000','COD',136.936,12.25,171.17,0,183.42,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-05-09 00:00:00.000000'),(56,9,'2021-01-21 12:37:25.000000','COD',25.59,6.43,31.99,0,38.42,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-01-27 00:00:00.000000'),(57,9,'2020-12-11 12:43:14.000000','COD',528.11,28.55,660.14,0,688.69,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2020-12-17 00:00:00.000000'),(58,20,'2021-04-29 16:38:11.000000','COD',679.2,11.51,849,0,860.51,'DELIVERED','Spencer','De Bavay','(02) 6146 87','37 Grayson Street','','Matong','New South Wales','2652','Australia',6,'2021-05-06 00:00:00.000000'),(59,20,'2021-04-14 16:41:53.000000','COD',74.384,3.28,92.98,0,96.26,'DELIVERED','Spencer','De Bavay','(02) 6146 87','37 Grayson Street','','Matong','New South Wales','2652','Australia',6,'2021-04-21 00:00:00.000000'),(60,20,'2021-01-07 16:46:22.000000','COD',479.992,4.25,599.99,0,604.24,'DELIVERED','Spencer','De Bavay','(02) 6146 87','37 Grayson Street','','Matong','New South Wales','2652','Australia',6,'2021-01-14 00:00:00.000000'),(61,18,'2020-10-31 16:50:03.000000','COD',55.992,11.88,69.99,0,81.87,'DELIVERED','Alisa','Willcox','423-893-1283','1053 Broadway Avenue','','Chattanooga','Tennessee','37421','United States',8,'2020-11-09 00:00:00.000000'),(62,23,'2021-05-05 09:38:44.000000','COD',478.4,4.25,598,0,602.25,'DELIVERED','Trang','Le Thi Quynh','0918664450','30 Do Huy Uyen','An Hai Bac district','Da Nang','Da Nang','552000','Vietnam',1,'2021-05-07 00:00:00.000000'),(63,24,'2021-05-04 09:49:05.000000','COD',86.76,2.15,108.45,0,110.6,'DELIVERED','Son','Nguyen Tuan','0984457819','123 Truc Bach','Tay Ho','Ha Noi','Hanoi','127890','Vietnam',2,'2021-05-07 00:00:00.000000'),(64,7,'2021-03-29 09:53:11.000000','COD',597,33.1,746.25,0,779.35,'DELIVERED','Molly','Norris','079 8802 955','88 Simone Weil Avenue','','London','','SS6 1W','United Kingdom',6,'2021-04-05 00:00:00.000000'),(65,25,'2020-12-13 09:58:00.000000','COD',359.2,4.78,449,0,453.78,'DELIVERED','Thu','Trinh Minh','0977882312','14H8 Phan Van Truong','Cau Giay','Ha Noi','Hanoi','113000','Vietnam',2,'2020-12-16 00:00:00.000000'),(66,25,'2021-04-20 10:01:51.000000','COD',29.58,5.64,36.97,0,42.61,'DELIVERED','Thu','Trinh Minh','0977882312','14H8 Phan Van Truong','Cau Giay','Ha Noi','Hanoi','113000','Vietnam',2,'2021-04-23 00:00:00.000000'),(67,25,'2020-11-02 10:05:27.000000','COD',732,59.7,915,0,974.7,'DELIVERED','Thu','Trinh Minh','0977882312','14H8 Phan Van Truong','Cau Giay','Ha Noi','Hanoi','113000','Vietnam',2,'2020-11-05 00:00:00.000000'),(68,4,'2021-04-16 12:34:34.000000','COD',441.048,3.95,551.31,0,555.26,'DELIVERED','Brian','Purcell','604-269-1384','4103 Tolmie St','','Vancouver','British Columbia','V6M 1Y8','Canada',7,'2021-04-24 00:00:00.000000'),(69,4,'2020-11-07 12:40:36.000000','COD',44.07,12.84,55.09,0,67.93,'DELIVERED','Brian','Purcell','604-269-1384','4103 Tolmie St','','Vancouver','British Columbia','V6M 1Y8','Canada',7,'2020-11-15 00:00:00.000000'),(70,4,'2021-05-06 12:43:45.000000','COD',474.616,30,593.27,0,623.27,'DELIVERED','Brian','Purcell','604-269-1384','4103 Tolmie St','','Vancouver','British Columbia','V6M 1Y8','Canada',7,'2021-05-14 00:00:00.000000'),(71,26,'2021-05-07 17:20:07.000000','COD',470.392,1,587.99,0,588.99,'DELIVERED','Mai','Tran Thi','0954876291','256A Vo Van Kiet','Phuoc My','Da Nang','Da Nang','555000','Vietnam',1,'2021-05-09 00:00:00.000000'),(72,27,'2021-05-07 17:23:10.000000','COD',732,7.5,915,0,922.5,'DELIVERED','Bach','Nguyen Hoang','0910405069','620 Bach Dang','Hai Chau','Da Nang','Da Nang','554000','Vietnam',1,'2021-05-09 00:00:00.000000'),(73,28,'2020-10-23 17:38:42.000000','COD',320.352,6.929,400.44,0,407.369,'DELIVERED','Ravi','Kumar','026715849','M 55 2nd Floor, Part 2','','Delhi','Delhi','110048','India',5,'2020-10-29 00:00:00.000000'),(74,28,'2021-03-28 17:47:19.000000','COD',190.78,31.55,238.48,0,270.03,'DELIVERED','Ravi','Kumar','026715849','M 55 2nd Floor, Part 2','','Delhi','Delhi','110048','India',5,'2021-04-03 00:00:00.000000'),(75,7,'2021-05-12 17:16:50.000000','COD',879.192,29.8177,1098.99,0,1128.81,'DELIVERED','Molly','Norris','079 8802 955','88 Simone Weil Avenue','','London','','SS6 1W','United Kingdom',6,'2021-05-19 00:00:00.000000'),(76,29,'2021-05-08 17:27:03.000000','COD',279.992,13.32,349.99,0,363.31,'DELIVERED','Xue','Hao Chu','081005992','Choa Chu Kang Crescent, 683690','','Singapore','','683690','Singapore',3,'2021-05-12 00:00:00.000000'),(77,30,'2020-10-22 17:39:24.000000','COD',556.16,14.985,695.2,0,710.185,'DELIVERED','Mo','Liang','063237730','30 Robinson Road','#03-01B ROBINSON TOWERS','Singapore','','048546','Singapore',3,'2020-10-26 00:00:00.000000'),(78,30,'2020-10-26 17:41:40.000000','COD',48.145,13.9357,60.1812,0,74.1169,'DELIVERED','Mo','Liang','063237730','30 Robinson Road','#03-01B ROBINSON TOWERS','Singapore','','048546','Singapore',3,'2020-10-30 00:00:00.000000'),(79,30,'2020-12-14 17:44:38.000000','COD',479.992,1.998,599.99,0,601.988,'DELIVERED','Mo','Liang','063237730','30 Robinson Road','#03-01B ROBINSON TOWERS','Singapore','','048546','Singapore',3,'2020-12-18 00:00:00.000000'),(80,31,'2021-05-09 17:49:38.000000','COD',299.192,5.994,373.99,0,379.984,'DELIVERED','Chan','Ding','6567321372','260 Orchard Road, The Heeren','04-30/31 238855','Singapore','','238855','Singapore',3,'2021-05-13 00:00:00.000000'),(81,13,'2021-03-23 11:16:32.000000','COD',59.992,70.0201,74.99,0,145.01,'DELIVERED','Saka','Prakash','02223011775','B/7/a Bharat Ngr, Grant Road','','Mumbai','Maharashtra','400007','India',5,'2021-03-29 00:00:00.000000'),(82,9,'2021-04-09 11:54:09.000000','COD',359.2,10.14,449,0,459.14,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-04-15 00:00:00.000000'),(83,20,'2021-01-30 11:56:48.000000','COD',279.2,6.855,349,0,355.855,'DELIVERED','Spencer','De Bavay','(02) 6146 87','37 Grayson Street','','Matong','New South Wales','2652','Australia',6,'2021-02-06 00:00:00.000000'),(84,32,'2021-05-14 18:11:44.000000','COD',321.3,41.73,401.62,0,443.35,'DELIVERED','Zak','Carey','0795602121','70 Guild Street','','London','','N8 1HG','United Kingdom',6,'2021-05-21 00:00:00.000000'),(85,33,'2021-04-20 18:24:36.000000','COD',143.28,8.106,179.1,0,187.206,'DELIVERED','Katherine','McKnight','8153287288','922 Emeral Dreams Drive','','Chicago','Illinois','60601','United States',9,'2021-04-30 00:00:00.000000'),(86,34,'2020-10-24 18:35:54.000000','COD',478.4,85,598,0,683,'DELIVERED','Pasty','Aston','2129229661','1482 Rosewood Lane','','New York','New York','10016','United States',7,'2020-11-01 00:00:00.000000'),(87,34,'2021-01-05 18:38:04.000000','COD',441.048,4,551.31,0,555.31,'DELIVERED','Pasty','Aston','2129229661','1482 Rosewood Lane','','New York','New York','10016','United States',7,'2021-01-13 00:00:00.000000'),(88,35,'2020-12-25 16:33:56.000000','COD',148,24.332,185,0,209.332,'DELIVERED','Rekha','Makavana','02226493101','Shop No 2, Shobhana Bldg.','Tilak Road, Opp. Dph, Santacruz (west)','Mumbai','Maharashtra','400054','India',5,'2020-12-31 00:00:00.000000'),(89,35,'2021-01-20 16:37:16.000000','COD',135.353,27.2328,169.191,0,196.424,'DELIVERED','Rekha','Makavana','02226493101','Shop No 2, Shobhana Bldg.','Tilak Road, Opp. Dph, Santacruz (west)','Mumbai','Maharashtra','400054','India',5,'2021-01-26 00:00:00.000000'),(90,31,'2021-05-26 14:53:05.000000','COD',441.048,1.332,551.31,0,552.642,'DELIVERED','Chan','Ding','6567321372','260 Orchard Road, The Heeren','04-30/31 238855','Singapore','','238855','Singapore',3,'2021-05-30 00:00:00.000000'),(91,35,'2021-05-24 21:59:43.000000','COD',115.184,2.607,143.98,0,146.587,'DELIVERED','Rekha','Makavana','02226493101','Shop No 2, Shobhana Bldg.','Tilak Road, Opp. Dph, Santacruz (west)','Mumbai','Maharashtra','400054','India',5,'2021-05-30 00:00:00.000000'),(92,34,'2021-05-25 22:15:11.000000','COD',319.32,35.5,399.15,0,434.65,'DELIVERED','Pasty','Aston','2129229661','1482 Rosewood Lane','','New York','New York','10016','United States',7,'2021-06-02 00:00:00.000000'),(93,30,'2021-05-23 15:33:27.000000','COD',439.992,73.26,549.99,0,623.25,'DELIVERED','Mo','Liang','063237730','30 Robinson Road','#03-01B ROBINSON TOWERS','Singapore','','048546','Singapore',3,'2021-05-27 00:00:00.000000'),(94,36,'2021-05-27 15:45:56.000000','COD',1308.15,23.88,1635.19,0,1659.07,'DELIVERED','Flynn','Hackett','073758521','19 Shirley Street','','Yatala','Queensland','4207','Australia',5,'2021-06-02 00:00:00.000000'),(95,5,'2021-10-09 15:48:38.000000','COD',519.184,26,648.98,0,674.98,'DELIVERED','Charles','Brugger','646-232-3902','204 Morningview Lane',NULL,'New York','New York','10011','United States',7,'2021-10-17 00:00:00.000000'),(96,5,'2021-10-17 10:07:42.000000','COD',519.184,26,648.98,0,674.98,'RETURNED','Charles','Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10011','United States',7,'2021-10-25 00:00:00.000000'),(97,5,'2021-10-17 10:28:06.000000','COD',519.184,26,648.98,0,674.98,'RETURN_REQUESTED','Charles','Brugger','646-232-3902','204 Morningview Lane',NULL,'New York','New York','10011','United States',7,'2021-10-25 00:00:00.000000'),(98,7,'2021-10-17 10:39:17.000000','COD',1639.98,4.55,2049.98,0,2054.53,'DELIVERED','Chan','Yi','068900012','28 Ayer Rajah Cresent #05-01','Ayer Rajah Industrial Estate 1399','Singapore','','139959','Singapore',3,'2021-10-21 00:00:00.000000'),(99,7,'2021-10-17 10:44:59.000000','COD',1623.99,5.4,2029.99,0,2035.39,'DELIVERED','Chan','Yi','068900012','28 Ayer Rajah Cresent #05-01','Ayer Rajah Industrial Estate 1399','Singapore','','139959','Singapore',3,'2021-10-21 00:00:00.000000'),(100,5,'2021-10-18 16:20:37.000000','PAYPAL',319.2,30,399,0,429,'RETURN_REQUESTED','Charles','Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10011','United States',7,'2021-10-26 00:00:00.000000'),(101,5,'2021-10-18 16:54:16.000000','PAYPAL',46.35,4.95,57.94,0,62.89,'DELIVERED','Charles','Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10011','United States',7,'2021-10-26 00:00:00.000000'),(102,5,'2021-10-18 18:37:14.000000','PAYPAL',530.312,17,662.89,0,679.89,'PROCESSING','Charles','Brugger','646-232-3902','204 Morningview Lane','','New York','New York','10011','United States',7,'2021-10-26 00:00:00.000000'),(103,7,'2021-10-18 18:58:20.000000','CREDIT_CARD',1008.13,79.59,1260.16,0,1339.75,'SHIPPING','Chan','Yi','068900012','28 Ayer Rajah Cresent #05-01','Ayer Rajah Industrial Estate 1399','Singapore','','139959','Singapore',3,'2021-10-22 00:00:00.000000'),(104,3,'2021-06-22 12:46:21.000000','PAYPAL',319.2,31.5,399,0,430.5,'DELIVERED','Nancy','C Bass','5197914692','4703 Goyeau Ave','','Windsor','Ontario','N9A 1H9','Canada',8,'2021-07-01 00:00:00.000000'),(105,3,'2021-07-26 13:20:39.000000','PAYPAL',47.9952,10.5,59.994,0,70.494,'DELIVERED','Nancy','C Bass','5197914692','4703 Goyeau Ave','','Windsor','Ontario','N9A 1H9','Canada',8,'2021-08-04 00:00:00.000000'),(106,3,'2021-09-05 13:25:06.000000','PAYPAL',238.4,18.375,298,0,316.375,'DELIVERED','Nancy','C Bass','5197914692','4703 Goyeau Ave','','Windsor','Ontario','N9A 1H9','Canada',8,'2021-09-14 00:00:00.000000'),(107,3,'2021-10-26 14:54:23.000000','PAYPAL',63.992,2.1,79.99,0,82.09,'PROCESSING','Nancy','C Bass','5197914692','4703 Goyeau Ave','','Windsor','Ontario','N9A 1H9','Canada',8,'2021-11-04 00:00:00.000000'),(108,6,'2021-07-03 15:03:59.000000','PAYPAL',171.113,21.964,213.891,0,235.855,'DELIVERED','Christopher ','Seldon','2144076337','3087 Marietta Street','','Vallejo','California','94590','United States',6,'2021-07-10 00:00:00.000000'),(109,6,'2021-07-26 15:07:16.000000','PAYPAL',78.384,25.432,97.98,0,123.412,'DELIVERED','Christopher ','Seldon','2144076337','3087 Marietta Street','','Vallejo','California','94590','United States',6,'2021-08-02 00:00:00.000000'),(110,6,'2021-09-11 15:13:35.000000','PAYPAL',47.92,1.8496,59.9,0,61.7496,'DELIVERED','Christopher ','Seldon','2144076337','3087 Marietta Street','','Vallejo','California','94590','United States',6,'2021-09-18 00:00:00.000000'),(111,6,'2021-10-22 15:16:20.000000','PAYPAL',287.184,17.69,358.98,0,376.67,'PROCESSING','Christopher ','Seldon','2144076337','3087 Marietta Street','','Vallejo','California','94590','United States',6,'2021-10-29 00:00:00.000000'),(112,2,'2021-07-11 17:30:25.000000','PAYPAL',732,177.75,915,0,1092.75,'DELIVERED','Lorraine','Allbright','7814341947','2320 Romano Street','','Cambridge','Massachusetts','2142','United States',7,'2021-07-19 00:00:00.000000'),(113,2,'2021-08-06 17:32:22.000000','PAYPAL',184.264,23.7,230.33,0,254.03,'DELIVERED','Lorraine','Allbright','7814341947','2320 Romano Street','','Cambridge','Massachusetts','2142','United States',7,'2021-08-14 00:00:00.000000'),(114,2,'2021-08-29 17:34:55.000000','PAYPAL',455.705,46.8527,569.631,0,616.484,'DELIVERED','Lorraine','Allbright','7814341947','2320 Romano Street','','Cambridge','Massachusetts','2142','United States',7,'2021-09-06 00:00:00.000000'),(115,2,'2021-10-23 17:37:34.000000','PAYPAL',679.992,82.95,849.99,0,932.94,'PROCESSING','Lorraine','Allbright','7814341947','2320 Romano Street','','Cambridge','Massachusetts','2142','United States',7,'2021-10-31 00:00:00.000000'),(116,11,'2021-06-30 21:31:51.000000','PAYPAL',120.074,5.684,150.092,0,155.776,'DELIVERED','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh','500042','India',6,'2021-07-07 00:00:00.000000'),(117,11,'2021-08-09 21:35:47.000000','PAYPAL',52.47,1.79,65.59,0,67.38,'DELIVERED','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh','500042','India',6,'2021-08-16 00:00:00.000000'),(118,11,'2021-08-28 21:37:25.000000','PAYPAL',679.2,20.45,849,0,869.45,'DELIVERED','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh','500042','India',6,'2021-09-04 00:00:00.000000'),(119,11,'2021-10-24 21:41:35.000000','PAYPAL',355.2,11.61,443.99,0,455.61,'DELIVERED','Meena','Gara','04023775438','53 Balanagar','','Hyderabad','Andhra Pradesh','500042','India',6,'2021-10-31 00:00:00.000000'),(120,12,'2021-05-28 21:54:17.000000','PAYPAL',479.992,5.07,599.99,0,605.06,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-06-03 00:00:00.000000'),(121,12,'2021-06-26 21:56:45.000000','PAYPAL',81.7696,39.5873,102.212,0,141.799,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-07-02 00:00:00.000000'),(122,12,'2021-07-28 22:06:02.000000','PAYPAL',1311.2,207.025,1639,0,1846.03,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-08-03 00:00:00.000000'),(123,12,'2021-08-24 22:08:07.000000','PAYPAL',543.192,18.59,678.99,0,697.58,'DELIVERED','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-08-30 00:00:00.000000'),(124,12,'2021-10-25 22:10:00.000000','PAYPAL',478.4,71.825,598,0,669.825,'PROCESSING','Jahnu','Mishra','01125713815','112 Gagan Deep Building','Rajendra Place','Delhi','Delhi','110008','India',5,'2021-10-31 00:00:00.000000'),(125,9,'2021-06-23 09:27:54.000000','PAYPAL',732,126.75,915,0,1041.75,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-06-29 00:00:00.000000'),(126,9,'2021-07-22 09:30:07.000000','PAYPAL',103.48,13.52,129.35,0,142.87,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-07-28 00:00:00.000000'),(127,9,'2021-09-16 09:33:35.000000','PAYPAL',173.69,12.675,217.113,0,229.788,'DELIVERED','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-09-22 00:00:00.000000'),(128,9,'2021-10-23 09:37:11.000000','PAYPAL',118.789,11.2385,148.486,0,159.724,'SHIPPING','Pandu','Shan','042375292','B 3/12, Part 1','','Delhi','Delhi','110009','India',5,'2021-10-29 00:00:00.000000'),(129,10,'2021-05-29 09:41:13.000000','PAYPAL',679.992,60.83,849.99,0,910.82,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2021-06-04 00:00:00.000000'),(130,10,'2021-07-01 09:43:31.000000','PAYPAL',287.188,13.2957,358.985,0,372.281,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2021-07-07 00:00:00.000000'),(131,10,'2021-10-21 09:46:48.000000','PAYPAL',1560,10.86,1950,0,1960.86,'DELIVERED','Ahjaja','Thaker','02228611610','Shop No 6, Gk Nagar No 3','Mahavir Darshan, Shankar Lane, Kandivali (west)','Mumbai','Maharashtra','400067','India',5,'2021-10-27 00:00:00.000000'),(132,8,'2021-07-27 09:50:16.000000','PAYPAL',799.99,136.12,999.99,0,1136.11,'DELIVERED','Ethan','Jones','0702534460','101 Gordon Terrace','','Barton','','SY14 4FH','United Kingdom',6,'2021-08-03 00:00:00.000000'),(133,8,'2021-10-19 09:52:31.000000','PAYPAL',84.47,9.49,105.58,0,115.07,'DELIVERED','Ethan','Jones','0702534460','101 Gordon Terrace','','Barton','','SY14 4FH','United Kingdom',6,'2021-10-26 00:00:00.000000'),(134,13,'2021-07-06 09:56:16.000000','PAYPAL',478.4,73.865,598,0,671.865,'DELIVERED','Saka','Prakash','02223011775','B/7/a Bharat Ngr, Grant Road','','Mumbai','Maharashtra','400007','India',5,'2021-07-12 00:00:00.000000'),(135,13,'2021-10-19 09:58:04.000000','PAYPAL',181.443,20.856,226.803,0,247.659,'DELIVERED','Saka','Prakash','02223011775','B/7/a Bharat Ngr, Grant Road','','Mumbai','Maharashtra','400007','India',5,'2021-10-25 00:00:00.000000'),(136,14,'2021-10-20 10:03:06.000000','PAYPAL',479.992,57.0164,599.99,0,657.006,'DELIVERED','Hastimukha','Krishna','02224033183','44 New Nehru Nagar Hsg Society Gr Floor','Feet Road, Opp Santac','Mumbai','Maharashtra','400017','India',5,'2021-10-26 00:00:00.000000'),(137,15,'2021-10-11 10:45:20.000000','PAYPAL',732,133.2,915,0,1048.2,'DELIVERED','Avatar','Cheema','03322684941','181 /, th Floor, M G Road, Burrabazar','','Kolkata','West Bengal','700007','India',5,'2021-10-17 00:00:00.000000'),(138,15,'2021-10-24 10:48:32.000000','PAYPAL',479.992,5.328,599.99,0,605.318,'PROCESSING','Avatar','Cheema','03322684941','181 /, th Floor, M G Road, Burrabazar','','Kolkata','West Bengal','700007','India',5,'2021-10-30 00:00:00.000000'),(139,16,'2021-10-06 10:52:04.000000','PAYPAL',491.465,9.0576,614.331,0,623.389,'DELIVERED','Jianhong','Zhou','6562789444','456 Alexandra Road #16-02 NOL','Building Singapore 119962','Singapore','','119962','Singapore',3,'2021-10-10 00:00:00.000000'),(140,16,'2021-07-31 10:56:36.000000','PAYPAL',478.4,28.305,598,0,626.305,'DELIVERED','Jianhong','Zhou','6562789444','456 Alexandra Road #16-02 NOL','Building Singapore 119962','Singapore','','119962','Singapore',3,'2021-08-04 00:00:00.000000'),(141,17,'2021-07-07 11:00:27.000000','PAYPAL',651.192,3.996,813.99,0,817.986,'DELIVERED','Su','Geng','062566046','Braddell Tech 13 Lorong 8 Toa Payoh #04-01 319261','','Singapore','','319261','Singapore',3,'2021-07-11 00:00:00.000000'),(142,17,'2021-10-14 11:02:28.000000','PAYPAL',101.61,5.99,127.02,0,133.01,'DELIVERED','Su','Geng','062566046','Braddell Tech 13 Lorong 8 Toa Payoh #04-01 319261','','Singapore','','319261','Singapore',3,'2021-10-18 00:00:00.000000'),(143,17,'2021-10-22 11:04:50.000000','PAYPAL',556.16,14.99,695.2,0,710.19,'DELIVERED','Su','Geng','062566046','Braddell Tech 13 Lorong 8 Toa Payoh #04-01 319261','','Singapore','','319261','Singapore',3,'2021-10-26 00:00:00.000000'),(144,19,'2021-09-07 11:09:34.000000','PAYPAL',360.939,6.9361,451.174,0,458.11,'DELIVERED','Chelsea','Greener','074918391','79 Masthead Drive','','Great Keepel Island','Queensland','4700','Australia',5,'2021-09-13 00:00:00.000000'),(145,19,'2021-10-02 11:11:10.000000','PAYPAL',679.2,12.5647,849,0,861.565,'DELIVERED','Chelsea','Greener','074918391','79 Masthead Drive','','Great Keepel Island','Queensland','4700','Australia',5,'2021-10-08 00:00:00.000000'),(146,19,'2021-07-13 11:13:05.000000','PAYPAL',73.7126,14.471,92.1407,0,106.612,'DELIVERED','Chelsea','Greener','074918391','79 Masthead Drive','','Great Keepel Island','Queensland','4700','Australia',5,'2021-07-19 00:00:00.000000'),(147,31,'2021-06-28 11:15:31.000000','PAYPAL',439.992,73.26,549.99,0,623.25,'DELIVERED','Chan','Ding','6567321372','260 Orchard Road, The Heeren','04-30/31 238855','Singapore','','238855','Singapore',3,'2021-07-02 00:00:00.000000'),(148,31,'2021-10-12 11:17:23.000000','PAYPAL',143.995,4.4289,179.994,0,184.423,'DELIVERED','Chan','Ding','6567321372','260 Orchard Road, The Heeren','04-30/31 238855','Singapore','','238855','Singapore',3,'2021-10-16 00:00:00.000000'),(149,28,'2021-08-27 11:26:09.000000','PAYPAL',479.2,16.9,599,0,615.9,'DELIVERED','Ravi','Kumar','026715849','M 55 2nd Floor, Part 2','','Delhi','Delhi','110048','India',5,'2021-09-02 00:00:00.000000'),(150,28,'2021-10-16 11:27:47.000000','PAYPAL',679.2,21.28,849,0,870.28,'DELIVERED','Ravi','Kumar','026715849','M 55 2nd Floor, Part 2','','Delhi','Delhi','110048','India',5,'2021-10-22 00:00:00.000000'),(151,28,'2021-07-28 11:29:41.000000','PAYPAL',240.19,39.42,300.24,0,339.66,'DELIVERED','Ravi','Kumar','026715849','M 55 2nd Floor, Part 2','','Delhi','Delhi','110048','India',5,'2021-08-03 00:00:00.000000'),(152,29,'2021-06-24 11:39:10.000000','PAYPAL',225.02,3.7962,281.276,0,285.072,'DELIVERED','Xue','Hao Chu','081005992','Choa Chu Kang Crescent, 683690','','Singapore','','683690','Singapore',3,'2021-06-28 00:00:00.000000'),(153,29,'2021-08-31 11:40:48.000000','PAYPAL',882.56,3.33,1103.2,0,1106.53,'DELIVERED','Xue','Hao Chu','081005992','Choa Chu Kang Crescent, 683690','','Singapore','','683690','Singapore',3,'2021-09-04 00:00:00.000000'),(154,29,'2021-10-13 11:42:38.000000','PAYPAL',292.603,3.996,365.754,0,369.75,'DELIVERED','Xue','Hao Chu','081005992','Choa Chu Kang Crescent, 683690','','Singapore','','683690','Singapore',3,'2021-10-17 00:00:00.000000'),(155,32,'2021-08-26 11:45:03.000000','PAYPAL',399.2,79.04,499,0,578.04,'DELIVERED','Zak','Carey','0795602121','70 Guild Street','','London','','N8 1HG','United Kingdom',6,'2021-09-02 00:00:00.000000'),(156,32,'2021-10-15 11:47:54.000000','PAYPAL',187.99,37.54,234.99,0,272.53,'DELIVERED','Zak','Carey','0795602121','70 Guild Street','','London','','N8 1HG','United Kingdom',6,'2021-10-22 00:00:00.000000'),(157,32,'2021-10-26 11:49:24.000000','PAYPAL',467.992,9.386,584.99,0,594.376,'PROCESSING','Zak','Carey','0795602121','70 Guild Street','','London','','N8 1HG','United Kingdom',6,'2021-11-02 00:00:00.000000'),(158,33,'2021-10-08 11:55:54.000000','PAYPAL',478.4,110.5,598,0,708.5,'DELIVERED','Katherine','McKnight','8153287288','922 Emeral Dreams Drive','','Chicago','Illinois','60601','United States',9,'2021-10-18 00:00:00.000000'),(159,33,'2021-10-23 11:58:19.000000','PAYPAL',39.18,13,48.97,0,61.97,'SHIPPING','Katherine','McKnight','8153287288','922 Emeral Dreams Drive','','Chicago','Illinois','60601','United States',9,'2021-11-02 00:00:00.000000'),(160,34,'2021-10-11 12:00:08.000000','PAYPAL',679.2,25.18,849,0,874.18,'DELIVERED','Pasty','Aston','2129229661','1482 Rosewood Lane','','New York','New York','10016','United States',7,'2021-10-19 00:00:00.000000'),(161,4,'2021-10-16 12:04:43.000000','PAYPAL',679.992,69.16,849.99,0,919.15,'DELIVERED','Brian','Purcell','6042691384','4103 Tolmie St','','Vancouver','British Columbia','V6M 1Y8','Canada',7,'2021-10-24 00:00:00.000000'),(162,23,'2021-10-10 12:08:10.000000','COD',103.355,0.38,129.194,0,129.574,'DELIVERED','Trang','Le Thi Quynh','0922664450','30 Do Huy Uyen','An Hai Bac district','Da Nang','Da Nang','552000','Vietnam',1,'2021-10-12 00:00:00.000000'),(163,36,'2021-10-14 12:10:44.000000','COD',631.2,4.491,789,0,793.491,'DELIVERED','Flynn','Hackett','073758521','19 Shirley Street','','Yatala','Queensland','4207','Australia',5,'2021-10-20 00:00:00.000000'),(164,36,'2021-10-23 12:12:52.000000','PAYPAL',732,74.85,915,0,989.85,'SHIPPING','Flynn','Hackett','073758521','19 Shirley Street','','Yatala','Queensland','4207','Australia',5,'2021-10-29 00:00:00.000000'),(165,1,'2024-11-08 01:17:10.062000','COD',171,0.35,150.092,0,150.442,'NEW','Anh','Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2024-11-09 01:17:10.062000'),(166,1,'2024-11-08 01:24:54.562000','COD',0,0,0,0,0,'NEW','Anh','Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2024-11-09 01:24:54.562000'),(167,1,'2024-11-08 03:02:11.340000','PAYPAL',115,0.42,148.33,0,148.75,'PAID','Anh','Le Hoang','09123456789','30 Do Huy Uyen','Son Tra district','Da Nang','','550000','Vietnam',1,'2024-11-09 03:02:11.340000');
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `product_details`
--
DROP TABLE IF EXISTS `product_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_details` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
`product_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKnfvvq3meg4ha3u1bju9k4is3r` (`product_id`),
CONSTRAINT `FKnfvvq3meg4ha3u1bju9k4is3r` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=698 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `product_details`
--
LOCK TABLES `product_details` WRITE;
/*!40000 ALTER TABLE `product_details` DISABLE KEYS */;
INSERT INTO `product_details` VALUES (15,'Color','Black',2),(16,'Lens','Zoom',2),(17,'Model Name','Sony ZV-1 Camera for Content Creators and Vloggers',2),(19,'Effective Still Resolution','20.1 MP',2),(20,'Product Dimensions','4.15 x 2.36 x 1.7 inches',2),(24,'Product Dimensions','2.3 x 4.6 x 3.5 inches',1),(25,'Item Weight','13.7 ounces',1),(26,'Item model number','2680C011',1),(27,'Batteries','1 Lithium ion batteries required. (included)',1),(28,'Screen Size','3 inches',1),(29,'Has Image Stabilization','Yes',1),(30,'Optical Sensor Resolution','24 megapixels',1),(31,'Item Weight','10.4 ounces',2),(32,'Item model number','DCZV1/B',2),(33,'Batteries','1 Lithium ion batteries required. (included)',2),(34,'Color','Black',3),(35,'Lens','Converter',3),(36,'Model Name','Panasonic Lumix FZ80',3),(37,'Product Dimensions','4.69 x 5.13 x 3.71 inches',3),(38,'Item Dimensions','10.62 x 4.87 x 9.68 inches',4),(39,'Pressure Valve','Yes',4),(40,'Watertight and Crushproof','Yes',4),(41,'You break it, we replace it','Yes',4),(42,'Weight with Foam','2.87 lbs',4),(43,'Interior Dimensions','9.25 x 7.12 x 4.12 inches',4),(44,'Product Dimensions','7.5 x 2.12 x 5.06 inches',5),(45,'Item Weight','10.4 ounces',5),(46,'Color','Black/Clear',5),(47,'OS','Android',7),(48,'RAM','16 GB',7),(49,'Wireless communication technologies','Cellular',7),(50,'Additional Features','Touchscreen, Dual-camera, Lte, Smartphone',7),(51,'Display resolution','720 x 1280 pixels',7),(52,'Device interface - primary','Touchscreen',7),(53,'Other camera features','8 MP',7),(54,'Colour','White',7),(55,'Phone Talk Time','900 minutes',7),(56,'Phone Standy Time (with data)','300 Hours',7),(57,'Ideal for','Gaming/Professional Computing',8),(58,'Interface','SATA III',8),(59,'Form Factor','2.5\" | M.2 (2280)',8),(60,'Capacity','250GB, 500GB, 1TB, 2TB, 4TB',8),(61,'Max Sequential Read Speed','Up to 550 MB/s',8),(62,'Max Sequential Write Speed','Up to 520 MB/s',8),(63,'Model Name','Canon PowerShot ELPH 180',9),(64,'Color','Silver',9),(65,'Shooting Modes','Automatic',9),(66,'Screen Size','2.7 inches',9),(67,'Has Image Stabilization','Yes',9),(68,'Includes External Memory','No',9),(69,'Item Dimensions','3.75 x 0.87 x 2.14 inches',9),(70,'Item Weight','4.40 ounces',9),(71,'Optical Sensor Resolution','12 megapixels',9),(72,'Optical Zoom','4.6x',9),(73,'Video Capture Resolution','HD 720p',9),(74,'Viewfinder Type','fixed LCD',9),(75,'Color','Red',10),(76,'Lens','Macro',10),(77,'Model Name','Tough TG-6',10),(78,'Type of product','Ultra-Compact',10),(79,'Screen Size','3 inches',10),(80,'Has Image Stabilization','Yes',10),(81,'Includes External Memory','No',10),(82,'Item Dimensions','2.60 x 4.40 x 1.30 inches',10),(83,'Item Weight','0.56 lbs',10),(84,'Optical Sensor Resolution','12 megapixels',10),(85,'Optical Zoom','4x',10),(86,'Video Capture Resolution','4K UHD 2160p, 2K DCI 1080p',10),(87,'Viewfinder Type','LCD',10),(88,'Screen Size','3 inches',11),(89,'Has Image Stabilization','Yes',11),(90,'Item Dimensions','5.00 x 3.88 x 3.00 inches',11),(91,'Item Weight','1.44 lbs',11),(92,'Optical Sensor Resolution','24.2 megapixels',11),(93,'Optical Zoom','2x',11),(94,'Photo Sensor Size','Full Frame (35mm)',11),(95,'Video Capture Resolution','4K UHD 2160p',11),(96,'Viewfinder Type','Electronic',11),(97,'Item Dimensions','11.00 x 14.20 x 5.50 inches',12),(98,'Item Weight','1.76 pounds',12),(102,'Color Black','Orange interior',14),(103,'Item Dimensions','12.52 x 9.06 x 7.28 inches',14),(104,'Item Weight','1.56 pounds',14),(105,'Product Dimensions','4.1 x 2.8 x 5 inches',15),(106,'Item Weight','12.7 ounces',15),(107,'Batteries','4 AA batteries required',15),(108,'Product Dimensions','5.1 x 4.1 x 5.1 inches',16),(109,'Item Weight','13.6 ounces',16),(110,'Product Dimensions','3.13 x 4.13 x 5.5 inches',17),(111,'Item Weight','15 ounces',17),(112,'Product Dimensions','4 x 8.7 x 3.15 inches',18),(113,'Item Weight','1 pounds',18),(114,'Item model number','10003635',18),(115,'Batteries:','4 AA batteries required',18),(116,'Color','Black',19),(117,'Compatible Camera Mount','Canon EF',19),(118,'Focus Type','Stepper motor',19),(119,'Item Dimensions','1.54 x 2.72 x 2.72 inches',19),(120,'Item Weight','5.60 ounces',19),(121,'Lens Type','Standard',19),(122,'Maximum Aperture','f/1.8',19),(123,'Maximum Focal Length','50 millimeters',19),(124,'Minimum Aperture','22',19),(125,'Minimum Focal Length','50 millimeters',19),(126,'Photo Filter Thread Size','49 millimeters',19),(127,'Color','Black',20),(128,'Compatible Camera Mount','Nikon FX',20),(129,'Focus Type','Ultrasonic',20),(130,'Item Dimensions','2.09 x 2.83 x 2.83 inches',20),(131,'Item Weight','6.61 ounces',20),(132,'Lens Type','Standard',20),(133,'Maximum Aperture','f/1.8',20),(134,'Maximum Focal Length','50 millimeters',20),(135,'Minimum Aperture','16',20),(136,'Minimum Focal Length','50 millimeters',20),(137,'Photo Filter Thread Size','58 millimeters',20),(138,'Product Dimensions','4.8 x 2.79 x 2.79 inches',21),(139,'Item Weight','1.06 pounds',21),(140,'Focal Length & Maximum Aperture','75-300mm 1:4-5.6',21),(141,'Lens Construction','13 elements in 9 groups',21),(142,'Diagonal Angle of View','32° 11\' - 8° 15\'',21),(143,'Focus Adjustment','Front group rotating extension system with Micromotor',21),(144,'Closest Focusing Distance','1.5m/ 4.9 ft.',21),(145,'Color','Black',22),(146,'Compatible Camera Mount','Canon EF',22),(147,'Focus Type','Autofocus',22),(148,'Item Dimensions','10.20 x 4.10 x 4.10 inches',22),(149,'Item Weight','4.25 lbs',22),(150,'Lens Type','Telephoto',22),(151,'Maximum Aperture','5 millimeters',22),(152,'Maximum Focal Length','600 millimeters',22),(153,'Minimum Aperture','6.3',22),(154,'Minimum Focal Length','150 millimeters',22),(155,'Photo Filter Thread Size','95 millimeters',22),(156,'Item Weight','2.9 pounds',23),(157,'Product Dimensions','23 x 4.5 x 4.25 inches',23),(158,'Size','Compact',23),(159,'Color','Black',23),(160,'Style','Laser w/ tripod',23),(161,'Power Source','Corded-electric',23),(162,'Batteries Included?','No',23),(163,'Batteries Required','No',23),(164,'Designed For','Point & Shoot Camera',24),(165,'Product Dimensions','1.38 x 1.38 x 6.89 in',24),(166,'Weight','0.11lbs ',24),(167,'Capacity','325 g',24),(168,'Connection Point','1/4\"-20 standard tripod mount',24),(169,'Materials','ABS Plastic, Stainless Steel, TPE',24),(170,'Product Dimensions','1.1 x 1.26 x 4.61 inches',25),(171,'Item Weight','2.24 ounces',25),(172,'Product Dimensions','2.5 x 2.5 x 16.3 inches',26),(173,'Item Weight','1.1 pounds',26),(174,'Color','Black Onyx',27),(175,'Screen Size','5.5 inches',27),(176,'Product Dimensions','5.6 x 0.31 x 2.74 inches',27),(177,'Item Weight','1.58 ounces',27),(178,'OS','Android',28),(179,'RAM','32 GB',28),(180,'Additional Features','Touchscreen, Octa-core-processor, Dual-camera, Smartphone',28),(181,'Display resolution','2560 x 1440 pixels',28),(182,'Device interface - primary','Touchscreen with Stylus Support',28),(183,'Other camera features','16 MP',28),(184,'Form Factor','Candy_bar',28),(185,'Colour','Black',28),(186,'Battery Power Rating','2600 Milliamp Hours',28),(187,'Phone Talk Time','1200 minutes',28),(188,'Phone Standy Time (with data)','480 Hours',28),(189,'Included Components','Pre-Installed SIM Card, Galaxy S6 Edge, Wall Charger, USB Cable, Quick Start Guide',28),(190,'Color','Just Black',29),(191,'Screen Size','5.9 inches',29),(192,'Item Weight','1.16 pounds',29),(193,'OS','Android',30),(194,'RAM','32 GB',30),(195,'Display resolution','1280 x 720 pixels',30),(196,'Device interface - primary','Touchscreen with Stylus Support',30),(197,'Other camera features','13 MP',30),(198,'Form Factor','Candy_bar',30),(199,'Colour','Silver',30),(200,'Phone Talk Time','1074 minutes',30),(201,'Phone Standy Time (with data)','696 Hours',30),(202,'Battery Capacity','2,100 mAh',31),(203,'Memory','Internal - 4 GB (formatted capacity is less)',31),(204,'Camera','5 Megapixel Autofocus Camera and WVGA Camcorder with LED Flash',31),(205,'Screen Size','4.5 inches',31),(206,'Item Dimensions','6.00 x 8.00 x 2.00 inches',31),(207,'Item Weight','0.90 lbs',31),(208,'OS','Android 7.0',32),(209,'Wireless communication technologies','Cellular',32),(210,'Other display features','Wireless',32),(211,'Colour','Platinum',32),(212,'Package Dimensions','6.4 x 3.4 x 1.1 inches',32),(213,'Item Weight','10.4 ounces',32),(214,'Color','Black',33),(215,'Screen Size','5.7 inches',33),(216,'Item Dimensions','7.25 x 10.00 x 1.65 inches',33),(217,'Item Weight','0.80 lbs',33),(218,'OS','Android',34),(219,'RAM','600 MB',34),(220,'Additional Features','Touchscreen, Camera, Smartphone, Expandable-memory',34),(221,'Display resolution','600x800 pixels',34),(222,'Other display features','Wireless',34),(223,'Device interface - primary','Touchscreen',34),(224,'Other camera features','5 MP',34),(225,'Form Factor','Candy_bar',34),(226,'Colour','Black',34),(227,'Battery Power Rating','750 mAh',34),(228,'Phone Talk Time','360 minutes',34),(229,'Phone Standy Time (with data)','432 Hours',34),(230,'Included Components','Video recorder, Camera',34),(231,'Operating System','Android 9.0',35),(232,'Computer Memory Size','8 GB',35),(233,'Wireless Communication Technology','Wi-Fi::Bluetooth::Wi-Fi Direct::NFC',35),(234,'Connectivity Technology','Wireless',35),(235,'GPS','GPS,Glonass,Galileo',35),(236,'Display Technology','AMOLED',35),(237,'Headphones Jack','3.5mm Stereo',35),(238,'Item Weight','0.05 Kilograms',35),(239,'Color','Black',35),(240,'Operating System','Android',36),(241,'Computer Memory Size','3 GB',36),(242,'Special Features','Dual SIM, 4G LTE',36),(243,'Other display features','CE',36),(244,'Voice Command','Touchscreen',36),(245,'Form Factor','Smartphone',36),(246,'Item Weight','12 Ounces',36),(247,'Color','Black',36),(248,'Operating System','Android',37),(249,'Computer Memory Size','128 GB',37),(250,'Wireless Communication Technology','4G',37),(251,'Connectivity Technology','Wireless, Bluetooth',37),(252,'Color','Cosmic Black',37),(253,'Operating System','iOS',38),(254,'Computer Memory Size','1 GB',38),(255,'Item Weight','0.39 Ounces',38),(256,'Color','Space Gray',38),(257,'Operating System','iOS',39),(258,'Computer Memory Size','1 GB',39),(259,'Color','Jet Black',39),(260,'Included Components','Phone, charger',39),(261,'Operating System','iOS',40),(262,'Computer Memory Size','64 GB',40),(263,'Item Weight','0.3 Ounces',40),(264,'Color','Space Gray',40),(265,'Memory Size','64GB',41),(266,'Product Dimensions','0.33 x 2.7 x 5.77 inches',41),(267,'Item Weight','5.7 ounces',41),(268,'Batteries','1 Lithium Polymer batteries required. (included)',41),(269,'Rear Camera','64MP sensor',42),(270,'Front Camera','25MP Quad Pixel',42),(271,'Display','6.7\" OLED, FHD+ (2340×1080),19.5:9',42),(272,'Processor','Qualcomm Snapdragon 765 with 2.4GHz octa-core',42),(273,'Memory','6GB + 256GB',42),(274,'Battery','4500 mAh',42),(275,'Audio','Dual stereo speakers tuned by Waves',42),(276,'Operating System','Android',43),(277,'Computer Memory Size','4 GB',43),(278,'Item Weight','0.35 Pounds',43),(279,'Color','Peacock Blue',43),(280,'Product Dimensions','2.6 x 1.65 x 0.59 inches',43),(281,'Product Dimensions','2.99 x 0.31 x 6.5 inches',44),(282,'Item Weight','7.1 ounces',44),(283,'Cable Length','10 feet feet',45),(284,'Cable Type','Lightning',45),(285,'Color','Silver & White',45),(286,'Compatible Devices','Tablet, Smartphone',45),(287,'Connector Type','USB Type C',45),(288,'Color','White',46),(289,'Mfi Certified','yes',46),(290,'Cable Length','3ft+6ft ',46),(291,'Cable Connector Type','USB A to lightning',46),(292,'Package Dimensions','7.5 x 6.9 x 0.8 inches',47),(293,'Item Weight','5.6 ounces',47),(294,'Colour','Navy & blue',47),(295,'Product Dimensions','7.09 x 3.54 x 0.47 inches',48),(296,'Item Weight','10.5 ounces',48),(297,'Digital Storage Capacity','256 GB',49),(298,'Flash Memory Type','SDXC',49),(299,'Item Dimensions','0.59 x 0.04 x 0.43 inches',49),(300,'Secure Digital Association Speed Class','Class 10',49),(301,'Flash Memory Type','Micro SD',50),(302,'Item Dimensions','0.04 x 0.59 x 0.43 inches',50),(303,'Item Weight','0.16 ounces',50),(304,'Memory Storage Capacity','128 GB',50),(305,'Digital Storage Capacity','32 GB',51),(306,'Flash Memory Type','microsdhc',51),(307,'Item Dimensions','0.04 x 0.59 x 0.43 inches',51),(308,'Item Weight','0.32 ounces',51),(309,'Flash Memory Type','Micro SDXC',52),(310,'Item Dimensions','5.43 x 3.50 x 0.18 inches',52),(311,'Item Weight','0.48 ounces',52),(312,'Memory Storage Capacity','128 GB',52),(313,'Digital Storage Capacity','512 GB',53),(314,'Flash Memory Type','SDXC',53),(315,'Item Dimensions','0.79 x 1.54 x 0.32 inches',53),(316,'Item Weight','0.16 ounces',53),(317,'Material','Technopolymer and Aluminum',54),(318,'Closed Length','18 cm',54),(319,'Max Height','13 cm',54),(320,'Min Height','13 cm',54),(321,'Safety Payload','1 kg',54),(322,'Weight','190 g',54),(323,'Lateral Tilt','-35°/+35°',54),(324,'Panoramic Rotation','360°',54),(325,'Front Tilt','-35°/+35°',54),(326,'Product Dimensions','3.54 x 3.15 x 4.02 inches',55),(327,'Item Weight','4.8 ounces',55),(328,'Product Dimensions','1.38 x 1.38 x 0.2 inches',56),(329,'Item Weight','0.81 ounces',56),(330,'Product Dimensions','1.97 x 1.18 x 1.18 inches',57),(331,'Item Weight','1.28 ounces',57),(332,'Color','Black',58),(333,'Material','Aluminum, Silicone',58),(334,'Compatible Devices','Smartphones',58),(335,'Standing screen display size','24 Inches',59),(336,'Screen Resolution','1920 x 1080',59),(337,'Max Screen Resolution','1920 x 1080 Pixels',59),(338,'Memory Speed','2666 MHz',59),(339,'Graphics Coprocessor','AMD Radeon',59),(340,'Chipset Brand','AMD',59),(341,'Card Description','Integrated',59),(342,'Graphics Card Ram Size','1 GB',59),(343,'Wireless Type','Bluetooth, 802.11ac',59),(344,'Number of USB 2.0 Ports','2',59),(345,'Number of USB 3.0 Ports','2',59),(346,'Computer Memory Size','12 GB',60),(347,'CPU Model','Intel Core i5',60),(348,'CPU Speed','4.1 GHz',60),(349,'Graphics Description','Integrated',60),(350,'Hard Disk Size','512 GB',60),(351,'Graphics Card Ram Size','0.1 GB',60),(352,'Wireless Type','802.11ab',60),(353,'Computer Memory Type','DDR4 SDRAM',60),(354,'Flash Memory Size','512',60),(355,'Hard Drive Interface','Solid State',60),(356,'Optical Drive Type','DVD-RW',60),(357,'Computer Memory Size','16 GB',61),(358,'CPU Model','Core i7-10510U',61),(359,'CPU Model Manufacturer','Intel',61),(360,'CPU Speed','4.9 GHz',61),(361,'Screen Size','27 inches',61),(362,'Graphics Coprocessor','NVIDIA GeForce MX110',61),(363,'Graphics Description','Dedicated',61),(364,'Hard Disk Size','512 GB',61),(365,'Hardware Platform','PC',61),(366,'Item Dimensions','14.91 x 10.05 x 0.71 inches',61),(367,'Operating System','Windows 10 Home',61),(368,'Processor Count','6',61),(369,'Memory Speed','2400 MHz',62),(370,'Graphics Coprocessor','AMD Radeon',62),(371,'Chipset Brand','AMD',62),(372,'Card Description','Integrated',62),(373,'Graphics Card Ram Size','1 GB',62),(374,'Wireless Type','Bluetooth, 802.11ac',62),(375,'Number of USB 2.0 Ports','6',62),(376,'Number of USB 3.0 Ports','2',62),(377,'Computer Memory Size','16 GB',63),(378,'CPU Model','Intel Core i7',63),(379,'CPU Speed','2 GHz',63),(380,'Graphics Coprocessor','Intel UHD Graphics 630',63),(381,'Graphics Description','Integrated',63),(382,'Hard Disk Size','256 GB',63),(383,'Hardware Platform','PC',63),(384,'Item Dimensions','7.00 x 1.40 x 7.20 inches',63),(385,'Operating System','Windows 10 Pro',63),(386,'CPU Model','Intel Core i7',64),(387,'CPU Speed','2.3 GHz',64),(388,'Graphics Description','Dedicated',64),(389,'Hard Disk Size','512GB',64),(390,'Operating System','Windows 10',64),(391,'Standing screen display size','14 Inches',65),(392,'Max Screen Resolution','1920 x 1080 Pixels',65),(393,'Graphics Coprocessor','AMD Integrated Graphics',65),(394,'Chipset Brand','AMD',65),(395,'Card Description','Integrated',65),(396,'Wireless Type','802.11ac',65),(397,'Number of USB 3.0 Ports','2',65),(398,'Average Battery Life (in hours)','10 Hours',65),(399,'Computer Memory Size','4 GB',66),(400,'CPU Model Manufacturer','AMD',66),(401,'CPU Speed','3.5 GHz',66),(402,'Display Resolution Maximum','1920 x 1080',66),(403,'Screen Size','15.6 inches',66),(404,'Hard Disk Size','128 GB',66),(405,'Item Dimensions','14.31 x 9.74 x 0.71 inches',66),(406,'Item Weight','3.97 lbs',66),(407,'Operating System','Windows 10 S',66),(408,'Processor Count','2',66),(409,'RAM Type','DDR4 SDRAM',66),(410,'Display','11.6\" HD 1366*768',67),(411,'Graphics','Intel UHD Graphics 600',67),(412,'Processor','Intel Celeron N4000',67),(413,'RAM & Speed','4 GB',67),(414,'Storage','64GB EMMC',67),(415,'Wi-Fi','WiFi 5 (802.11ac) + BT 4.1',67),(416,'Operation System','Windows 10 in S mode',67),(417,'Weight (lbs)','2.2',67),(418,'Standing screen display size','14 Inches',68),(419,'Max Screen Resolution','1366 x 768 Pixels',68),(420,'Memory Speed','2.6 GHz',68),(421,'Chipset Brand','Intel',68),(422,'Card Description','Integrated',68),(423,'Average Battery Life','13.5 Hours',68),(424,'Operating System','Chrome OS',68),(425,'Item Weight','3.24 pounds',68),(426,'Product Dimensions','12.82 x 8.6 x 0.7 inches',68),(427,'Computer Memory Size','8 GB',69),(428,'CPU Model Manufacturer','AMD',69),(429,'CPU Speed','4.1 GHz',69),(430,'Screen Size','14 inches',69),(431,'Item Dimensions','12.73 x 8.62 x 0.63 inches',69),(432,'Item Weight','2.65 lbs',69),(433,'Operating System','Windows 10 Home',69),(434,'Processor Count','8',69),(435,'Wireless Communication Standard','802.11ax',69),(436,'Standing screen display size','15.6 Inches',70),(437,'Screen Resolution','1920 x 1080 pixels',70),(438,'Memory Speed','3200 MHz',70),(439,'Graphics Coprocessor','NVIDIA GeForce GTX 1650',70),(440,'Chipset Brand','NVIDIA',70),(441,'Card Description','Dedicated',70),(442,'Graphics Card Ram Size','4 GB',70),(443,'Wireless Type','Bluetooth, 802.11ac',70),(444,'Number of USB 2.0 Ports','1',70),(445,'Number of USB 3.0 Ports','3',70),(446,'Standing screen display size','15.6 Inches',71),(447,'Max Screen Resolution','1920 x 1080 Pixels',71),(448,'Memory Speed','3200 MHz',71),(449,'Graphics Coprocessor','NVIDIA GTX 1660Ti',71),(450,'Chipset Brand','NVIDIA',71),(451,'Card Description','Dedicated',71),(452,'Graphics Card Ram Size','6 GB',71),(453,'Wireless Type','802.11ax',71),(454,'Number of USB 3.0 Ports','4',71),(455,'Average Battery Life (in hours)','5 Hours',71),(456,'Computer Memory Size','4 GB',72),(457,'CPU Model','Intel Core 2 Quad',72),(458,'CPU Model Manufacturer','Intel',72),(459,'CPU Speed','1.8 GHz',72),(460,'Display Resolution Maximum','1366 x 768 pixels',72),(461,'Screen Size','11.6 inches',72),(462,'Graphics Description','integrated',72),(463,'Hard Disk Description','emmc',72),(464,'Hard Disk Size','32 GB',72),(465,'Human Interface Input','Touchscreen',72),(466,'Item Dimensions','11.70 x 8.10 x 0.80 inches',72),(467,'Item Weight','2.76 lbs',72),(468,'Operating System','Google Chrome',72),(469,'Processor Count','1',72),(470,'RAM Memory Technology','DDR4',72),(471,'Wireless Communication Standard','802.11ac',72),(472,'Wireless Communication Technology','Bluetooth, Wi-Fi',72),(473,'Computer Memory Size','8 GB',73),(474,'CPU Model Manufacturer','Intel',73),(475,'CPU Speed','1.20 GHz',73),(476,'Display Resolution Maximum','HD Display',73),(477,'Screen Size','15.6 inches',73),(478,'Hard Disk Size','128 GB',73),(479,'Item Dimensions','15.00 x 10.20 x 0.78 inches',73),(480,'Item Weight','4.45 lbs',73),(481,'Operating System','Windows 10 Home',73),(482,'Processor Count','2',73),(483,'RAM Type','DDR4 SDRAM',73),(484,'Wireless Communication Standard','802.11ac',73),(485,'Display Size','8.0\"',74),(486,'Display Resolution','1280 x 800',74),(487,'Audio','Dual',74),(488,'Weight','0.76 lbs.',74),(489,'Processor','Quad 2.0 GHz',74),(490,'Internal Memory','32GB',74),(491,'External Memory','microSD up to 512GB',74),(492,'Color','Oxford Gray',75),(493,'Screen Size','10.4 inches',75),(494,'Flash Memory Installed Size','4.00 GB',75),(495,'Hardware Platform','Android',75),(496,'Item Dimensions','0.28 x 6.07 x 9.63 inches',75),(497,'Native Resolution','1920 x 1200 pixels',75),(498,'Operating System','Android',75),(499,'Wireless Communication Technology','Wi-Fi, Bluetooth, GPS',75),(500,'PixelSense Display','12.3” Touchscreen with pen input',76),(501,'Colors','Platinum, Matte Black',76),(502,'Processor','10th Gen Intel Core i7, i5 and i3',76),(503,'Memory','16GB 8GB 4GB',76),(504,'Storage','1TB SSD 512GB SSD 256GB SSD 128GB SSD',76),(505,'Graphics','Intel Iris Plus Graphics (i7, i5) Intel UHD Graphics (i3)',76),(506,'Operating System','Windows 10 Home',76),(507,'Battery Life','Up to 10.5 hours',76),(508,'Screen Size','10.3 inches',77),(509,'Flash Memory Installed Size','4.00 GB',77),(510,'Hardware Platform','Android',77),(511,'Item Dimensions','9.61 x 6.04 x 0.32 inches',77),(512,'Operating System','Android 9 Pie',77),(513,'Wireless Communication Technology','Bluetooth, Wi-Fi',77),(514,'Color','Slate Black',78),(515,'Screen Size','8 inches',78),(516,'Flash Memory Installed Size','2.00 GB',78),(517,'Hardware Platform','Android',78),(518,'Item Dimensions','0.32 x 4.80 x 7.84 inches',78),(519,'Item Weight','0.67 lbs',78),(520,'Operating System','Android™ 9 Pie™',78),(521,'Wireless Communication Technology','Wi-Fi',78),(522,'Standing screen display size','9.7 Inches',79),(523,'Max Screen Resolution','2048 x 1536',79),(524,'Graphics Coprocessor','Apple A10 Fusion SoC & M10 Coprocessor',79),(525,'Wireless Type','802.11ac',79),(526,'Average Battery Life (in hours)','2 days',79),(527,'Display','10.1\" HD',80),(528,'Operating System','Android 9.0 Pie',80),(529,'Resolution','1280*800',80),(530,'Processor','Quad-core 1.3 GHz',80),(531,'RAM','2 GB',80),(532,'HDMI','Yes',80),(533,'Charging Ports','Micro USB',80),(534,'Battery ','Up to 8 hours of reading, browsing the web, watching video, and listening to music',80),(535,'Connectivity','Dual-band WiFi (802.11 a/c/b/g/n)',80),(536,'CPU Model','Ryzen 5 3600X',81),(537,'CPU Model Manufacturer','AMD',81),(538,'CPU Socket','Socket AM4',81),(539,'CPU Speed','4.4 GHz',81),(540,'Item Dimensions','1.57 x 1.57 x 0.24 inches',81),(541,'Item Weight','1.60 ounces',81),(542,'Model Year','2019',81),(543,'Processor Count','6',81),(544,'Wattage','95 watts',81),(545,'CPU Model','Intel Core i5',82),(546,'CPU Model Manufacturer','Intel',82),(547,'CPU Socket','LGA 1151',82),(548,'CPU Speed','2.9 GHz',82),(549,'Item Dimensions','4.57 x 2.76 x 3.98 inches',82),(550,'Item Weight','3.53 ounces',82),(551,'Model Year','2018',82),(552,'Processor Count','6',82),(553,'Wattage','65',82),(554,'CPU Model','Core i9',83),(555,'Processor Speed','5 GHz',83),(556,'Processor Socket','LGA 1151',83),(557,'Graphics Card Interface','PCI-E',84),(558,'Graphics Coprocessor','AMD Radeon RX 580',84),(559,'Graphics Ram Size','8 GB',84),(560,'Graphics Ram','GDDR5',84),(561,'Hardware Interface','PCI Express x8',84),(562,'Included Components','Video Card, driver cd, quick install guide',84),(563,'Item Dimensions','10.63 x 1.57 x 4.88 inches',84),(564,'Memory Bus Width','256 bits',84),(565,'Memory Clock Speed','1386 MHz',84),(566,'Style','XFX RX 580 8GB',84),(567,'Graphics Card Interface','PCI-Express x16',85),(568,'Graphics Coprocessor','NVIDIA GeForce GTX 1060',85),(569,'Graphics Ram Size','6 GB',85),(570,'Graphics Ram','GDDR5',85),(571,'Hardware Interface','PCI Express x8',85),(572,'Included Components','Graphics card; cables and connectors; quick setup guide',85),(573,'Item Dimensions','8.10 x 5.10 x 1.70 inches',85),(574,'Memory Bus Width','192 bits',85),(575,'Memory Clock Speed','1830 MHz',85),(576,'Cache Memory Installed Size','64',86),(577,'Digital Storage Capacity','1TB',86),(578,'Hard Disk Rotational Speed','7200 rpm',86),(579,'Hard Disk Size','1TB',86),(580,'Hard Disk Form Factor','3.50 inches',86),(581,'Hardware Interface','SATA 6.0 Gb/s',86),(582,'Item Dimensions','5.80 x 4.00 x 1.00 inches',86),(583,'Item Weight','0.97 lbs',86),(584,'Cache Memory Installed Size','256',87),(585,'Digital Storage Capacity','4 TB',87),(586,'Hard Disk Rotational Speed','7200 rpm',87),(587,'Hard Disk Size','4000',87),(588,'Hard Disk Form Factor','3.50 inches',87),(589,'Hardware Interface','SATA 6.0 Gb/s',87),(590,'Item Dimensions','5.79 x 4.00 x 1.03 inches',87),(591,'Item Weight','1.66 lbs',87),(592,'Cache Memory Installed Size','256',88),(593,'Digital Storage Capacity','2 TB',88),(594,'Hard Disk Rotational Speed','7200 rpm',88),(595,'Hard Disk Size','2 TB',88),(596,'Hard Disk Form Factor','3.50 inches',88),(597,'Hardware Interface','SATA 6.0 Gb/s',88),(598,'Item Dimensions','5.79 x 4.00 x 0.79 inches',88),(599,'Item Weight','0.92 lbs',88),(600,'Product Dimensions','6.7 x 5.75 x 1.63 inches',89),(601,'Item Weight','1 pounds',89),(602,'Item model number','WH16NS40',90),(603,'Operating System','Windows 7/ Vista/ XP',90),(604,'Item Weight','1 pounds',90),(605,'Product Dimensions','6.5 x 5.7 x 1.6 inches',90),(606,'Item model number','WH14NS40',91),(607,'Hardware Platform','PC',91),(608,'Operating System','Windows XP, Windows Vista, Windows 7',91),(609,'Item Weight','1.65 pounds',91),(610,'Product Dimensions','5.7 x 1.6 x 6.5 inches',91),(611,'Color','Black',91),(612,'Hard Drive Interface','ATA-4',91),(613,'Item model number','ROG-THOR-1200P',92),(614,'Item Weight','11 pounds',92),(615,'Product Dimensions','7.48 x 5.91 x 1.33 inches',92),(616,'Color','80+ Platinum',92),(617,'Voltage','450 Volts',92),(618,'Item model number','CP-9020105-NA',93),(619,'Item Weight','1 pounds',93),(620,'Product Dimensions','4.9 x 2.5 x 3.9 inches',93),(621,'Color','80 PLUS Gold',93),(622,'Voltage','120 Volts',93),(623,'Item model number','PS-SPD-0500NPCWUS-W',94),(624,'Item Weight','3.8 pounds',94),(625,'Product Dimensions','8.9 x 4 x 7 inches',94),(626,'Voltage','120 Volts',94),(627,'Ideal For','PC enthusiasts, creative pros',95),(628,'Form Factor','SATA 2.5”/7mm & M.2 2280',95),(629,'Interface','SATA III 6 Gb/s',95),(630,'Sequential Read Speed','up to 560 MB/s',95),(631,'Sequential Write Speed','up to 530 MB/s',95),(632,'TBW','up to 600TBW (4TB)',95),(633,'Highest Capacity Available','4TB',95),(634,'Capacity','120GB - 1.92TB',96),(635,'Form Factor','2.5\"',96),(636,'Interface','SATA 3',96),(637,'Write Speed','Up to 450 MB/s',96),(638,'Read Speed','Up to 500 MB/s',96),(639,'Item Weight','2.5 ounces',97),(640,'Product Dimensions','2.52 x 0.71 x 6.69 inches',97),(641,'Hardware Platform','Headphones, PC',98),(642,'Item Weight','6.4 ounces',98),(643,'Product Dimensions','5.43 x 4.76 x 0.71 inches',98),(644,'Processor Count','1',98),(645,'Computer Memory Type','DDR3 SDRAM',98),(646,'Capacity','16 GB',99),(647,'Item Dimensions','6.10 x 3.54 x 0.39 inches',99),(648,'Memory Clock Speed','667 MHz',99),(649,'Memory Speed','3200 MHz',99),(650,'Number of Items','2',99),(651,'RAM Memory Technology','SDRAM',99),(652,'Size','16GB Kit (2x8GB)',99),(653,'RAM Type','DDR4 SDRAM',99),(654,'Capacity','8 GB',100),(655,'Item Dimensions','2.70 x 0.20 x 1.10 inches',100),(656,'Memory Speed','2400 MHz',100),(657,'Number of Items','1',100),(658,'Number of Pins','260',100),(659,'RAM Memory Technology','DDR4',100),(660,'Size','8GB Single Rank',100),(661,'Speeds','2400MHz - 3733MHz',101),(662,'CAS Latencies','15, 16, 17',101),(663,'Module Capacities','8GB, 16GB',101),(664,'Kit Capacities','16GB, 32GB, 64GB',101),(665,'Voltages','1.2V, 1.35V',101),(666,'Processor Socket','Socket AM4',102),(667,'RAM Memory Size','DIMM',102),(668,'Compatible Processor Types','AMD 3rd Generation Ryzen',102),(669,'Chipset Type','AMD 570X',102),(670,'Memory Speed','4400 MHz',102),(671,'Platform','Windows 10',102),(672,'Series','TUF GAMING X570-PLUS (Wi-Fi)',102),(673,'Memory Storage Capacity','128 GB',102),(674,'RAM Maximum Size','128 GB',102),(675,'Processor Socket','LGA 1151',103),(676,'RAM Memory Size','DDR4',103),(677,'Compatible Processor Types','8th Generation Intel Core',103),(678,'Graphics Card Interface','PCI-E',103),(679,'Memory Slots Available','4',103),(680,'Number of Ports','3',103),(681,'Wireless Type','802.11ac',103),(682,'Number of USB 2.0 Ports','1',103),(683,'Total HDMI Ports','1',103),(684,'Processor Socket','Socket AM4',104),(685,'RAM Memory Size','DDR4',104),(686,'Compatible Processor Types','AMD 2nd Gerenration Ryzen',104),(687,'Memory Speed','3600 MHz',104),(688,'Platform','Windows 8.1, Windows 8, Windows 10',104),(689,'Memory Storage Capacity','1000 TB',104),(690,'Graphics Card Interface','PCI-E',104),(691,'Memory Slots Available','4',104),(692,'Number of Ports','1',104),(693,'Operating System','Supports Windows 10 (64-bit) only',105),(694,'Item Dimensions LxWxH','3.75 x 4.76 x 0.85 inches',105),(695,'Data Transfer Rate','2400 Megabits Per Second',105),(696,'Item Dimensions LxWxH','4.76 x 3.28 x 0.85 inches',106),(697,'Data Transfer Rate','867 Megabits Per Second',106);
/*!40000 ALTER TABLE `product_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `product_images`
--
DROP TABLE IF EXISTS `product_images`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_images` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`product_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKqnq71xsohugpqwf3c9gxmsuy` (`product_id`),
CONSTRAINT `FKqnq71xsohugpqwf3c9gxmsuy` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=395 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `product_images`
--
LOCK TABLES `product_images` WRITE;
/*!40000 ALTER TABLE `product_images` DISABLE KEYS */;
INSERT INTO `product_images` VALUES (41,'EOS M50 flash opened.png',1),(42,'EOS M50 incline.png',1),(43,'EOS M50 straight.png',1),(44,'EOS M50 LCD.png',1),(45,'EOS M50 top down.png',1),(46,'Sony ZV-1 front 2.png',2),(47,'Sony ZV-1 side.png',2),(48,'Sony ZV-1 bottom.png',2),(49,'Sony ZV-1 front.png',2),(50,'Lumix FZ80 lens.png',3),(51,'Lumix FZ80 buttons.png',3),(52,'Lumix FZ80 rear.png',3),(53,'Lumix FZ80 dimensions.png',3),(54,'Pelican 1200 Case features.png',4),(55,'Pelican 1200 Case usages.png',4),(56,'Pelican 1200 Case open.png',4),(57,'Pelican 1040 Micro Case 2.png',5),(58,'Verizon Apple iPhone 6S front.png',6),(59,'Verizon Apple iPhone 6S back.png',6),(60,'Verizon Apple iPhone 6S all.png',6),(61,'Samsung Galaxy Note 2 with stylus.png',7),(62,'Samsung Galaxy Note 2 incline.png',7),(63,'Samsung 500GB SSD 3.png',8),(64,'Samsung 500GB SSD main 2.png',8),(65,'Samsung 500GB SSD waranty.png',8),(66,'Samsung 500GB SSD bottom.png',8),(67,'Samsung 500GB SSD speed.png',8),(68,'Powershot ELPH 180 front.png',9),(69,'Powershot ELPH 180 back.png',9),(70,'Powershot ELPH 180 lense closed.png',9),(71,'Powershot ELPH 180 landscape.png',9),(72,'Powershot ELPH 180 top.png',9),(73,'Powershot ELPH 180 bottom.png',9),(74,'Olympus Tough water around.png',10),(75,'Olympus Tough potrait.png',10),(76,'Olympus Tough water slow motion.png',10),(77,'CADeN Camera Backpack usages.png',12),(78,'CADeN Camera Backpack sizes.png',12),(79,'CADeN Camera Backpack Waterproof.png',12),(80,'CADeN Camera Backpack details.png',12),(82,'AmazonBasics Large DSLR Camera Bag opened.png',14),(83,'AmazonBasics Large DSLR Camera Bag close view.png',14),(84,'AmazonBasics Large DSLR Camera Bag tripod.png',14),(85,'AmazonBasics Large DSLR Camera Bag cover.png',14),(86,'AmazonBasics Large DSLR Camera Bag top view.png',14),(87,'Nikon Flash details.png',15),(88,'Canon Speedlite 2.png',16),(89,'Canon Speedlite 4.png',16),(90,'Canon Speedlite 3.png',16),(91,'Sony Flash 2.png',17),(92,'Sony Flash 3.png',17),(93,'Sony Flash 4.png',17),(94,'Neewer TT560 Flash Speedlite 4.png',18),(95,'Neewer TT560 Flash Speedlite 3.png',18),(96,'Neewer TT560 Flash Speedlite 2.png',18),(97,'Canon EF 50mm side 2.png',19),(98,'Canon EF 50mm side 3.png',19),(99,'Canon EF 50mm side 4.png',19),(100,'Canon EF 50mm side.png',19),(101,'Canon EF 75-300mm 2.png',21),(102,'Sigma 150-600mm front.png',22),(103,'Sigma 150-600mm 4.png',22),(104,'Sigma 150-600mm buttons.png',22),(105,'Sigma 150-600mm 3.png',22),(106,'Sigma 150-600mm 2.png',22),(107,'Bosch BT150 usage.png',23),(108,'Bosch BT150 install.png',23),(109,'Bosch BT150 install 2.png',23),(110,'Bosch BT150 install 3.png',23),(111,'Joby JB01507 usage 2.png',24),(112,'Joby JB01507 usage 3.png',24),(113,'Joby JB01507 usage 4.png',24),(114,'Joby JB01507 collapsed.png',24),(115,'Joby JB01507 usage 1.png',24),(116,'GoPro Tripod with camera 2.png',25),(117,'GoPro Tripod with camera.png',25),(118,'GoPro monopod mode.png',25),(119,'GoPro tripod picture.png',25),(120,'GoPro monopod selfie.png',25),(121,'Samsung Galaxy S7 incline 1.png',27),(122,'Samsung Galaxy S7 back.png',27),(123,'Samsung Galaxy S7 incline 2.png',27),(124,'Samsung Galaxy S6 Edge incline 2.png',28),(125,'Samsung Galaxy S6 Edge back 1.png',28),(126,'Samsung Galaxy S6 Edge incline 1.png',28),(127,'Samsung Galaxy S6 Edge incline 3.png',28),(128,'Samsung Galaxy S6 Edge back 2.png',28),(129,'Samsung Galaxy S6 Edge incline 4.png',28),(130,'Google Pixel 3a - back and front.png',29),(131,'Google Pixel 3a - back side.png',29),(132,'LG G Flex incline.png',30),(133,'LG G Flex lying.png',30),(134,'LG G Flex sim tray open.png',30),(135,'LG G Flex front and back curve.png',30),(136,'LG Optimus Exceed 2 back.png',31),(137,'LG Optimus Exceed 2 incline 2.png',31),(138,'LG Optimus Exceed 2 incline 1.png',31),(139,'LG G6 T-Mobile lying.png',32),(140,'LG G6 T-Mobile side 1.png',32),(141,'LG G6 T-Mobile back.png',32),(142,'TracFone Motorola Moto G6 side.png',33),(143,'TracFone Motorola Moto G6 back.png',33),(144,'Pantech Pocket 3.png',34),(145,'Pantech Pocket 4.png',34),(146,'Pantech Pocket 2.png',34),(147,'Samsung Galaxy S10 side 2.png',35),(148,'Samsung Galaxy S10 front and back.png',35),(149,'Samsung Galaxy S10 side 1.png',35),(150,'Samsung Galaxy S10 back.png',35),(151,'Samsung Galaxy A20s back.png',36),(152,'Samsung Galaxy A20s side2.png',36),(153,'Samsung Galaxy A20s cameras.png',36),(154,'Samsung Galaxy A20s side1.png',36),(155,'Samsung Galaxy S20 incline2.png',37),(156,'Samsung Galaxy S20 side1.png',37),(157,'Samsung Galaxy S20 incline1.png',37),(158,'Samsung Galaxy S20 side2.png',37),(159,'Samsung Galaxy S20 front and back.png',37),(160,'iPhone 7 Plus front.png',39),(161,'iPhone 7 Plus 2.png',39),(162,'iPhone 7 Plus back.png',39),(163,'iPhone X 64GB rear.png',40),(164,'Google Pixel 4 side.png',41),(165,'Google Pixel 4 incline.png',41),(166,'Google Pixel 4 back.png',41),(167,'Motor G Power twos.png',42),(168,'Motor G Power unlocked.png',42),(169,'Motor G Power cameras.png',42),(170,'Huawai P30 Lite rear.png',43),(171,'Huawai P30 Lite specs.png',43),(172,'Huawai P30 Lite twos.png',43),(173,'Huawai P30 Lite cameras.png',43),(174,'Redmi Note 9S cameras.png',44),(175,'HOVAMP iPhone Charger compatible.png',45),(176,'HOVAMP iPhone Charger Aluminum.png',45),(177,'HOVAMP iPhone Charger internal.png',45),(178,'Aioneus iphone charger cord demo charging.png',46),(179,'Aioneus iphone charger cord internal.png',46),(180,'Aioneus iphone charger cord easy to carry.png',46),(181,'Aioneus iphone charger cord supported devices.png',46),(182,'XIAE USB C Cable suitability.png',47),(183,'XIAE USB C Cable supported devices.png',47),(184,'XIAE USB C Cable internals.png',47),(185,'XIAE USB C Cable connectors.png',47),(186,'XIAE USB C Cable features.png',47),(187,'Everyworth Micro USB Cable supported devices.png',48),(188,'Everyworth Micro USB Cable Durability.png',48),(189,'Everyworth Micro USB Cable perfect design.png',48),(190,'Everyworth Micro USB Cable Attention.png',48),(191,'Samsung EVO Select 256GB microSD 3.png',49),(192,'Samsung EVO Select 256GB microSD 4.png',49),(193,'Samsung EVO Select 256GB microSD 6.png',49),(194,'Samsung EVO Select 256GB microSD 7.png',49),(195,'Samsung EVO Select 256GB microSD 5.png',49),(196,'Samsung EVO Select 256GB microSD 2.png',49),(197,'SanDisk 128GB 3.png',50),(198,'SanDisk 128GB 4.png',50),(199,'SanDisk 128GB 2.png',50),(200,'SanDisk Ultra 32GB 2.png',51),(201,'SanDisk Ultra 32GB 5.png',51),(202,'SanDisk Ultra 32GB 3.png',51),(203,'SanDisk Ultra 32GB 4.png',51),(204,'Samsung PRO 128GB 4.png',52),(205,'Samsung PRO 128GB 3.png',52),(206,'Samsung PRO 128GB 2.png',52),(207,'Lexar 512GB2.png',53),(208,'Lexar 512GB 3.png',53),(209,'Manfrotto Tripod hand.png',54),(210,'Manfrotto Tripod collapse.png',54),(211,'Manfrotto Tripod 2.png',54),(212,'Manfrotto Tripod 3.png',54),(213,'Nulaxy A4 holds ipad.png',55),(214,'Nulaxy A4 2 portable.png',55),(215,'Nulaxy A4 2 case.png',55),(216,'Nulaxy A4 2.png',55),(217,'Fitfort Phone Ring Holder structure.png',56),(218,'Fitfort Phone Ring Holder car mount.png',56),(219,'Fitfort Phone Ring Holder usages.png',56),(220,'Fitfort Phone Ring Holder rotation.png',56),(221,'PopWallet 3.png',57),(222,'PopWallet 2.png',57),(223,'PopWallet holds phone.png',57),(224,'Shawe Phone holder 2.png',58),(225,'Shawe Phone holder 3.png',58),(226,'Shawe Phone holder 4.png',58),(227,'Lenovo IdeaCenter back 3.png',59),(228,'Lenovo IdeaCenter incline.png',59),(229,'Lenovo IdeaCenter back.png',59),(230,'Lenovo IdeaCenter back 2.png',59),(231,'Lenovo IdeaCenter back 4.png',59),(232,'Lenovo IdeaCenter incline2.png',59),(233,'Aspire TC-885-UA92 connectivity.png',60),(234,'Aspire TC-885-UA92 connect.png',60),(235,'Aspire TC-885-UA92 CPU and RAM.png',60),(236,'Aspire TC-885-UA92 compact form.png',60),(237,'Aspire TC-885-UA92 audio.png',60),(238,'Dell Inspiron 27 AIO side.png',61),(239,'Dell Inspiron 27 AIO 2.png',61),(240,'Dell Inspiron 27 AIO back.png',61),(241,'IdeaCentre 3 main.png',62),(242,'IdeaCentre 3 front.png',62),(243,'IdeaCentre 3 with screen mouse keyboard.png',62),(244,'IdeaCentre 3 back.png',62),(245,'IdeaCentre 3 with screen.png',62),(246,'IdeaCentre 3 incline.png',62),(247,'Dell OptiPlex on desktop.png',63),(248,'Dell OptiPlex with screen.png',63),(249,'Dell OptiPlex interfaces.png',63),(250,'Dell OptiPlex details.png',63),(251,'Dell OptiPlex interfaces 2.png',63),(252,'intel NUC usage.png',64),(253,'intel core i7.png',64),(254,'Intel NUC interface.png',64),(255,'Lenovo Flex 5 fold 3.png',65),(256,'Lenovo Flex 5 fold 2.png',65),(257,'Lenovo Flex 5 fold.png',65),(258,'Lenovo Flex 5 laptop.png',65),(259,'Lenovo Flex 5 top.png',65),(260,'Acer Aspire 5 Slim Laptop.png',66),(261,'Acer Aspire 5 Slim Laptop full hd.png',66),(262,'Acer Aspire 5 Slim Laptop family.png',66),(263,'ASUS VivoBook mobility.png',67),(264,'ASUS VivoBook battery.png',67),(265,'ASUS VivoBook flexibility.png',67),(266,'ASUS VivoBook hinge.png',67),(267,'ASUS VivoBook cinematic.png',67),(268,'ASUS VivoBook ergonomic.png',67),(269,'HP Chromebook dimensions.png',68),(270,'HP Chromebook usb audio.png',68),(271,'HP Chromebook components.png',68),(272,'Acer Swift 3 stay on the move.png',69),(273,'Acer Swift 3 features.png',69),(274,'Acer Swift 3 ultra light.png',69),(275,'Acer Swift 3 performance.png',69),(276,'Acer Swift 3 full HD.png',69),(277,'ASUS TUF Gaming back.png',70),(278,'ASUS TUF Gaming 2.png',70),(279,'ASUS TUF Gaming top view.png',70),(280,'ASUS TUF Gaming side.png',70),(281,'Lenovo Legion Light.png',71),(282,'Lenovo Legion minimal mighty.png',71),(283,'Lenovo Legion keys.png',71),(284,'Lenovo Legion fast refresh.png',71),(285,'Lenovo Legion Audio.png',71),(286,'Acer Chromebook Spin 6.png',72),(287,'Acer Chromebook Spin 2.png',72),(288,'Acer Chromebook Spin 3.png',72),(289,'Acer Chromebook Spin 4.png',72),(290,'Acer Chromebook Spin 5.png',72),(291,'Dell Inspiron 3000 top view.png',73),(292,'Dell Inspiron 3000 back.png',73),(293,'Dell Inspiron 3000 incline.png',73),(294,'Dell Inspiron 3000 sideview.png',73),(295,'Galaxy Tab A side.png',74),(296,'Galaxy Tab A back.png',74),(297,'Galaxy Tab A front and back.png',74),(298,'Galaxy Tab A potrait.png',74),(299,'Galaxy Tab S6 Lite landscape.png',75),(300,'Galaxy Tab S6 Lite incline.png',75),(301,'Galaxy Tab S6 Lite back.png',75),(302,'Galaxy Tab S6 Lite pen.png',75),(303,'Surface Pro 7 straight.png',76),(304,'Surface Pro 7 side.png',76),(305,'Surface Pro 7 key.png',76),(306,'Surface Pro 7 stand.png',76),(307,'Surface Pro 7 back.png',76),(308,'Lenovo Tab M10 Plus music.png',77),(309,'Lenovo Tab M10 Plus side.png',77),(310,'Lenovo Tab M10 Plus camera.png',77),(311,'Lenovo Tab M10 Plus back.png',77),(312,'Lenovo Tab M10 Plus front.png',77),(313,'Lenovo Tab M8 gaming.png',78),(314,'Lenovo Tab M8 camera.png',78),(315,'Lenovo Tab M8 side.png',78),(316,'Lenovo Tab M8 front.png',78),(317,'Lenovo Tab M8 back.png',78),(318,'iPad 6 all sides.png',79),(319,'Dragon Touch Notepad K10 Tablet features.png',80),(320,'Dragon Touch Notepad K10 Tablet camera.png',80),(321,'Dragon Touch Notepad K10 Tablet performance.png',80),(322,'AMD Ryzen 5 chip.png',81),(323,'AMD Ryzen 5 Box 3.png',81),(324,'AMD Ryzen 5 Box 2.png',81),(325,'Intel Core i5 graphics required.png',82),(326,'Intel Core i5 specs.png',82),(327,'Intel Core i5 desktop.png',82),(328,'Intel Core i9 box chip close.png',83),(329,'Intel Core i9 box with chip.png',83),(330,'Intel Core i9 chip.png',83),(331,'XFX Radeon RX 580 ports.png',84),(332,'XFX Radeon RX 580 bottom.png',84),(333,'XFX Radeon RX 580 stand.png',84),(334,'MSI GeForce bottom.png',85),(335,'MSI GeForce card.png',85),(336,'Western Digital 1TB 5.png',86),(337,'Western Digital 1TB 4.png',86),(338,'Western Digital 1TB 3.png',86),(339,'Western Digital 1TB 2.png',86),(340,'Western Digital 4TB internal.png',87),(341,'Western Digital 4TB external.png',87),(342,'Seagate BarraCuda 2TB 2.png',88),(343,'Seagate BarraCuda 2TB go big.png',88),(344,'Asus 24x DVD-RW back.png',89),(345,'LG WH16NS40 front.png',90),(346,'LG WH16NS40 disc.png',90),(347,'Asus Rog Thor 1200 cooling.png',92),(348,'Asus Rog Thor 1200 customization.png',92),(349,'Asus Rog Thor 1200 connectivity.png',92),(350,'Corsair SF600 fan.png',93),(351,'Corsair SF600 2.png',93),(352,'Corsair SF600 back.png',93),(353,'Corsair SF600 cables.png',93),(354,'Thermaltake 500W connector.png',94),(355,'Thermaltake 500W fan.png',94),(356,'Thermaltake 500W 2.png',94),(357,'Western Digital 500GB SSD 3.png',95),(358,'Western Digital 500GB SSD 2.png',95),(359,'Western Digital 500GB SSD 4.png',95),(360,'Kingston 240GB SSD package.png',96),(361,'Kingston 240GB SSD bottom.png',96),(362,'Kingston 240GB SSD 2.png',96),(363,'Xonar ciruct.png',97),(364,'Xonar ports.png',97),(365,'Xonar bottom.png',97),(366,'Sound Blaster ports.png',98),(367,'Sound Blaster 2.png',98),(368,'Corsair DDR.png',99),(369,'Corsair specs.png',99),(370,'Corsair slot.png',99),(371,'Corsair 8 GB.png',99),(372,'Crucial 8GB DDR on laptop.png',100),(373,'Crucial 8GB DDR 2.png',100),(374,'Crucial 8GB DDR installation.png',100),(375,'HyperX 16GB DDR4.png',101),(376,'HyperX 16GB couple.png',101),(377,'HyperX 16GB package.png',101),(378,'Asus AM4 TUF ports.png',102),(379,'Asus AM4 TUF circuit.png',102),(380,'Asus AM4 TUF 2.png',102),(381,'Asus AM4 TUF box.png',102),(382,'Asus Prime details.png',103),(383,'Asus Prime outclass.png',103),(384,'Asus Prime connectivity.png',103),(385,'Asus Prime outshine competition.png',103),(386,'Gigabyte B450M circuit.png',104),(387,'Gigabyte B450M ports.png',104),(388,'Gigabyte B450M details.png',104),(389,'TPLink AX3000 reduce lag.png',105),(390,'TPLink AX3000 speed.png',105),(391,'TPLink AX3000 Wifi 6.png',105),(392,'TPLink AC1200 antennas.png',106),(393,'TPLink AC1200 bluetooth.png',106),(394,'TPLink AC1200 details.png',106);
/*!40000 ALTER TABLE `product_images` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `products`
--
DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `products` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`short_description` varchar(512) NOT NULL,
`full_description` varchar(4096) NOT NULL,
`main_image` varchar(255) NOT NULL,
`created_time` datetime(6) DEFAULT NULL,
`updated_time` datetime(6) DEFAULT NULL,
`enabled` bit(1) NOT NULL DEFAULT b'1',
`in_stock` bit(1) DEFAULT b'1',
`cost` float NOT NULL DEFAULT '0',
`price` float NOT NULL DEFAULT '0',
`discount_percent` float DEFAULT '0',
`length` float NOT NULL DEFAULT '0',
`width` float NOT NULL DEFAULT '0',
`height` float NOT NULL DEFAULT '0',
`weight` float NOT NULL DEFAULT '0',
`brand_id` int DEFAULT NULL,
`category_id` int DEFAULT NULL,
`average_rating` float NOT NULL,
`review_count` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_8qwq8q3hk7cxkp9gruxupnif5` (`alias`),
UNIQUE KEY `UK_o61fmio5yukmmiqgnxf8pnavn` (`name`),
KEY `FKa3a4mpsfdf4d2y6r8ra3sc8mv` (`brand_id`),
KEY `FKog2rp4qthbtt2lfyhfo32lsw9` (`category_id`),
FULLTEXT KEY `products_FTS` (`name`,`short_description`,`full_description`),
CONSTRAINT `FKa3a4mpsfdf4d2y6r8ra3sc8mv` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`),
CONSTRAINT `FKog2rp4qthbtt2lfyhfo32lsw9` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `products`
--
LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` VALUES (1,'Canon EOS M50 Mirrorless Vlogging Camera Kit with EF-M 15-45mm lens, Black','canon-eos-m50','<div><ul><li>Dual Pixel CMOS AF for fast, accurate autofocus that helps you get the photo you want right as the moment happens</li><li>241 Megapixel APS C CMOS sensor and the DIGIC 8 Image Processor delivers incredible color, clear details, and stunning range</li></ul></div>','<div><div><b>The EOS M50 is a compact interchangeable lens camera for aspiring photographers looking for an easy way to boost the quality of their photos and videos. With clear, high-resolution 4K UHD 24p video, you can capture the incredible details and cinematic moments of your life at home or wherever your adventures take you.</b></div><div><br></div><div>Snap vibrant, eye-catching photos with a <b>24.1 Megapixel (APS-C)</b> CMOS Sensor using the built-in Electronic Viewfinder or Vari-angle Touchscreen LCD. Thanks to the fast and improved Dual Pixel CMOS Autofocus system, you can quickly lock focus on your subject to make sure you don\'t miss the action. See how the EOS M50 can easily deliver the high-quality photos and videos you\'ve always imagined.</div></div>','canon eos m50.png',NULL,'2021-11-07 16:14:55.602000',_binary '',_binary '',500,620,0,5,5,3,2,1,10,4.33333,3),(2,'Sony ZV-1 Camera for Content Creators, vlogging and YouTube with flip screen and microphone','sony-zv-1','<ul><li><span style=\"font-size: 1rem;\">20.1MP stacked back illuminated 1\" Exmor RS CMOS sensor w/ DRAM, Large aperture 24-70mm1 F1.8-2.8 ZEISS Vario-Sonnar T lens</span></li><li><span style=\"font-size: 1rem;\">Fast Hybrid AF, Real Time Eye-AF3 and Real-time AF tracking</span></li><li><span style=\"font-size: 1rem;\">Quickly switch between two modes of defocused background bokeh</span></li><li><span style=\"font-size: 1rem;\">Product Showcase Setting transitions focus from face to object</span></li><li><span styl','<div><div>Sony ZV-1 Camera for Content Creators and Vloggers, packed with advanced imaging technology and easy-to-use functionality.</div><div>The ZV-1 is designed to bring together simplicity and power, opening up creative opportunities as wide as your imagination.</div><div>The ZV-1 design makes creating outstanding selfie and vlog content easy. Right down to the last detail, the ZV-1 is all about empowering you to make inspirational content.</div></div>','Sony ZV-1 main.png','2020-09-25 11:27:15.000000','2021-02-05 15:45:17.000000',_binary '',_binary '',711,789,0,4.3,2.5,2,0.9,3,10,0,0),(3,'Panasonic Lumix FZ80 4K Digital Camera','panasonic-lumix-fz80','<div><ul><li>18.1 Megapixel Video Camera</li><li>60X Zoom DC VARIO 20-1200mm Lens</li><li>F2.8-5.9 Aperture</li><li>Power O.I.S. Stabilization</li><li>Touch Enabled 3-Inch LCD</li><li>Wi-Fi, DC-FZ80K (Black)</li></ul></div>','<div>Perfect for travelers, the Panasonic Lumix Digital Camera DC FZ80K brings the legendary optical performance of a super long 60X (20 1200mm) DC Vario lens with amazingly stable O.I.S. (Optical Image Stabilizer) to a highly portable point and shoot travel camera. With a powerful 18.1 megapixel MOS sensor, the Lumix DC VARIO camera lens features a super bright F2.8 5.9 aperture range that is optically stabilized with Panasonic’s Power O.I.S. technology to add striking depth of field dimension to your photographs even in low light conditions. The high resolution power of 4K video technology captures up to 4X the resolution (3840 x 2160) of standard Full HD, enabling you to create printable photos with 4K photo\'s blistering 30 frames per second burst feature. Post Focus and Focus Stacking provide for additional creative freedom by allowing you to change depth of field or focus points after you take the picture. The Lumix FZ80 perfectly fits in your hand with an ergonomic grip while its rear touch enabled 3 inch LCD display and high resolution 1,170K dot viewfinder remain clear even in bright sunlight. Convenient travel ready technologies like USB charging and Wi Fi connectivity to your mobile device make the Lumix DC FZ80K a digital camera that everyone can enjoy.<br></div>','Lumix FZ80 main.png','2020-09-25 11:58:25.000000','2021-02-04 22:12:28.000000',_binary '',_binary '',235,298,0,5.3,5,4,1.75,7,10,5,1),(4,'Pelican 1200 Case With Foam (Black)','pelican-1200-case','<div><ul><li>Completely Watertight</li><li>Indestructible</li><li>Customized Fit</li><li>Trusted by Professionals</li></ul></div>','<div><div>Pelican Protector Cases are made with Copolymer Polypropylene, using an open cell core and solid wall construction, which is stronger and lighter that the completion. You can tell its a Pelican case by the distinctive \"twin-ribbed\" top surface. Stainless steel pins are used for hinges and handles. The new Double-Throw latches are much easier to open.Pelican cases are kept watertight through the use of a tongue and groove fit and a polymer o-ring.</div><div>Pelican cases come standard with an Automatic Pressure Equalization Valve which releases built up air pressure while keeping water out.</div><div>Pelican\'s Pick N\'Pluck foam lets you customize the interior. Stainless steel hardware</div><div>Interior Dimensions (inches): 9.25 x 7.12 x 4.12</div><div>LID DEPTH- 1.18Inches (3 cm). BOTTOM DEPTH- 2.93 Inches (7.4 cm). TOTAL DEPTH- 4.11Inches(10.4 cm). TOTAL DEPTH- 4.11 Inches (10.4 cm). INT VOLUME- 0.16 ft³ (0.005 m³) Weight With Foam 2.87 lbs (1.3 kg) Weight Empty 2.65 lbs (1.2 kg) Buoyancy 12.02 lbs (5.5 kg)</div><div>Pelican cases are kept watertight through the use of a tongue and groove fit and a polymer o-ring.</div><div>Pelican cases come standard with an Automatic Pressure Equalization Valve which releases built up air pressure while keeping water out.</div><div>Pelican\'s Pick N\'Pluck foam lets you customize the interior.</div><div>Single folding front handle</div></div>','Pelican 1200 Case main.png','2020-09-25 12:08:13.000000','2020-09-25 12:11:50.000000',_binary '',_binary '',42,54.95,0,8,5,4,1.5,8,9,0,0),(5,'Pelican 1040 Micro Case (Black/Clear)','pelican-1040-micro-case','<div><ul><li>Water resistant, crushproof and dustproof</li><li>Rubber liner for extra protection, doubles as o-ring seal</li><li>Stainless steel hardware</li><li>Clear polycarbonate lid to easily identify items in the box</li><li>Interior Dimensions (inches): 6. 50 x 3. 87 x 1. 75</li><li>Great for rugged sports - not for swimming or submerging</li><li>Water-resistant, crush-proof and dust-proof</li></ul></div>','<div><div>This water-resistant, crushproof case is ideal for <font color=\"#ff0000\">rugged activities</font>. It will keep your expensive GPS, cell phones and other electronics and documents safe and secure. For over 30 years Pelican has built a reputation for manufacturing the toughest cases in the world. As a matter of fact, we invented the category. Over these years we\'ve seen our cases used for some fairly crazy activities...and important ones too.</div><div><b><br></b></div><div><b>Pelican Micro Cases</b> are created for your smaller items. Micro Cases look and function in the same way as the larger Pelican Cases, but are designed to protect your cell phone, iPod, camera, and other small items. Many of the cases are water resistant and crushproof, or impact resistant to provide maximum protection for your valuables. These cases will get your gear from point A to point B in the condition it\'s meant to be in: intact and functional.</div></div>','Pelican 1040 Micro Case 1.png','2020-09-25 12:13:33.000000','2020-09-25 12:15:23.000000',_binary '',_binary '\0',10.25,14.95,0,8,6,3,1.65,8,9,0,0),(6,'Verizon Prepaid - Apple iPhone 6S (32GB) - Space Gray','verizon-apple-iphone-6s','<div>Carrier - This Device is locked to the Verizon prepaid network.<br></div>','<div><ul><li>Plans - Choose from four different plans, including unlimited data. Hurry to tale Advantage of the current double data limited time offer.</li><li>ACTIVATION - Activate your plan at Vzw. com/prepaid and access the My Verizon app after activation to easily manage your account.</li><li>4. 7-Inch Retina HD display</li><li>12MP camera and 4K video</li><li>5MP FaceTime HD camera with Retina Flash</li><li>Touch ID for secure authentication and Apple Pay</li><li><span style=\"font-size: 1rem;\">A9 chip</span></li><li>Ios 12 with Group FaceTime, screen Time, and even faster performance</li></ul></div>','Verizon Apple iPhone 6S main.png','2020-09-25 12:26:27.000000','2021-01-21 17:13:50.000000',_binary '',_binary '',201,249.99,0,5.8,3,0.7,0.5,9,14,0,0),(7,'Samsung Galaxy Note II, White 16GB (AT&T)','Samsung-Galaxy-Note-II,-White-16GB-(AT&T)','<div><ul><li>Display: 5.5-inches</li><li>Camera: 8-MP</li><li>Processor Speed: 1.6 GHz</li><li>OS: Android 4.1 (Jelly Bean)</li></ul></div>','<div>Samsung Galaxy Note II brings a whole new category of smartphones to AT&T. This high-performance device boasts many rich features and is indispensable when it comes to entertainment and productivity thanks to an enhanced S Pen hover experience, intuitive software, and elegant hardware features. Touch, hover, scribble, and speak—the Note II offers multiple tactile ways to interact. Capture and create with the innovative S Pen and preloaded apps like S Memo and S Note. Enjoy multitasking, intuitive interactions, customizable home screens, and more on the latest Google OS Android 4.1, Jelly Bean and the Samsung TouchWiz platform. With the latest HD Super AMOLED Plus technology powering the Note II’s 5.5-inch 720P display, images are bigger, clearer, and brighter than ever allowing you to view color-rich movies, photos, presentations, and gaming. With Note II performance and power are automatic, thanks to Samsung’s Exynos 1.6 Ghz quad-core processor, a long-lasting battery, and blazing fast 4G LTE network speeds.<br></div>','Samsung Galaxy Note 2 main.png','2020-09-25 13:34:36.000000','2021-01-12 16:47:09.000000',_binary '',_binary '',513,599.99,0,4,1.5,6.2,0.6,10,14,0,0),(8,'Samsung 860 EVO 500GB 2.5 Inch SATA III Internal SSD (MZ-76E500B/AM)','Samsung-860-EVO-500GB-2.5-Inch-SATA-III-Internal-SSD','<div><ul><li>Brand: Samsung Electronics</li><li>Digital Storage Capacity: 500 GB</li><li>Hardware Interface: SATA 6.0 Gb/s</li><li>Type of product: 2.5 inches</li><li>Write Speed: 520 megabits_per_second</li></ul></div>','<div><div>Innovative V-Nand Technology: Powered by Samsung V-NAND Technology, the 860 EVO SSD offers optimized performance for everyday computing as well as rendering large-sized 4K videos and 3D data used by the latest applications</div><div>Enhanced read write speeds: Sequential read and write performance levels of up to 550MB/s and 520MB/s, respectively</div><div>Secure encryption: Protect data by selecting security options, including AES 256-bit hardware-based encryption compliant with TCG Opal and IEEE 1670</div><div>Warranty and compatibility: 5-year limited warranty; Windows 8/Windows 7/Windows Server 2003 (32 bit and 64 bit), Vista (SP1 and above), XP (SP2 and above), MAC OSX and Linux</div><div>Included contents: 2.5 inches (7 millimeter) SATA 3 (6 Gb/s) SSD & user manual (All other cables, screws, brackets not included); Reliability (MTBF): 1.5 Million Hours Reliability (MTBF)</div></div>','Samsung 500GB SSD main 2.png','2020-09-25 14:00:57.000000','2021-01-12 11:38:09.000000',_binary '',_binary '',49,109.99,37,4.5,3.5,0.5,0.6,10,27,4.5,2),(9,'Canon PowerShot ELPH 180 Digital Camera','Canon-PowerShot-ELPH-180-Digital-Camera','<div>Canon PowerShot ELPH 180 Digital Camera w/ Image Stabilization and Smart AUTO Mode (Silver), 0.90in. x 3.70in. x 2.10in. - 1093C001<br></div>','<div><div>8x Optical Zoom with Optical Image Stabilizer helps you capture images with flexibility and ease</div><div>20.0 Megapixel CCD sensor combines with the DIGIC 4+ Image Processor to help deliver stunning image quality</div><div>720p HD video capabilities.Focusing Range:Normal: 2.0 in. - infinity (W), 4.3 ft. (1.3m) - infinity (T)</div><div>Smart AUTO intelligently selects the proper settings based on predefined shooting situations</div><div>Digital IS helps reduce the effect of camera shake and subject movement.Operating Temperature:32-104°F / 0-40°C.Compatible with Android devices version 4.0 or later</div><div>Scene Modes such as Fisheye Effect, Toy Camera Effect and Monochrome provide creative freedom to capture your photos</div></div>','Powershot ELPH 180 main.png','2020-09-25 15:50:22.000000','2021-01-14 09:45:38.000000',_binary '',_binary '',82,100,0,4.3,1.3,2.5,0.5,1,10,0,0),(10,'Olympus Tough TG-6 Waterproof Camera, Red','Olympus-Tough-TG-6-Waterproof-Camera,-Red','<div><ul><li>Waterproof (50 feet /15 meter), dust proof, shockproof (7 feet / 2.1 meter), crush proof (100kgf), freeze proof (14 degree Fahrenheit / -10 degree Celsius ), anti fog</li><li>High resolution F2.0 lens, maximum 8x zoom, true pic VIII, back illuminated CMOS image sensor</li><li>Variable macro system comprised of 4 macro shooting modes, magnified shooting up to 1 centimeter from the end of the lens</li><li>5 underwater shooting modes including underwater microscope, 3 underwater white balance mode','<div>You live for the outdoors. Hiking steep mountain trails. Backpacking through a desert Canyon. Skiing in the wilderness. The tough tg-6 is ready for adventure. It’s built to endure all the extreme environments you love exploring. You can drop it. Step on it. Go deep underwater or out into a freezing blizzard. It just keeps on shooting awesome stills and video. Packed with pro features, you’ll nail difficult shots — even in low light. Shoot intricately detailed macro photos and unique shots underwater with vivid color. The lightweight, compact tough tg-6. Engineered to survive the world’s toughest places.<br></div>','Olympus Tough main.png','2020-09-25 16:08:23.000000','2021-01-21 17:49:02.000000',_binary '',_binary '',289,349,0,5,3,2,1.5,11,10,0,0),(11,'Sony a7 III (ILCE7M3K/B) Full-frame Mirrorless','Sony-a7-III-ILCE7M3K-B-Full-frame-Mirrorless','<ul><li>Advanced 24.2MP BSI Full-frame Image Sensor w/ 1.8X readout speed Advanced 24.2MP Back-Illuminated 35mm Full-frame Image Sensor</li><li>15-stop dynamic range, 14-bit uncompressed RAW, ISO 50 to 204,800</li><li>Up to 10fps Silent or Mechanical Shutter with AE/AF tracking</li><li>693 phase-detection / 425 contrast AF points w/ 93% image coverage</li></ul>','<div>Advanced 24.2MP Full-frame Image Sensor w/ 1.8X readout speed Advanced 24.2MP Back-Illuminated 35mm Full-frame Image Sensor. Improved AF and tracking plus up to 10fps continuous shooting capture decisive moments. Reliable operability ensures confident shooting. A light, compact body enhances mobility. 4K HDR3 4 movie recording capability.<br></div>','Sony a7 III main.png',NULL,'2021-11-16 15:09:24.712000',_binary '',_binary '',1800,1950,0,5,6,2.8,1.25,3,10,4.5,2),(12,'CADeN Camera Backpack Bag','CADeN-Camera-Backpack-Bag','<div>Backpack Bag Professional for DSLR/SLR Mirrorless Camera Waterproof, Camera Case Compatible for Sony Canon Nikon Camera and Lens Tripod Accessories<br></div>','<div><div>【Large-Capacity】Dimensions:28*14*36 cm/11*5.5*14.2 inches, 0.79kg/1.74lb. This professional photography camera backpack fits 1 camera bodies+4 lens+flash+ipad+tripod place+other accessories.Or for DJI drone. High-elasticity mesh bags on both sides for bottle and umbrella. On one side of the camera bag is tripod or trekking pole place.</div><div>【Item Feature】Waterproof made of high density waterproof 900D polyester nylon, protect your photography gears from rain and damaged.</div><div>【Multi-Functions】①Lengthened shoulder belts are made of high elasticity,decompression memory foam, very good design for American. ②Hidden Zipper design,special and beautiful. ③Inner bag paddings are made of 7-layer PE foam and PP board, well protect your camera from shocking, very durable.</div><div>【Good Quality and Perfect Design】①Shoulder belts and handle that connected with camera rusksack have taken bar-tack reinforcement technology which load-bearing up to 50kg(110.2lb). Best care for your cameras, lens, flashes, tripod and other accessories. ②Scratch proof and lightweight material protects your camera from damage and being deformed. ③CADeN alloy zipper won\'t rusty within 3 years ,and wont break within 5 years.</div><div>【Perfect Services】: 1 years guarantees--Any problems within 1 year, we will offer a new one for you; 20 years factory with more than 1000 employees focused on camera bag, trustworthy for you.</div></div>','CADeN Camera Backpack open.png','2020-09-25 16:31:11.000000','2020-11-02 21:57:59.000000',_binary '',_binary '',22.6,27.99,0,11.5,14.5,6,1.8,12,9,0,0),(14,'AmazonBasics Large DSLR Camera Gadget Bag','AmazonBasics-Large-DSLR-Camera-Gadget-Bag','<div><ul><li>Store, carry and protect your camera equipment</li><li>Slot for iPad Mini, Google Nexus 7, Amazon Kindle Fire</li><li>Holds 1 DSLR body and up to 3 lenses</li></ul></div>','<div><div>This water-resistant, crushproof case is ideal for rugged activities. It will keep your expensive GPS, cell phones and other electronics and documents safe and secure. For over 30 years Pelican has built a reputation for manufacturing the toughest cases in the world. As a matter of fact, we invented the category. Over these years we\'ve seen our cases used for some fairly crazy activities...and important ones too.</div><div><br></div><div>Pelican Micro Cases are created for your smaller items. Micro Cases look and function in the same way as the larger Pelican Cases, but are designed to protect your cell phone, iPod, camera, and other small items. Many of the cases are water resistant and crushproof, or impact resistant to provide maximum protection for your valuables. These cases will get your gear from point A to point B in the condition it\'s meant to be in: intact and functional.</div></div>','AmazonBasics Large DSLR Camera Bag.png','2020-09-25 16:50:39.000000','2021-01-12 12:42:34.000000',_binary '',_binary '',18,25.95,0,14,10,8,2.2,13,9,0,0),(15,'Nikon SB-700 AF Speedlight Flash for Nikon Digital SLR Cameras','Nikon-SB-700-AF-Speedlight-Flash-for-Nikon-Digital-SLR-Cameras','<div><ul><li>Portable, Versatile Speedlight Unit</li><li>Nikon\'s Precision i-TTL Flash Control</li><li>Complete Flash Head Positioning Freedom</li><li>Hot Shoe and Wireless Operation</li><li>Wireless Flash Control</li></ul></div>','<div>The next great speedlight from Nikon is here, introducing the Nikon SB-700, a high-performance portable flash with a host of new features designed to make flash photography simple, accurate and creative. The SB-700 is for photographers looking for an on-camera Speedlight offering more power for greater depth-of-field control than the built-in flash or for users looking for a compact Speedlight that can be set up as a Commander or a Remote in wireless flash set-ups as well as those who want to upgrade from their existing or older Nikon Speedlight.What’s in the box: Nikon SB-700 Speedlight Shoe Mount Flash, AS-22 Speedlight Stand for SB-700 (Replacement), SW-14H Diffusion Dome for SB-700 Flash, SZ-3TN Incandescent Filter for SB-700 Speedlight, SZ-3FL Fluorescent Filter for SB-700 Speedlight, SS-700 Soft Case for SB-700 Speedlight Shoe Mount Flash and 1-Year Limited Warranty. Flash Coverage:Multi-step auto zoom covers wide 24-120mm zoom range,Recycling Time:Approx. 2.5 sec. with NiMH or alkaline batteries, 3.5 s with lithium batteries,Number of Flashes:Approx. 160 (Alkaline) 260 (NiMH),Weight (without battery, memory card or body cap): Approx. 360g (14.6 oz.),Other Features:Ready Light, Thermal Cut-out function, Firmware update via compatible DSLR, Hard Color Filters,Dimensions:Approx. 71.0 x 126.0 x 104.5 mm,Power Requirements,Four AA-size 1.5V batteries:Supplied Accessories (may differ by country or area), Speedlight Stand AS-22, Nikon Diffusion Dome SW-14H, Incandescent Filter SZ-3TN, Fluorescent Filter SZ-3FL, Soft Case SS-700. Compatible cameras - All cameras compatible with Nikon Creative Lighting System (other cameras can be used but functionality is reduced)<br></div>','Nikon Flash 1.png','2020-09-26 10:47:58.000000','2021-01-26 18:23:24.000000',_binary '',_binary '',149,199,10,5.2,4.3,3.1,0.84,14,11,0,0),(16,'Canon Speedlite 470EX-AI, Auto Intelligent Flash Photography','Canon-Speedlite-470EX-AI,-Auto-Intelligent-Flash-Photography','<div><div>World\'s first flash equipped with an Ai bounce function*</div><div>Ai. B full-auto mode and AI. B semi-auto mode settings.</div><div>Maximum guide number of 47 (154 ft. /47M) at is 100.</div><div>A assist Beam emission in low-light scenes.</div><div>\"Zoom flash head range of 24 105mm**. flash exposure adjustment range of &plasmin; 3 Stops in 1/3 or 1/2 step. Broad bounce angle range of 0 120° upwards, 180° to the left and 180° to the right. Optical receiver mode for Off-Camera triggering. Char','<div><div>The speed Lite 470ex-ai makes bounce flash photography simple as the world\'s first flash with auto intelligent bounce, automatically calculating the distance between It and the subject as well as the distance from the ceiling to provide the optimal bounce angle and amazingly illuminating results.</div><div><br></div><div>World\'s First Flash Equipped with Auto Intelligent Bounce as of 2/25/18</div><div>Simplify and streamline your flash photography with the Speedlite 470EX-AI! Its AI (Auto Intelligent) Bounce function* means it can select and maintain the ideal bounce flash angle and settings, automatically swiveling the flash head into place to help easily and properly illuminate your subject.</div><div><br></div><div>Auto Intelligent Bounce</div><div>Master Bounce Flash Photography with Ease</div><div><br></div><div>AI.B Full-auto mode helps make bounce flash photography fast and easy by automatically creating a brilliant light source for the situation at hand and moving itself into an ideal position.</div><div><br></div><div>Push Your Bounce Flash Creativity Further</div><div><br></div><div>For seasoned flash photographers, the AI.B Semi-auto mode can maintain the specified bounce angle when the camera\'s orientation is changed, letting you focus on your subject and composition without having to adjust the flash settings.</div></div>','Canon Speedlite main.png','2020-09-26 10:50:43.000000','2020-09-26 10:51:47.000000',_binary '',_binary '',252,279,5,3,2,1.5,0.78,1,11,3,1),(17,'Sony External Flash with Wireless Radio Control Camera Flash','Sony-External-Flash-with-Wireless-Radio-Control-Camera-Flash','<div>External flash with wireless radio controller. Dust and moisture resistant design.<br></div>','<div><div>Powerful flash lighting at guide number 60 (Gn60)</div><div>Operates as On-Camera flash, radio wireless Commander or receiver</div><div>Fast recycling time of 1.7 sec.2 or 0.6 sec.2 w/ optional FA-EBA1</div><div>Continuous shooting up 220 emissions per set of batteries. Power Source: Four Aa-Size Alkaline Or Ni-Mh Batteries</div><div>In the box: Connector protect cap; Mini-stand; Case; Bounce adaptor; Color filter (amber); Color filter (green); Carrying pouch</div></div>','Sony Flash 1.png','2020-09-26 10:54:01.000000','2020-09-26 10:55:50.000000',_binary '',_binary '',535,548,15,3,2.2,1.3,0.65,3,11,0,0),(18,'Neewer TT560 Flash Speedlite','Neewer-TT560-Flash-Speedlite','<div>Flash for Canon Nikon Panasonic Olympus Pentax and Other DSLR Cameras,Digital Cameras with Standard Hot Shoe<br></div>','<div><div>Vertical Rotation Angle: 0~90 degrees, Horizontal Rotation Angle: 0~270 degrees; Note: Don\'t support TTL and the camera menu setting Function</div><div>Compatible with for Canon Nikon Panasonic Olympus Pentax Fijifilm and Sony with Mi Hot Shoe cameras,like a9 a7 a7II a7III a7R III a7RII a7SII a6000 a6300 a6500 (NOT compatible with Canon EOS Rebel SL3/250D,Rebel T7/1500D 2000D,Rebel T100/3000D 4000D)</div><div>Power Management: Switch to the ON, the flash will start charging (the charging indicator is dim)</div><div>For a test flash, press the test button. After use, press the ON/OFF to OFF to power off.</div><div>Red charging indicator lamp flickers in every 1s; it indicates low battery; The flash unit has 8 steps of power output control which indicated by 8 pieces of LED</div></div>','Neewer TT560 Flash Speedlite.png','2020-09-26 11:01:54.000000','2020-09-26 11:01:54.000000',_binary '',_binary '',32.7,39.99,0,3.15,2.15,1.55,0.7,15,11,0,0),(19,'Canon EF 50mm f/1.8 STM Lens','Canon-EF-50mm-f-1.8-STM-Lens','<div><ul><li>50 millimeter focal length and maximum aperture of f/1.8</li><li>Great for portraits, action, and nighttime photography; Angle of view (horizontal, vertical, diagonal): 40º, 27º,46º</li><li>Minimum focusing distance of 1.15 feet (0.35 meter) and a maximum magnification of 0.21x</li><li>Stepping motor (STM) delivers near silent, continous Move Servo AF for movies and smooth AF for stills</li><li>80 millimeter effective focal length on APS C cameras, 50 millimeter on full frame cameras.Lens Const','<div>The wide f/1.8 aperture lets in more than 8x the amount of light compared to the standard zoom lens that is provided with your EOS*. This results in sharper images with less motion blur and reduced need to use flash in dimly lit conditions so you can easily capture the atmosphere of a low light environment.The 50mm focal length allows you to fill the frame with your subject from a comfortable distance making it a great lens for portraits. A similar perspective to the human eye and its compact size make the EF 50mm f/1.8 STM a great everyday lens to always carry with your EOS camera.The near-silent STM (Stepping Motor) technology focuses extremely quickly when shooting photos, so you can react suddenly to capture fleeting moments. Creating high quality movies is easier with STM as it delivers steady and quiet continuous focusing, so your movies are smooth, and soundtracks only capture the surrounding sounds and not the noise of a focusing motor.The EF 50mm f/1.8 STM replaces the popular EF 50mm f/1.8 II lens which was affectionately known for giving outstanding picture quality at an affordable price. This latest version gives the same stunning photo quality but with a fast, near-silent focus motor and a more robust build that belies its price.<br></div>','Canon EF 50mm main.png','2020-09-26 11:13:39.000000','2021-01-09 11:39:35.000000',_binary '',_binary '',81,99.76,5,4,4,5,0.6,1,12,0,0),(20,'Nikon AF-S Nikkor 50mm f/1.8G Lens','Nikon-AF-S-Nikkor-50mm-f-1.8G-Lens','<div><ul><li>Fast, upgraded f/1.8, compact FX format prime lens. The picture angle with 35 millimeter (135) format is 47 degree and the maximum reproduction ratio is 0.15X</li><li>Focal length 50 millimeter, minimum focus distance 1.48 feet (0.45 meter)</li><li>Newly developed optical system with aspherical lens element, exclusive Nikon silent wave motor (SWM)</li><li>M/a focus mode switch, filter thread 58 millimeter, autofocus: yes. Dimensions (approx.) (from the camera lens mounting flange): approximatel','<div><div>Your DSLR’s Best Friend</div><div>A must-have for standard portraits and everyday use, the AF-S NIKKOR 50mm f/1.8G is a lens that will absolutely surprise you. The 50mm focal length (75mm equivalent on DX format cameras) with a fast f/1.8 aperture allows you to capture stunning images with a shallow depth-of-field, letting your subjects stand out from their backgrounds. The AF-S NIKKOR 50mm f/1.8G may soon become your new favorite lens.</div></div>','Nikon AF-S Nikkor.png','2020-09-26 11:26:07.000000','2020-09-26 11:26:35.000000',_binary '',_binary '',199,216.95,10,4.5,3,2.5,1.1,14,12,0,0),(21,'Canon EF 75-300mm f/4-5.6 III Telephoto Zoom Lens','Canon-EF-75-300mm-f-4-5.6-III-Telephoto-Zoom-Lens','<div><ul><li>Focal Length & Maximum Aperture : 75-300mm 1:4-5.6</li><li>Lens Construction : 13 elements in 9 groups</li><li>Diagonal Angle of View : 32° 11\' - 8° 15\'</li><li>Focus Adjustment : Front group rotating extension system with Micromotor</li><li>Closest Focusing Distance : 1.5m/ 4.9 ft.</li></ul></div>','<div>The Canon EF 75-300mm f/4-5.6 III is a 4x zoom characterized by its relatively lightweight design and compact form factor. Well-suited for a variety of subjects, including portraiture and sports, this lens portrait to medium telephoto fields of view and utilizes a DC micro motor to provide fast and accurate autofocus performance. Benefitting image quality, a Super Spectra coating has been applied to individual elements to reduce lens flare and ghosting in order to achieve high contrast and accurate colors. Additionally, it features a seven-blade diaphragm to produce smooth and pleasing bokeh.<br></div>','Canon EF 75-300mm 1.png','2020-09-26 11:29:31.000000','2021-01-14 09:53:02.000000',_binary '',_binary '',130,155,5,5.2,3.3,2.5,1.35,1,12,0,0),(22,'Sigma 150-600mm 5-6.3 Contemporary DG OS HSM Lens for Canon','Sigma-150-600mm-5-6.3-Contemporary-DG-OS-HSM-Lens-for-Canon','<div><ul><li>Lightweight and compact in construction for higher useability</li><li>Water and oil repellent coating on front glass element makes maintenance of the lens surface</li><li>Filter Size: 95mm</li><li>Minimum focusing distance : 280 cm/110.2 inches, focal length :150-600mm</li></ul></div>','<div><div>150-600 Millimeter F5-6.3 DG OS HSM | C</div><div>Portability Meets Versatility</div><div>The Sigma 150-600 millimeter 5-6.3 DG HSM OS Contemporary was created around the concept of maximum portability meets utmost image quality in a variable aperture hyper-telephoto zoom lens. Light weight and compact, this s zoom can handle any long-reach photographic situation one may encounter. This 150-600 millimeter Contemporary boasts updated Sigma technology such as a quiet and optimized Hyper Sonic Motor (HSM) and a new Optical Stabilizer (OS) with an accelerometer for improved panning photography both vertically and horizontally, essential for birding, wildlife and motor photography. The Sigma 150-600 Contemporary also touts a new zoom lock switch that can be locked at any focal length and a new manual override (MO) switch is incorporated for improved focusing control. Working with the Sigma USB dock, this lens allows for maximum customization such as firmware updates and adjustments to the focus limiter, AF speed and OS view.</div><div><br></div><div>USB Dock Compatibility</div><div>Sigma has developed special software (SIGMA Optimization Pro) that can update the lens firmware and adjust parameters such as focus. In addition, the lenses from our Sports line have customizable AF speed, focus limiter, OS function and full-time manual focus function. The \'Custom Mode Switch\' is the device for further customization on the dedicated lenses.</div></div>','Sigma 150-600mm main.png','2020-09-26 11:36:36.000000','2021-01-21 17:38:37.000000',_binary '',_binary '',605,869,20,11,5,5,4.5,16,12,5,1),(23,'Bosch BT150 Compact Extendable Tripod with Adjustable Legs BT 150','Bosch-BT150-Compact-Extendable-Tripod-with-Adjustable-Legs-BT-150','<ul><li>EXTENDABLE: The Bosch BT 150 provides extendable height adjustments so the user can expand tripod from 22 inches to 61 inches for different height applications</li><li>ADJUSTABLE: The tripod features a steady adjustable base that swivels, adjusts, and tightens product for steady measurement applications.</li></ul>','<div><div>The Bosch BT150 Compact Tripod with Adjustable Legs allows the user to work at precise heights ranging from 22 inches to 61 inches. The tripod has a fine adjustment crank that allows for quick setup with the benchmark. The compact and lightweight BT 150 tripod is easy to store and transport. The 1/4-Inch mounting thread makes it compatible with Bosch line lasers, point lasers and laser measures.Bosch BT 150 Compact Tripod</div><div>The Bosch BT 150 compact tripod with adjustable legs allows the user to work at precise heights ranging from 22 In. to 61 In. The tripod has a fine adjustment crank that allows for quick setup with the benchmark. The compact and lightweight BT 150 tripod is easy to store and transport. The 1/4 In. mounting thread makes it compatible with Bosch line lasers, point lasers and laser measures.</div></div>','Bosch BT150 main.png',NULL,'2021-11-07 16:16:10.302000',_binary '',_binary '',29,45,12,24,5,4.5,3,17,13,4,5),(24,'Joby JB01507 GorillaPod 3K Kit','Joby-JB01507-GorillaPod-3K-Kit','<div>Compact Tripod 3K Stand and Ballhead 3K for Compact Mirrorless Cameras or Devices up to 3K (6.6lbs). Black/Charcoal.<br></div>','<div><div>LEVELHEADED, LIGHTWEIGHT TRIPOD KIT. Designed to support DSLR and mirrorless cameras or devices weighing up to 3kg (6.6lbs). With a 360° panning head and 90° tilt your GorillaPod 3K Kit is a must have for any photographer, cinematographer or vlogger.</div><div>GRIP IT. WRAP IT. STAND IT. Rubberized rings and foot grips provide enhanced stability in difficult terrain. Wrappable legs allow you to secure professional camera equipment to virtually any surface. Works with pro-level accessories like GripTight PRO Mount</div><div><br></div><div>Flexible: Grip it. Wrap it. Stand it. Wrappable legs allow you to secure professional camera equipment to virtually any surface</div><div>Strong: Holds devices weighing up to 3 kg (6.6 lbs)</div><div>Stable: Rubberized ring and foot grips provide enhanced stability in difficult terrain</div><div>Durable: Japanese medical-grade ABS plastic and German TPE for firm, secure joints</div></div>','Joby JB01507 main.png','2020-09-26 13:23:40.000000','2021-02-04 22:18:46.000000',_binary '',_binary '',41,79.95,36,7.2,2,2,1.2,18,13,5,1),(25,'GoPro Shorty Mini Extension Pole Tripod','GoPro-Shorty-Mini-Extension-Pole-Tripod','<div><ul><li>The pocket-size shorty (4. 6in, 11. 7cm) is the perfect partner for on-the-go activities, travel and more</li><li>Extend shorty up to 8. 9in (22. 7cm) for group shots, selfies and other hard-to-reach angles</li><li>Prop shorty up on any level surface with its built-in tripod</li><li>Includes 1 Year GoPro Manufacturer</li></ul></div>','<div>Shorty is a grab-and-go Mini extension pole and tripod. Its compact design makes it ideal to take along for just about any casual activity. Toss it in your pocket on your way out the door, and you’ll have the perfect little partner to position your camera and get the best shot.<br></div>','GoPro Tripod main.png','2020-09-26 13:27:56.000000','2020-09-26 13:27:56.000000',_binary '',_binary '',33,39.99,7,7,2,1.8,1.4,19,13,0,0),(26,'Manfrotto Element Aluminum 5-Section Monopod','Manfrotto-Element-Aluminum-5-Section-Monopod','<div><ul><li>Convertible Screw (1/4\' & 3/8) for camera or head connection</li><li>Twist-locking mechanism</li><li>Interchangeable feet (rubber or spiked)</li><li>Ergonomic hand grip w/ wrist strap</li></ul></div>','<div><div>Manfrotto Element Monopod is the ideal support to carry everywhere, it’s compact when folded and extremely sturdy when opened on field. It comes in two different colors and with twist locking mechanism that make it easy and fast to operate. The ergonomic hand grip allows great transportability and ensure great nimbleness during the shooting experience.</div></div>','Manfrotto Monopod main.png','2020-09-26 13:43:02.000000','2020-09-26 13:43:02.000000',_binary '',_binary '',34,39.99,0,6.5,2.2,1.7,1.5,20,13,0,0),(27,'Samsung Galaxy S7 G930P 32GB, Black Onyx - Sprint','Samsung-Galaxy-S7-G930P-32GB,-Black-Onyx---Sprint','<div>Samsung GS7, Black 32GB. Android 6.0 (marshmallow). Expandable memory to 200GB. 12MP rear Camera with Dual pixel 5MP Front Camera.<br></div>','<div><div>The Galaxy S7 has an extended design that puts more experiences at your fingertips. View information such as scores, stocks, news and more with Flipboard.</div><div>Water-resistant smartphone. Worry less about daily wear and tear of your phone. Galaxy S7 edge has an IP68 rating meaning it repels against dust, splashes, spills and even dunks.</div><div>Brighter, better, faster photos. The Galaxy S7 has a dual-pixel Camera with faster, more precise Auto focus and a new low-light sensor.</div><div>Take charge of the charge. Fast, wireless charging lets you power Galaxy S7 from 0-100% in virtually no time. And with Samsung Galaxy’s biggest battery (3600 mAh) in their thinnest Device.</div><div>Android 6.0 (marshmallow) Expandable memory to 256GB 12MP rear Camera with Dual pixel 5MP Front Camera</div></div>','Samsung Galaxy S7 front.png','2020-09-28 17:37:40.000000','2020-09-28 17:39:29.000000',_binary '',_binary '',101,118,0,5.25,3.5,1.5,1.3,10,14,0,0),(28,'Samsung Galaxy S6 Edge, Black Sapphire 32GB (AT&T)','Samsung-Galaxy-S6-Edge,-Black-Sapphire-32GB','<div><ul><li>Display: 5.10-inches</li><li>Camera: 16-MP</li><li>Processor Speed: OCTA Core 64-bit</li><li>OS: Android 5.0 (Lollipop)</li></ul></div>','<div><div>Six Appeal</div><div>The Samsung Galaxy S6 Edge embodies the best of form and function – packing incredible performance into a beautifully sleek frame and Lightning-fast 64 bit, Octa-core processor.Bold, Beautiful Display</div><div>Finally, a smartphone that\'s more than simply beautiful. The Samsung Galaxy S6 edge has evolved its design—both inside and out. The Samsung Galaxy S6 edge lets you:</div><div><br></div><div>- Easily hold, text, call, and more with its stunning metal bezel, sophisticated glass, and two revolutionary edge screens.</div><div><br></div><div>- Watch images and videos come to life on the 5.1-inch Quad HD Super AMOLED display, even in sunlight.</div><div><br></div><div>- Work, watch, and game at blazing-fast speeds.</div><div><br></div><div>- Capture amazing photos with the fast-focus camera and take epic wide-angle selfies.</div><div><br></div><div>- Use Ultra Power Saving Mode, Fast Charging, or wireless charging3 to extend your smartphone’s battery life when it’s running low.</div></div>','Samsung Galaxy S6 Edge front.png','2020-09-28 17:56:51.000000','2020-09-28 17:57:05.000000',_binary '',_binary '',390,414,0,5,3,2,1.4,10,14,3,1),(29,'Google Pixel 3a XL Verizon Just Black, 64GB','Google-Pixel-3a-XL-Verizon-Just-Black,-64GB','<div><ul><li>Fullscreen 6.0-inch (152.4mm) displayFHD+ (2160 x 1080) OLED at 402 ppi18:9 aspect ratio</li><li>Camera 12.2 MP Front Camera 8 MP</li><li>Battery 3700mAh</li><li>Experience HD Voice, Video Calling and Simultaneous Voice & Data. Enable Wi-Fi Calling and make calls anywhere you have a Wi-Fi connection.</li><li>Qualcomm Snapdragon 670 2.0GHz + 1.7GHz, 64-bit Octa-Core</li></ul></div>','<div>Introducing the Google Pixel 3a XL. The convenience of Google Assistant. The confidence of a custom-made Titan M security chip. And the power of a 7-hour Adaptive Battery. All on a smartphone with advanced camera features like Night Sight and Portrait Mode. Unleash its full potential with Verizon, the nation\'s most awarded network.<br></div>','Google Pixel 3a - front.png','2020-09-28 18:02:06.000000','2021-01-09 11:13:27.000000',_binary '',_binary '',189,230.33,0,7,5,3,2,21,14,5,1),(30,'LG G Flex, Titan Silver 32GB (AT&T)','LG-G-Flex,-Titan-Silver-32GB','<div><ul><li>Display: 6.0-inches</li><li>Camera: 13-MP</li><li>Processor Speed: 2.26 GHz</li><li>OS: Android 4.2.2 (Jelly Bean)</li></ul></div>','<div><div>The World’s First Curved, Flexible Smartphone</div><div><br></div><div>LG has proven itself to be a true champion of innovation across more than six decades of consumer electronics experience around the globe. LG has now leveraged that expertise, forever changing the very shape of the smartphone category by creating our latest breakthrough, the new G Flex, the world’s first curved, flexible smartphone.</div></div>','LG G Flex front.png','2020-09-28 18:06:05.000000','2020-09-28 18:06:12.000000',_binary '',_binary '',580,610.9,10,6.5,4.5,2.6,1.2,22,14,0,0),(31,'LG Optimus Exceed 2 (Verizon Prepaid)','LG-Optimus-Exceed-2-(Verizon-Prepaid)','<div><ul><li>4.5 inch WVGA Display with Gorilla Glass touch screen. Andriod 4.4.2 KitKat</li><li>5 Megapixel autofocus camera</li><li>Video player with touch lock, Play on Screen Function</li><li>Prepaid phones cannot be migrated to postpay accounts until after six months of prepaid service</li><li>This product will not supports a Micro SIM card.</li></ul></div>','<div>The Verizon LG Optimus Exceed 2 Prepaid Smartphone offers connectivity, helpful features and a large display. Plus, you can use it with flexible plans that include no annual contract. With Guest Mode, you can decide what apps are available if you lend it to the kids or family members. You can also view videos, eBooks and emails clearly on the 4.5\" WVGA touchscreen. Immediately know if you have missed an appointment or call just by glancing at the smartphone. The smart LED around the Home button changes colors to signify something different, including charging status. The Verizon LG phone has Wi-Fi connectivity and Google Chrome browsing so you can surf the web or connect via social media. You can also listen to your favorite tunes through the MP3 player. It has a 2,100mAh battery so you can enjoy up to 12 hours of talk time and 18 days of standby time. *SIM Card not included<br></div>','LG Optimus Exceed 2 main.png','2020-09-28 18:08:48.000000','2020-09-28 18:08:48.000000',_binary '',_binary '',33,40,0,6.25,4.75,2.58,1.08,22,14,0,0),(32,'LG G6 H872 32GB T-Mobile Carrier Android Phone','LG-G6-H872-32GB-T-Mobile-Carrier-Android-Phone','<div><ul><li>LG G6 H872 T-Mobile 4G Ice Platinum 32GB 5.7\" 13MP Android Cell Phone</li><li>This G6 is locked to the T-Mobile GSM network. It will not work with ANY OTHER carrier besides T-Mobile</li></ul></div>','<div>LG G6 H872 T-Mobile 4G Ice Platinum 32GB 5.7\" 13MP Android Cell Phone Sealed in retail packaging with all accessories included<br></div>','LG G6 T-Mobile main.png','2020-09-28 18:31:20.000000','2020-09-28 18:31:20.000000',_binary '',_binary '',149,163.95,0,5.78,3.8,2.25,0.95,22,14,0,0),(33,'TracFone Motorola Moto G6 4G LTE Prepaid','TracFone-Motorola-Moto-G6-4G-LTE-Prepaid','<div><ul><li>5.7\" Full HD+ Max Vision Display; 1.8 GHz Octa-Core processor; Android 8.0 Oreo; Fingerprint Reader</li><li>4G LTE; Wi-Fi Capable; Bluetooth 4.2 wireless technology</li><li>Dual Lens 12 MP + 5MP Camera/8 MP Front Facing Camera; Internal memory 32 GB; supports Micro SD memory card up to 128 GB (not included); TurboPower Quick Charge Battery</li><li>Note: This phone is carrier locked; Customers must have had their locked device activated on service for no fewer than 12 months, redeemed air time c','<div>The TracFone Motorola G6 4G LTE Android prepaid smartphone serves as a useful alternative to people who don\'t want to commit to a month-to-month cell service plan. With this item, you can pay as-you-go. This allows you to track the amount of money you\'re spending easily. This prepaid smartphone comes fully loaded with a wide variety of applications, including Wi-Fi, GPS and Bluetooth. With it, you can access over a million other apps on Google play. It comes with a camera, so you can snap shots and share them with friends. Use the MP3 player to listen to your favorite music. This Android smartphone supports a Micro SD memory card of up to 128GB. It should be noted that the memory card does not come included in the packaging and can be bought separately.<br></div>','TracFone Motorola Moto G6 main.png','2020-09-28 18:36:37.000000','2020-09-28 18:36:37.000000',_binary '',_binary '',57,69.99,0,4.35,3.15,2.15,0.85,22,14,0,0),(34,'Pantech Pocket, Black (AT&T)','Pantech-Pocket,-Black','<div><ul><li>Display: 4-inches</li><li>Camera: 5-MP</li><li>Processor Speed: 1.0 GHz</li><li>OS: Android 2.3 (Gingerbread)</li></ul></div>','<div><div>With everything you do on your phone, it helps to have a screen that can accommodate it all. With a 4:3 aspect ratio, the Pantech Pocket\'s 4-inch touchscreen display features enhanced rendering and plenty of room to view all of your apps.</div><div>Enjoy the Internet without compromise with the full HTML browser and support for Adobe Flash as well as streaming YouTube videos. The Android 2.3 (Gingerbread) operating system brings one-touch access to the popular Google mobile services you use every day, including Google Search, Gmail, Google Maps with Navigation, Google Calendar, Picasa, and YouTube. And through Android Market, you\'ll get access to thousands of useful applications, widgets, and fun games to download and install on your phone, with many more apps being added every day.</div><div><br></div><div>With AT&T\'s 4G network, you\'ll enjoy mobile broadband speeds up to 4x faster than AT&T\'s already fast mobile broadband network (learn more below). You also get the AT&T Mobile Hotspot service built right into the smartphone--enabling you to connect additional Wi-Fi-enabled devices to the phone\'s mobile broadband signal (requires appropriate data plan). This GPS-enabled phone can also access the AT&T Navigator service for turn-by-turn directions.</div><div><br></div><div>Capture snapshots and videos on the go with the 5-megapixel camera, which provides HD 720p resolution video recording. Other features include a pre-loaded Amazon Kindle e-reader app, Bluetooth for hands-free devices and stereo music streaming, a 600 MB internal memory, included 2 GB microSD card (with expansion to 32 GB via optional cards), GPS for navigation and location services, and up to 6 hours of talk time.</div></div>','Pantech Pocket main.png','2020-09-28 18:43:00.000000','2020-09-28 18:43:09.000000',_binary '',_binary '',31,39.9,0,4.15,2.95,2.05,0.78,24,14,0,0),(35,'Samsung Galaxy S10 Factory Unlocked Android Cell Phone','Samsung-Galaxy-S10-Factory-Unlocked-Android-Cell-Phone','<div><ul><li>128GB of Storage </li><li>Fingerprint ID and Facial Recognition</li><li>Long-Lasting Battery</li></ul></div>','<div><div>The next generation Samsung Galaxy S10 is as powerful, intelligent and intuitive as you are, providing endless possibilities and next- level power in performance, productivity, creation and design. Known as the Da Vinci of smartphones, the Galaxy S10 features pro lenses to capture stunning photos and the S-Pen to easily create content and utilize your smartphone’s full capabilities. Get more from your S10 with all new creative features such as Single Take AI, Pro Video, and more. Advanced low light technology in the pro lenses gives you the ability to shoot with long exposure-style captures so your content features striking light trails. Capture video and multiple types of images with one tap of the shutter button and then easily and quickly share more, quicker. The Galaxy S10 features a powerful processor, intelligent power and a long-lasting battery that learns your habits and adapts to your screen usage in order to optimize power and performance. With Unlocked by Samsung, you get to choose the carrier, data plan, services, features and apps you want.</div><div><br></div><div>Updated Camera Features: Get the more powerful S10 with a software update that gives you all new features including Single Take AI, Pro Video and more</div><div>High-quality camera lenses: With a full set of pro lenses, including ultrawide for stunning landscapes and micro-zoom for epic details, Galaxy S10 is a studio in your pocket, featuring live video bokeh, precision audio focus and super-stabilization</div><div>Photos and video with one tap: capture multiple images and video all at once, in one tap. Lenses, effects and filters capture the best of every moment, every time</div><div>Capture with pro-grade tool set made for masters: Control your camera settings with Pro-Video Mode to adjust the exposure, focus and more to bring your creative vision to life</div><div>Share more, quicker: The Galaxy S10 can now connect to and share with up to 5 other compatible devices at the same time using Bluetooth and WiFi, with no limits on content type or file size</div><div>Sleek Design: Samsung Galaxy S10 boasts a super-slim design that fits comfortably in your pocket and easily sits in the hand. A 6.1” endless quad HD+ dynamic AMOLED screen with nearly bezel-less infinity display offers a cinematic viewing experience</div><div>All-day Battery: Fast-charging, long-lasting intelligent power features super-speed processing, Wireless PowerShare, and massive storage, and tailors battery usage to how you live and work to optimize battery life to last all day</div></div>','Samsung Galaxy S10 main.png','2020-09-28 18:48:37.000000','2021-01-12 11:51:56.000000',_binary '',_binary '',680,747,5,6.2,3.2,1.5,1.1,10,15,0,0),(36,'Samsung Galaxy A20s A207M 32GB DUOS GSM Unlocked Phone','Samsung-Galaxy-A20s-A207M-32GB-DUOS-GSM-Unlocked-Phone','<div><ul><li>Memory: 32GB 3GB RAM - microSD, up to 512GB - Dual-SIM</li><li>Main Camera: Triple - 13 MP, f/1.8, 27mm (wide), PDAF + 8 MP, f/2.2, 13mm (ultrawide) + 5 MP, f/2.2, depth sensor w/ LED flash, panorama, HDR : Selfie Camera: 8 MP, f/2.0</li><li>OS: Android 9.0 (Pie) - Chipset: Qualcomm SDM450 Snapdragon 450 - CPU: Octa-core 1.8 GHz Cortex-A53 -GPU: Adreno 506</li><li>WLAN: Wi-Fi 802.11 b/g/n, Wi-Fi Direct, hotspot - Bluetooth: 4.2, A2DP, LE - GPS: Yes, with A-GPS, GLONASS, GALILEO, BDS - USB: Type','<div>When you\'re traveling through new worlds, vlogs, and games, Galaxy A20s\'s bigger screen makes for a better view. Its 6.5-inch Infinity-V display stretches from edge to edge, taking your everyday experiences from good to amazing. Triple camera makes your moments feel special with the 13MP, 5MP Depth Camera, and 8MP Ultra Wide Camera. The Depth Camera spotlights your subject, while the Ultra Wide Camera fits in 120-degrees worth of memories. So everyday moments stay clear and bright. Fit more in your photos with the Ultra Wide Camera. The 77-degree Wide angle and 120-degree Ultra Wide angle let you capture what you see, so you won\'t miss the moment from where you stand. Now it\'s even easier to get a great panorama. he 5MP Depth Camera lets you adjust the depth of field before and after you nail the shot. The advanced Depth Camera knocks out unwanted background noise from your images to make them look more professional. The camera\'s on you, so it\'s your time to shine. Galaxy A20s\'s 8MP front camera makes your selfies look more stunning, and with Live focus, you get a gentle background blur that makes your personality the star of the picture. A powerful Octa-core processor and 3GB/4GB of RAM handle your graphic-heavy games and livestreams at rapid speeds. With 32/64GB of internal memory and up to 512GB of external storage, you have plenty of room to stream, download, and post. You do a lot in your day-to-day, so do it on a phone that lasts. Galaxy A20s\'s 4,000 mAh (typical)* battery and 15W Fast Charging technology mean you\'re powered. Share with friends, watch streams, and do what you love on a phone that lasts.<br></div>','Samsung Galaxy A20s main.png','2020-09-28 18:51:32.000000','2020-09-28 18:51:32.000000',_binary '',_binary '',152,169,0,5.8,3.9,2.1,1.22,10,15,0,0),(37,'Samsung Galaxy S20 Ultra 5G Factory Unlocked ','Samsung-Galaxy-S20-Ultra-5G-Factory-Unlocked-','<div><ul><li>New Android Cell Phone</li><li>US Version</li><li>128GB of Storage</li><li>Fingerprint ID and Facial Recognition</li><li>Long-Lasting Battery</li><li>US Warranty</li></ul></div>','<div><div>The ultimate 5G powerhouse with an unparalleled new camera and unprecedented 100x Space Zoom. Bring a pro-level studio wherever you go with Galaxy S20 Ultra 5G\'s super-speed processing and complete pro kit of camera features – including the groundbreaking 100x Space Zoom and cutting-edge AI – in an immersive 6. 9” Infinity-O display. Galaxy S20 Ultra 5G’s modern design gives you a cinematic experience and enhanced viewing comfort with next-level functionality. Take pro-quality, hi-res images and video with a full system of studio lenses with super stabilization a groundbreaking 108MP camera system that captures millions of more pixels in each shot. Features like the Single Take AI make it quick and easy to capture multiple photos and video with a single tap. Zoom in super close, even from 300 feet away, and capture pro-grade video and dazzling photos at night, even without flash, with Ultra Bright Night mode. Share your content in real time with double-tap sharing and get hours of power from minutes of charge with Super Fast Charging. Galaxy S20 Ultra 5G’s intelligent battery lasts all day to power every scroll, click, call, tap, playlist and season finale. Do more of what you love with the device that gives you more.</div><div><br></div><div>Power of 5G: Get next-level power for everything you love to do with Samsung Galaxy 5G; Share more, game harder, experience more and never miss a beat</div><div>Single Take AI: Capture video and multiple types of images with one tap of the shutter button; Lenses, effects and filters capture the best of every moment, every time</div><div>Hi-Res Camera Zoom: Capture hi-res images from 300 feet away that look like they were taken from 3 feet away; The game-changing new 100x Space Zoom delivers unprecedented power and clarity</div><div>Ultra Bright Night Mode: Capture pro-quality content in Ultra Bright Night mode to capture dazzling, blur-free photos and vivid HRD video without flash, even in low light</div><div>Super Fast Charging: Charge up quicker with Super Fast Charge so you can keep moving, with more juice; Give your buds – or Galaxy Buds – a boost of power with Wireless PowerShare right from Galaxy S20 Ultra 5G</div><div>All-Day Battery: S20 Ultra 5G’s intelligent battery uses an algorithm to learn from how you live to optimize power and take you through a day or more of work and life without ever giving out on you</div><div>Massive Storage: Generous storage out of the box and expandable memory means you never have to delete what’s important to you; Memory card sold separately</div></div>','Samsung Galaxy S20 main.png','2020-09-28 18:54:33.000000','2020-09-28 18:54:33.000000',_binary '',_binary '',1299,1379,20,6,3,2,1,10,15,0,0),(38,'Apple iPhone XS, 256GB , Space Gray - Fully Unlocked (Renewed)','Apple-iPhone-XS,-256GB-,-Space-Gray---Fully-Unlocked-(Renewed)','<div><ul><li>Fully unlocked and compatible with any carrier of choice (e.g. AT&T, T-Mobile, Sprint, Verizon, US-Cellular, Cricket, Metro, etc.).</li><li>The device does not come with headphones or a SIM card. It does include a charger and charging cable that may be generic, in which case it will be UL or Mfi (Made for iPhone) Certified.</li><li>Inspected and guaranteed to have minimal cosmetic damage, which is not noticeable when the device is held at arms length.</li></ul></div>','<div><div>This device is in EXCELLENT cosmetic condition, It is 100% fully functional as tested by our expert technicians and passed an industry leading 65-point inspection. The device may have minor cosmetic wear such as minimal light scratches on the screen and minor imperfections on sides and/or back. The device has been thoroughly inspected, cleaned and refurbished (if necessary) at our Manufacturer approved repair center. Includes new OEM a/C Adapter & Data cable. Devices do not include a SIM card, headphones, original box, and a manufacturer’s warranty. This GSM unlocked Device is being sold for use with only GSM carrier networks such as, T-Mobile and AT&T. Please check with your carrier prior to purchasing for compatibility.</div></div>','iPhone XS 256GB 1.png','2020-09-28 18:56:57.000000','2021-01-16 17:19:45.000000',_binary '',_binary '',499,699.99,16,6.5,3.5,3.5,1.35,9,15,0,0),(39,'Apple iPhone 7 Plus, 32GB, Jet Black','Apple-iPhone-7-Plus,-32GB,-Jet-Black','<ul><li>Fully unlocked and compatible with any carrier of choice (e.g. AT&T, T-Mobile, Sprint, Verizon, US-Cellular, Cricket, Metro, etc.).</li><li>The device does not come with headphones or a SIM card. It does include a charger and charging cable that may be generic, in which case it will be UL or Mfi (Made for iPhone) Certified.</li><li>Inspected and guaranteed to have minimal cosmetic damage, which is not noticeable when the device is held at arms length.</li></ul>','<div>This device is in EXCELLENT cosmetic condition, It is 100% fully functional as tested by our expert technicians and passed an industry leading 65-point inspection. The device may have minor cosmetic wear such as minimal light scratches on the screen and minor imperfections on sides and/or back. The device has been thoroughly inspected, cleaned and refurbished (if necessary) at our Manufacturer approved repair center. Includes new OEM a/C Adapter & Data cable. Devices do not include a SIM card, headphones, original box, and a manufacturer’s warranty. This GSM unlocked Device is being sold for use with only GSM carrier networks such as, T-Mobile and AT&T. Please check with your carrier prior to purchasing for compatibility.<br></div>','iPhone 7 Plus main.png',NULL,'2021-11-08 21:12:41.685000',_binary '',_binary '',370,400.22,0,5.8,3.2,2.1,12,9,15,5,1),(40,'Apple iPhone X, 64GB, Space Gray - Fully Unlocked','Apple-iPhone-X,-64GB,-Space-Gray---Fully-Unlocked','<div>Fully unlocked and compatible with any carrier of choice (e.g. AT&T, T-Mobile, Sprint, Verizon, US-Cellular, Cricket, Metro, etc.).<br></div>','<div><div>Product works and looks like new. Backed by the 90-day Amazon Renewed Guarantee.</div><div><br></div><div>This product is not Apple certified, but has been professionally inspected and tested by Amazon-qualified suppliers. The product may have minimal scratches or dents, and a battery with at least 80% capacity. Box may be generic and accessories may not be original, but will be compatible and fully functional. This product is eligible for a replacement or refund within 90 days of receipt if you are not satisfied. Learn more</div><div><br></div><div>Fully unlocked and compatible with any carrier of choice (e.g. AT&T, T-Mobile, Sprint, Verizon, US-Cellular, Cricket, Metro, etc.).</div><div>The device does not come with headphones or a SIM card. It does include a charger and charging cable that may be generic, in which case it will be UL or Mfi (Made for iPhone) Certified.</div><div>Inspected and guaranteed to have minimal cosmetic damage, which is not noticeable when the device is held at arms length.</div><div>Successfully passed a full diagnostic test which ensures like-new functionality and removal of any prior-user personal information.</div><div>Tested for battery health and guaranteed to have a minimum battery capacity of 80%.</div></div>','iPhone X 64GB main.png','2020-09-28 19:02:08.000000','2021-01-10 17:03:47.000000',_binary '',_binary '',380,449,0,7,5,3,1.2,9,15,0,0),(41,'Google Pixel 4 - Just Black - 64GB - Unlocked','Google-Pixel-4---Just-Black---64GB---Unlocked','<div><ul><li>Point and shoot for the perfect photo. Capture brilliant color and control the exposure balance of different parts of your photos.</li><li>Get the shot without the flash. Night Sight is now faster and easier to use it can even take photos of the Milky Way.</li><li>Get more done with your voice. The new Google Assistant is the easiest way to send texts, share photos, and more. [1]</li><li>A new way to control your phone. Quick Gestures let you skip songs and silence calls – just by waving your h','<div><div>Pixel 4 is the phone Made the Google way. So it’s built around the helpful Google software you know and love, that’s always getting better.</div><div><br></div><div>1. See G.Co/Pixel/astrophotography to Learn more about astrophotography on Pixel 4.</div><div><br></div><div>2. Us only. English only.</div><div><br></div><div>3. Coming soon to Japan. Motion sense functional in the us, Canada, Singapore, Australia, Taiwan, and most European countries. Not all phone features are controlled by motion sense.</div><div><br></div><div>4. Us & Canada only. English only.</div><div><br></div><div>5. Approximate battery life based on a mix of talk, data, standby, mobile Hot spot and use of other features, with motion sense off and always on display off. Use of motion sense, an Active display or data usage will decrease battery life. Pixel 4 and 4 XL testing conducted in Mountain View, California in August 2019 on pre-production hardware and software. Actual results may vary.</div></div><div><br></div>','Google Pixel 4 main.png','2020-09-29 17:10:47.000000','2021-01-15 12:36:25.000000',_binary '',_binary '',456,799,31,1,3.5,6,0.4,21,15,0,0),(42,'Moto G Power 3-Day Battery1 - Unlocked - Made for US by Motorola','Moto-G-Power','<div><div>Set yourself free from chargers and outlets. Say hello to moto g power. With its powerful 5000 mAh battery, you can go up to three full days1 on a single charge—and do the things you want without worrying about recharging. Shoot a panorama, close up, or anything in between with a versatile triple camera system. And thanks to the 6. 4” Max Vision Full HD+ display and dual stereo speakers tuned by Dolby, you’ll have an all-access pass to the world of entertainment. New moto g power. Power for life.<','<div><ul><li>Unlocked for the freedom to choose your carrier. Compatible with AT&T, Sprint, T-Mobile, and Verizon networks. SIM card not included. Customers may need to contact Sprint for activation on Sprint’s network.</li><li>Up to 3 day battery1. Go up to three days1 on a single charge thanks to a 5000 mAh battery.</li><li>16 MP triple camera system. Capture ultra-wide angle panoramas, sharper portraits, and super detailed close-up shots.</li><li>Dual Stereo Speakers tuned by Dolby. Enjoy 4x more crystal-clear audio that’s 4x more powerful2 with dual stereo speakers tuned by Dolby.</li><li>Max Vision display. Bring games and movies to life on a vivid 6. 4\" Full HD+ display.</li><li>Blazing-fast performance. Feel your phone respond to every touch, tap, and swipe with an octa-core processor and 4 GB of RAM.</li><li>Advanced water-repellent design. Never let spills, splashes, or a little sweat get in the way of using your phone.</li><li>Wi-Fi Hotspot Ready: Moto G Power offers Wi-fi hotspot connectivity in 2. 4 GHz + 5 GHz for the best experience.</li><li>Included Components: User Guides</li><li>Operating System: Android</li></ul></div>','Motor G Power main.png','2020-09-29 17:14:38.000000','2020-09-29 17:20:16.000000',_binary '',_binary '',229,249.99,8,5.5,3.3,2.3,0.93,23,15,0,0),(43,'Huawei P30 Lite (128GB, 4GB RAM) 6.15\" Display, AI Triple Camera, Dual SIM Global GSM Factory Unlocked','Huawei-P30-Lite-(128GB,-4GB-RAM)-6.15\"-Display,-AI-Triple-Camera,-Dual-SIM-Global-GSM-Factory-Unlocked','<div>Huawei P30 LITE MAR-LX3A 128GB 4GB RAM 6.15\" DUAL SIM (FACTORY UNLOCKED) GSM Smartphone (International Version)</div>','<div><ul><li>Factory GSM Unlocked. International Version. DUAL SIM. 128 GB, 4 GB RAM</li><li>LTE Bands LTE B1/B2/B4/B5/B7/B8/B12/B17/B28/B66</li><li>IPS LCD capacitive touchscreen, 16M colors. 6.15 inches, 89.1 cm2. 1080 x 2312 pixels (~415 ppi density)</li><li>Android 9.0 (Pie). Hisilicon Kirin 710 (12 nm). Octa-core (4x2.2 GHz Cortex-A73 & 4x1.7 GHz Cortex-A53).</li><li>International Model, Does not have US Warranty. Will work with Most GSM SIM cards in U.S. and world Including AT&T, T-Mobile, Etc. Will NOT work with CDMA Carriers Such as Verizon, Sprint, Boost.</li></ul></div>','Huawai P30 Lite main.png','2020-09-29 17:25:53.000000','2020-09-29 17:25:53.000000',_binary '',_binary '',219,236.99,0,6,3.2,2.6,1.3,25,15,0,0),(44,'Xiaomi Redmi Note 9S 6.67\" 48MP International Global Version','Xiaomi-Redmi-Note-9S-6.67\"-48MP-International-Global-Version','<div><ul><li>6.67\" Dot Display</li><li>Qualcomm Snapdragon 720G High-performance octa-core</li><li>Camera - 48MP AI quad camera 48MP ultra-high resolution primary camera,</li><li>Front Camera 16MP In-Display</li></ul></div>','<div><div>6.67\" Dot Display, Qualcomm Snapdragon 720G High-performance octa-core processor Frequency: up to 2.3GHz Adreno 618 graphics processor Qualcomm 5th generation AI engine</div><div>Camera - 48MP AI quad camera 48MP ultra-high resolution primary camera, Front Camera 16MP In-Display</div><div>Network & Connectivity GSM: B2/3/5/8 WCDMA: B1/2/4/5/8 TDD LTE: B38/40 FDD LTE: B1/2/3/4/5/7/8/20/28</div><div>Battery and Charging 5020mAh Built-In Non-removable Lithium Ion Polymer Battery USB Type-C reversible connector port Supports 18W wired fast charging Includes 22.5W wire charger (Foreign Wall Adapter)</div><div>International Model - No Warranty in US. Compatible with Most GSM Carriers like T-Mobile, AT&T, MetroPCS, etc. Will NOT work with CDMA Carriers Such as Verizon, Sprint, Boost. - FCC ID: 2AFZZJ6A1G</div></div>','Redmi Note 9S main.png','2020-09-29 17:28:59.000000','2020-09-29 17:28:59.000000',_binary '',_binary '',227,249.4,0,6.1,3.3,2.7,1.5,26,15,0,0),(45,'HOVAMP iPhone Charger, MFi Certified Lightning Cable 5 Pack (3/3/6/6/10FT)','HOVAMP-iPhone-Charger,-MFi-Certified-Lightning-Cable-5-Pack','<div>Nylon Woven with Metal Connector Compatible iPhone 11/Pro/Xs Max/X/8/7/Plus/6S/6/SE/5S iPad - Silver&White<br></div>','<div><div>Fast Charge:</div><div>♦High-quality four-core copper wires enhance charging & data transfer speed of the cables.</div><div>♦Our technology ensures a faster charging time while keeping your device completely safe.</div><div>♦Easy to carry, It suits every occasions, home, office, car and so on.</div><div><br></div><div>High Quality Nylon Braided:</div><div>♦Constructed from neither plastics nor Polycarbonate sheathing, but has an especially high tensile nylon shell.</div><div>♦The cable is properly circled by the nylon fiber cloth,which brings superior durability and flexibility as well.</div><div>♦Nylon fabric can resist water in some way, but do not put it in water on purpose.</div><div><br></div><div>Compatibility:</div><div>The premium quality of HOVAMP charging cable ensures complete and fast charging and compatibility with:</div><div>iPhone 11/Pro</div><div>iPhone Xs/Max/XR/X/8/8 Plus</div><div>iPhone 7/ 7 Plus / 6s Plus / 6s / 6 Plus</div><div>iPhone 5s / 5c / 5 / SE</div><div>iPad Pro / iPad Air / Air 2</div><div>iPad mini 2 / mini 3 / mini 4</div><div>iPad 4th gen</div><div>iPod Touch 5th gen / iPod Nano 7th gen and Beats Pill+</div><div><br></div><div>What You Get:</div><div>5Pack Lightning Cables , With full confidence in the product we offer 100% refund for unsatisfactory purchase by any reason.</div><div>We provide a 365-day , worry-free to prove the importance we set on quality. Please be sure to send me message if you have a concern.</div></div><div><br></div>','HOVAMP iPhone Charger 5pack main.png',NULL,'2021-11-11 21:36:27.927000',_binary '',_binary '',8,11.99,0,2.4,2.4,0.79,0.45,27,17,4,7),(46,'iPhone Charger Cord 4Pack iPhone Charger Cable','iPhone-Charger-Cord-4Pack-iPhone-Charger-Cable','<div>MFi Certified Lightning Cable Fast iPhone Charging Cord Nylon Braided iPhone Charging Cable Compatible with Phone 11 Pro max/XR max/8/7/6/6s/SE 2020,iPad<br></div>','<div><div>Aioneus 4Pack iPhone Charger Cable with Assorted Lengths (1.5FT/3FT/5FT/6FT)</div><div>More convenient to enjoy data sync & charge anywhere and anytime. Using at home, in the car, in the office or outdoors.</div><div>Assorted lengths cover all your daily charging demands. No need to worry about the distance from your devices when charging.</div><div>Package included:</div><div>1*1.5ft Aioneus iPhone charger cord - Green</div><div>1*3ft Aioneus iPhone charging cord - Red</div><div>1*5ft Aioneus iPhone lightning cable - Orange</div><div>1*6ft Aioneus iPhone charger cable - Blue</div></div>','Aioneus iphone charger cord main.png','2020-09-30 16:04:41.000000','2020-09-30 16:04:41.000000',_binary '',_binary '',10.5,16.99,24,3,2,1,0.5,28,17,0,0),(47,'USB C Cable, XIAE 5Pack (3/3/6/6/10FT) Nylon Braided Fast Charging Cable Aluminum','USB-C-Cable-XIAE-5Pack','<div>Compatible with Samsung Galaxy S10 S9 Note 9 8 S8 Plus,LG V30 V20 G6,Google Pixel,Huawei P30/P20-Black&Blue<br></div>','<div><div>Fast charging speed: Compliant with USB Type C specification version 1.1, 56kilohm, ensuring a maximum charge of 3A. Low-resistance internal pure copper wire ensures a maximum charging speed of up to 3A and transmits data up to 480 Mbits.For ensure the charging speed of your device, please use the original USB C port wall charger, or high quality charger which can support QC 2.0/3.0 fast charging.</div><div>Durable: The durable nylon woven fabric is made of a high-quality aluminum casing that makes the charger cable resistant to oxidation. Excellent resistance to twisting and abrasion.With a tested 10000+ bend lifespan.</div><div>Multiple lengths: 3/3/6/6 / 10ft different lengths can be used on sofas, beds, cars and other places. Perfect for long enough wires to enjoy data synchronization and charging anytime, anywhere, without worrying about taking the cable anywhere.</div><div>Compatibility: Compatible with Samsung Galaxy S10 / S10e / S9 / Note 8/9 / S8 / S8 +, Razer, Google Pixel 2 / Pixel / Nexus 5X / Nexus 6P, LG V30 / V20 / G6 / G5, Sony Xperia XZ, Huawei Honor 9/8, Motorola Moto X4 / Z2, HTC U11 and all USB C compatible phones and tablets.</div><div>Warranty Policy: Each sale includes a 180-day Worry-Free Warranty to demonstrate our commitment to quality. If you have any questions, please feel free to contact us.</div></div>','XIAE USB C Cable main.png','2020-09-30 16:08:34.000000','2020-09-30 16:08:47.000000',_binary '',_binary '',7.25,10.99,9,3,2,1,0.6,29,17,0,0),(48,'Micro USB Cable, 10ft 3 Pack Extra Long Charging Cord','Micro-USB-Cable,-10ft-3-Pack-Extra-Long-Charging-Cord','<div>Nylon Braided High Speed Durable Charging USB Charger Android Cable for Samsung Galaxy S7 Edge S6 S5,LG G4,HTC,Android Phone<br></div>','<div><div>★MICRO USB CABLE CONNECTION: The cables are built with MICRO port, exclusively for the devices that has micro connectors. Please make sure you need a MICRO USB CABLE before the purchase. If not, welcome to inquiry</div><div>★UNIVERSAL COMPATIBILITY: This extra long Micro USB Cable supports some Android cell phone and Android devices.Compatible with for Samsung Galaxy S7 Edge S7 S6 Edge S5 S4,Samsung Tablets Tab,for Xbox One controller, for PS4 Controller, Windows Phone, Huawei Honor 7X 6X,Motorola,LG G4 G3 V10,Google Nexus, Blackberry, Sony, HTC, Nokia, Blackberry, wireless keyboards and more</div><div>★DURABILITY & FLEXIBLE: 10ft 3 pack Micro USB Cable is well made with smooth double - braided Nylon that could protect wire cores and resists kinks. With tested 4000+ bend lifespan, our USB charger cords are still sturdy and strong. The cord is also tangle free and flexible which makes your life more convenient</div><div>★EXTRA LONG & PERFECT FIT: Long Android charging cable are considerate on preparing the cables for where you may stay every day. Workplace,office,home,bedroom,car,the way of the journey, etc. Premium compact, heat-resistant aluminium connector makes it easy and secure to connect your devices</div><div>★DATA SYNC & Hi-SPEED CHARGE: The wide diameter wires and reduced cord resistance enable charging speed up to 2.4A, charging faster than most standard cables, and work better for tablets and quick charge devices. USB 2.0 A Male to Micro B cable supports 480Mbps transmission speed</div></div>','Everyworth Micro USB Cable 3pack.png','2020-09-30 16:14:29.000000','2021-01-10 16:44:09.000000',_binary '',_binary '',7,10.99,9,7.5,4,1,0.7,30,17,0,0),(49,'Samsung Electronics EVO Select 256GB microSDXC UHS-I U3 100MB/s Full HD & 4K UHD Memory Card with Adapter (MB-ME256HA)','Samsung-Electronics-EVO-Select-256GB-microSDXC-UHS-I-U3-100M','<div><ul><li><span style=\"font-size: 1rem;\">Memory Type: SDXC</span></li><li>Hardware Interface: MicroSDXC</li><li>Speed Class: Class 10</li><li>Memory Storage Capacity: 256 GB</li></ul></div>','<div><div>Ideal for Recording 4K UHD Video: Samsung micro SD EVO Select is perfect for high res photos, gaming, music, tablets, laptops, action cameras, DSLR\'s, drones, smartphones (Galaxy S20 5G, S20+ 5G, S20 Ultra 5G, S10, S10+, S10e, S9, S9+, Note9, S8, S8+, Note8, S7, S7 Edge, etc. ), Android devices and more</div><div>Ultra Fast Read Write Speeds: Up to 100MB/S Read and 90MB/S Write Speeds; UHS Speed Class U3 and Speed Class 10 (Performance May Vary Based on Host Device, Interface, Usage Conditions, and Other Factors)</div><div>Built to Last Reliability: Memory Card Is Also Water Proof, Temperature Proof, X Ray Proof and Magnetic Proof</div><div>Extended Compatibility: Includes Full Size Adapter for Use in Cameras, Laptops and Desktop Computers</div><div>10 Year Limited : 10 Year Limited Does Not Extend to Dashcam , CCTV, Surveillance Camera and Other Write Intensive Uses</div></div>','Samsung EVO Select 256GB microSD main.png','2020-09-30 16:19:45.000000','2020-11-02 21:57:21.000000',_binary '',_binary '',37.5,49.99,40,1,0.5,0.6,0.03,10,18,4,1),(50,'SanDisk 128GB Extreme microSDXC UHS-I Memory Card with Adapter - C10, U3, V30, 4K, A2, Micro SD - SDSQXA1-128G-GN6MA','SanDisk-128GB-Extreme-microSDXC-UHS-I-Memory-Card-with-Adapter','<div><ul><li>Memory Type: Micro SD</li><li>Hardware Interface: MicroSDXC</li><li>Memory Storage Capacity: 128 GB</li><li>Read Speed: 160 Megabytes Per Second</li></ul></div>','<div>With the SanDisk Extreme 128GB(1) microSD UHS-I Memory Card get extreme speeds for fast transfer, app performance, and 4K UHD video.(2) Ideal for your Android smartphone, action cameras or drones, this high-performance microSD card handles 4K UHD video recording, Full HD video and high-resolution photos. The super-fast SanDisk Extreme microSDXC memory card reads up to 160MB/s and writes up to 90MB/s. Plus, it’s A2-rated, so you can get fast application performance for an exceptional smartphone experience.(7) | Not all devices support microSD memory card formats. Check with your device manufacturer for more details. | For 128GB-400GB: Up to 160MB/s read speeds, engineered with proprietary technology to reach speeds beyond UHS-I 104MB/s, requires compatible devices capable of reaching such speeds. Up to 90MB/s write speeds. 1MB=1,000,000 bytes. | (1) 1GB=1,000,000,000 bytes. Actual user storage less. | (2) Compatible device required. Full HD (1920x1080) and 4K UHD (3840 x 2160) support may vary based upon host device, file attributes and other factors. | (3) Download and installation required. | (4) Card only. See SanDisk website for additional information and limitations. | (5) UHS Speed Class 3 (U3) designates a performance option designed to support real-time video recording with UHS-enabled host devices. Video Speed Class 30 (V30), sustained video capture rate of 30MB/s, designates a performance option designed to support real-time video recording with UHS-enabled host devices. | (6) Registration required; terms and conditions apply. | (7) For 64GB-400GB: A2 performance is 4000 read IOPS, 2000 write IOPS. Results may vary based on host device, app type and other factors. | (8) Read only; based on internal testing. Results may vary based on host device, file attributions and other factors.<br></div>','SanDisk 128GB main.png',NULL,'2021-11-08 21:14:13.979000',_binary '',_binary '',17,24.99,0,1,1,0.5,0.3,5,18,3.33333,3),(51,'SanDisk 32GB Ultra microSDHC UHS-I Memory Card with Adapter - 98MB/s, C10, U1, Full HD, A1, Micro SD Card - SDSQUAR-032G-GN6MA','SanDisk-32GB-Ultra-microSDHC-UHS-I-Memory-Card-with-Adapter','<div><ul><li>Memory Type: Microsdhc</li><li>Hardware Interface: MicroSDHC</li><li>Speed Class: Class 10</li><li>Memory Storage Capacity: 32 GB</li></ul></div>','<div><div>Ideal for Android smartphones and tablets, and MIL cameras</div><div>Capacities up to 512GB (1GB=1,000,000,000 bytes. Actual user storage less.) to store even more hours of Full HD video (Approximations; results and Full HD (1920x1080) video support may vary based on host device, file attributes and other factors.)</div><div>Up to 98MB/s transfer read speed (Based on internal testing; performance may be lower depending on host device, interface, usage conditions and other factors.) lets you move up to 1000 photos in a minute (Based on 4.1GB transfer of photos (avg. file 3.5MB) with USB 3.0 reader. Results may vary based on host device, file attributes and other factors.)</div><div>Load apps faster with A1-rated performance (A1 performance is 1500 read IOPS, 500 write IOPS. Based on internal testing. Results may vary based on host device, app type and other factors.)</div><div>Class 10 for Full HD video recording and playback (Full HD (1920x1080) video support may vary based upon host device, file attributes, and other factors.)</div><div>SanDisk Memory Zone app for easy file management (Download and Installation Required)</div><div>10-year limited manufacturer warranty</div><div>Order with your Alexa enabled device. Just ask \"Alexa, order SanDisk microSD.\"</div></div>','SanDisk Ultra 32GB main.png','2020-09-30 16:25:14.000000','2021-01-12 11:35:18.000000',_binary '',_binary '',7,8.99,6,1,1,0.5,0.04,5,18,4.5,2),(52,'Samsung PRO Endurance 128GB 100MB/s (U1) MicroSDXC Memory Card with Adapter (MB-MJ128GA/AM)','Samsung-PRO-Endurance-128GB-100MBs','<div><ul><li><span style=\"font-size: 1rem;\">Memory Type: Micro SDXC</span></li><li>Hardware Interface: MicroSDXC</li><li>Memory Storage Capacity: 128 GB</li><li>Write Speed: 30</li></ul></div>','<div><div>DESIGNED FOR VIDEO MONITORING: Samsung MicroSDXC PRO is specifically designed for video monitoring cameras including dash cams, surveillance & security cams, body cams, etc.</div><div>ULTRA-FAST READ WRITE SPEEDS: Up to 100MB/s read and 30MB/s write speeds handles large video files quickly and seamlessly</div><div>HIGHER ENDURANCE: Continuous recording up to 25x longer than speed-focused cards gives you long-lasting, best-in-class endurance up to 43,800 hours of 4K and Full HD (1080p) recording and playback</div><div>BUILT TO LAST RELIABILITY: Shock proof memory card is also water proof, temperature proof, x-ray proof and magnetic proof</div><div>5-YEAR LIMITED WARRANTY: 5-year limited warranty; Warranty for SD adapter is limited to 1 year</div></div>','Samsung PRO 128GB main.png','2020-09-30 16:27:21.000000','2020-09-30 16:27:29.000000',_binary '',_binary '',29.99,39.99,25,1,0.6,0.4,0.2,10,18,0,0),(53,'Lexar High-Performance 633x 512GB microSDXC UHS-I Card with SD Adapter (LSDMI512BBNL633A)','Lexar-High-Performance-633x-512GB-microSDXC-UHS-I-Card-with-SD-Adapter','<div><ul><li>Premium memory solution for smartphones, tablets, or action cameras</li><li>Quickly captures, plays back, and transfers media files, including 1080p full-HD, 3D, and 4K video</li><li>Leverages UHS-I technology for a transfer speed up to 100MB/s</li><li>Includes high-speed, Class 10 card and SD adapter</li><li>Limited lifetime product support for card and one-year limited support for adapter</li><li>Only purchase from a Lexar Authorized Dealer</li></ul></div>','<div>Designed for your smartphone, tablet, or action camera, Lexar High-Performance 633x microSDHC/microSDXC UHS-I cards let you quickly capture, playback, and transfer 1080p Full-HD, 3D, and 4K video, as well as the highest-quality movies, photos, and songs. These high-capacity, Class 10 cards leverage UHS-I technology to deliver high-speed performance—up to 100MB/s. This premium memory solution includes an SD adapter and provides the speed and space you need to capture more adventure on the go.<br></div>','Lexar 512GB main.png','2020-09-30 16:30:54.000000','2021-01-12 16:41:39.000000',_binary '',_binary '',62,79.99,0,1,2,0.5,0.2,31,18,0,0),(54,'Manfrotto PIXI Mini Tripod, Black (MTPIXI-B)','Manfrotto-PIXI-Mini-Tripod,-Black-(MTPIXI-B)','<div><ul><li>Mini tripod for Compact System Cameras</li><li>Comfortable handgrip to capture great videos</li><li>Push button locking mechanism for easy setup</li><li>Lightweight, intuitive to use and easy to carry</li><li>Attractive Italian design</li></ul></div>','<div>The Manfrotto PIXI is the perfect mini tripod for Compact System Cameras (CSC). It has been designed to satisfy the needs of those consumers that are looking for a support that is lightweight, portable and easy to use. The PIXI is great for achieving hard to get video shots while keeping your camera steady. Close the legs to use it as a comfortable grip to capture great videos that stand out from the crowd. The new push-button mechanism enables you to position and lock the ball head in one rapid, intuitive movement. Pushing the button releases the ball joint to move freely. When the button is released, the ball is locked automatically in the selected position. PIXI has a minimal Italian style and is manufactured from stainless steel and Adaptor for high quality and a tactile finish. With this solid construction, it provides a secure base in every situation and the rubber feet guarantee a stable and slip-free purchase on any surface. DSLR Compatibility Thanks to the universal 1/4\" screw thread and the excellent stability, PIXI can be used with a huge variety of digital devices; the iPhone (with KLYP), compact cameras, CSC\'s and even entry level DSLR\'s. PIXI has been developed for entry level DSLRs fitting these basic requirements: Body: maximum weight of 650g/1.4lbs Focal length: maximum 85mm (standard non professional lens) Total equipment payload: maximum 1kg/2.2lbs. Please consider that any semi-professional and professional equipment exceeds these requirements. SPECIFICATIONS: Attachment (Top) 1/4\" screw attachment type Color black color Front Tilt -35° / +35° tilt range Material Adaptor + stainless steel Panoramic Rotation 360 degrees. Closed Length 7.28 in Load Capacity 2.2 lbs . Features maximum working temperature of around 60 degree celsius and with a minimum working temperature of -30 degree celsius<br></div>','Manfrotto Tripod main.png','2020-09-30 16:35:48.000000','2021-01-10 16:44:53.000000',_binary '',_binary '',15,19.95,0,8,4,4,1.2,20,19,0,0),(55,'Nulaxy A4 Cell Phone Stand, Fully Foldable, Adjustable Desktop Phone Holder Cradle Dock','Nulaxy-A4-Cell-Phone-Stand,-Fully-Foldable,-Adjustable-Desktop-Phone-Holder-Cradle-Dock','<div>Compatible with Phone 11 Pro Xs Xs Max Xr X 8, iPad mini, Nintendo Switch, Tablets (7-10\"), All Phones<br></div>','<div><div>UNIVERSAL COMPATIBILITY: This phone stand works with all 4-10\" Smartphones Tablets and e-readers, such as iPhone 11 Pro Xs Xs Max Xr X 8 7 6, Switch, iPad mini, Samsung Galaxy S10 /S10+/S9 /S9+/S8 /S8+, Samsung Tab, Google Nexus, Kindle.</div><div>ADJUSTABLE & PORTABLE: The phone cradle is fully collapsible, it can be easily adjusted to ideal position, free your hands, which is a good desk accessories while watching video, playing games, making phone call, viewing recipes, using Facetime.</div><div>STURDY & PROTECTIVE: The cell phone stand is made of high quality premium aluminum, it stays firmly in place, hold your phone steadily, no worry any wobble at all. The rubber pads can protect your phone from any scratching and sliding.</div><div>CASE FRIENDLY: The hook width of the stand is 19mm, no need to remove your phone case, which is long enough to hold your device with HEAVY CASE on, please make sure the thickness of your device is no more than 19mm (0.59\").</div><div>WARM TIPS: Please set your device(4\"-6\") in landscape or portrait mode, and set the device (6\"-10\") in landscape mode, which will provide more stability.</div></div>','Nulaxy A4 main.png','2020-09-30 16:59:00.000000','2021-01-12 16:40:32.000000',_binary '',_binary '',9,12.99,0,4,4,4.5,0.33,32,19,0,0),(56,'Phone Ring Holder Finger Kickstand - FITFORT 360° Rotation Metal Ring Grip for Magnetic Car Mount Compatible with All Smartphone-Rose Gold','Phone-Ring-Holder-Finger-Kickstand-FITFORT','<div><ul><li>Color: Rose Gold</li><li>Brand: FITFORT</li><li>Item Dimensions LxWxH: 1.38 x 1.38 x 0.2 inches</li><li>Material: Zinc Alloy, Stainless Steel</li><li>Compatible Devices: Smartphones</li></ul></div>','<div><div>【HIGH QUALITY MATERIALS】The phone ring holder is made of high quality zinc alloy and stainless steel. Zinc alloy has a good ductility and abrasion resistance, avoid breaking when falling down. Stainless steel is sturdy and can hold the ring firmly, helps it to become a long-term good stand. High end 4 layers of rose gold coating perfectly matches with you phone and won’t fading.</div><div>【HIGH-STRENGTH ADHESIVENESS】With powerful and sticky 3M VHB tape, the phone ring stand can be attached to your cell phone or tablet tightly, making sure your phone is safe. Supports phones within 5kg. Note: Please do not use the phone ring kickstand within 24 hours after installation.</div><div>【HUMANIZED DESIGN】Ergonomic design of this kickstand makes it a good finger grip on crowded bus and subways to prevent your phone slipping from your hands. Also a perfect solution to place your smartphone on office desk, kitchen counter or bedside table when you are watching video, listening to music, making a video call or even playing games as a kickstand. Totally free your hands.</div><div>【WIDELY USED】 360° Rotation and 180° Flip make it more flexible and convenient to provide you with adjustable viewing angle. The phone finger ring can perfectly adapt to various occasions, keeping steady when you watch movies. Most important, the metal plate can be well attached to the magnetic phone car mount, giving you safe driving experience.</div><div>【NO WORRIES WITH US】 All cell phone ring holders sold by us have been 100% QC tested, we promise the 30-day money back and 180-day free replacement. If there is any quality issues, please don’t worry, we will provide 24h*7d timely customer service to solve the problem better.</div></div>','Fitfort Phone Ring Holder main.png','2020-09-30 17:04:41.000000','2021-01-12 11:34:48.000000',_binary '',_binary '',7,8.99,9,2,2,1,0.07,33,19,0,0),(57,'PopSockets PopWallet+ with Integrated Swappable PopTop - Black','PopSockets-PopWallet-with-Integrated-Swappable-PopTop-Black','<div><ul><li>Material: Polycarbonate, Nylon, Elastic, Adhesive, TPU (Thermoplastic polyurethane)</li><li>Brand: PopSockets</li><li>Color: Black</li></ul></div>','<div><div>Offers a sleek and secure way to carry your cards on your phone. PopTop included!</div><div>Integrated PopGrip offers secure handle so you can text with one hand, snap better photos, and watch dog videos hands-free</div><div>Allows for hands-free use with the PopMounts with a mount compatible PopTop</div><div>Removable: Push top left corner and slide right for wireless charging</div><div>Will NOT stick to SILICONE, HIGHLY TEXTURED CASES, and many SOFT cases. Disc included for sticking directly to glass-backed phones</div></div>','PopWallet main.png','2020-09-30 17:11:12.000000','2020-09-30 17:11:33.000000',_binary '',_binary '',18.95,24.99,0,2,2,1,0.1,34,19,0,0),(58,'SHAWE Phone Holder Bed Gooseneck Mount','SHAWE-Phone-Holder-Bed-Gooseneck-Mount','<div>Flexible Arm 360 Mount Clip Adjustable Bracket Clamp Stand Compatible with Cell Phone 11 Pro XS Max XR X 8 7 6 Plus 5 4, Samsung S10 S9 S8 for Bedroom Desk<br></div>','<div><div>【Compatible range】This universal lazy phone holder fits 3.5 to 6.5 Inch smartphone, such as iPhone 11 Pro Max XS XR X 8 7 6 Plus 5, Google Pixel 3 2 XL, Nexus 5X 6P 7, LG G7 V40 ThinQ V20 V30 K20 G4 G5 G6, Samsung Galaxy S10 S10e S10+ Note 9 8 S9 S8 Plus S7 Edge S6 S5 J7 J3, BLU VIVO XL4, HTC U11 10, Moto X G6 E4 E5 Z3 Z2 Play, OnePlus 6T 6 5T 3T 3 5.</div><div>【Different From Ordinary Phone Holder】The arm of our gooseneck bed holder adopts better materials and design.The high-quality Aluminum-magnesium alloy solid core is used, the flexible clip phone holder will not easily break and you can use it for a long time.As for the 31 inches (80cm) long arm, high- quality Aluminum-magnesium alloy solid core makes the lazy arm sturdy enough to hold his phone firmly, yet flexible to bend in any direction to accommodate your view.</div><div>【Various using occasions】The thickening adjustable clamp base varying from 0 to 2.36 inches (6cm), Perfect for using mobile phone to watch movies & enjoy music in the bedroom, headboard,bathroom,desk, kitchen, gym and office, free your hands.Designed with a non-slip silicone base, the holder will not scratch the surface of your furniture.</div><div>【Designed Stronger】 The strong clip base for stable mounting without vibrations, Flexible enough to twist yet durable enough to withstand repeatedly bend.Use your both hands to bend it caused it is designed stronger.In addition,The Claw Clamp of this phone holder is 360 degree adjustable,you can easily adjust your cellphone to most comfortable viewing angle</div><div>【 24 Hours Customer Service 】Any question about SHAWE cell phone stand, please contact us via E-mail at first. We have an 18 months replacement service and professional customer service support.</div></div>','Shawe Phone holder main.png','2020-09-30 17:21:46.000000','2020-09-30 17:21:46.000000',_binary '',_binary '',15.65,18.99,0,2.2,2.2,1.2,0.3,35,19,0,0),(59,'Lenovo IdeaCentre AIO 3, 24\" All-in-One Computer','Lenovo-IdeaCentre-AIO','<div>AMD Ryzen 3 4300U Mobile Processor, Integrated Graphics, 8GB DDR4, 256GB M.2 NVMe SSD, DVD RW Drive, Windows 10, F0EW005TUS, Business Black<br></div>','<div><div>Accelerate everything you do with the IdeaCentre AIO 3. Powered by an AMD Ryzen 3 4300U mobile processor with Radeon graphics, this all-in-one computer makes multitasking a breeze</div><div>The FHD display gives you an outstanding viewing experience, from wide angles, too. The narrow bezels are just 9.5 mm at their thinnest for a huge 90% screen-to-body ratio for more screen and fewer distractions</div><div>Work, entertainment, or video calls – the eye-catching IdeaCentre AIO 3 will look and perform great anywhere. With its stylish stand and base, this all-in-one desktop computer will save much-needed desk space</div><div>Made to meet your needs, the IdeaCentre AIO 3 stand can be tilted to the right angle for your tasks. Plus, you can easily adjust the display to avoid light reflections</div><div>For PC peripherals, such as a mouse, keyboard, and backup drive, the IdeaCentre AIO 3 has plenty of ports. In addition to USB 3.1 and 2.0, this all-in-one PC has a 3-in-1 card reader and HDMI out, should you need a second screen</div><div>Connectivity technology: Wi-Fi Ready</div></div>','Lenovo IdeaCenter main.png','2020-10-01 10:45:55.000000','2021-02-05 15:33:13.000000',_binary '',_binary '',466,549.99,0,21.7,7.5,17.8,22,36,5,0,0),(60,'Acer Aspire TC-885-UA92 Desktop','Acer-Aspire-TC-885-UA92-Desktop','<div>9th Gen Intel Core i5-9400, 12GB DDR4, 512GB SSD, 8X DVD, 802.11AC Wifi, USB 3.1 Type C, Windows 10 Home, Black<br></div>','<div><div>9th Generation Intel Core i5-9400 Processor (Up to 4. 1GHz)</div><div>12GB DDR4 Memory, 512GB SSD & 8x DVD-Writer Double-Layer Drive (DVD-RW)</div><div>802. 11AC Wi-Fi, Gigabit Ethernet LAN & Bluetooth 5. 0</div><div>1 - USB 3. 1 Type C Gen 2 port (up to 10 Gaps), 1 - USB 3. 1 Gen 2 port, 1 - USB 3. 1 Gen 1 port, 4 - USB 2. 0 Ports & 2 - HDMI ports & 1 - VGA Port</div><div>Windows 10 Home, USB keyboard & USB mouse</div><div>System ram type: ddr4_sdram</div></div>','Aspire TC-885-UA92 main.png','2020-10-01 10:53:23.000000','2021-01-06 18:24:05.000000',_binary '',_binary '',450,549.99,0,18,10,3,2.5,37,5,0,0),(61,'Dell Inspiron 27 AIO, 27 inch, FHD Touchscreen, Intel Core i7-10510U, NVIDIA MX110 2GB, 1TB HDD + 512GB SSD Storage, 16GB RAM, i7790-7388SLV-PUS, 15-15.99 inches','Dell-Inspiron-27-AIO-27-inch','<ul><li>Voice command: Keyboard</li><li>Operating System: Windows 10 Home</li><li>CPU Model: Core i7-10510U</li><li>Hardware Interface: Secure Digital Card, USB 2.0</li></ul>','<div><div>Featuring the latest 10th Gen Intel Core Processor, zip through tasks quickly and easily. Fast DDR4 memory lets you run multiple applications and tabs seamlessly.</div><div>Featuring Windows 10, the Best ever Windows features are available right out of the box. Cortana is your own personal assistant helping you get things done throughout the day. The Built-in Windows Defender safeguards you against viruses, phishing, and malware. Log in with just a look using Windows Hello and the optional IR camera. Multi-task like a master with the ability to snap four apps on the screen at once to better see and organize your tasks. Finally, the Windows 7 Start menu is back in an expanded form so you\'ll feel like an Expert from the get-go.</div><div>Protect your privacy with the pop-up webcam stays hidden until you\'re ready for video chatting or selfies.</div><div>Get the full Dell Cinema experience with the available InfinityEdge screen Featuring CinemaColor. Have an unforgettable viewing experience with the deepest blacks, the most dazzling bright, and more vivid detail Across the entire color spectrum.</div><div>With Dell mobile connect, you get the option to channel notifications from phone calls, SMS, IMS and other apps right to your PC. Keep your focus on a single screen and respond only when it\'s convenient for you.</div><div>Introducing the latest version of Bluetooth wireless communication: Bluetooth 5. 0. When paired with Bluetooth 5. 0 peripherals, this system can deliver improved performance, more wireless range and higher data transfer rates, while also providing enough bandwidth to support two devices.</div><div>System Ram Type: Ddr4 Sdram</div></div>','Dell Inspiron 27 AIO main.png','2020-10-01 10:55:42.000000','2020-11-13 09:49:15.000000',_binary '',_binary '',1550,1639,0,16,12,2,24.5,38,5,0,0),(62,'Lenovo IdeaCentre 3 Desktop Tower','Lenovo-IdeaCentre-3-Desktop-Tower','<div>AMD Athlon Silver 3050U Processor, AMD Radeon Graphics, 4GB DDR4, 256GB SSD, WiFi 802.11, Bluetooth, HDMI, 8 USB Ports, Windows 10, 90NT0000US, Silver<br></div>','<div><div>Enjoy ultra-fast multitasking on your desktop tower with an AMD Athlon mobile processor. Get incredible responsiveness when running multiple applications, watching movies, chatting with friends, or getting your work done with a PC that keeps up with you.</div><div>No need to worry about storage space with the IdeaCentre 3 — you can store plenty of photos, music, and other files on its 256GB solid state drive on this desktop PC</div><div>Connect all the peripherals you need — you have six USB 2.0 ports to choose from, plus two USB 3.1 ports, a 7-in-1 card reader, and an HDMI port for all your connections</div><div>The 7-liter IdeaCentre 3 will fit just about anywhere in your home, measuring only 11.26\" x 10.63\" x 7.87\". Its contemporary silver finish is highlighted with a stylish wavy line design for an appealing, trendy look</div><div>This Windows 10 desktop comes with a Bluetooth 4.0 Combo with WiFi Card (2x2 WiFi 802.11 ac)</div><div>Connectivity technology: Wi-Fi Ready</div></div>','IdeaCentre 3 main 2.png','2020-10-01 11:00:11.000000','2020-10-01 11:00:11.000000',_binary '',_binary '',288,319.99,0,17,11,4,7,36,5,0,0),(63,'Dell OptiPlex 7070 Desktop Computer - Intel Core i7-9700T - 16GB RAM - 256GB SSD - Micro PC','Dell-OptiPlex-7070-Desktop-Computer','<ul><li>Voice command: Mouse, Keyboard</li><li>Operating System: Windows 10 Pro</li><li><span style=\"font-size: 1rem;\">CPU Model: Intel Core i7</span><br></li><li>Wireless Communication Technology: Bluetooth, Wi-Fi</li></ul>','<div><div>Expand your productivity. Optiplex has over 25 years of experience delivering customer-led innovation for desktops by continuously creating faster and smarter solutions. Featuring versatile, space-saving form factors with customized deployment options and 9th Gen Intel Core processors.</div><div>Designed to tackle the workday compact without compromise: full-power features in a space-saving design, more workers choose the OptiPlex Micro than ever before. The Micro takes up less surface area while delivering uncompromising productivity.</div><div>Ultimate configurability: customized mounting options allow OptiPlex users to achieve a tailored workflow with faster performance and smarter manageability.</div><div>Mount it and forget it: Featuring exclusive custom mounting options, including the OptiPlex Micro all-in-one stand or the VESA mount, the Micro adapts to your unique environment, giving you the freedom to work how you want.</div><div>Stronger signal: improve wireless performance with the latest 802.11AC Wave 2 Wi-Fi. Stay connected at a greater distance from your router and deliver top Wi-Fi speeds for faster streaming.</div></div>','Dell OptiPlex main.png','2020-10-01 11:02:58.000000','2021-01-12 11:31:56.000000',_binary '',_binary '',800,915,0,9,8,3,15,38,5,0,0),(64,'Intel NUC 10 Performance Kit – Intel Core i7 Processor (Tall Chassis)','Intel-NUC-10-Performance-Kit','<div><ul><li>CPU Model: Intel Core i7</li><li>Hardware Interface: USB, USB Type C, HDMI</li></ul></div>','<div><div>Target Usage Home Office Home Theater PC Casual Gaming</div><div>10th Generation Intel Core i7-10710U (NUC10i7FNH1) with Intel UHD Graphics 300 MHz – 1 15 GHz</div><div>Supports Microsoft Windows* 10 logo’d compatible with various Linux distros</div><div>Supports up to 3 displays HDMI 2 0a USB-C (DP1 2) 6 USB Ports</div></div>','Intel NUC main.png','2020-10-01 11:08:28.000000','2021-01-10 17:48:11.000000',_binary '',_binary '',500,585.09,0,6,5,3,3,39,5,5,1),(65,'Lenovo Flex 5 14\" 2-in-1 Laptop','Lenovo-Flex-5-14\"-2-in-1-Laptop','<div>14.0\" FHD (1920 x 1080) Touch Display, AMD Ryzen 5 4500U Processor, 16GB DDR4, 256GB SSD, AMD Radeon Graphics, Digital Pen Included, Win 10, 81X20005US, Graphite Grey<br></div>','<div><div>Thin, light, and stylish – This 2-in-1 laptop weighs just 3.64 pounds and is only 0.82\" thick. It\'s soft and comfortable to the touch, with a durable paint that creates a better user experience. Digital pen included</div><div>The 10-point, 14-inch FHD (1920 x 1080) IPS touchscreen allows the Lenovo Flex 5 14\" 2-in-1 laptop to be comfortable, fun, and easy to use. It\'s also great to look at, with 4-side narrow bezels</div><div>The 360⁰ hinge lets you use your 2-in-1 touchscreen laptop in whatever mode works best for you; Use it in \'Laptop\' mode for everyday computing, \'Tent\' mode for sharing things, \'Stand\' mode for binge-watching, or \'Tablet\' mode for more intuitive interaction</div><div>Enjoy up to 10 hours of battery life, plus quick charge to 80% in just 1 hour</div><div>Powered by the AMD Ryzen 5 4500U mobile processor with Radeon graphics, you have the performance to do more, from anywhere. With more cores, you\'ll experience responsiveness that leaps into action for productivity, gaming, and content creation</div></div>','Lenovo Flex 5 main.png','2020-10-02 11:07:20.000000','2020-10-02 11:07:20.000000',_binary '',_binary '',525,599.99,0,19,12,4,5,36,6,0,0),(66,'Acer Aspire 5 Slim Laptop, 15.6 inches Full HD IPS Display, AMD Ryzen 3 3200U, Vega 3 Graphics, 4GB DDR4, 128GB SSD, Backlit Keyboard, Windows 10 in S Mode, A515-43-R19L, Silver','Acer-Aspire-5-Slim-Laptop','<div><ul><li>AMD Ryzen 3 3200U Dual Core Processor (Up to 3.5GHz); 4GB DDR4 Memory; 128GB PCIe NVMe SSD</li><li>15.6 inches full HD (1920 x 1080) widescreen LED backlit IPS display; AMD Radeon Vega 3 Mobile Graphics</li><li>1 USB 3.1 Gen 1 port, 2 USB 2.0 ports & 1 HDMI port with HDCP support</li><li>802.11ac Wi-Fi; Backlit Keyboard; Up to 7.5 hours battery life</li><li>Windows 10 in S mode. Maximum power supply wattage: 65 Watts</li></ul></div>','<div>Acer Aspire 5 A515-43-R19L comes with these high level specs: AMD Ryzen 3 3200U Dual-Core Processor 2.6GHz with Precision Boost up to 3.5GHz (Up to 4MB L3 Cache), Windows 10 in S mode, 15.6\" Full HD (1920 x 1080) widescreen LED-backlit IPS Display, AMD Radeon Vega 3 Mobile Graphics, 4GB DDR4 Memory, 128GB PCIe NVMe SSD, True Harmony Technology, Two Built-in Stereo Speakers, Acer Purified. Voice Technology with Two Built-in Microphones, 802.11ac Wi-Fi featuring 2x2 MIMO technology (Dual-Band 2.4GHz and 5GHz), 10/100/1000 Gigabit Ethernet LAN (RJ-45 port), Bluetooth 4.0, Back-lit Keyboard, HD Webcam (1280 x 720), 1 - USB 3.1 Gen 1 Port, 2 - USB 2.0 Ports, 1 - HDMI Port with HDCP support, Lithium-Ion Battery, Up to 7.5-hours Battery Life, 3.97 lbs. | 1.8 kg (system unit only) (NX.HG8AA.001).<br></div>','Acer Aspire 5 Slim Laptop main.png','2020-10-02 11:11:48.000000','2021-01-06 18:22:57.000000',_binary '',_binary '',399,499,0,16,11,3,8,37,6,3,1),(67,'ASUS VivoBook L203MA Laptop','ASUS-VivoBook-L203MA-Laptop','<div>11.6” HD Display, Intel Celeron Dual Core CPU, 4GB RAM, 64GB Storage, USB-C, Windows 10 Home In S Mode, Up To 10 Hours Battery Life, One Year of Microsoft 365, L203MA-DS04<br></div>','<div><div>The ASUS L203MA is designed to help you be productive all day — even when you’re on the move. This compact and lightweight 11.6-inch laptop is powered by the latest Intel® processor and provides long lasting battery life. With eMMC storage and pre-loaded Windows 10 in S mode, it offers full compatibility with a wide range of software and peripherals. It’s the best laptop for people on the go.</div><div>*The actual transfer speed of USB 3.0, 3.1 (Gen 1 and 2), and/or Type-C will vary depending on many factors including the processing speed of the host device, file attributes and other factors related to system configuration and your operating environment.</div></div>','ASUS VivoBook main.png','2020-10-02 11:15:58.000000','2020-10-02 11:15:58.000000',_binary '',_binary '',229,278,0,15,10,3,5,40,6,0,0),(68,'HP Chromebook 14-Inch HD Laptop, Intel Celeron N4000, 4 GB RAM, 32 GB eMMC, Chrome (14a-na0020nr, Ceramic White)','HP-Chromebook-14-Inch-HD-Laptop','<div><ul><li>Type of product: Chromebook</li><li>Voice command: Keyboard</li><li>Operating System: Chrome OS</li></ul></div>','<div><div>Google play store: The millions of Android apps you know and love on your phone and tablet can now run on your Chrome device without compromising their speed, simplicity or security</div><div>Sleek, responsive design: Keep going comfortably with the backlit keyboard and multi-touch touchpad that supports four finger gestures set in a sleek design for moving from room to room or on the road</div><div>Binge watch while you work: Equipped with an Intel(R) processor, 14\" display, stereo speakers tuned by audio experts at B&O and a long battery life to get more done while having fun</div><div>Environmentally conscious: Low halogen, mercury-free display backlights, arsenic-free display glass in this Energy Star(R) certified, EPEAT(R) Silver registered Chromebook</div><div>Dual-core Intel(R) processor: Intel(R) Celeron(R) N4000, Dual-Core, 1.1 GHz base frequency, up to 2.6 GHz burst frequency</div><div>Display: 14.0-inch diagonal HD SVA anti-glare micro-edge WLED-backlit display (1366 x 768); 82% screen to body ratio</div><div>Memory & storage: 4 GB LPDDR4-2400 SDRAM (not upgradable) and 32 GB eMMC</div></div>','HP Chromebook main.png','2020-10-02 11:18:44.000000','2021-01-21 17:26:49.000000',_binary '',_binary '',279,349.99,0,15,9,1.5,4,4,6,0,0),(69,'Acer Swift 3 Thin & Light Laptop','Acer-Swift-3-Thin-&-Light-Laptop','<div>14\" Full HD IPS, AMD Ryzen 7 4700U Octa-Core with Radeon Graphics, 8GB LPDDR4, 512GB NVMe SSD, Wi-Fi 6, Backlit KB, Fingerprint Reader, Alexa Built-in, SF314-42-R9YN<br></div>','<div><div>AMD Ryzen 7 4700U Octa-Core Mobile Processor (Up to 4.1 GHz) with Radeon Graphics | 8GB LPDDR4 Memory | 512GB PCIe NVMe SSD</div><div>14\" Full HD Widescreen IPS LED-backlit display (1920 x 1080 resolution; 16:9 aspect ratio)</div><div>Intel wireless Wi-Fi 6 AX200 802.11ax | HD webcam (1280 x 720) | Backlit keyboard | Fingerprint reader</div><div>1 - USB Type-C port USB 3. 2 Gen 2 (up to 10 Gbps) DisplayPort over USB Type-C & USB Charging, 1- USB 3. 2 Gen 1 port (featuring power-off charging), 1 - USB 2. 0 port & 1 - HDMI port</div><div>Just 0.63\" thin and 2.65 pounds and up to 11.5 hours of battery life</div></div>','Acer Swift 3 main.png','2020-10-02 11:22:44.000000','2021-01-22 11:04:55.000000',_binary '',_binary '',569,679.99,0,13.2,9,2,3,37,6,0,0),(70,'ASUS TUF Gaming A15 Gaming Laptop','ASUS-TUF-Gaming-A15-Gaming-Laptop','<div>15.6” 144Hz FHD IPS-Type, AMD Ryzen 5 4600H, GeForce GTX 1650, 8GB DDR4, 512GB PCIe SSD, Gigabit Wi-Fi 5, Windows 10 Home, FA506IH-AS53<br></div>','<div><ul><li>NVIDIA GeForce GTX 1650 4GB GDDR6 Graphics (Base: 1380MHz, Boost: 1515MHz, TDP: 50W)</li><li>AMD Ryzen 5 4600H Processor (up to 4.0 GHz)</li><li>15.6” 144Hz FHD (1920x1080) IPS-Type display</li><li>512GB PCIe NVMe M.2 SSD | 8GB DDR4 3200MHz RAM | Windows 10 Home</li><li>Durable MIL-STD-810H military standard construction</li><li>Dual fans with self-cleaning anti-dust technology to extend system longevity</li><li>RGB Backlit keyboard rated for 20-million keystroke durability</li></ul></div>','ASUS TUF Gaming main.png','2020-10-02 11:25:23.000000','2021-01-10 18:06:05.000000',_binary '',_binary '',738,849.99,0,16,12,3,7,40,6,0,0),(71,'Lenovo Legion 5 Gaming Laptop','Lenovo-Legion-5-Gaming-Laptop','<div>15\" FHD (1920x1080) IPS Screen, AMD Ryzen 7 4800H Processor, 16GB DDR4, 512GB SSD, NVIDIA GTX 1660Ti, Windows 10, 82B1000AUS, Phantom Black<br></div>','<div><div>Welcome to the next generation of gaming performance with the AMD Ryzen 7 4800H mobile processor, 16GB 3200MHz DDR4 memory, and 512GB M.2 NVMe PCIe SSD storage</div><div>Enjoy fast refresh and deep colors with a 144 Hz refresh rate and outstanding clarity on a 15.6\" FHD (1920 x 1080) IPS display</div><div>The NVIDIA GeForce GTX 1660Ti GPU is a blazing-fast supercharger for your favorite games and the newest titles</div><div>Get maximum performance via Dual Burn Support, which pushes the CPU and GPU together for improved framerates, and Legion Coldfront 2.0 for thermal tuning</div><div>The Legion TrueStrike keyboard with soft-landing switches delivers hair-trigger inputs</div></div>','Lenovo Legion main.png','2020-10-02 11:27:07.000000','2020-11-13 10:26:39.000000',_binary '',_binary '',889,999.99,0,19,16,8,11,36,6,4,1),(72,'Acer Chromebook Spin 11 CP311-1H-C5PN','Acer-Chromebook-Spin-11-CP311-1H-C5PN','<div>Convertible Laptop, Celeron N3350, 11.6\" HD Touch, 4GB DDR4, 32GB eMMC, Google Chrome<br></div>','<div><div>Chromebook runs on Chrome OS - an operating system by Google that is built for the way we live today. It comes with built-in virus protection, updates automatically*, boots up in seconds and continues to stay fast over time. (*Internet connection is required).</div><div>All the Google apps you know and love come standard on every Chromebook, which means you can edit, download, and convert Microsoft Office files in Google Docs, Sheets and Slides</div><div>With the Google Play Store, you can access a rich library of apps, games, music, movies, TV, books, magazines, and more, all from your Chromebook.</div><div>Chromebooks come with built-in storage for offline access to your most important files and an additional 100GB of Google Drive space to ensure that all of your files are backed up automatically.</div><div>Convertible Chromebook with Intel Celeron N3350, 11.6” HD Touch Display, 4GB Memory, 32GB eMMC and Up to 10-hour Battery Life</div></div>','Acer Chromebook Spin main.png','2020-10-02 11:32:20.000000','2021-01-22 11:05:35.000000',_binary '',_binary '',301,399,0,12,9,1.5,3,37,6,4,1),(73,'2020 Dell Inspiron 3000 15.6-inch HD Touchscreen Laptop PC, Intel 10th Gen Dual Core i3-1005G1 Processor, 8GB DDR4, 128GB SSD, 1TB HDD, Bluetooth, Windows 10, Black','2020-Dell-Inspiron-3000-15.6-inch-HD-Touchscreen-Laptop-PC','<div><ul><li>Intel 10th Gen Dual Core i3-1005G1 Processor (1.2GHz, up to 3.4GHz, 4MB cache, 2 cores)</li><li>8GB DDR4 SDRAM, 128GB Solid State Drive, 1TB HDD, Intel UHD Graphics</li><li>15.6 inch Touchscreen HD (1366 x 768) Display</li><li>Intel 802.11 ac Wi-Fi + Bluetooth 4.1, Webcam, HDMI, RJ-45</li><li>2 × USB-Type-A 3.0, 1 × USB Type-A 2.0, Windows 10 Home 64 bit</li></ul></div>','<div><div>2020 Dell Inspiron 3000 15.6-inch HD Touchscreen laptop PC, Intel 10th Gen Dual Core i3-1005G1 Processor, 8GB DDR4, 128GB SSD, 1TB HDD, Bluetooth, Windows 10, Black</div><div><br></div><div>Designed for long-lasting performance this Dell 15.6-inch laptop lets you speed through tasks and stay connected all day, with the latest processors and a rich HD display.</div><div>Specifications:</div><div>Processor:</div><div>· Intel 10th Gen Dual Core i3-1005G1 Processor (1.2GHz, up to 3.4GHz, 4MB cache, 2 cores)</div><div>Memory:</div><div>· 8GB DDR4 SDRAM</div><div>Storage:</div><div>· 128GB SSD + 1TB HDD</div><div>Display:</div><div>· 15.6 inch Touchscreen HD (1366 x 768) Display</div><div>Graphics:</div><div>· Intel UHD Graphics</div><div>Operating System:</div><div>· Microsoft Windows 10 Home 64 Bit</div><div>Wireless:</div><div>· Intel 802.11 ac Wi-Fi + Bluetooth 4.1</div><div>Backlit Keyboard:</div><div>· No</div><div>Ports and slots:</div><div>· 2 x USB 3.0 Type-A</div><div>· 1 x USB 2.0 Type-A</div><div>· 1x headphone/microphone combo</div><div>· 1x HDMI</div><div>· 1x RJ45</div><div>Dimensions and weight:</div><div>· Dimensions(W x D x H): 15\" W x 10.2\" D x 0.78\" H</div><div>· Weight (approximate): 4.45 lbs.</div></div><div><br></div>','Dell Inspiron 3000 main.png',NULL,'2021-11-07 16:05:09.535000',_binary '',_binary '',450,600,0,16,11,3,8.5,38,6,0,0),(74,'Samsung Galaxy Tab A 8.0\" 32 GB Wifi Android 9.0 Pie Tablet Black (2019) - SM-T290NZKAXAR','Samsung-Galaxy-Tab-A-8.0','<div><div><ul><li><span style=\"font-size: 1rem;\">Wireless Communication Technology: Bluetooth, Wi-Fi</span></li><li>Operating System: Android</li><li>Other camera features: Rear, Front</li><li>Color: Black</li></ul></div></div><div><br></div>','<div><div>Sleek and powerful, the new Galaxy Tab A 8.0\" Lets you browse, watch your favorite shows and movies, play games, and get things done on a tablet that\'s light and comfortable in your hands. With a long-lasting battery and expandable memory, The Galaxy Tab A 8.0\" is built to keep up with you.</div><div><br></div><div>Minimum bezel; Maximum view: Designed with a minimized bezel, giving you more room to view your favorite content in a slim, comfortable form; The premium metallic finish and lightweight design make it easy to use around the house or on the go</div><div>Entertainment ready: An 8.0 inches display immerses you in content, and dual speakers deliver spacious surround sound</div><div>Binge ready Battery: Browse, watch or shop for up to 13 hours on a full charge</div><div>Room for everything: Keep your favorite songs, photos or videos, thanks to 32GB of built in memory; Plus expand your storage up to 512GB anytime with a Micro SD card</div></div>','Galaxy Tab A main.png','2020-10-02 11:41:16.000000','2020-11-10 16:45:56.000000',_binary '',_binary '',130,149.99,21,9,5.5,0.5,1.3,10,7,0,0),(75,'Samsung Galaxy Tab S6 Lite 10.4\", 64GB WiFi Tablet Oxford Gray - SM-P610NZAAXAR - S Pen Included','Samsung-Galaxy-Tab-S6-Lite-10.4','<div><ul><li><span style=\"font-size: 1rem;\">Wireless Communication Technology: Bluetooth, Wi-Fi, GPS</span></li><li>Operating System: Android</li><li>Other camera features: Rear, Front</li><li>RAM Installed Size: 4 GB</li></ul></div>','<div><div>The included S Pen makes it easier than ever to write notes and personalize photos and videos, all without needing to charge. The S Pen attaches magnetically right to your tablet so you can quickly put it down and pick it back up without losing it.</div><div>Slim Metal Design: Take this sleek, lightweight tablet anywhere. Its slim design slips right into your bag and comes in your choice of stylish colors.</div><div>Entertainment Ready: A vivid, crystal clear display draws you into content while dual speakers with sound by AKG supply spacious, Dolby Atmos surround sound.</div><div>Long-lasting Battery: A long-lasting battery lets you stream for up to 13 hours (Battery power consumption depends on usage patterns. Results may vary) on a single charge. The fast-charging USB-C port allows you to quickly get back to where you left off when you need to recharge.</div><div>Expandable Memory: Store all of your content with built-in 64/128GB internal memory. Expand your storage space anytime up to 1TB with a microSD card. (Sold separately. Portion of internal memory occupied by existing content).</div></div>','Galaxy Tab S6 Lite main.png','2020-10-02 11:44:23.000000','2020-10-02 11:44:37.000000',_binary '',_binary '',311,349.99,6,8.5,5.1,1.5,1.5,10,7,0,0),(76,'Microsoft Surface Pro 7 – 12.3\" Touch-Screen - 10th Gen Intel Core i5 - 8GB Memory - 128GB SSD (Latest Model) – Platinum with Black Type Cover','Microsoft-Surface-Pro-7','<div><ul><li>Brand: Microsoft</li><li>Wireless Communication Technology: Bluetooth, Wi-Fi</li><li>Operating System: Windows 10 Home</li><li>RAM Installed Size: 8 GB</li><li>Color: Platinum</li></ul></div>','<div><div>Next-gen, best-in-class laptop with the versatility of a studio and tablet, so you can type, touch, draw, write, work, and play more naturally</div><div>Faster than surface pro 6, with a 10th gen intel core processor – redefining what’s possible in a thin and light computer.</div><div>More ways to connect, with both USB-c and USB-a ports for connecting to displays, docking stations and more, as well as accessory charging. Bluetooth: Bluetooth 5.0</div><div>Standout design that won’t weigh you down — ultra-slim and light surface pro 7 starts at just 1.70 pounds</div><div>All day battery life upto 10.5 hours, Plus the ability to go from empty to full faster — about 80 percent in just over an hour</div></div>','Surface Pro 7 main.png','2020-10-02 11:48:42.000000','2021-01-12 16:37:55.000000',_binary '',_binary '',733,849,0,14,10,2.5,2.35,41,7,4.33333,3),(77,'Lenovo Tab M10 Plus Tablet, 10.3\" FHD Android Tablet, Octa-Core Processor, 128GB Storage, 4GB RAM, Dual Speakers, Kid Mode, Face Unlock, Android 9 Pie, ZA5T0300US, Iron Grey','Lenovo-Tab-M10-Plus-Tablet','<div><ul><li>Brand: Lenovo</li><li>Wireless Communication Technology: Bluetooth, Wi-Fi</li><li>Operating System: Android 9 Pie</li><li>Other camera features: Rear, Front</li><li>RAM Installed Size: 4 GB</li></ul></div>','<div><div>Premium look & feel with metal back cover and slim, narrow bezels. Enjoy your favorite videos on the 10.3\" FHD display with TDDI technology</div><div>Fast and powerful Octa-Core processor with up to 2.3 GHz main frequency for quick performance</div><div>Never miss a moment with 8 MP rear + 5 MP front cameras, dual microphones, and 2 side speakers tuned with Dolby Atmos</div><div>Kid\'s Mode includes dedicated content for kids, with parent control and specialized eye protection. Bumpy environment and posture alerts also available</div><div>Stay connected with WiFi 802.11 a/b/g/n/ac, 2.4 GHz & 5 GHz Dual Band, and Bluetooth 5.0</div></div>','Lenovo Tab M10 Plus main.png','2020-10-02 11:52:42.000000','2020-10-02 11:52:50.000000',_binary '',_binary '',210,249.99,0,10,8.5,2.6,1.8,36,7,0,0),(78,'Lenovo Tab M8 Tablet, 8\" HD Android Tablet, Quad-Core Processor, 2GHz, 32GB Storage, Full Metal Cover, Long Battery Life, Android 9 Pie, ZA5G0060US, Slate Black','Lenovo-Tab-M8-Tablet','<div><ul><li>Brand: Lenovo</li><li>Wireless Communication Technology: Wi-Fi</li><li>Operating System: Android™ 9 Pie™</li><li>Other camera features: Rear, Front</li><li>Color: Slate Black</li></ul></div>','<div><div>Stunning performance and stylish design combine in this quick, powerful Android tablet, powered by a Quad-Core, 2.0 GHz processor and Android 9 Pie</div><div>The modern, refined look and feel are accentuated by the full metal cover and 82% panel-to-body ratio</div><div>The stunning 8\" HD (1280 x 800) display brings you a crisper and brighter image, so you can watch your favorite movies and shows without missing a detail</div><div>Stay connected with built-in Bluetooth 5.0 and Wi-Fi 802.11 a/b/g/n/ac (2.4/5 GHz), and capture the moment with front and rear cameras</div><div>Long-life battery – Watch or browse all day long without the need to recharge with 5000 mAh battery capacity</div></div>','Lenovo Tab M8 main.png','2020-10-02 11:55:53.000000','2020-10-02 11:56:01.000000',_binary '',_binary '',79,99.99,0,10,6,2.5,1,36,7,0,0),(79,'Apple iPad 6 with WiFi, 128GB, Space Gray (2018 Model) (Renewed)','Apple-iPad-6-with-WiFi,-128GB,-Space-Gray-(2018-Model)-(Renewed)','<div><ul><li>Brand: Apple</li><li>Wireless Communication Technology: Bluetooth, Wi-Fi</li><li>Operating System: IOS</li><li>Other camera features: Rear, Front</li><li>RAM Installed Size: 128 GB</li></ul></div>','<div><div>This iPad 6 is Certified Refurbished. It is 100% functional and in near perfect cosmetic condition with the possibility of a few light hair marks. This item will NOT come in its original packaging but will include a certified cable and UL approved power adapter. Headsets, SIM card and manual are NOT included. This iPad 6 is only compatible with WiFi. It is NOT enabled for ANY cellular network.</div><div>9.7\" Multi-Touch Retina Display 2048 x 1536 Screen Resolution (264 ppi)</div><div>Apple A10 Fusion SoC and M10 Coprocessor 4G LTE | 802.11ac Wi-Fi | Bluetooth 4.10</div><div>Front 1.2MP FaceTime HD Camera Rear 8MP Camera</div><div>Apple Pencil Support Night Shift | Touch ID Sensor</div></div>','iPad 6 main.png','2020-10-02 11:58:16.000000','2021-01-09 11:47:28.000000',_binary '',_binary '',323,410.96,11,11,7,2,1.2,9,7,0,0),(80,'Dragon Touch Notepad K10 Tablet','Dragon-Touch-Notepad-K10-Tablet','<div>10 inch Android Tablet, 2GB RAM 32GB Storage, Quad-Core Processor, 10.1 IPS HD Display, Micro HDMI, Android 9.0 Pie, 5G WiFi, Metal Body Black<br></div>','<div><div>[Strong and Powerful Performance]: Do what you like to do, Dragon Touch NotePad K10 Tablet features a powerful and strong 64-bit quad-core processor up to 1.3GHz with 2GB RAM, thus delivering quicker app launches, much smoother gameplay experience.</div><div>[Native and Latest Android OS]: The Dragon Touch NotePad K10 Tablet has been certified from GMS and features with the latest Android version-Android 9.0 Pie. Getting rid of unexpected ads and having full access to Google Play, it’s smarter, faster and better close to you.</div><div>[Better Display Wonderful Contents]: With a wide and stunning 800*1280 IPS display, which presents a bright display with more abundant colors and more delicate picture quality from all angles. To be more humane, NotePad K10 Tablet features Eye-Care mode, which automatically adjusts and optimizes the backlight. It makes you read comfortably at night.</div><div>[Ultimate Entertainment Experience]: The Dragon Touch NotePad K10 Tablet comes with dual speakers, providing a robust audio experience for your favorite music, videos, and games. Besides, Dual wifi mode provides two choices for network-2.4GHz & 5GHz. With high-speed network connections, you can browse, video chat, play games, watch movies or TV series, and so on freely.</div><div>[Sturdy Design, Large Storage]: The Dragon Touch NotePad K10 Tablet has a simple but also not simple design. The fashion, line-clear and slim metal body look more like artwork. Even so, it still has built-in 32GB storage and supports up to 128G micro SD card to expand the storage. You can download and keep your favorite books, songs, photos, movies, games and everything you like in this slim metal android tablet.</div></div>','Dragon Touch Notepad K10 Tablet main.png','2020-10-02 12:08:19.000000','2020-10-02 12:08:19.000000',_binary '',_binary '',99,119.99,0,9.5,7.5,2.2,1.35,42,7,0,0),(81,'AMD Ryzen 5 3600X 6-Core, 12-Thread Unlocked Desktop Processor with Wraith Spire Cooler','AMD-Ryzen-5-3600X-6-Core,-12-Thread-Unlocked-Desktop-Processor-with-Wraith-Spire-Cooler','<div><ul><li>The world\'s most advanced processor in the desktop PC gaming segment</li><li>Can deliver ultra-fast 100+ FPS performance in the world\'s most popular games system memory specification 3200 MHz</li><li>6 Cores and 12 processing threads bundled with the powerful AMD Wraith Spire cooler</li><li>4 4 GHz max Boost unlocked for overclocking 35 MB of game Cache DDR 3200 support</li><li>For the advanced socket AM4 platform can support PCIe 4 0 on x570 motherboards</li></ul></div>','<div>Serious high definition gaming everyone deserves a powerful processor. Manufacturer: advanced Micro devices, Inc. Manufacturer part Number: 100 100000022box. Brand Name: AMD. Product line: Ryzen 5. Product Model: 3600x. Product Name: Ryzen 5 Hexa Core 3600x 3.8GHz desktop processor. Package Type: Retail. Product Type: processor. [Technical Information] processor Manufacturer: AMD. Processor Core: Hexa Core (6 Core). Clock speed: 3.80 GHz. Overclocking speed: 4.40 GHz. L2 cache: 3 MB. L3 cache: 32 MB. 64 Bit processing: Yes. Process technology: 7 nm. Processor threads: 12. Processor socket: Socket AM4. [Power Description] thermal design Power: 95 W.<br></div>','AMD Ryzen 5 Box.png','2020-10-03 15:41:44.000000','2021-01-10 17:37:57.000000',_binary '',_binary '',190,249,16,2.2,2.1,1.2,1.5,43,22,0,0),(82,'Intel Core i5-9400F Desktop Processor 6 Cores 4.1 GHz Turbo Without Graphics','Intel-Core-i5-9400F-Desktop-Processor-6-Cores-4.1-GHz-Turbo-Without-Graphics','<div><ul><li><span style=\"font-size: 1rem;\">CPU Model: Intel Core i5</span></li><li>Graphics Coprocessor: No Integrated Graphics</li><li>Processor Speed: 2.9 GHz</li><li>RAM Maximum Size: 64 GB</li></ul></div>','<div><div>6 Cores/ 6 Threads</div><div>2.90 GHz up to 4.10 GHz Max Turbo Frequency/ 9 MB cache, Bus Speed: 8 GT/s DMI3</div><div>Intel Optane Memory supported</div><div>Compatible only with Motherboards based on Intel 300 Series Chipsets: Intel B360 Chipset, Intel H370 Chipset, Intel H310 Chipset, Intel Q370 Chipset, Intel Z390 Chipset, Intel Z370 Chipset</div><div>Discrete GPU required No integrated graphics. Max Memory bandwidth - 41.6 GB/s. Max Memory Channels - 2</div></div>','Intel Core i5 main.png','2020-10-03 15:45:18.000000','2020-10-03 15:45:18.000000',_binary '',_binary '',115,148.33,0,4.5,3.5,3,0.84,39,22,0,0),(83,'Intel Core i9-9900K Desktop Processor 8 Cores up to 5.0 GHz Turbo unlocked LGA1151 300 Series 95W','Intel-Core-i9-9900K-Desktop-Processor-8-Cores-up-to-5.0-GHz-Turbo-unlocked-LGA1151-300-Series-95W','<div><ul><li>8 Cores / 16 Threads</li><li>3.60 GHz up to 5.00 GHz / 16 MB Cache</li><li>Compatible only with Motherboards based on Intel 300 Series Chipsets</li><li>Intel Optane Memory Supported</li><li>Intel UHD Graphics 630</li></ul></div>','<div>Specifications Mfr Part Number: BX80684I99900K Model: Intel Core i9-9900K Processor Core Name: Coffee Lake Core Count: 8 Thread Count: 16 Clock Speed: 3. 6 GHz Max Turbo Frequency: 5. 0 GHz Smart Cache: 16 MB DMI3: 8. 0 GT/s Lithography: 14nm Socket: LGA 1151 Max Thermal Design Power: 95W Memory Type: DDR4-2666 Processor Graphics: Intel UHD Graphics 630 Graphics Base Frequency: 350 MHz Graphics Max Dynamic Frequency: 1. 20 GHz Max CPU Configuration: 1 Advanced Technologies: Intel Optane Memory Supported Intel Turbo Boost 2. 0 Technology Intel vPro Platform Eligibility Intel Hyper-Threading Technology Intel Virtualization Technology (VT-x) Intel Virtualization Technology for Directed I/O (VT-d) Intel TSX-NI Intel 64 Instruction Set 64-bit Instruction Set Extensions - Intel SSE4. 1, Intel SSE4. 2, Intel AVX2 Idle States Enhanced Intel Speed Step Technology Thermal Monitoring Technologies Intel Identity Protection Technology Intel Stable Image Platform Program (SIPP) Intel AES New Instructions Secure Key Intel Software Guard Extensions (Intel SGX) Intel Memory Protection Extensions (Intel MPX) Intel OS Guard Intel Trusted Execution Technology Execute Disable Bit Intel Boot Guard.<br></div>','Intel Core i9 main box.png','2020-10-03 15:47:32.000000','2021-01-16 17:38:29.000000',_binary '',_binary '',330,564,29,3.2,4.6,4.8,0.82,39,22,0,0),(84,'XFX Radeon RX 580 GTS XXX Edition 1386MHz OC+, 8GB GDDR5, VR Ready, Dual BIOS, 3xDP HDMI DVI, AMD Graphics Card (RX-580P8DFD6)','XFX-Radeon-RX-580-GTS-XXX-Edition-1386MHz-OC+,-8GB-GDDR5,-VR-Ready,-Dual-BIOS,-3xDP-HDMI-DVI,-AMD-Graphics-Card-(RX-580P8DFD6)','<div><ul><li><span style=\"font-size: 1rem;\">Hardware Interface: PCI Express x8</span></li><li>Series: RX-580P8DFD6</li><li>Graphics Coprocessor: AMD Radeon RX 580</li></ul></div>','<div><div>The XFX RX 580 series graphics card feature the latest Polaris architecture which includes the 4th gen GCN graphics cores, a brand new display engine, new multimedia cores, all on the revolutionary next finfet 14 process technology for enhanced performance and efficiency</div><div>Equipped with XFX double dissipation cooling technology for optimal cooling and performance. Minimum power requirement is 500 watts. Memory clock true: 8.0GHz, boost OC+: 8.1GHz</div><div>Multiple factory GPU overclocked settings - 1366 MHz true clock and 1386 MHz OC+</div><div>AMD VR ready premium - Experience the new generation of compelling virtual reality content with the Radeon RX GTS graphics card paired with the leading VR headsets. The Radeon RX GTS graphics card coupled with AMD LiquidVR technology delivers a virtually stutter-free, low latency experience, essential for remarkable virtual reality environments</div></div>','XFX Radeon RX 580 main.png','2020-10-03 15:53:21.000000','2021-02-01 16:33:16.000000',_binary '',_binary '',123,185,0,11,5.1,2.1,2.8,44,23,5,1),(85,'MSI Gaming GeForce GTX 1660 192-Bit HDMI/DP 6GB GDRR5 HDCP Support DirectX 12 Dual Fan VR Ready OC Graphics Card (GTX 1660 VENTUS XS 6G OC)','MSI-Gaming-GeForce-GTX-1660-192-Bit-HDMI','<div><ul><li>Series: GTX 1660 VENTUS XS 6G OC</li><li>Brand: MSI</li><li>Graphics Coprocessor: NVIDIA GeForce GTX 1060</li><li>Video Output Interface: DisplayPort, HDMI</li><li>Chipset Brand: Nvidia</li></ul></div>','<div><div>Chipset: NVIDIA GeForce GTX 1660</div><div>Boost Clock: 1830 MHz</div><div>Memory Interface: 192 bit</div><div>Video Memory - 6GB GDDR5. Power consumption- 120 W. Recommended PSU - 450 W</div><div>Output: DisplayPort x 3 (V1; 4)/ HDMI 2; 0B x 1</div></div>','MSI GeForce main.png','2020-10-03 15:57:47.000000','2020-10-03 15:57:55.000000',_binary '',_binary '',199,229.99,7,8,7,3.5,1.9,45,23,0,0),(86,'Western Digital 1TB WD Blue PC Hard Drive - 7200 RPM Class, SATA 6 Gb/s, , 64 MB Cache, 3.5\" - WD10EZEX','Western-Digital-1TB-WD-Blue-PC-Hard-Drive','<div><ul><li>Digital Storage Capacity: 1 TB</li><li>Hardware Interface: SATA 6.0 Gb/s</li><li>Type of product: 3.5-Inch</li></ul></div>','<div><div>WD Blue internal hard drives deliver reliability for office and web applications. They are ideal for use as primary drives in desktop PCs and for office applications. With a range of capacities and cache sizes, there’s a WD Blue internal hard drive that’s just right for you.</div><div>Reliable everyday computing</div><div>WD quality and reliability</div><div>Free Acronis True Image WD Edition cloning software</div><div>Massive capacities up to 6 TB available</div><div>2-year manufacturer\'s limited warranty</div></div>','Western Digital 1TB 1.png','2020-10-03 16:05:25.000000','2020-11-02 21:55:43.000000',_binary '',_binary '',35,44.84,0,6.2,4.5,1.5,1,6,24,0,0),(87,'Western Digital 4TB WD Black Performance Internal Hard Drive - 7200 RPM Class, SATA 6 Gb/s, 256 MB Cache, 3.5\" - WD4005FZBX','Western-Digital-4TB-WD-Black-Performance-Internal-Hard-Drive','<div><ul><li>Digital Storage Capacity: 4 TB</li><li>Hardware Interface: SATA 6.0 Gb/s</li><li>Type of product: 3.5 Inches</li></ul></div>','<div><div>WD Black performance storage is designed to enhance your PC experience across heavier computing tasks whether you are a digital artist, video editor, photographer, or gamer. Available with an impressive 256 MB of DRAM cache on higher capacity models, the WD Black drive is optimized for drive performance so you can spend more time experiencing the things you love most. Enhance your PC’s performance even further when you combine a WD Black drive with an SSD for a dual drive configuration, allowing you to benefit from the additional caching of your operating system onto the SSD for increased performance. All together, the WD Black drive gives you the hard drive performance, capacity and an industry leading 5-year limited warranty for an inspiring three-in-one storage solution.</div><div>Desktop performance hard drive</div><div>Performance storage available in up to 6TB capacities</div><div>2X DRAM cache up to 256 MB for faster read operations</div><div>Designed for creative professionals, gamers and system builders</div><div>5-year manufacturer\'s limited warranty</div><div>Note: Compatibility PC, Mac (Requires reformatting)</div></div>','Western Digital 4TB main.png','2020-10-03 16:08:22.000000','2020-10-03 16:08:29.000000',_binary '',_binary '',171,189.99,21,4,3,2.5,0.7,6,24,0,0),(88,'Seagate BarraCuda 2TB Internal Hard Drive HDD – 3.5 Inch SATA 6Gb/s 7200 RPM 256MB Cache 3.5-Inch','Seagate-BarraCuda-2TB-Internal-Hard-Drive-HDD','<div><ul><li>Digital Storage Capacity: 2 TB</li><li>Hardware Interface: SATA 6.0 Gb/s</li><li>Type of product: 3.5-Inch</li></ul></div>','<div><div>Store more, compute faster, and do it confidently with the proven reliability of BarraCuda internal hard drives. Perfect for designers, musicians, photographers, and video editors using multiple applications at once, these solutions offer uninterrupted performance, optimized read/write caching technology, and a variety of capacities and form factors to choose from. The result is a seamless experience backed by a two-year limited warranty and 20 years of hard drive innovation.</div><div>Store more, compute faster, and do it confidently with the proven reliability of BarraCuda internal hard drives</div><div>Build a powerhouse gaming computer or desktop setup with a variety of capacities and form factors</div><div>The go to SATA hard drive solution for nearly every PC application—from music to video to photo editing to PC gaming</div><div>Confidently rely on internal hard drive technology backed by 20 years of innovation</div><div>Enjoy long term peace of mind with the included 2 year limited warranty</div></div>','Seagate BarraCuda 2TB main.png','2020-10-03 16:13:05.000000','2021-01-15 12:40:14.000000',_binary '',_binary '',41,57.99,5,6.5,4.5,1.5,1.3,46,24,4,1),(89,'Asus 24x DVD-RW Serial-ATA Internal OEM Optical Drive DRW-24B1ST Black(user guide is included)','Asus-24x-DVD-RW-Serial-ATA-Internal-OEM-Optical-Drive-DRW-24B1ST-Black','<div><ul><li>Allows you to permanently delete the data on rewritable discs</li><li>Power saving drive</li><li>Provides you with flexibility and efficiency in terms of multimedia data storage and sharing</li><li>It is a revision of 90 D4CHVV UB1080</li><li>Drive Type: Internal DVD+/-RW Dual Layer Drive</li><li>Write:DVD+R/-R: 24X DVD+RW/-RW: 8X/6X DVD+R/-R DL: 12X</li><li>Read:DVD+R/-R(Single): 16X DVD+R/-R DL: 12X DVD+RW/-RW(Single): 12X</li></ul></div>','<div>The ASUS DRW-24B1ST is capable of reading and writing data on DVD±R/±RW, DVDRAM formats. It is a power saving drive and allows you to permanently delete the data on rewritable discs. This provides you with flexibility and efficiency in terms of multimedia data storage and sharing.<br></div>','Asus 24x DVD-RW main.png',NULL,'2021-11-08 21:13:14.374000',_binary '',_binary '',12,19.99,0,7,6,2,1.5,40,25,3,1),(90,'LG WH16NS40 Super Multi Blue Internal SATA 16x Blu-ray Disc Rewriter','LG-WH16NS40-Super-Multi-Blue-Internal-SATA-16x-Blu-ray-Disc-Rewriter','<div>Blu-Ray Disc, DVD and CD Family Read/Write Compatible, Write and Read Quad, Triple, Double Layer BD-R Discs<br></div>','<div><div>Drive type Internal 16X Blu-ray Disc Rewriter, M-DISC Support. Access time : BD-ROM is 180 ms typ</div><div>Interface: SATA (SATA 1.1a), Buffer Memory: 4 MB</div><div>Operating System - Windows XP, Windows Vista, Windows 7, Windows 8</div><div>Blu-Ray Disc, DVD and CD Family Read/Write Compatible, Write and Read Quad, Triple, Double Layer BD-R Discs</div><div>Sustained Rate: BD-ROM: 575.44 Mb/s (16x) max, DVD-ROM: 22.16 Mb/s (16x) max, CD-ROM: 7,200 Kb/s (48x) max</div></div>','LG WH16NS40 main.png','2020-10-04 10:32:50.000000','2020-10-04 10:32:50.000000',_binary '',_binary '',75,87.04,23,5,4,3,0.8,22,25,4,1),(91,'LG Electronics 14x SATA Blu-ray Internal Rewriter without Software, Black (WH14NS40)','LG-Electronics-14x-SATA-Blu-ray-Internal-Rewriter-without-Software,-Black-(WH14NS40)','<div><ul><li>Max 14x BD-R Writing Speed.</li><li>Supports BDXL (128GB) Discs.</li><li>3D Blu-ray Title Playback & M-Disc Support.</li><li>SATA Interface.</li></ul></div>','<div><div>Drive Type: Super-Multi Internal SATA Blu-ray Disc Rewriter</div><div>BD-R SL/DL: 14X/12XDVD-R SL/DL: 16X/8XDVD+R SL/DL: 16X/8X</div><div>CD-RW: 24X</div><div>Buffer Memory: 4MB</div><div>Operating System: Windows XP, Windows Vista, Windows 7</div></div>','LG Bluray main.png','2020-10-04 10:34:45.000000','2020-10-04 10:34:45.000000',_binary '',_binary '',49,57.94,0,5,4,3,1,22,25,4,1),(92,'ASUS Rog Thor 1200 Certified 1200W Fully-Modular RGB Power Supply with LiveDash Oled Panel','ASUS-Rog-Thor-1200-Certified-1200W-Fully-Modular-RGB-Power-Supply-with-LiveDash-Oled-Panel','<div><ul><li>Series: ROG-THOR-1200P</li><li><span style=\"font-size: 1rem;\">Output Wattage: 1200 Watts</span></li></ul></div>','<div><div>80+ platinum certification for energy efficiency, built with 100 % Japanese capacitors for stability and durability</div><div>0db cooling with dustproof ip5x wing blade fans and integrated RGB heatsinks for cooler operation</div><div>Oled power display: Real time power draw monitoring with oled power display</div><div>Aura sync addressable RGB lighting features a nearly endless spectrum of colors with the ability to synchronize effects across an ever expanding ecosystem of aura sync enabled products</div><div>AC input range:100 to 240V AC</div></div>','Asus Rog Thor 1200 main.png','2020-10-04 10:37:34.000000','2020-10-04 10:37:34.000000',_binary '',_binary '',289,319.99,0,5,4,3,0.95,40,26,0,0),(93,'Corsair SF Series, SF600, 600 Watt, Fully Modular Power Supply, 80+ Gold Certified','Corsair-SF-Series,-SF600,-600-Watt,-Fully-Modular-Power-Supply,-80+-Gold-Certified','<div><ul><li><span style=\"font-size: 1rem;\">Output Wattage: 600 Watts</span></li><li>Type of product: SFX12V</li><li>Power Supply Design: Full Modular</li><li>Item Dimensions LxWxH: 4.9 x 2.5 x 3.9 inches</li><li>Item Weight: 1 Pounds</li></ul></div>','<div><div>SFX Form Factor: High end performance in a small form factor. ATX12V Vversion: v2.4. Ability to toggle single multiple 12V rails: no</div><div>80 PLUS Gold certified: High efficiency operation for less excess heat and lower operating costs. Continuous output rated temperature is 40°C</div><div>Fully Modular: Make your builds and upgrades easy, with clean, great-looking results</div><div>100% Japanese 105 electrolytic capacitors: Premium internal components ensure solid power delivery andlong term reliability</div><div>Zero RPM Fan Mode: Virtually silent operation at low and medium loads. MTBF hours-100,000 hours</div><div>Seven year warranty: Your guarantee of reliable operation that will last across several system builds</div></div>','Corsair SF600 main.png','2020-10-04 10:41:54.000000','2020-10-04 10:41:54.000000',_binary '',_binary '',105,122.31,0,3,1.5,1,0.4,47,26,0,0),(94,'Thermaltake Smart 500W 80+ White Certified PSU, Continuous Power with 120mm Ultra Quiet Cooling Fan, ATX 12V V2.3/EPS 12V Active PFC Power Supply PS-SPD-0500NPCWUS-W','Thermaltake-Smart-500W-80-White-Certified-PSU','<div><ul><li>Series: TMT-PSSPD0500NPCWUSW</li><li>Brand: Thermaltake</li><li>Connector Type: 6_plus_2_pin_pci_e</li><li>Output Wattage: 500 Watts</li><li>Type of product: ATX12V / EPS12V</li><li>Wattage: 500</li><li>Cooling Type: Air</li></ul></div>','<div><div>Delivers 500 Watt Continuous output @ +40 degree. Compliance with Intel ATX 12 Volt 2.31 & EPS 12V 2.92 standards</div><div>80 PLUS Certified, 80percentage efficiency under typical load</div><div>Supports (2) PCI E 6+2pin Connectors. Active (PFC) Power Factor Correction, MTBF: 100,000 hours</div><div>Industry Grade Protections: (OPP) Over Power Protection, (OVP) Over Voltage Protection, (SCP) Short Circuit Protection</div><div>High Quality Components</div><div>Equipped with a powerful +12 Volt rail, superior performance under all types of system loading</div><div>5 Year Warranty</div></div>','Thermaltake 500W main.png','2020-10-04 10:50:30.000000','2020-10-04 10:51:30.000000',_binary '',_binary '',39,47.99,0,4,3,2,1.2,48,26,0,0),(95,'Western Digital 500GB WD Blue 3D NAND Internal PC SSD - SATA III 6 Gb/s, 2.5\"/7mm, Up to 560 MB/s - WDS500G2B0A','Western-Digital-500GB-WD-Blue-3D-NAND-Internal-PC-SSD','<div><ul><li>Compatible Devices: Mac, PC</li><li>Brand: Western Digital</li><li>Digital Storage Capacity: 560 MB</li><li>Hardware Interface: SATA 6.0 Gb/s</li><li>Type of product: 2.5-inch</li></ul></div>','<div><div>Sequential read speeds up to 560MB/s and sequential write speeds up to 530MB/seconds; As used for transfer rate or interface, megabyte per second (MB/s) = one million bytes per second and gigabit per second (Gb/s) = one billion bits per second</div><div>An industryleading 1.75M hrs mean time to failure (MTTF) and up to 500 TBs written (TBW) for enhanced reliability; MTTF based on internal testing using Telcordia stress part testing; TBW calculated using Jedec client workload (JESD219)</div><div>WD F.I.T. Lab certification for compatibility with a wide range of computers</div><div>5 year manufacturer\'s limited warranty</div><div>Free downloadable software to monitor the status of your drive and clone a drive, or backup your data</div><div>An active power draw up to 25% lower than previous generations of WD Blue SSD</div></div>','Western Digital 500GB SSD main.png','2020-10-04 10:54:32.000000','2021-01-09 16:03:23.000000',_binary '',_binary '',50,99.99,40,4,3,1,1,6,27,5,1),(96,'Kingston 240GB A400 SATA 3 2.5\" Internal SSD SA400S37/240G - HDD Replacement for Increase Performance','Kingston-240GB-A400-SATA-3-2.5','<div><ul><li><span style=\"font-size: 1rem;\">Digital Storage Capacity: 240 GB</span></li><li>Hardware Interface: SATA 3.0 Gb/s</li><li>Type of product: 2.5-inch</li></ul></div>','<div><div>Incredible speeds plus rock-solid reliability - Kingston\'s A400 solid-state drive dramatically improves the responsiveness of your existing system with incredible boot, loading and file transfer times compared to mechanical hard drives. Powered by a latest gen controller for read and write speeds up to 500MB/s and 450MB/s, this SSD is 10x faster than a traditional hard drive for higher performance, ultra-responsive multi-tasking and an overall faster system. Also more reliable and durable than a hard drive, A400 is built with Flash memory. There are no moving parts, making it less likely to fail than a mechanical hard drive. It\'s also cooler and quieter, and its shock and vibration resistance makes it ideal for notebooks and other mobile computing devices. A400 is available in multiple capacities from 120GB-480GB to give you all the space you need for applications, videos, photos and other important documents. You can also replace your hard drive or a smaller SSD with a drive big enough to hold all your files. Backwards compatibility to SATA Rev. 2.0 (3Gb/s) Product contains drive only; cloning software not included.</div><div><br></div></div>','Kingston 240GB SSD main.png','2020-10-04 11:02:14.000000','2020-10-04 11:02:21.000000',_binary '',_binary '',27,34.99,0,3,1.5,1,0.35,49,27,0,0),(97,'Asus Xonar AE Sound Board','Asus-Xonar-AE-Sound-Board','<div><ul><li>Full Product Specifications: Click to view</li><li>Audio Processor Manufacturer: C-Media</li><li>Audio Processor Model: 6632AE</li><li>Host Interface: PCI Express</li><li>Signal to Noise Ratio (SNR): 110 dB</li></ul></div>','<div>Specifications Mfr Part Number: XONAR AE Features: 192kHz/24-bit Hi-Res audio and 7. 1-channel, 150ohm headphone amp High-quality ESS DAC with 110dB signal-to-noise ratio (SNR) Exclusive EMI back plate provides noise shielding for exceptionally clear audio Sonic Studio enables full audio control via an intuitive, one-page interface Perfect Voice technology eliminates background noise for clear in-game communication Audio Interface: PCI Express Audio Performance: Output Signal-to-Noise Ratio (A-Weighted): 110dB (Front-out), 108 dB (Headphone-out) Input Signal-to-Noise Ratio (A-Weighted): 103 dB Output THD+N at 1kHz (Front-out): <0. 00158% (-96dB) Input THD+N at 1kHz: <0. 0022% (-93dB) Frequency Response (-3dB, 24-bit/192kHz input): 10Hz to 65KHz Chipset: Audio Processor: C-Media USB2. 0 6632AE High-Definition Sound Processor (Max 192KHz/24bit) Digital-to-analog Converter(DAC)‹: ESS ES9023P (112dB DNR, Max. 192KHz/24bit), Cirrus Logic CS4245 (104dB DNR, Max. 192KHz/24bit), Cirrus Logic CS4361(103dB DNR, Max. 192KHz/24bit) Sample Rate and Resolution: Analog Playback Sample Rate and Resolution: 44. 1K/ 48K/ 88. 2K/ 96K/ 176. 4K/ 192KHz@ 16/24bit Analog Recording Sample Rate and Resolution: 44. 1K/ 48K/ 88. 2K/ 96KHz @ 16/24bit S/PDIF Digital Output: 44. 1K/ 48K/ 88. 2K/ 96K/ 176. 4K/ 192KHz@ 16/24bit ASIO 2. 2 Driver Support : 44. 1K/ 48K/ 96K/ 192KHz @ 24/32bit Connectivity: Analog Output: 5x 3. 5mm jack(1/8\") (Headphone out / Front out/ Side out/ Center-Subwoofer out/ Rear out) Analog Input: 1x 3. 5mmjack (1/8\") (Line-in/ Mic-in combo) Digital: 1x S/PDIF out (1 x Optical (Toslink)) Special Features: Sonic Studio Operating System: Windows 10/ 8. 1/ 7 ( 32-bit/ 64-bit) Accessories: ‹ 1xS/PDIF optical adaptor 1xDriver CD 1xQuick start guide<br></div>','Xonar main.png','2020-10-04 13:26:06.000000','2020-10-04 13:26:06.000000',_binary '',_binary '',62,79.36,0,3,2,1.2,0.6,40,28,0,0),(98,'Creative Sound Blaster Audigy FX PCIe 5.1 Sound Card with High Performance Headphone Amp','Creative-Sound-Blaster-Audigy-FX-PCIe-5.1-Sound-Card-with-High-Performance-Headphone-Amp','<div><ul><li><span style=\"font-size: 1rem;\">Hardware Interface: PCIE x 1</span></li><li>Audio Output Mode: 5.1</li><li>Hardware Platform: Headphones, PC</li><li>Surround Sound Channel Configuration 5.1</li><li>Sample Rate: 192 KHz</li></ul></div>','<div><div>Easily converts the PC into a cinematic entertainment system by providing a compelling 5.1 surround sound</div><div>Advanced Audio Processing with SBX Pro Studio, a suite of Sound Blaster audio processing technologies that let you bring out the best in your audio</div><div>Includes the Sound Blaster Audigy Fx Control Panel, PC software that puts you in full control of the SBX Pro Studio suite of technologies</div><div>600 ohm headphone amp for high performance, studio grade monitoring</div><div>106 SNR and 24-bit 192kHz DAC (Playback) and 96kHz ADC (Recording)</div></div>','Sound Blaster main.png','2020-10-04 13:31:25.000000','2021-01-09 11:36:26.000000',_binary '',_binary '',37,45.01,0,6,5,3,0.7,50,28,0,0),(99,'Corsair Vengeance LPX 16GB (2x8GB) DDR4 DRAM 3200MHz C16 Desktop Memory Kit - Black','Corsair-Vengeance-LPX-16GB-(2x8GB)-DDR4-DRAM-3200MHz-C16-Desktop-Memory-Kit---Black','<div><ul><li>Capacity: 16 GB</li><li>Memory Speed: 3200 MHz</li><li>RAM Type: DDR4 SDRAM</li></ul></div>','<div><div>Vengeance LPX memory is designed for high performance overclocking; The heat spreader is made of pure aluminum for faster heat dissipation, and the eight layer PCB helps manage heat and provides superior overclocking headroom</div><div>Compatible with Intel 100 Series, Intel 200 series, Intel 300 series, Intel X299,AMD 300 Series, AMD 400 Series</div><div>Compatibility tested across 100 series motherboards for reliably fast performance</div><div>XMP 2.0 support for trouble free, automatic overclocking. Heat Spreader: Anodized Aluminum</div><div>SPD Speed: 2133MHz; Package Memory Pin:288; Compatibility : Intel 100 Series, Intel 200 Series, Intel 300 Series, Intel X299, AMD 300 Series, AMD 400 Series, AMD X570</div></div>','Corsair 16GB main.png','2020-10-04 13:34:00.000000','2021-01-12 12:16:21.000000',_binary '',_binary '',54,79.99,18,6.5,4,0.5,0.22,47,29,3.5,2),(100,'Crucial 8GB Single DDR4 2400 MT/S (PC4-19200) SR x8 SODIMM 260-Pin Memory - CT8G4SFS824A','Crucial-8GB-Single-DDR4-2400','<div><ul><li>Capacity: 8 GB</li><li>Memory Speed: 2400 MHz</li><li>RAM Memory Technology: DDR4</li></ul></div>','<div><div>Speeds up to 3200 MT/s and faster data rates are expected to be available as DDR4 technology matures</div><div>Increase bandwidth by up to 30%</div><div>Reduce power consumption by up to 40% and extend battery life</div><div>Faster burst access speeds for improved sequential data throughput</div><div>Optimized for next generation processors and platforms</div></div>','Crucial 8GB DDR main.png','2020-10-04 13:37:59.000000','2021-01-09 11:09:01.000000',_binary '',_binary '',22,29.95,0,2.85,1.2,0.25,0.08,51,29,0,0),(101,'HyperX Fury 16GB 2666MHz DDR4 CL16 DIMM (Kit of 2) 1Rx8 Black XMP Desktop Memory HX426C16FB3K2/16','HyperX-Fury-16GB-2666MHz-DDR4-CL16-DIMM','<div><div>Updated low-profile heat spreader design</div><div>Cost-efficient, high-performance DDR4 upgrade</div><div>Intel XMP-ready profiles optimized for Intel’s latest chipsets</div><div>Available in fast speeds up to 3466 MHz</div><div>Plug N Play functionality at 2400MHz and 2666MHz</div></div>','<div>HyperX FURY DDR4 features an updated heat spreader and speeds up to 3466MHz for a stylish performance boost. FURY DDR4’s XMP-ready and available in 2400MHz–3466MHz speeds, CL15–16 latencies, 8GB and 16GB single module capacities, and 16GB–64GB kit capacities. It features Plug N Play automatic overclocking at 2400MHz and 2666MHz speeds and is compatible with the latest Intel and AMD CPUs. FURY DDR4 RGB’s backed by a lifetime, a worry-free, cost-effective upgrade. HyperX PnP memory will run in most DDR4 systems up to the speed allowed by the manufacturer\'s system BIOS. PnP cannot increase the system memory speed faster than is allowed by the manufacturer\'s BIOS. AMD Ryzen systems will boot at the JEDEC default speed/latency with FURY. In order to enable the factory overclock speed and latency, Profile 1 must be selected in the BIOS.<br></div>','HyperX 16GB main.png','2020-10-04 13:42:34.000000','2021-01-26 18:10:58.000000',_binary '',_binary '',52,71.99,0,5.5,1.5,0.5,0.15,52,29,5,1),(102,'Asus AM4 TUF Gaming X570-Plus (Wi-Fi) ATX motherboard','Asus-AM4-TUF-Gaming-X570-Plus-(Wi-Fi)-ATX-motherboard','<div>PCIe 4.0, dual M.2, 12+2 with Dr. MOS power stage, HDMI, DP, SATA 6Gb/s, USB 3.2 Gen 2 and Aura Sync RGB lighting<br></div>','<div><div>AMD AM4 socket: Ready for 2nd and 3rd Gen AMD Ryzen processors to maximize connectivity and speed with up to two M. 2 Drives, USB 3. 2 Gen2 and AMD StoreMI</div><div>Enhanced power solution: military-grade TUF components, ProCool socket and Digi+ VRM for maximum durability</div><div>Comprehensive Cooling: Active PCH heatsink, VRM heatsink, M. 2 heatsink, hybrid fan headers and Fan Xpert</div><div>Next-gen connectivity: Dual PCIe 4. 0 m. 2 and USB 3. 2 Gen 2 Type-A/Type-C</div><div>Gaming Networking: Exclusive Realtek L8200A Gigabit Ethernet, Intel 2x2 802. 11ac Wi-Fi with MU-MIMO support, Bluetooth 5. 0, TUF LANGuard and technology</div></div>','Asus AM4 TUF main.png','2020-10-04 13:45:22.000000','2021-01-26 18:08:24.000000',_binary '',_binary '',145,188.35,0,14,11,3,3,40,30,3,1),(103,'Asus Prime Z390-A Motherboard LGA1151','Asus-Prime-Z390-A-Motherboard-LGA1151','<div>(Intel 8th and 9th Gen) ATX DDR4 DP HDMI M.2 USB 3.1 Gen2 Gigabit LAN<br></div>','<div><div>Designed for 9th and 8th generation Intel Core processors to maximize connectivity and speed with M. 2, USB 3. 1 Gen2 and ASUS Optimum II for better DRAM overclocking stability</div><div>Revamped 5-Way Optimization that has the intelligence to overclock a CPU based on smart prediction and thermal telemetry</div><div>5X Protection III Hardware-level safeguards with Safe Slot Core, LAN Guard, Over voltage Protection provide longevity, reliability. FanXpert 4 delivers advanced fan control for dynamic system cooling</div><div>Patent-pending Safe Slot Core fortified PCIe slots prevent damage caused by heavyweight GPUs</div><div>8-channel HD Gaming Audio featuring Realtek ALC887 high definition audio codec</div></div>','Asus Prime main.png','2020-10-04 13:50:45.000000','2021-01-16 17:46:15.000000',_binary '',_binary '',123,179.99,6,13.2,3,11,2.5,40,30,4,1),(104,'Gigabyte B450M DS3H Motherboard','Gigabyte-B450M-DS3H-Motherboard','<div>(AMD Ryzen AM4/Micro ATX/M.2/HMDI/DVI/USB 3.1/DDR4/Motherboard)<br></div>','<div><div>Supports AMD 1st & 2nd generation Ryzen/ Ryzen with Radeon Vega graphics processors</div><div>Dual channel non-ECC unbuffered DDR4, 4 DIMMs</div><div>HDMI, DVI D ports for multiple display</div><div>PCIe Gen3 M.2 NVMe</div><div>High quality audio capacitors and audio noise guard</div><div>RGB fusion supports RGB LED strips in 7 colors</div><div>Realtek Gigabit LAN</div></div>','Gigabyte B450M main.png','2020-10-04 13:55:15.000000','2021-01-10 17:34:47.000000',_binary '',_binary '',60,74.99,0,16,14,5,3,53,30,0,0),(105,'TP-Link WiFi 6 AX3000 PCIe WiFi Card','TP-Link-WiFi-6-AX3000-PCIe-WiFi-Card','<div>Up to 2400Mbps | Bluetooth 5.0 | 802.11AX Dual Band Wireless Adapter with MU-MIMO,OFDMA,Ultra-Low Latency | Supports Windows 10 (64bit) only (Archer TX3000E)<br></div>','<div><div>Wi-Fi 6 TECHNOLOGY POWERED BY INTEL The latest Wi-Fi 6 standard gives you incredible speed ultra-low latency and uninterrupted connectivity with OFDMA and MU-MIMO technology Utilizing next-generation Wi-Fi 6 technology Archer TX3000E is designed to excel in even the busiest of networks for next-level entertainment</div><div>NEXT-GEN SPEEDS UP TO 2.4Gbps Reach incredible speeds up to 2.4 Gbps (2402 Mbps on 5 GHz or 574 Mbps on 2 4 GHz) - Supports Windows 10 (64bit) - Driver installation required via Website or included CD</div><div>MINIMIZED LAG FOR YOUR PC Revolutionary OFDMA reduces lag so you can enjoy ultra-responsive real-time gaming or an immersive VR experience</div><div>Broader Coverage Two multi-directional and high-performance antennas with a magnetized base extends your existing Wi-Fi reception capabilities. Place the magnetized antenna base anywhere on your desktop to find the optimal location for signal reception. Easily install with low profile bracket.</div><div>BLUETOOTH 5 0 FOR GREATER SPEEDS AND COVERAGE Archer TX3000E is equipped with the latest Bluetooth 5 0 Technology achieving 2x faster speeds and 4x broader coverage than Bluetooth 4 2 Connect as many devices as you want including game controllers headphones and keyboards for the ultimate setup</div><div>If you do not have a CD Rom or having difficulty with the CD please visit our homepage and search Archer TX3000E Driver is available for download on the support page for Archer TX3000E</div></div>','TPLink AX3000 main.png','2020-10-04 13:59:58.000000','2020-10-04 13:59:58.000000',_binary '',_binary '',38,49.99,0,5,4,2,1,54,31,4,1),(106,'TP-Link AC1200 PCIe WiFi Card for PC','TP-Link-AC1200-PCIe-WiFi-Card-for-PC','<div>Bluetooth 4.2 |Dual Band Wireless Network Card (2.4Ghz / 5Ghz) | for Gaming, Browsing, Streaming etc.- Supports Windows 10, 8.1, 8 & 7 (32/64-bit) - (Archer T5E)<br></div>','<div><div>[Super-Fast Speed] – Make full use of your network with AC1200 WiFi speeds (867 Mbps on the 5GHz band and 300 Mbps on the 2.4GHz band)</div><div>[Bluetooth 4.2] – Achieve 2 5× faster speed and 10× more packet capacity than Bluetooth 4.0</div><div>[Broad Wireless Range] – Connect to your WiFi from further away with two external high-gain antennas ensuring greater range and enhanced stability</div><div>[Easy Installation] – Plug the adapter into an available PCI-E slot to upgrade your desktop with Low profile bracket</div><div>[Windows Compatibility] - Supports Windows 10, 8.1, 8 and 7 (32/64-bit)</div></div>','TPLink AC1200 main.png','2020-10-04 14:01:19.000000','2021-01-12 11:42:18.000000',_binary '',_binary '',23,39.99,0,5,4,2,1,54,31,5,1);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `questions`
--
DROP TABLE IF EXISTS `questions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `questions` (
`id` int NOT NULL AUTO_INCREMENT,
`answer` varchar(255) DEFAULT NULL,
`answer_time` datetime(6) DEFAULT NULL,
`approved` bit(1) NOT NULL,
`ask_time` datetime(6) DEFAULT NULL,
`question` varchar(255) DEFAULT NULL,
`votes` int NOT NULL,
`answerer_id` int DEFAULT NULL,
`asker_id` int DEFAULT NULL,
`product_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKm993xs48yltdhr0qws3s1mpdn` (`answerer_id`),
KEY `FKfujdy3kc9esehjrifstaahivi` (`asker_id`),
KEY `FKdnt39hlm1bcye9ivenccipd5s` (`product_id`),
CONSTRAINT `FKdnt39hlm1bcye9ivenccipd5s` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
CONSTRAINT `FKfujdy3kc9esehjrifstaahivi` FOREIGN KEY (`asker_id`) REFERENCES `customers` (`id`),
CONSTRAINT `FKm993xs48yltdhr0qws3s1mpdn` FOREIGN KEY (`answerer_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `questions`
--
LOCK TABLES `questions` WRITE;
/*!40000 ALTER TABLE `questions` DISABLE KEYS */;
INSERT INTO `questions` VALUES (1,'The Country of Origin is China. Lenovo has manufacturing and assembly facilities all over the world. The actual location of manufacture/assembly of each Lenovo computer is printed on the outside of the box the computer ships in.','2022-03-09 18:44:53.755000',_binary '','2022-03-09 12:05:08.537000','Is this made in China? If not, where?',-1,21,5,59),(2,'You could do light gaming with it to play casual games or no-graphic intensive games. But it\'s not going to be a killer gaming machine.','2022-03-09 12:40:50.240000',_binary '','2022-03-09 12:18:33.566000','is this computer any good for gaming?',2,19,1,59),(3,NULL,NULL,_binary '','2022-03-09 12:24:19.469000','Does it have bluetooth capabilities for wireless headphones?',4,NULL,3,59),(4,NULL,NULL,_binary '','2022-03-09 12:26:16.367000','Is this the best 4K camera for now? Also, why is it cheap?',0,NULL,5,1),(5,NULL,NULL,_binary '','2022-03-09 12:33:39.279000','Can this run the 3d modeling program blender? And if so, how well does it run it?',0,NULL,12,76),(6,NULL,NULL,_binary '','2022-03-09 12:35:26.822000','Would i have any problem installing window 7 professional on this laptop? yes, that\'s not supported by ms anymore but i know what i need.',0,NULL,11,76),(7,NULL,NULL,_binary '','2022-03-09 12:44:10.965000','Can you send me this item to test? in exchange I will leave a great review!',-1,NULL,2,59),(8,NULL,NULL,_binary '','2022-03-09 12:50:00.697000','What is the warranty policy for this product?',1,NULL,1,99),(9,NULL,NULL,_binary '','2022-03-09 12:51:22.480000','What is the resolution of the webcam camera?',2,NULL,20,59),(10,NULL,NULL,_binary '','2022-03-09 12:52:34.823000','What software does it come with?',0,NULL,18,59),(11,NULL,NULL,_binary '','2022-03-09 12:53:37.824000','Does it have an internal microphone?',2,NULL,17,59),(12,'The Lenovo IdeaCentre 3 24 All-in-One system, model number F0EW005TUS stands 17.61 inches tall with the stand installed.','2022-03-09 18:47:49.911000',_binary '','2022-03-09 18:25:42.859000','What is the final height (including stand)?',2,19,6,59),(13,'No. The Lenovo IdeaCentre 3 24 All-in-One system, model number F0EW005TUS, does not have an HDMI-In port for an external video source.','2022-03-09 18:48:53.126000',_binary '','2022-03-09 18:27:02.482000','Can I plug my gaming console and use as monitor?',0,19,12,59),(14,'No. The Lenovo IdeaCentre 3 24 All-in-One system, model number F0EW005TUS, does not have a touchscreen.','2022-03-09 18:49:23.904000',_binary '','2022-03-09 18:28:01.321000','Is this compute touchscreen?',-1,19,7,59),(15,NULL,NULL,_binary '','2022-03-09 18:29:45.481000','How many USB ports does this computer have?',-1,NULL,5,59),(16,NULL,NULL,_binary '','2022-03-09 18:30:41.859000','Is this product available in US?',0,NULL,5,48),(17,'While this part has some similar specs, it is not the recommended upgrade for the new 2017 iMac 5K 27” model. We recommend using the Mac specific parts as those are the parts that are tested, qualified, and guaranteed compatible. ','2022-03-10 13:04:15.147000',_binary '','2022-03-09 18:35:14.764000','Is this compatible with the new imac 5k 27\" 2017?',1,15,5,100),(18,'Yes. It should work just fine in any laptop that accepts 2.5\" SATA drives. For MacBook Pros, that means machines through the mid-2012 model. Don\'t forget to move your Torx screws over to the new drive!','2022-03-09 18:54:04.030000',_binary '','2022-03-09 18:39:00.893000','Is this compatible with an early-2011 MacBook Pro?',0,21,5,8),(20,'Yes the ILCE7M3 has the Italian language option.','2022-03-09 23:04:31.629000',_binary '','2022-03-09 23:03:53.761000','It has Italian menu?',0,1,7,11),(21,'Sony commitment to customer satisfaction is our top priority. You cannot, the LCD can tilt facing up and facing down.','2022-03-09 23:06:12.593000',_binary '','2022-03-09 23:05:41.134000','Can you turn the LCD panel to face front for selfies?',2,19,17,11),(22,'This is a generic SATA drive and is compatible with ALL versions of Windows that support SATA.','2022-03-10 15:58:45.672000',_binary '','2022-03-10 15:56:35.297000','Is this drive compatible with Windows 10?',0,15,18,8),(23,'Up to 256 GB.','2022-03-10 16:04:41.964000',_binary '','2022-03-10 16:03:38.008000','What\'s the largest size memory card that can used with this model?',2,21,4,1);
/*!40000 ALTER TABLE `questions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `questions_votes`
--
DROP TABLE IF EXISTS `questions_votes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `questions_votes` (
`id` int NOT NULL AUTO_INCREMENT,
`votes` int NOT NULL,
`customer_id` int DEFAULT NULL,
`question_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK2er6vquw4ya7cl6ovtcx9vvm9` (`customer_id`),
KEY `FKehqtpwaad8w20qfxc8aqj0uiy` (`question_id`),
CONSTRAINT `FK2er6vquw4ya7cl6ovtcx9vvm9` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
CONSTRAINT `FKehqtpwaad8w20qfxc8aqj0uiy` FOREIGN KEY (`question_id`) REFERENCES `questions` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `questions_votes`
--
LOCK TABLES `questions_votes` WRITE;
/*!40000 ALTER TABLE `questions_votes` DISABLE KEYS */;
INSERT INTO `questions_votes` VALUES (1,-1,5,1),(2,1,5,2),(3,1,5,3),(4,1,5,17),(5,1,5,12),(6,1,5,13),(7,-1,5,15),(8,-1,5,14),(9,1,7,12),(10,1,7,3),(11,-1,7,7),(12,-1,7,13),(13,-1,7,14),(16,1,1,8),(17,1,1,9),(18,-1,1,1),(19,1,1,10),(21,-1,17,20),(22,1,17,21),(23,1,17,3),(24,1,17,2),(25,1,7,21),(26,1,7,20),(27,1,7,1),(28,1,7,10),(29,1,7,11),(32,1,4,23),(33,-1,4,4),(34,1,4,3),(35,-1,4,10),(36,1,4,14),(37,1,18,23),(38,1,18,4),(39,1,5,9),(40,-1,5,10),(41,1,5,11);
/*!40000 ALTER TABLE `questions_votes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `reviews`
--
DROP TABLE IF EXISTS `reviews`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reviews` (
`id` int NOT NULL AUTO_INCREMENT,
`comment` varchar(300) NOT NULL,
`headline` varchar(128) NOT NULL,
`rating` int NOT NULL,
`review_time` datetime(6) NOT NULL,
`customer_id` int DEFAULT NULL,
`product_id` int DEFAULT NULL,
`votes` int NOT NULL,
PRIMARY KEY (`id`),
KEY `FK4sm0k8kw740iyuex3vwwv1etu` (`customer_id`),
KEY `FKpl51cejpw4gy5swfar8br9ngi` (`product_id`),
CONSTRAINT `FK4sm0k8kw740iyuex3vwwv1etu` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
CONSTRAINT `FKpl51cejpw4gy5swfar8br9ngi` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `reviews`
--
LOCK TABLES `reviews` WRITE;
/*!40000 ALTER TABLE `reviews` DISABLE KEYS */;
INSERT INTO `reviews` VALUES (4,'Nice to have: wireless remote, iOS app, GPS...','Perfect for my needs. Loving it! ',5,'2021-11-03 11:33:45.810000',5,1,0),(5,'I decided to give it a try, and I am VERY pleased with it...',' Great Lightning Cable',5,'2021-10-03 11:33:45.810000',5,45,0),(6,'This is the 3rd time I have ordered these. They don’t last that long, but they are cheap and my son has a tendency to leave them at his friends houses, so I am not willing to spend more to get better quality cables.','Nice looking and cheap',3,'2021-10-23 11:33:45.810000',8,45,0),(7,'At the first view Woa! That\'s a nice tripod.\r\nUnfolding it, cranking that handle to see the total height. Damn it\'s a real 6\' tall tripod! Really nice quality.','Not too light but well made and strong!',4,'2021-09-18 11:33:45.810000',10,23,0),(8,'This is a very good quality tripod for most uses. Another reviewers noted it was not a true photography tripod, and was intended instead for tools.','Good value if you value your time. Perfect balance between solidity and weight.',5,'2021-08-08 11:33:45.810000',1,23,0),(10,'I have always had good luck with Sandisk cards. These fit the bill for a medium capacity card for cameras and Raspberry Pi computers. I have now purchased two sets from them.','Good card and a good value',5,'2021-10-20 11:33:45.810000',15,51,0),(11,'Love SanDisk products. Only reason I gave 4 stars is that both cards weren\'t easily recognized by my PC for some reason. I had to analyse and then format after half a dozen times of inserting / removing.','Reliable memory cards',4,'2021-09-30 11:33:45.810000',24,51,0),(12,'I\'m changing my 2 star to four, left a 2 star because the tilt could not hold weight of laser. Decided to take it apart again when I had more time to mess with it, started looking at it and realized the pan/tilt handle is also the lock for the tilt, just have to twist it','Not bad',4,'2021-04-17 11:33:45.810000',5,23,0),(13,'arrived sooner than expected, very excited about that!','happy with my purchase',5,'2021-04-08 11:33:45.810000',5,39,0),(14,'Like many other reviewers have stated, this drive arrived in an Amazon box with absolutely no other packaging or bubble wrap. I ultimately decided on a different case for my PC build which doesn\'t even have space for a DVD/CD drive/burner...','Packaging should be much better',3,'2021-04-21 11:33:45.810000',5,89,0),(15,'It\'s a beauty, especially for the price. I linked it to my phone and it honestly seems more like a phone than a computer. Very nice quality and I definitely recommend this!','Great laptop-should buy!',4,'2021-11-01 11:33:45.810000',5,72,0),(16,'Like many of the other reviewers pointed out, this card is fraudulent. \"U3\" and \"A2\" my ass! The read/write speeds are nowhere near the advertised values. I\'m getting 74/66 MB/s which is worse than my Samsung 128GB U1 microSD. ','Lies about speed',1,'2021-10-20 11:33:45.810000',5,50,0),(17,'Quick and easy to setup and use, but issues arise in a tight space such as the guest bathroom I just remodeled. Probably better served getting the telescoping pole mount for a room remodel as it will stay out from under your feet and you can use it more easily over various heights floor to ceiling.','Solid Tripod',4,'2021-05-18 11:33:45.810000',15,23,0),(18,'The product boasts about how many bends, ignore that because it won’t have the chance to bend enough before the metal coated lightning cable end wears off.','Cheap equals cheap. They are short term use before they fail.',3,'2021-03-13 11:33:45.810000',15,45,0),(19,'I freely admit, I go through charging cables like nobody\'s business. When my boyfriend bought me a new iPhone as an early Christmas present, I needed extra lightning cables...one for the car, and a couple more for around the house.','Wow! These are some seriously great cables!',5,'2021-04-17 11:33:45.810000',11,45,0),(20,'I found the design of the cord to be great and tangle free. I also love the red. I noticed some of the cords didn’t charge as fast as others. However seemed normal when plugged in car or computer.','Decent product',4,'2021-02-02 11:33:45.810000',9,45,0),(21,'I am pleased with this purchase. The charging cords appear sturdy. Feel sturdy. I had no problems with charging my phone. The red color cords was a plus.','Sturdy charger',5,'2021-02-06 11:33:45.810000',25,45,0),(22,'I liked these chargers and they were pretty cheap, but you get what you pay for I guess. No visible damage or anything, just noticed at some point when the phone was on the charger it wasn\'t charging.','Chargers Randomly Stopped Working One by One',3,'2021-10-19 11:33:45.810000',33,45,0),(24,'Seems to actually work more reliably than it\'s faster brother (WH16NS40). I\'ve always had some issues watching some Blu-rays (stuttering, visual artifacts, etc..) with that other drive. The (WH14NS40) do not exhibit these same issues and burns DVDs just as fast. ','Works as expected',4,'2021-11-16 16:47:08.983000',5,91,0),(25,'Best camera on the market right now','Best camera on the market right now',5,'2021-11-16 16:50:19.416000',7,11,0),(26,'I chose this product because the description said it was a 7200 RPM drive. As you can see by the picture I have uploaded it is only a 5400 RPM drive. I would have gone with another brand had I known this. ','Not 7200 RPM',4,'2021-01-21 12:09:43.511000',4,88,0),(27,'he M50 is probably better classed as a high end point-and-shoot and while it has come nice features, it should not be used to replace a DSLR. In my case, I had to sell my 6D because of the pandemic work situation and this has been a sobering step downward. ','Nice Camera but NOT a DSLR',4,'2021-11-12 12:16:04.723000',4,1,0),(28,'I got this card for my galaxy S9. It had a very good chip installed in it before (Samsung 256G Evo Select) which I liked. But I wanted to max out my S9 both in its 400G max capacity and in the speed to record. This chip/card does record 1080p 60fps with no problems at all. ','Worked perfect in my Galaxy S9 plus and now my LG Wing.',5,'2021-11-03 12:17:55.769000',4,50,0),(29,'Loaded with 64GB of RAM and a 1TB M2 SSD, running esxi. I LOVE it. Great small form factor, doesn\'t use much energy, and whisper quiet. This is replacing and old Dell R710 which is the exact opposite; loud, hot, and power hungry.','Fantastic Device',5,'2021-11-10 13:09:26.252000',4,64,0),(30,'I buy a lot of Samsung EVO MicroSD Cards of various sizes (32GB, 64GB, 128GB, etc.) & haven\'t had any issues yet. I use them in phones, Raspberry PI projects, cameras, Nintendo Switch, chromebooks, etc.','Good MicroSD Card, Sometimes Bad SD Adapter',4,'2021-11-07 13:14:07.275000',11,49,0),(31,'This is my 3rd S6 edge through warranty. My 1st one the front glass cracked for no reason at all. My second edge battery malfunctioned. The one I currently have has a crack across the top right I have never dropped the phone or applied pressure to it in my opinion the phone front glass is no good. ','The front glass is terrible',3,'2021-11-15 13:16:28.228000',11,28,0),(32,'Everything is good but not suiting my requirement as i have a vision issue. Please help me with the returning of this model with another model as an exceptional case','Not matching my requirement',4,'2021-10-21 13:21:47.436000',11,76,0),(33,'First off the customer service is dismissive and unhelpful. Secondly, I bought two packages of these as I have four slots...like most all computers built. They are not compatible if you have four of them so essentially you will make the other slots inactive by using these.','Incompatible with itself',2,'2021-10-26 13:25:32.660000',11,99,0),(34,'This is one very shiny toy. It took a while for me to post this review because at first I was not sure if maybe it had a focus problem. After three weeks it is clear that it is operator error and learning curve. I will post some sample pics.','This is one VERY shiny object. :)',5,'2021-10-29 13:36:23.869000',17,22,0),(35,'Wow! It took me no time to install this thing and it has made my 5 year old laptop like new again! I replaced the laptop battery too, but I think it wasn\'t necessary. ','Quick install and great speed',5,'2021-11-02 13:40:14.821000',17,95,0),(36,'Drive works and performs as intended. This is my first Blu-Ray drive, so I have no comparison to note performance.','Works well (with a noted installation issue)',4,'2021-11-21 13:41:56.036000',17,90,0),(37,'I like almost everything about this camera. If it had an articulating screen for selfies or vloging it would be perfect. I wish they kept the photo timelapse feature.','Almost perfect',4,'2021-11-21 16:13:12.348000',10,11,0),(38,'Windows 10 automatically detected the cards and ran it, which is nice. It, however, kept dropping my 5G connection. The 2.4G connection was constant. After installing the drivers from the CD included, the card became more stable. ','Make sure you use the TP-Link Drivers',5,'2021-11-21 16:22:24.835000',8,106,0),(39,'I got this on sale. I\'m glad I did. It\'s already good RAM at it\'s base speed, and it\'s fantastic when you overclock it.','Some of the fastest RAM for the price',5,'2021-11-21 16:24:37.860000',8,99,-1),(40,'This is my 3rd Legion 5 laptop. I got the 1st one from Walmart with the following specs: 4600H Ryzen 5, 120HZ 250 nits screen, 256 GB SSD + 1TB HDD, and only a GTX 1650ti. My 2nd was the same but a slightly cheaper price when it was on sale from Lenovo which featured the same screen...','Great Value with a few Caveats',4,'2021-11-21 16:35:14.396000',8,71,0),(41,'Perfect $250 phone','Perfect $250 phone',5,'2021-11-21 16:54:14.406000',8,29,0),(42,'Since this is a Microsoft product, it was extremely easy to set up. With my previous computer, I had to work on two computers for about a month, before I could switch. With the Surface, it took just a few minutes! It’s fast, slick, light weight and I love it!','Fast, slick and so easy to set up',5,'2021-11-21 16:58:13.141000',28,76,0),(43,'Let\'s get this out of the way first: this is, first and foremost, an entry level mirrorless camera. It won\'t have the most functions or the highest image/build quality of the best lens out of the box, but that\'s not what I was expecting when I ordered this awesome camera.','Ideal for what I need it for!',4,'2021-11-21 17:01:47.438000',28,1,0),(44,'Product information says that batteries included (2). No battery is there. Moreover it needs 4 batteries','Not satisfied',3,'2021-11-21 17:10:48.759000',28,16,0),(45,'I had a heck of a time getting my laser to line up with this tripod. It was not very smooth when trying to adjust a minute amount - I tried all the adjustment screws to no avail. Too much this way...oops, too much the other. ','Ok, but very hard to adjust',3,'2021-11-21 17:14:01.116000',28,23,0),(46,'I have a nearly 9 year old CyberPower desktop with an Asus P6T Motherboard and wanted to eliminate a potential point of failure to eek out a little more longevity. And if I got some enhanced performance, all the better. Turns out it was a very good move.','Quick and hassle free migration from HDD to Samsung EVO 860 SSD on aging desktop',5,'2021-11-21 17:18:40.424000',28,8,0),(47,'My first impression is that the board is very stable, haven\'t had any random blue-screens. It all seems to work fine, as long as you\'re not really a super-power-user. The board does need a few pre-OS install tweaks to really be good, and there\'s a few things not to do with this board. ','Stable board, but needs a few pre-install tweaks',4,'2021-11-21 17:19:49.096000',28,103,0),(48,'The card is playing everything no problem and very quiet. The fans do not spin at all unless you are over 60 degree celsius so don\'t panic it is not a defective card it just has a 0 db mode for noise. ','Card is awesome and don\'t panic',5,'2021-11-21 17:24:43.367000',32,84,0),(49,'Just like some of the 1 and 2 star reviews states, you do get BDOS, but! with windows 10, if you let it restart itself after the bdos, it will run a diagnostic mode. Let it run and fix itself and it will boot up correctly. ','!! Before You Buy It, Expect This !!',4,'2021-11-21 17:26:12.361000',32,105,0),(50,'I was initially very satisfied with the purchase. The machine is great looking and the screen is very nice. It was the perfect balance of price and capability for my needs.','Worked Great Until Windows updated',3,'2021-11-21 17:31:45.528000',32,66,0),(51,'I just installed this in my mid-2012 MacBook Pro over the weekend. We use the 850 version in all our desktops at work for the last 3 years and they have been solid. The only drawback is the lack of software for Mac. ','Great Product Overall',4,'2021-11-21 17:34:07.928000',32,8,0),(52,'I ordered this because I know from experience that Kingston Hyperx Fury is some of the best ram out there. Way better than Corsair, don\'t let anyone tell you different. I still have my ddr3 Hyperx ram in my old pc and it\'s been going strong for over 10 years!','Hyperx Fury is the best ram you can buy.',5,'2021-11-21 17:37:01.782000',32,101,0),(53,'Despite the ads on the product page this motherboard DOES NOT have a BIOS QFlash button, which you need to update the BIOS to become compatible with the new ryzen 7 5800X series. ','Not out-of-box compatible with Ryzen 7 5800x',3,'2021-11-21 17:38:10.551000',32,102,0),(54,'There are a few annoyances with this product those being lack of thunderbolt 3, limited screen real estate coupled with big bezels and the biggest gripe of all being poor battery life compared to the competition (Hp, Dell and Lenovo).','A few gripes but overall a good product.',4,'2021-11-21 17:50:08.457000',34,76,0),(55,'I bought this camera because I wanted more performance than my iPhone without dropping a ton of money into a heavy camera that wouldn’t be practical for carrying on hikes.','Great camera for a great price.',5,'2021-11-21 17:53:25.012000',34,3,0),(56,'I am not a phone gamer. I didn\'t buy this card to get gaming speed, but to store the huge files that result from 4K or 8K recordings, to take movies with me on the road, store tons of pictures and most importantly offload my Android apps from internal storage.','Enormous capacity but Android has trouble keeping apps in the card',4,'2021-11-21 17:55:46.552000',34,50,0),(57,'This was exactly what I was looking for, very light and compact for travel and very sturdy. I used it last at the Delicate Arch during sunset on an uneven “bowl” surface and I was able to adjust the legs. It held up my 5D Mark IV with 16-35 f/4L or 24-105L attached very well. ','Compact, sturdy, functional',5,'2021-11-21 17:57:28.288000',34,24,0);
/*!40000 ALTER TABLE `reviews` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `reviews_votes`
--
DROP TABLE IF EXISTS `reviews_votes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reviews_votes` (
`id` int NOT NULL AUTO_INCREMENT,
`votes` int NOT NULL,
`customer_id` int DEFAULT NULL,
`review_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKckuygkph4k9llo624gn30lxvy` (`customer_id`),
KEY `FKosupda11xqkvo80r77evmwrey` (`review_id`),
CONSTRAINT `FKckuygkph4k9llo624gn30lxvy` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
CONSTRAINT `FKosupda11xqkvo80r77evmwrey` FOREIGN KEY (`review_id`) REFERENCES `reviews` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `reviews_votes`
--
LOCK TABLES `reviews_votes` WRITE;
/*!40000 ALTER TABLE `reviews_votes` DISABLE KEYS */;
INSERT INTO `reviews_votes` VALUES (1,-1,1,39);
/*!40000 ALTER TABLE `reviews_votes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(40) NOT NULL,
`description` varchar(150) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UKofx66keruapi6vyqpv6f2or37` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'Admin','manage everything'),(2,'Salesperson','manage product price, customers, shipping, orders and sales report'),(3,'Editor','manage categories, brands, products, articles and menus'),(4,'Shipper','view products, view orders and update order status'),(5,'Assistant','manage questions and reviews');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sections`
--
DROP TABLE IF EXISTS `sections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections` (
`id` int NOT NULL AUTO_INCREMENT,
`description` varchar(2048) NOT NULL,
`enabled` bit(1) NOT NULL,
`heading` varchar(256) NOT NULL,
`section_order` int DEFAULT NULL,
`type` enum('ALL_CATEGORIES','ARTICLE','BRAND','CATEGORY','PRODUCT','TEXT') DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UKi816mxaoddmtveofp1qjbnngf` (`heading`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sections`
--
LOCK TABLES `sections` WRITE;
/*!40000 ALTER TABLE `sections` DISABLE KEYS */;
INSERT INTO `sections` VALUES (1,'All product categories on our website',_binary '','Shopping by Categories',1,'ALL_CATEGORIES'),(2,'Most recommended products',_binary '','Featured Products',2,'PRODUCT'),(3,'best buy of the month',_binary '','Top choices',3,'BRAND'),(4,'Latest published',_binary '','Article collection',4,'ARTICLE'),(6,'<div>sáa</div>',_binary '','Featured Productsđ',5,'TEXT');
/*!40000 ALTER TABLE `sections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sections_articles`
--
DROP TABLE IF EXISTS `sections_articles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections_articles` (
`id` int NOT NULL AUTO_INCREMENT,
`article_order` int DEFAULT NULL,
`article_id` int DEFAULT NULL,
`section_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKguoivqg4rnmm8nilb12x40ygh` (`article_id`),
KEY `FKnbym8cke5rnxjm8bdi70dapl` (`section_id`),
CONSTRAINT `FKguoivqg4rnmm8nilb12x40ygh` FOREIGN KEY (`article_id`) REFERENCES `articles` (`id`),
CONSTRAINT `FKnbym8cke5rnxjm8bdi70dapl` FOREIGN KEY (`section_id`) REFERENCES `sections` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sections_articles`
--
LOCK TABLES `sections_articles` WRITE;
/*!40000 ALTER TABLE `sections_articles` DISABLE KEYS */;
INSERT INTO `sections_articles` VALUES (5,0,8,4),(6,1,11,4);
/*!40000 ALTER TABLE `sections_articles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sections_brands`
--
DROP TABLE IF EXISTS `sections_brands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections_brands` (
`id` int NOT NULL AUTO_INCREMENT,
`brand_order` int DEFAULT NULL,
`brand_id` int DEFAULT NULL,
`section_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK63hur81l4do6ck6x015gp3cuu` (`brand_id`),
KEY `FK68eeev3m314v82j0st116ftm9` (`section_id`),
CONSTRAINT `FK63hur81l4do6ck6x015gp3cuu` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`),
CONSTRAINT `FK68eeev3m314v82j0st116ftm9` FOREIGN KEY (`section_id`) REFERENCES `sections` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sections_brands`
--
LOCK TABLES `sections_brands` WRITE;
/*!40000 ALTER TABLE `sections_brands` DISABLE KEYS */;
INSERT INTO `sections_brands` VALUES (1,0,17,3),(2,1,43,3),(3,2,40,3),(4,3,28,3);
/*!40000 ALTER TABLE `sections_brands` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sections_categories`
--
DROP TABLE IF EXISTS `sections_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections_categories` (
`id` int NOT NULL AUTO_INCREMENT,
`category_order` int DEFAULT NULL,
`category_id` int DEFAULT NULL,
`section_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK4oqn5st47mm34yvnt3criccsh` (`category_id`),
KEY `FK7ivge0x7bydfh10vw3d0n837j` (`section_id`),
CONSTRAINT `FK4oqn5st47mm34yvnt3criccsh` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`),
CONSTRAINT `FK7ivge0x7bydfh10vw3d0n837j` FOREIGN KEY (`section_id`) REFERENCES `sections` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sections_categories`
--
LOCK TABLES `sections_categories` WRITE;
/*!40000 ALTER TABLE `sections_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `sections_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sections_products`
--
DROP TABLE IF EXISTS `sections_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections_products` (
`id` int NOT NULL AUTO_INCREMENT,
`product_order` int DEFAULT NULL,
`product_id` int DEFAULT NULL,
`section_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKl5lf8i896cqdnc9shitywps2l` (`product_id`),
KEY `FKjmh450o9k6x0hrmrumemucg1b` (`section_id`),
CONSTRAINT `FKjmh450o9k6x0hrmrumemucg1b` FOREIGN KEY (`section_id`) REFERENCES `sections` (`id`),
CONSTRAINT `FKl5lf8i896cqdnc9shitywps2l` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sections_products`
--
LOCK TABLES `sections_products` WRITE;
/*!40000 ALTER TABLE `sections_products` DISABLE KEYS */;
INSERT INTO `sections_products` VALUES (1,0,39,2),(2,1,38,2),(3,2,40,2),(4,3,45,2),(5,4,46,2);
/*!40000 ALTER TABLE `sections_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `settings`
--
DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
`key` varchar(128) NOT NULL,
`category` enum('CURRENCY','GENERAL','MAIL_SERVER','MAIL_TEMPLATES','PAYMENT') NOT NULL,
`value` varchar(1024) NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `settings`
--
LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES ('COPYRIGHT','GENERAL','Copyright (C) 2021 Shopme Ltd.'),('CURRENCY_ID','CURRENCY','1'),('CURRENCY_SYMBOL','CURRENCY','$'),('CURRENCY_SYMBOL_POSITION','CURRENCY','Before price'),('CUSTOMER_VERIFY_CONTENT','MAIL_TEMPLATES','Dear [[name]],<div><br></div><div>Click the link below to verify your registration:</div><div><br></div><a href=\"[[URL]]\" target=\"_blank\">VERIFY</a><div></div>'),('CUSTOMER_VERIFY_SUBJECT','MAIL_TEMPLATES','Please verify your registration to continue shopping'),('DECIMAL_DIGITS','CURRENCY','2'),('DECIMAL_POINT_TYPE','CURRENCY','POINT'),('MAIL_FROM','MAIL_SERVER','[email protected]'),('MAIL_HOST','MAIL_SERVER','smtp.gmail.com'),('MAIL_PASSWORD','MAIL_SERVER','aikylmqolkpkllfh'),('MAIL_PORT','MAIL_SERVER','587'),('MAIL_SENDER_NAME','MAIL_SERVER','Shopme Company'),('MAIL_USERNAME','MAIL_SERVER','[email protected]'),('ORDER_CONFIRMATION_CONTENT','MAIL_TEMPLATES','Dear [[name]], <div>This email is to confirm that you have successfully placed an order through our website. Please review the following order summary:</div><div><br></div><div>- Order ID: [[orderid]]</div><div>- Order time: [[orderTime]]</div><div>- Ship to: [[shippingAddress]]</div><div>- Total: [[total]]</div><div>- Payment method: [[paymentMethod]]</div><div><br></div><div>We\'re currently processing your order. Click here to view full details of your order on our website (login required).</div>'),('ORDER_CONFIRMATION_SUBJECT','MAIL_TEMPLATES','Confirmation of your order ID #[[orderid]]'),('PAYPAL_API_BASE_URL','PAYMENT','https://api-m.sandbox.paypal.com'),('PAYPAL_API_CLIENT_ID','PAYMENT','AcLOFrYrID4uyROyq5OTXbVuJ4gAawdzmvIAjRb_aGPi7xXgseum65Rr_G-iUOOfjOUOIJX2wnsX6lPU'),('PAYPAL_API_CLIENT_SECRET','PAYMENT','EH8DBKScqNkcQggfrwiZO__9tzAg8rXyEdWALC4NAVK6IccGsRt-FmXfNPxY0xKGQ8g7makwdPWD2cSW'),('SITE_LOGO','GENERAL','/site-logo/online-shopping 1 (2).png'),('SITE_NAME','GENERAL','Shopme'),('SMTP_AUTH','MAIL_SERVER','true'),('SMTP_SECURED','MAIL_SERVER','true'),('THOUSANDS_POINT_TYPE','CURRENCY','COMMA');
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `shipping_rates`
--
DROP TABLE IF EXISTS `shipping_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipping_rates` (
`id` int NOT NULL AUTO_INCREMENT,
`country_id` int DEFAULT NULL,
`state` varchar(45) NOT NULL,
`rate` float NOT NULL,
`days` int NOT NULL,
`cod_supported` bit(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKef7sfgeybt3xn13nlt2j6sljw` (`country_id`),
CONSTRAINT `FKef7sfgeybt3xn13nlt2j6sljw` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `shipping_rates`
--
LOCK TABLES `shipping_rates` WRITE;
/*!40000 ALTER TABLE `shipping_rates` DISABLE KEYS */;
INSERT INTO `shipping_rates` VALUES (2,234,'New York',10,7,_binary ''),(3,234,'Florida',12,6,_binary '\0'),(5,242,'Hanoi',3.98,2,_binary ''),(6,234,'California',11.56,6,_binary '\0'),(7,242,'Hai Phong',3.93,2,_binary '\0'),(8,242,'Bac Giang',4.12,2,_binary '\0'),(9,242,'Phu Tho',4.21,3,_binary '\0'),(10,242,'Thanh Hoa',3.52,1,_binary ''),(11,106,'Karnataka',8.22,5,_binary '\0'),(12,106,'Maharashtra',8.69,5,_binary ''),(13,106,'Meghalaya',8.1,4,_binary '\0'),(14,106,'Punjab',7.89,3,_binary '\0'),(15,106,'Tamil Nadu',8.25,4,_binary '\0'),(16,106,'Telangana',7.72,4,_binary '\0'),(17,242,'Da Nang',0.5,1,_binary ''),(18,234,'Ohio',11.5,8,_binary '\0'),(19,78,'London',9.88,6,_binary ''),(20,106,'Delhi',8.45,5,_binary ''),(21,106,'West Bengal',8.88,5,_binary ''),(22,78,'Barton',7.78,6,_binary ''),(23,106,'Andhra Pradesh',8.12,6,_binary ''),(24,234,'Tennessee',12,8,_binary ''),(25,234,'Massachusetts',11.85,7,_binary ''),(26,14,'Queensland',4.99,5,_binary ''),(27,199,'Singapore',3.33,3,_binary ''),(28,39,'British Columbia',9.88,7,_binary ''),(29,14,'New South Wales',4.57,6,_binary ''),(30,234,'Illinois',13,9,_binary '');
/*!40000 ALTER TABLE `shipping_rates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `states`
--
DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
`country_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKskkdphjml9vjlrqn4m5hi251y` (`country_id`),
CONSTRAINT `FKskkdphjml9vjlrqn4m5hi251y` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=307 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `states`
--
LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
INSERT INTO `states` VALUES (1,'Ha Noi',242),(2,'Da Nang',242),(3,'New York',234),(4,'California',234),(5,'Ho Chi Minh City',242),(6,'Hai Phong',242),(7,'Bac Giang',242),(8,'Son La',242),(9,'Quang Ninh',242),(10,'Nghe An',242),(12,'Utah',234),(13,'Washington',234),(14,'Florida',234),(15,'Illinois',234),(16,'Texas',234),(18,'Colorado',234),(19,'Alaska',234),(20,'Can Tho',242),(22,'Binh Duong',242),(23,'Thanh Hoa',242),(24,'Andhra Pradesh',106),(25,'Arunachal Pradesh',106),(26,'Assam',106),(27,'Bihar',106),(28,'Haryana',106),(29,'Himacha Pradesh',106),(30,'Karnataka',106),(31,'Maharashtra',106),(32,'Meghalaya',106),(33,'Punjab',106),(34,'Tamil Nadu',106),(35,'Telangana',106),(36,'Uttar Pradesh',106),(37,'West Bengal',106),(38,'Bac Ninh',242),(40,'Ha Tinh',242),(41,'Hue',242),(42,'Binh Dinh',242),(43,'An Giang',242),(44,'Blackpool',78),(45,'London',78),(46,'Liverpool',78),(47,'Manchester',78),(48,'Newcastle',78),(49,'Bristol',78),(50,'Cambridge',78),(51,'Lang Son',242),(52,'Delhi',106),(53,'Hawaii',234),(54,'Georgia',234),(55,'Pennsylvania',234),(56,'Virginia',234),(57,'Arizona',234),(59,'Kerala',106),(60,'Rajasthan',106),(61,'Odisha',106),(62,'Mizoram',106),(63,'Sikkim',106),(64,'Manipur',106),(65,'Nagaland',106),(66,'Tripura',106),(67,'Jharkhand',106),(68,'Uttarakhand',106),(69,'Goa',106),(70,'Madhya Pradesh',106),(71,'Gujarat',106),(72,'Massachusetts',234),(73,'Indiana',234),(74,'Michigan',234),(75,'Ohio',234),(76,'New Jersey',234),(77,'Minnesota',234),(78,'North Carolina',234),(79,'Oregon',234),(80,'Maryland',234),(81,'Tennessee',234),(82,'Montana',234),(83,'Maine',234),(84,'Alabama',234),(85,'Wisconsin',234),(86,'Louisiana',234),(87,'Connecticut',234),(88,'Missouri',234),(89,'South Carolina',234),(90,'Mississippi',234),(91,'New Mexico',234),(92,'Nevada',234),(93,'Kentucky',234),(94,'Arkansas',234),(95,'Wyoming',234),(96,'Kansas',234),(97,'Delaware',234),(98,'Iowa',234),(99,'Idaho',234),(100,'Nebraska',234),(101,'Rhode Island',234),(102,'Vermont',234),(103,'South Dakota',234),(104,'New Hamsphire',234),(105,'West Virginia',234),(106,'North Dakota',234),(107,'Oklahoma',234),(109,'Nam Dinh',242),(110,'Khanh Hoa',242),(112,'Tay Ninh',242),(113,'Kien Giang',242),(114,'Lai Chau',242),(115,'Lao Cai',242),(116,'Ha Giang',242),(117,'Hoa Binh',242),(118,'Thai Binh',242),(119,'Dong Nai',242),(120,'Soc Trang',242),(121,'Bac Lieu',242),(123,'Ca Mau',242),(124,'Quang Binh',242),(125,'Quang Tri',242),(126,'Quang Nam',242),(127,'Quang Ngai',242),(128,'Gia Lai',242),(129,'Vinh Phuc',242),(130,'Lam Dong',242),(131,'Dak Lak',242),(132,'Phu Yen',242),(133,'Binh Phuoc',242),(134,'Dak Nong',242),(135,'Dong Thap',242),(136,'Hau Giang',242),(137,'Ba Ria Vung Tau',242),(138,'Binh Thuan',242),(139,'Hai Duong',242),(140,'Hung Yen',242),(141,'Thai Nguyen',242),(142,'Long An',242),(143,'Ben Tre',242),(144,'Bac Kan',242),(145,'Ninh Binh',242),(146,'Kon Tum',242),(147,'Tra Vinh',242),(148,'Yen Bai',242),(149,'Tuyen Quang',242),(150,'Phu Tho',242),(151,'Vinh Long',242),(152,'New South Wales',14),(153,'Queensland',14),(154,'Tasmania',14),(155,'Western Australia',14),(156,'Victoria',14),(157,'South Australia',14),(158,'Ontario',39),(159,'Quebec',39),(160,'Nova Scotia',39),(161,'New Brunswick',39),(162,'Manitoba',39),(163,'British Columbia',39),(164,'Prince Edward Island',39),(165,'Saskatchewan',39),(166,'Alberta',39),(167,'Newfoundland and Labrador',39),(168,'Grand Est',76),(169,'Hauts-de-France',76),(170,'Normandy',76),(171,'Nouvelle-Aquitaine',76),(172,'Occitanie',76),(173,'Brittany',76),(174,'Centre-Val de Loire',76),(175,'Corsica',76),(176,'French Guiana',76),(177,'Guadeloupe',76),(178,'Île-de-France',76),(179,'Martinique',76),(180,'Mayotte',76),(181,'Pays de la Loire',76),(182,'Provence-Alpes-Côte d\'Azur',76),(183,'Réunion',76),(184,'Aichi',115),(185,'Akita',115),(186,'Chiba',115),(187,'Ehime',115),(188,'Fukui',115),(189,'Fukuoka',115),(190,'Fukushima',115),(191,'Gunma',115),(192,'Kobe',115),(193,'Hiroshima',115),(194,'Hokkaido',115),(195,'Ishikawa',115),(196,'Kagawa',115),(197,'Kochi',115),(198,'Kyoto',115),(199,'Nagasaki',115),(200,'Okinawa',115),(201,'Osaka',115),(202,'Saga',115),(203,'Tokushima',115),(204,'Tokyo',115),(205,'Yamagata',115),(206,'Yamaguchi',115),(207,'Yamanashi',115),(208,'Greater Poland',180),(209,'Kuyavia-Pomerania',180),(210,'Lesser Poland',180),(211,'Łódź',180),(212,'Lower Silesia',180),(213,'Lublin',180),(214,'Lubusz',180),(215,'Masovia',180),(216,'Opole',180),(217,'Podlaskie',180),(218,'Pomerania',180),(219,'Silesia',180),(220,'Subcarpathia',180),(221,'Holy Cross Province',180),(222,'Warmia-Masuria',180),(223,'West Pomerania',180),(224,'Baden-Württemberg',58),(225,'Bavaria',58),(226,'Berlin',58),(227,'Brandenburg',58),(228,'Bremen',58),(229,'Hamburg',58),(230,'Hesse',58),(231,'Lower Saxony',58),(232,'Mecklenburg-Vorpommern',58),(233,'North Rhine- Westphalia',58),(234,'Rhineland-Palatinate',58),(235,'Saarland',58),(236,'Saxony',58),(237,'Saxony-Anhalt',58),(238,'Schleswig-Holstein',58),(239,'Thuringia',58),(240,'Acre',32),(241,'Alagoas',32),(242,'Amapá',32),(243,'Amazonas',32),(244,'Bahia',32),(245,'Ceará',32),(246,'Distrito Federal',32),(247,'Espírito Santo',32),(248,'Goiás',32),(249,'Maranhão',32),(250,'Mato Grosso',32),(251,'Minas Gerais',32),(252,'Pará',32),(253,'Paraíba',32),(254,'Paraná',32),(255,'Pernambuco',32),(256,'Piauí',32),(257,'Rio de Janeiro',32),(258,'Rio Grande do Norte',32),(259,'Rio Grande do Sul',32),(260,'Rondônia',32),(261,'Roraima',32),(262,'Santa Catarina',32),(263,'São Paulo',32),(264,'Sergipe',32),(265,'Tocantins',32),(266,'Adana',226),(267,'Adıyaman',226),(268,'Ankara',226),(269,'Balıkesir',226),(270,'Bilecik',226),(271,'Bingöl',226),(272,'Bursa',226),(273,'Çanakkale',226),(274,'Çankırı',226),(275,'Çorum',226),(276,'Denizli',226),(277,'Diyarbakır',226),(278,'Edirne',226),(279,'Erzurum',226),(280,'Gaziantep',226),(281,'Giresun',226),(282,'Hakkâri',226),(283,'Hatay',226),(284,'Isparta',226),(285,'Istanbul',226),(286,'Konya',226),(287,'Malatya',226),(288,'Manisa',226),(289,'Iğdır',226),(290,'Karaman',226),(291,'Osmaniye',226),(292,'Tokat',226),(293,'Sivas',226),(294,'Sinop',226),(295,'Siirt',226),(296,'Batman',226),(297,'Kilis',226),(298,'Rize',226),(299,'Ordu',226),(300,'Tunceli',226),(301,'Yozgat',226),(302,'Van',226),(303,'Bayburt',226),(304,'Yalova',226),(305,'Samsun',226),(306,'Sakarya',226);
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` int NOT NULL AUTO_INCREMENT,
`email` varchar(128) NOT NULL,
`enabled` bit(1) NOT NULL,
`first_name` varchar(45) NOT NULL,
`last_name` varchar(45) NOT NULL,
`password` varchar(64) NOT NULL,
`photos` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK6dotkott2kjsp8vw4d0m25fb7` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'[email protected]',_binary '','Nam','Ha Minh','$2a$10$bDqskP9Z/y6BIZnFLgJ8HuwMYaZXD9w2jVk2pYHXgn1k6N4nckleu','namhm.png'),(2,'[email protected]',_binary '','Allada','Pavan','$2a$10$zRa/rmQ8JarpYG2bNKftyelKnsUhsHwGB.xmCKTWJClsB7O9wzTnG','Allada Pavan.png'),(3,'[email protected]',_binary '\0','Bruce','Kitchell','$2a$10$GINThwCjVZAbGnmOe9BIeuDuvDlyfuwZrg/Rsmrjs1Lsq2pnXtO/S','Bruce Kitchell.png'),(4,'[email protected]',_binary '','Muhammad','Evran','$2a$10$UcHWHC72azPVZJb5Ky.Yy.X695WGf1ZkkGMS3WL3B9WqWf2dQD04G','Muhammad Evran.png'),(5,'[email protected]',_binary '','Kent','Hervey','$2a$10$YHXRsZ07/Btv.qCgGht.7u2PW.GLWzpVB7eabfgH1mhTVVXffDT6K','KentHervey.png'),(6,'[email protected]',_binary '\0','Alfred','Ephraim','$2a$10$1jl3q3r/Fh9ZBv6ziM4XhuxCi2GMFWcfHUrxsesXAEwnsiV/NJKbq','Alfred.png'),(7,'[email protected]',_binary '','Nathi','Sangweni','$2a$10$WyHmQiXCSYuHcGeg8eFWvOScqzSgg88MmqpajPdzSkLsvZjT3tKC.','Nathi_Sangweni.png'),(8,'[email protected]',_binary '','Ammanolla','Shirisha','$2a$10$N1eE87eXFB2XQ5nmWKaTXOofnrPn8koeNvZhEpleJzO49i55e/Vk.','Ammanolla.png'),(9,'[email protected]',_binary '','Bill','Feeny','$2a$10$3sH0v..zpjwA8ux5/q.OAeu0HgmSdMj8VzMWzhwwBDkE8wOISsUyi','Bill Feeny.png'),(10,'[email protected]',_binary '','Frederick','delos Santos','$2a$10$KXHmKpE6YB/0sjiy3fkMv.muKyxqvOXE6jVeaPu8KEaExx62ZmmNe','Frederick Santos.png'),(11,'[email protected]',_binary '','Ana','Maria','$2a$10$sz0CHOHAY1Xjt2ajIZgnG.L2KBQ4SsQkOGsPYue.C5gr6j.KMDdqS','Anna Maria.jpg'),(12,'[email protected]',_binary '\0','Satya','Narayana','$2a$10$R7EJcaYijjJo/IVk6c1CieBML2uP3RAKMVlCxylPAePlCfJsX7OOy','Satya Narayana.png'),(13,'[email protected]',_binary '','Matthew','Efoli','$2a$10$ECNnxXSVArnwS9KCet3yguQ1qHKyBIhh2G8c4F9CYgvp/Hadl8OS6','Matthew.png'),(14,'[email protected]',_binary '','Dave','Kumar','$2a$10$5ebeZu18V5RheieYqpl/LORCN41E3H7yvxKqEwtq5Zq2JVw.E9dva','Dave Kumar.png'),(15,'[email protected]',_binary '','Jack','Bruce','$2a$10$a6iyIHRj8DNpu15obVHTSOGcLe4IfpBcD4iEEJesWaFpBQvRoF2da','Jack Bruce.png'),(16,'[email protected]',_binary '','Mohamed','Zirri','$2a$10$TmvyH1AoyDqRmQ4uC8NAZOOV29CPEDGuxVsHLP1cJoHQGr78L4kjW','Mohamed Zirri.jpg'),(17,'[email protected]',_binary '\0','Mithun','Kumar Majumdar','$2a$10$Y6SEy2INN0Rk/vhLHHJUYO6IMqNW3Ar.jVe9o0W1lpBRX8xr2Itui','Mithun Kumar Majumdar.png'),(18,'[email protected]',_binary '','Ali','Raza','$2a$10$PISZ2KitSbhE4/Z3dtIGk.WUi2ILiDl4PzRUDEQSp5BJIxcdcPq4G','Ali Raza.png'),(19,'[email protected]',_binary '','Isaac','Henry','$2a$10$CtmhrOz/AhDoCpKbeYl8O.0ngCFMukcznNZq7.YcHrkRyKpBG8Zca','Isaac Henry.jpg'),(20,'[email protected]',_binary '','Svetlana','Stasovska','$2a$10$fcN2cNa7vB.78QnmzfNZEeUBkrwUaM.bVK3iDB.KFQlR15DwL7QZy','Svetlana Stasovska.png'),(21,'[email protected]',_binary '','Mike','Gates','$2a$10$zIO1tygsw6cB2ymiR.WX0ulr9NKdTlZHqu7w/W/LLwk8HhK7nVnH.','Mike Gates.png'),(22,'[email protected]',_binary '\0','Pedro','Quintero','$2a$10$UPX5EwZw0MyBvbe.7mxg2u8GOl/4KgaUU40iSjr1PLFYvhu35fMmu','Pedro Quintero.png'),(23,'[email protected]',_binary '','Amina','Elshal','$2a$10$J1yoyqG5vWNe5N663PkgY.h53gfJtTR7Bb8E8u3sXdNbOZxhXgHu.','Amina Elshal.png');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users_roles`
--
DROP TABLE IF EXISTS `users_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users_roles` (
`user_id` int NOT NULL,
`role_id` int NOT NULL,
PRIMARY KEY (`user_id`,`role_id`),
KEY `FKj6m8fwv7oqv74fcehir1a9ffy` (`role_id`),
CONSTRAINT `FK2o0jvgh89lemvvo17cbqvdxaa` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`),
CONSTRAINT `FKj6m8fwv7oqv74fcehir1a9ffy` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users_roles`
--
LOCK TABLES `users_roles` WRITE;
/*!40000 ALTER TABLE `users_roles` DISABLE KEYS */;
INSERT INTO `users_roles` VALUES (1,1),(2,1),(3,2),(9,2),(10,2),(11,2),(12,2),(13,2),(19,2),(20,2),(4,3),(5,3),(6,3),(7,3),(8,3),(11,3),(15,3),(18,3),(20,3),(14,4),(15,4),(16,4),(17,4),(18,4),(5,5),(14,5),(19,5),(20,5),(21,5),(22,5),(23,5);
/*!40000 ALTER TABLE `users_roles` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-11-08 6:32:16