File size: 10,907 Bytes
8da98d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[
  {
    "brand name":"Samsung",
    "brand model name": "Galaxy S21",
    "price": "$999",
    "discount percent": "10%",
    "category": "smartphone",
    "color": "Phantom Black"
  },
  {
    "brand name":"Samsung",
    "brand model name": "Galaxy Note 20",
    "price": "$899",
    "discount percent": "15%",
    "category": "smartphone",
    "color": "Mystic Bronze"
  },
  {
    "brand name":"Samsung",
    "brand model name": "Galaxy A52",
    "price": "$399",
    "discount percent": "20%",
    "category": "smartphone",
    "color": "Awesome Blue"
  },
  {
    "brand name":"Apple",
    "brand model name": "iPhone 12 Pro",
    "price": "$1099",
    "discount percent": "5%",
    "category": "smartphone",
    "color": "Pacific Blue"
  },
  {
    "brand name":"Apple",
    "brand model name": "iPhone SE",
    "price": "$399",
    "discount percent": "0%",
    "category": "smartphone",
    "color": "Black"
  },
  {
    "brand name":"Google",
    "brand model name": "Pixel 5",
    "price": "$699",
    "discount percent": "10%",
    "category": "smartphone",
    "color": "Just Black"
  },
  {
    "brand name":"Xiaomi",
    "brand model name": "Mi 11",
    "price": "$799",
    "discount percent": "12%",
    "category": "smartphone",
    "color": "Midnight Gray"
  },
  {
    "brand name":"Xiaomi",
    "brand model name": "Redmi Note 10",
    "price": "$249",
    "discount percent": "8%",
    "category": "smartphone",
    "color": "Aqua Green"
  },
  {
    "brand name":"OnePlus",
    "brand model name": "OnePlus 9 Pro",
    "price": "$999",
    "discount percent": "10%",
    "category": "smartphone",
    "color": "Morning Mist"
  },
  {
    "brand name":"OnePlus",
    "brand model name": "OnePlus Nord",
    "price": "$399",
    "discount percent": "15%",
    "category": "smartphone",
    "color": "Blue Marble"
  },
  {
    "brand name":"Huawei",
    "brand model name": "P40 Pro",
    "price": "$899",
    "discount percent": "10%",
    "category": "smartphone",
    "color": "Silver Frost"
  },
  {
    "brand name":"Huawei",
    "brand model name": "Mate 40 Pro",
    "price": "$1299",
    "discount percent": "5%",
    "category": "smartphone",
    "color": "Mystic Silver"
  },
  {
    "brand name":"Sony",
    "brand model name": "Xperia 1 III",
    "price": "$1299",
    "discount percent": "8%",
    "category": "smartphone",
    "color": "Frosted Black"
  },
  {
    "brand name":"Sony",
    "brand model name": "Xperia 5 II",
    "price": "$999",
    "discount percent": "12%",
    "category": "smartphone",
    "color": "Blue"
  },
  {
  "brand name": "Samsung",
  "brand model name": "Galaxy S22",
  "price": "$1099",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Phantom Gray"
},
{
  "brand name": "Apple",
  "brand model name": "iPhone 13",
  "price": "$1199",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Rose Gold"
},
{
  "brand name": "Google",
  "brand model name": "Pixel 6",
  "price": "$799",
  "discount percent": "15%",
  "category": "smartphone",
  "color": "Clearly White"
},
{
  "brand name": "Xiaomi",
  "brand model name": "Mi 12",
  "price": "$899",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Ceramic Black"
},
{
  "brand name": "OnePlus",
  "brand model name": "OnePlus 10",
  "price": "$1199",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Starry Blue"
},
{
  "brand name": "Huawei",
  "brand model name": "P50 Pro",
  "price": "$1399",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Golden Sunset"
},
{
  "brand name": "Sony",
  "brand model name": "Xperia 10 III",
  "price": "$799",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Luminous Red"
},
{
  "brand name": "Motorola",
  "brand model name": "Moto G8",
  "price": "$249",
  "discount percent": "15%",
  "category": "smartphone",
  "color": "Ocean Blue"
},
{
  "brand name": "LG",
  "brand model name": "G9 ThinQ",
  "price": "$799",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Platinum Gray"
},
{
  "brand name": "Nokia",
  "brand model name": "Nokia 10",
  "price": "$899",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Classic Red"
},
{
  "brand name": "Motorola",
  "brand model name": "Moto G10",
  "price": "$199",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Misty Blue"
},
{
  "brand name": "LG",
  "brand model name": "Velvet 2",
  "price": "$699",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Champagne Gold"
},
{
  "brand name": "Nokia",
  "brand model name": "Nokia 7.3",
  "price": "$349",
  "discount percent": "15%",
  "category": "smartphone",
  "color": "Polar White"
},
{
  "brand name": "Sony",
  "brand model name": "Xperia 5 III",
  "price": "$1199",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Crimson Red"
},
{
  "brand name": "OnePlus",
  "brand model name": "OnePlus 10T",
  "price": "$999",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Lunar Silver"
},
{
  "brand name": "Huawei",
  "brand model name": "Mate 50",
  "price": "$1499",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Aurora Blue"
},
{
  "brand name": "Xiaomi",
  "brand model name": "Redmi 11",
  "price": "$249",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Sunset Orange"
},
{
  "brand name": "Google",
  "brand model name": "Pixel 6 Pro",
  "price": "$1099",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Sunrise Pink"
},
{
  "brand name": "Apple",
  "brand model name": "iPhone 14",
  "price": "$1299",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Graphite"
},
{
  "brand name": "Samsung",
  "brand model name": "Galaxy Z Fold 4",
  "price": "$1999",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Mystic Black"
},
{
  "brand name": "Motorola",
  "brand model name": "Moto E7 Plus",
  "price": "$149",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Cosmic Blue"
},
{
  "brand name": "LG",
  "brand model name": "Wing",
  "price": "$699",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Illusion Sky"
},
{
  "brand name": "Nokia",
  "brand model name": "Nokia 5.4",
  "price": "$279",
  "discount percent": "15%",
  "category": "smartphone",
  "color": "Forest Green"
},
{
  "brand name": "Sony",
  "brand model name": "Xperia 10 II",
  "price": "$799",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Deep Blue"
},
{
  "brand name": "OnePlus",
  "brand model name": "OnePlus 9",
  "price": "$899",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Arctic Sky"
},
{
  "brand name": "Huawei",
  "brand model name": "Nova 8",
  "price": "$499",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Blossom Pink"
},
{
  "brand name": "Xiaomi",
  "brand model name": "Redmi Note 9",
  "price": "$199",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Pebble Grey"
},
{
  "brand name": "Google",
  "brand model name": "Pixel 5a",
  "price": "$449",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Barely Blue"
},
{
  "brand name": "Apple",
  "brand model name": "iPhone SE Plus",
  "price": "$499",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Product Red"
},
{
  "brand name": "Samsung",
  "brand model name": "Galaxy A72",
  "price": "$549",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Awesome Violet"
},
{
  "brand name": "Motorola",
  "brand model name": "Moto G20",
  "price": "$179",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Coral Pink"
},
{
  "brand name": "LG",
  "brand model name": "K92 5G",
  "price": "$349",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Titan Gray"
},
{
  "brand name": "Nokia",
  "brand model name": "Nokia 2.4",
  "price": "$129",
  "discount percent": "15%",
  "category": "smartphone",
  "color": "Dusk Blue"
},
{
  "brand name": "Sony",
  "brand model name": "Xperia L4",
  "price": "$299",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Mint Green"
},
{
  "brand name": "OnePlus",
  "brand model name": "OnePlus 8T",
  "price": "$599",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Aquamarine Green"
},
{
  "brand name": "Huawei",
  "brand model name": "Y9a",
  "price": "$299",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Emerald Green"
},
{
  "brand name": "Xiaomi",
  "brand model name": "Redmi 9A",
  "price": "$99",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Sunrise Orange"
},
{
  "brand name": "Google",
  "brand model name": "Pixel 4a 5G",
  "price": "$499",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Clearly White"
},
{
  "brand name": "Apple",
  "brand model name": "iPhone XR",
  "price": "$599",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Coral"
},
{
  "brand name": "Samsung",
  "brand model name": "Galaxy M32",
  "price": "$249",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Light Blue"
},
{
  "brand name": "Motorola",
  "brand model name": "Moto G50",
  "price": "$249",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Steel Gray"
},
{
  "brand name": "LG",
  "brand model name": "Q92",
  "price": "$349",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Silk White"
},
{
  "brand name": "Nokia",
  "brand model name": "Nokia X20",
  "price": "$399",
  "discount percent": "15%",
  "category": "smartphone",
  "color": "Polar Night"
},
{
  "brand name": "Sony",
  "brand model name": "Xperia 1 II",
  "price": "$899",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Mirror Black"
},
{
  "brand name": "OnePlus",
  "brand model name": "OnePlus 7T",
  "price": "$599",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Glacier Blue"
},
{
  "brand name": "Huawei",
  "brand model name": "Enjoy 20 Pro",
  "price": "$299",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Magic Night Black"
},
{
  "brand name": "Xiaomi",
  "brand model name": "Redmi K40",
  "price": "$329",
  "discount percent": "10%",
  "category": "smartphone",
  "color": "Dreamland"
},
{
  "brand name": "Google",
  "brand model name": "Pixel 6a",
  "price": "$449",
  "discount percent": "8%",
  "category": "smartphone",
  "color": "Just White"
},
{
  "brand name": "Apple",
  "brand model name": "iPhone 11",
  "price": "$699",
  "discount percent": "12%",
  "category": "smartphone",
  "color": "Purple"
},
{
  "brand name": "Samsung",
  "brand model name": "Galaxy F52",
  "price": "$329",
  "discount percent": "5%",
  "category": "smartphone",
  "color": "Fresh Green"
}






]