-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.sql
More file actions
2830 lines (2622 loc) · 136 KB
/
data.sql
File metadata and controls
2830 lines (2622 loc) · 136 KB
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
998
999
1000
INSERT INTO heroes (id, name, slug)
VALUES
(1, 'Ana', 'ana'),
(2, 'Bastion', 'bastion'),
(3, 'D.Va', 'dva'),
(4, 'Genji', 'genji'),
(5, 'Hanzo', 'hanzo'),
(6, 'Junkrat', 'junkrat'),
(7, 'Lúcio', 'lucio'),
(8, 'McCree', 'mccree'),
(9, 'Mei', 'mei'),
(10, 'Mercy', 'mercy'),
(24, 'Orisa', 'orisa'),
(11, 'Pharah', 'pharah'),
(12, 'Reaper', 'reaper'),
(13, 'Reinhardt', 'reinhardt'),
(14, 'Roadhog', 'roadhog'),
(15, 'Soldier: 76', 'soldier76'),
(23, 'Sombra', 'sombra'),
(16, 'Symmetra', 'symmetra'),
(17, 'Torbjörn', 'torbjorn'),
(18, 'Tracer', 'tracer'),
(19, 'Widowmaker', 'widowmaker'),
(20, 'Winston', 'winston'),
(21, 'Zarya', 'zarya'),
(22, 'Zenyatta', 'zenyatta');
INSERT INTO categories (id, name, description, price_multiplier, slug)
VALUES
(1, 'Normal', 'Obtainable by opening normal Loot Boxes or by spending the normal amount of credits.', 1, 'normal'),
(2, 'Achievements', 'Obtainable by completing non-seasonal achievements.', 0, 'achievements'),
(3, 'Origins Edition', 'Obtainable by buying the Origins Edition of Overwatch.', 0, 'originsedition'),
(4, 'Preorder', 'Obtainable by preodering Overwatch.', 0, 'preorder'),
(5, 'Competitive', 'Obtainable by spending competitive points.', 0, 'competitive'),
(6, 'Summer Games', 'Obtainable by opening Summer Games Loot Boxes.', 3, 'summergames'),
(7, 'Halloween Terror',
'Obtainable by opening Halloween Loot Boxes or by spending 3 times the normal amount of credits during the Halloween Terror event.',
3, 'halloweenterror'),
(8, 'BlizzCon', 'Obtainable by purchasing a BlizzCon ticket.', 0, 'blizzcon'),
(9, 'Blizzard', 'Obtainable by playing other Blizzard games.', 0, 'blizzard'),
(10, 'Winter Wonderland',
'Obtainable by opening Winter Loot Boxes or by spending 3 times the normal amount of credits during the Winter Wonderland event.',
3, 'winterwonderland'),
(11, 'Summer Games Achievements', 'Obtainable by completing Summer Games achievements.', 0, 'summergames-achievements'),
(12, 'Halloween Terror Achievements', 'Obtainable by completing Halloween Terror achievements.', 0,
'halloweenterror-achievements'),
(13, 'Winter Wonderland Achievements', 'Obtainable by completing Winter Wonderland achievements.', 0,
'winterwonderland-achievements'),
(14, 'Lunar New Year',
'Obtainable by opening Lunar New Year Loot Boxes or by spending 3 times the normal amount of credits during the Lunar New Year event.',
3, 'lunarnewyear'),
(15, 'Lunar New Year Achievements', 'Obtainable by completing Lunar New Year achievements.', 0,
'lunarnewyear-achievements'),
(16, 'Uprising',
'Obtainable by opening Uprising Loot Boxes or by spending 3 times the normal amount of credits during the Uprising event.',
3, 'uprising'),
(17, 'Uprising Achievements', 'Obtainable by completing Uprising achievements.', 0,
'uprising-achievements'),
(18, 'Anniversary',
'Obtainable by opening Anniversary Loot Boxes or by spending 3 times the normal amount of credits during the Anniversary event.',
3, 'anniversary');
INSERT INTO types (id, name, slug)
VALUES
(1, 'Player Icon', 'playericon'),
(2, 'Skin', 'skin'),
(3, 'Emote', 'emote'),
(4, 'Victory Pose', 'victorypose'),
(5, 'Voice Line', 'voiceline'),
(6, 'Spray', 'spray'),
(7, 'Highlight Intro', 'highlightintro'),
(8, 'Weapon', 'weapon');
INSERT INTO rarities (id, name, base_price)
VALUES
(1, 'Common', 25),
(2, 'Rare', 75),
(3, 'Epic', 250),
(4, 'Legendary', 1000),
(5, 'Weapon', 3000);
INSERT INTO events (id, name, start, "end")
VALUES
(1, 'Overwatch Release', '2016-05-24', NULL),
(2, 'Competitive Season 1', '2016-06-28', '2016-08-18'),
(3, 'Ana Patch', '2016-07-19', NULL),
(4, 'Summer Games 2016', '2016-08-02', '2016-08-23'),
(5, 'Eichenwalde Patch', '2016-08-23', NULL),
(6, 'Competitive Season 2', '2016-07-06', '2016-11-22'),
(7, 'Halloween Terror 2016', '2016-10-11', '2016-11-01'),
(8, 'Día De Los Muertos 2016', '2016-11-01', NULL),
(9, 'Sombra Patch', '2016-11-15', NULL),
(10, 'Competitive Season 3', '2016-12-01', '2017-02-21'),
(11, 'Winter Wonderland 2016', '2016-12-13', '2017-01-03'),
(12, 'Oasis Patch', '2017-01-03', NULL),
(13, 'Year of the Rooster', '2017-01-24', '2017-02-14'),
(14, 'Competitive Season 4', '2017-02-28', '2017-05-28'),
(15, 'Orisa Patch', '2017-03-07', NULL),
(16, 'Uprising 2017', '2017-04-11', '2017-05-02'),
(17, 'Anniversary 2017', '2017-05-25', '2017-06-13'),
(18, 'Competitive Season 5', '2017-05-31', NULL); --TODO end date
INSERT INTO settings (id, name, description, type, "default", min, max)
VALUES
(1, 'collection-show-images', 'Show images in the collection', 'BOOLEAN', 'true', NULL, NULL),
(2, 'collection-show-colors', 'Show the completion progress with colors in the collection', 'BOOLEAN', 'true', NULL, NULL),
(3, 'collection-heroes-per-page', 'Number of heroes to display per page in the collection', 'INTEGER', '3', '1', '50'),
(4, 'collection-cosmetics-per-row', 'Number of cosmetics to display per row in the collection', 'INTEGER', '3', '1', '10'),
(49, 'collection-show-all-playericons-in-allheroes', 'Show every Player Icon as belonging to All Heroes in the collection', 'BOOLEAN', 'true', NULL, NULL),
(5, 'collection-show-owned-cosmetics', 'Show owned cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(6, 'collection-show-hero-allheroes', 'Show cosmetics for All Heroes in the collection', 'BOOLEAN', 'true', NULL, NULL),
(7, 'collection-show-hero-ana', 'Show cosmetics for Ana in the collection', 'BOOLEAN', 'true', NULL, NULL),
(8, 'collection-show-hero-bastion', 'Show cosmetics for Bastion in the collection', 'BOOLEAN', 'true', NULL, NULL),
(9, 'collection-show-hero-dva', 'Show cosmetics for D.Va in the collection', 'BOOLEAN', 'true', NULL, NULL),
(10, 'collection-show-hero-genji', 'Show cosmetics for Genji in the collection', 'BOOLEAN', 'true', NULL, NULL),
(11, 'collection-show-hero-hanzo', 'Show cosmetics for Hanzo in the collection', 'BOOLEAN', 'true', NULL, NULL),
(12, 'collection-show-hero-junkrat', 'Show cosmetics for Junkrat in the collection', 'BOOLEAN', 'true', NULL, NULL),
(13, 'collection-show-hero-lucio', 'Show cosmetics for Lúcio in the collection', 'BOOLEAN', 'true', NULL, NULL),
(14, 'collection-show-hero-mccree', 'Show cosmetics for McCree in the collection', 'BOOLEAN', 'true', NULL, NULL),
(15, 'collection-show-hero-mei', 'Show cosmetics for Mei in the collection', 'BOOLEAN', 'true', NULL, NULL),
(16, 'collection-show-hero-mercy', 'Show cosmetics for Mercy in the collection', 'BOOLEAN', 'true', NULL, NULL),
(56, 'collection-show-hero-orisa', 'Show cosmetics for Orisa in the collection', 'BOOLEAN', 'true', NULL, NULL),
(17, 'collection-show-hero-pharah', 'Show cosmetics for Pharah in the collection', 'BOOLEAN', 'true', NULL, NULL),
(18, 'collection-show-hero-reaper', 'Show cosmetics for Reaper in the collection', 'BOOLEAN', 'true', NULL, NULL),
(19, 'collection-show-hero-reinhardt', 'Show cosmetics for Reinhardt in the collection', 'BOOLEAN', 'true', NULL, NULL),
(20, 'collection-show-hero-roadhog', 'Show cosmetics for Roadhog in the collection', 'BOOLEAN', 'true', NULL, NULL),
(21, 'collection-show-hero-soldier76', 'Show cosmetics for Soldier: 76 in the collection', 'BOOLEAN', 'true', NULL, NULL),
(22, 'collection-show-hero-sombra', 'Show cosmetics for Sombra in the collection', 'BOOLEAN', 'true', NULL, NULL),
(23, 'collection-show-hero-symmetra', 'Show cosmetics for Symmetra in the collection', 'BOOLEAN', 'true', NULL, NULL),
(24, 'collection-show-hero-torbjorn', 'Show cosmetics for Torbjörn in the collection', 'BOOLEAN', 'true', NULL, NULL),
(25, 'collection-show-hero-tracer', 'Show cosmetics for Tracer in the collection', 'BOOLEAN', 'true', NULL, NULL),
(26, 'collection-show-hero-widowmaker', 'Show cosmetics for Widowmaker in the collection', 'BOOLEAN', 'true', NULL, NULL),
(27, 'collection-show-hero-winston', 'Show cosmetics for Winston in the collection', 'BOOLEAN', 'true', NULL, NULL),
(28, 'collection-show-hero-zarya', 'Show cosmetics for Zarya in the collection', 'BOOLEAN', 'true', NULL, NULL),
(29, 'collection-show-hero-zenyatta', 'Show cosmetics for Zenyatta in the collection', 'BOOLEAN', 'true', NULL, NULL),
(30, 'collection-show-category-default', 'Show Default cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(31, 'collection-show-category-normal', 'Show Normal cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(32, 'collection-show-category-achievements', 'Show Achievements cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(33, 'collection-show-category-competitive', 'Show Competitive cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(34, 'collection-show-category-summergames', 'Show Summer Games cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(51, 'collection-show-category-summergames-achievements', 'Show Summer Games Achievements cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(35, 'collection-show-category-halloweenterror', 'Show Halloween Terror cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(52, 'collection-show-category-halloweenterror-achievements', 'Show Halloween Terror Achievements cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(36, 'collection-show-category-blizzard', 'Show Blizzard cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(37, 'collection-show-category-originsedition', 'Show Origins Edition cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(38, 'collection-show-category-preorder', 'Show Preorder cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(39, 'collection-show-category-blizzcon', 'Show BlizzCon cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(48, 'collection-show-category-winterwonderland', 'Show Winter Wonderland cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(53, 'collection-show-category-winterwonderland-achievements', 'Show Winter Wonderland Achievements cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(54, 'collection-show-category-lunarnewyear', 'Show Lunar New Year cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(55, 'collection-show-category-lunarnewyear-achievements', 'Show Lunar New Year Achievements cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(57, 'collection-show-category-uprising', 'Show Uprising cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(58, 'collection-show-category-uprising-achievements', 'Show Uprising Achievements cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(59, 'collection-show-category-anniversary', 'Show Anniversary cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(40, 'collection-show-type-playericon', 'Show Player Icon cosmetics in the collection', 'BOOLEAN', 'true', NULL,
NULL),
(41, 'collection-show-type-skin', 'Show Skin cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(42, 'collection-show-type-emote', 'Show Emote cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(43, 'collection-show-type-victorypose', 'Show Victory Pose cosmetics in the collection', 'BOOLEAN', 'true', NULL,
NULL),
(44, 'collection-show-type-voiceline', 'Show Voice Line cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(45, 'collection-show-type-spray', 'Show Spray cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(46, 'collection-show-type-highlightintro', 'Show Highlight Intro cosmetics in the collection', 'BOOLEAN', 'true',
NULL, NULL),
(47, 'collection-show-type-weapon', 'Show Weapon cosmetics in the collection', 'BOOLEAN', 'true', NULL, NULL),
(50, 'lootbox-default-duplicates-nb', 'Default number of duplicates in the Open a Lootbox section', 'INTEGER', '0', 0,
4);
INSERT INTO cosmetics (id, category_id, type_id, rarity_id, hero_id, name, event_id)
VALUES
-- Player Icons
(1, NULL, 1, NULL, NULL, 'Overwatch Dark', 1), -- Default All Heroes Player Icons
(2, NULL, 1, NULL, NULL, 'Overwatch Light', 1),
(3, NULL, 1, NULL, NULL, 'You Are Not Prepared', 3),
(1991, NULL, 1, NULL, NULL, 'Dark Wanderer', 12),
(4, 1, 1, 2, NULL, '16-Bit Hero', 1), -- Normal All Heroes Player Icons
(5, 1, 1, 2, NULL, 'Anubis', 1),
(6, 1, 1, 2, NULL, 'Bao', 1),
(7, 1, 1, 2, NULL, 'Barbarian', 1),
(8, 1, 1, 2, NULL, 'Capsule', 1),
(9, 1, 1, 2, NULL, 'Cheers', 1),
(10, 1, 1, 2, NULL, 'Colossus', 1),
(11, 1, 1, 2, NULL, 'Credit', 1),
(12, 1, 1, 2, NULL, 'Crusader', 1),
(13, 1, 1, 2, NULL, 'Dark Lady', 1),
(14, 1, 1, 2, NULL, 'Demolition', 1),
(15, 1, 1, 2, NULL, 'Demon Hunter', 1),
(16, 1, 1, 2, NULL, 'Dominion', 1),
(17, 1, 1, 2, NULL, 'Elephant', 1),
(18, 1, 1, 2, NULL, 'For the Alliance', 1),
(19, 1, 1, 2, NULL, 'For the Horde', 1),
(20, 1, 1, 2, NULL, 'From Beyond the Moon', 1),
(21, 1, 1, 2, NULL, 'Garrosh', 1),
(22, 1, 1, 2, NULL, 'Happy Squid', 1),
(23, 1, 1, 2, NULL, 'Hearthstone', 1),
(24, 1, 1, 2, NULL, 'Hierarch', 1),
(25, 1, 1, 2, NULL, 'Jaina', 1),
(26, 1, 1, 2, NULL, 'Jim', 1),
(27, 1, 1, 2, NULL, 'Kofi Aromo', 1),
(28, 1, 1, 2, NULL, 'Lich King', 1),
(29, 1, 1, 2, NULL, 'Loot Box', 1),
(30, 1, 1, 2, NULL, 'Lord of Candy', 1),
(31, 1, 1, 2, NULL, 'Lord of Terror', 1),
(32, 1, 1, 2, NULL, 'Los Muertos', 1),
(33, 1, 1, 2, NULL, 'Mama Pig''s', 1),
(34, 1, 1, 2, NULL, 'Mariachi', 1),
(35, 1, 1, 2, NULL, 'Mech', 1),
(36, 1, 1, 2, NULL, 'Monk', 1),
(37, 1, 1, 2, NULL, 'Nexus', 1),
(38, 1, 1, 2, NULL, 'Pachimari', 1),
(39, 1, 1, 2, NULL, 'Pharaoh', 1),
(40, 1, 1, 2, NULL, 'Protoss', 1),
(41, 1, 1, 2, NULL, 'Queen of Blades', 1),
(42, 1, 1, 2, NULL, 'Ramen', 1),
(43, 1, 1, 2, NULL, 'Rhino', 1),
(44, 1, 1, 2, NULL, 'Rikimaru', 1),
(45, 1, 1, 2, NULL, 'Route 66', 1),
(46, 1, 1, 2, NULL, 'Sakura', 1),
(47, 1, 1, 2, NULL, 'Scooter', 1),
(48, 1, 1, 2, NULL, 'Siege Mode', 1),
(49, 1, 1, 2, NULL, 'Six-Gun Killer', 1),
(50, 1, 1, 2, NULL, 'Svyatogor', 1),
(51, 1, 1, 2, NULL, 'Terran', 1),
(52, 1, 1, 2, NULL, 'Totem', 1),
(53, 1, 1, 2, NULL, 'Training Bot', 1),
(54, 1, 1, 2, NULL, 'Varian', 1),
(55, 1, 1, 2, NULL, 'Vivi', 1),
(56, 1, 1, 2, NULL, 'Witch Doctor', 1),
(57, 1, 1, 2, NULL, 'Wizard', 1),
(58, 1, 1, 2, NULL, 'Zerg', 1),
(59, 5, 1, 2, NULL, 'Season 1 Competitor', 2), -- Competitive All Heroes Player Icons
(60, 5, 1, 2, NULL, 'Season 1 Hero', 2),
(61, 5, 1, 2, NULL, 'Season 2 Competitor', 6),
(62, 5, 1, 2, NULL, 'Season 2 Hero', 6),
(63, 5, 1, 2, NULL, 'Season 3 Competitor', 10),
(64, 5, 1, 2, NULL, 'Season 3 Hero', 10),
(2193, 5, 1, 2, NULL, 'Season 4 Competitor', 14),
(2194, 5, 1, 2, NULL, 'Season 4 Hero', 14),
(2314, 5, 1, 2, NULL, 'Season 5 Competitor', 18),
(2315, 5, 1, 2, NULL, 'Season 5 Hero', 18),
(65, 5, 1, 2, NULL, 'Top 500', 2),
(66, 6, 1, 2, NULL, 'Australia', 4), -- Summer Games All Heroes Player Icons
(67, 6, 1, 2, NULL, 'Brazil', 4),
(68, 6, 1, 2, NULL, 'China', 4),
(69, 6, 1, 2, NULL, 'Egypt', 4),
(70, 6, 1, 2, NULL, 'France', 4),
(71, 6, 1, 2, NULL, 'Germany', 4),
(72, 6, 1, 2, NULL, 'Greece', 4),
(73, 6, 1, 2, NULL, 'Japan', 4),
(74, 6, 1, 2, NULL, 'Mexico', 4),
(75, 6, 1, 2, NULL, 'Nepal', 4),
(76, 6, 1, 2, NULL, 'Numbani', 4),
(77, 6, 1, 2, NULL, 'Russia', 4),
(78, 6, 1, 2, NULL, 'South Korea', 4),
(79, 6, 1, 2, NULL, 'Summer Games 2016', 4),
(80, 6, 1, 2, NULL, 'Sweden', 4),
(81, 6, 1, 2, NULL, 'Switzerland', 4),
(82, 6, 1, 2, NULL, 'United Kingdom', 4),
(83, 6, 1, 2, NULL, 'United States of America', 4),
(84, 7, 1, 2, NULL, '...Never Die', 7), -- Halloween Terror All Heroes Player Icons
(85, 7, 1, 2, NULL, 'Bewitching', 7),
(86, 7, 1, 2, NULL, 'Calavera', 7),
(87, 7, 1, 2, NULL, 'Candle', 7),
(88, 7, 1, 2, NULL, 'Eyeball', 7),
(89, 7, 1, 2, NULL, 'Ghostymari', 7),
(90, 7, 1, 2, NULL, 'Halloween Terror 2016', 7),
(91, 7, 1, 2, NULL, 'Spider', 7),
(92, 7, 1, 2, NULL, 'Superstition', 7),
(93, 7, 1, 2, NULL, 'Tombstone', 7),
(94, 7, 1, 2, NULL, 'Vampachimari', 7),
(95, 7, 1, 2, NULL, 'Witch''s Brew', 7),
(96, 7, 1, 2, NULL, 'Witch''s Hat', 7),
(97, 7, 1, 2, NULL, 'Wolf', 7),
(1881, 10, 1, 2, NULL, 'Winter Wonderland 2016', 11), -- Winter Wonderland All Heroes Player Icons
(1882, 10, 1, 2, NULL, '2017', 11),
(1883, 10, 1, 2, NULL, 'Holly', 11),
(1884, 10, 1, 2, NULL, 'Tannenbaum', 11),
(1885, 10, 1, 2, NULL, 'Bubbly', 11),
(1886, 10, 1, 2, NULL, 'Gingerbread', 11),
(1887, 10, 1, 2, NULL, 'Candy Cane', 11),
(1888, 10, 1, 2, NULL, 'Pachireindeer', 11),
(1889, 10, 1, 2, NULL, 'Stocking', 11),
(1890, 10, 1, 2, NULL, 'Cheers!', 11),
(1891, 10, 1, 2, NULL, 'Mochi', 11),
(1892, 10, 1, 2, NULL, 'Snow Globe', 11),
(1894, 10, 1, 2, NULL, 'Gingermari', 11),
(1895, 10, 1, 2, NULL, 'Pachimerry', 11),
(1896, 10, 1, 2, NULL, 'Present', 11),
(1897, 10, 1, 2, NULL, 'Ornament', 11),
(1898, 10, 1, 2, NULL, 'Snowman', 11),
(1899, 10, 1, 2, NULL, 'Hot Cocoa', 11),
(1900, 10, 1, 2, NULL, 'Wreath', 11),
(1902, 10, 1, 2, NULL, 'Dreidel', 11),
(1903, 10, 1, 2, NULL, 'Bells', 11),
(1904, 10, 1, 2, NULL, 'Peppermint', 11),
(2008, 14, 1, 2, NULL, 'Year of the Rooster 2017', 13), -- Lunar New Year All Heroes Player Icons
(2009, 14, 1, 2, NULL, 'Fortune', 13),
(2010, 14, 1, 2, NULL, 'Lion Dance', 13),
(2011, 14, 1, 2, NULL, 'Seollal', 13),
(2012, 14, 1, 2, NULL, 'New Year Cake', 13),
(2013, 14, 1, 2, NULL, 'Lucky Pouch', 13),
(2014, 14, 1, 2, NULL, 'Red Envelope', 13),
(2015, 14, 1, 2, NULL, 'Have Fish', 13),
(2016, 14, 1, 2, NULL, 'Lantern', 13),
(2017, 14, 1, 2, NULL, 'Gold', 13),
(2018, 14, 1, 2, NULL, 'Tangerines', 13),
(2019, 14, 1, 2, NULL, 'Coin', 13),
(2020, 14, 1, 2, NULL, 'Lunamari', 13),
(2026, 14, 1, 2, NULL, 'Bokimari', 13),
(2028, 14, 1, 2, NULL, 'Fuchimari', 13),
(2029, 14, 1, 2, NULL, 'Dragon Dance', 13),
(2030, 14, 1, 2, NULL, 'Pachilantern', 13),
(2195, 16, 1, 2, NULL, 'Uprising 2017', 16), -- Uprising All Heroes Player Icons
(2196, 16, 1, 2, NULL, 'Nullmari', 16),
(2197, 16, 1, 2, NULL, 'Null Sector', 16),
(2198, 16, 1, 2, NULL, 'B73-NS', 16),
(2199, 16, 1, 2, NULL, 'Drop Pod', 16),
(2200, 16, 1, 2, NULL, 'Blackwatch', 16),
(2316, 18, 1, 2, NULL, 'Anniversary 2017', 17), -- Anniversary All Heroes Player Icons
(2317, 18, 1, 2, NULL, 'Pachiversary', 17),
(98, 1, 1, 2, 1, 'Ana', 3), -- Normal Ana Player Icons
(99, 1, 1, 2, 1, 'Watcher', 3),
(100, 1, 1, 2, 1, 'Wedjat', 3),
(101, 6, 1, 2, 1, 'Shooting', 4), -- Summer Games Ana Player Icons
(2318, 18, 1, 2, 1, 'Anaversary', 17), -- Anniversary Ana Player Icons
(102, 1, 1, 2, 2, 'Bastion', 1), -- Normal Bastion Player Icons
(103, 1, 1, 2, 2, 'Ganymede', 1),
(104, 1, 1, 2, 2, 'Tank Crossing', 1),
(105, 6, 1, 2, 2, 'Boxing', 4), -- Summer Games Bastion Player Icons
(2319, 18, 1, 2, 2, 'Goldbot', 17), -- Anniversary Bastion Player Icons
(106, 1, 1, 2, 3, 'D.Va', 1), -- Normal D.Va Player Icons
(107, 1, 1, 2, 3, 'Bunny', 1),
(108, 1, 1, 2, 3, 'Charm', 1),
(2311, 9, 1, 2, 3, 'Officer', 17), -- Blizzard D.Va Player Icons
(109, 6, 1, 2, 3, 'Cycling', 4), -- Summer Games D.Va Player Icons
(2025, 14, 1, 2, 3, 'Hanbok', 13), -- Lunar New Year D.Va Player Icons
(2320, 18, 1, 2, 3, 'Hanaversary', 17), -- Anniversary D.Va Player Icons
(110, 1, 1, 2, 4, 'Genji', 1), -- Normal Genji Player Icons
(111, 1, 1, 2, 4, 'God of War', 1),
(112, 1, 1, 2, 4, 'Nin', 1),
(114, 9, 1, 2, 4, 'Oni', 9), -- Blizzard Genji Player Icons
(113, 6, 1, 2, 4, 'Fencing', 4), -- Summer Games Genji Player Icons
(2202, 16, 1, 2, 4, 'Cyborg', 16), -- Uprising Genji Player Icons
(2321, 18, 1, 2, 4, 'Goldborg', 17), -- Anniversary Genji Player Icons
(115, 1, 1, 2, 5, 'Hanzo', 1), -- Normal Hanzo Player Icons
(116, 1, 1, 2, 5, 'Shimada', 1),
(117, 1, 1, 2, 5, 'Storm', 1),
(118, 6, 1, 2, 5, 'Archery', 4), -- Summer Games Hanzo Player Icons
(2322, 18, 1, 2, 5, 'Kinenbi', 17), -- Anniversary Hanzo Player Icons
(119, 1, 1, 2, 6, 'Ahhhh!', 1), -- Normal Junkrat Player Icons
(120, 1, 1, 2, 6, 'Have a Nice Day!', 1),
(121, 1, 1, 2, 6, 'Junkrat', 1),
(122, 6, 1, 2, 6, 'Tennis', 4), -- Summer Games Junkrat Player Icons
(123, 7, 1, 2, 6, 'The Doctor', 7), -- Halloween Terror Junkrat Player Icons
(2323, 18, 1, 2, 6, 'Goldrat', 17), -- Anniversary Junkrat Player Icons
(124, 1, 1, 2, 7, 'Frog', 1), -- Normal Lúcio Player Icons
(125, 1, 1, 2, 7, 'Kambô', 1),
(126, 1, 1, 2, 7, 'Lúcio', 1),
(127, 6, 1, 2, 7, 'Football', 4), -- Summer Games Lúcio Player Icons
(2324, 18, 1, 2, 7, 'Lúciouro', 17), -- Anniversary Lúcio Player Icons
(128, 1, 1, 2, 8, 'Badge', 1), -- Normal McCree Player Icons
(129, 1, 1, 2, 8, 'Deadeye', 1),
(130, 1, 1, 2, 8, 'McCree', 1),
(131, 6, 1, 2, 8, 'Equestrian', 4), -- Summer Games McCree Player Icons
(2325, 18, 1, 2, 8, 'GAMF', 17), -- Anniversary McCree Player Icons
(132, 1, 1, 2, 9, 'Hairpin', 1), -- Normal Mei Player Icons
(133, 1, 1, 2, 9, 'Mei', 1),
(134, 1, 1, 2, 9, 'Snowball', 1),
(135, 6, 1, 2, 9, 'Table Tennis', 4), -- Summer Games Mei Player Icons
(2027, 14, 1, 2, 9, 'Chang''e', 13), -- Lunar New Year Mei Player Icons
(2326, 18, 1, 2, 9, 'May', 17), -- Anniversary Mei Player Icons
(136, 1, 1, 2, 10, 'Guardian Angel', 1), -- Normal Mercy Player Icons
(137, 1, 1, 2, 10, 'Mercy', 1),
(138, 1, 1, 2, 10, 'Valkyrie', 1),
(139, 6, 1, 2, 10, 'Badminton', 4), -- Summer Games Mercy Player Icons
(140, 7, 1, 2, 10, 'The Witch', 7), -- Halloween Terror Mercy Player Icons
(2203, 16, 1, 2, 10, 'Combat Medic', 16), -- Uprising Mercy Player Icons
(2327, 18, 1, 2, 10, 'Jahrestag', 17), -- Anniversary Mercy Player Icons
(2190, 1, 1, 2, 24, 'Efi', 15), -- Normal Orisa Player Icons
(2191, 1, 1, 2, 24, 'Protector', 15),
(2192, 1, 1, 2, 24, 'Orisa', 15),
(2201, 16, 1, 2, 24, 'OR14-NS', 16), -- Uprising Orisa Player Icons
(2328, 18, 1, 2, 24, 'Aurisa', 17), -- Anniversary Orisa Player Icons
(141, 1, 1, 2, 11, 'Pharah', 1), -- Normal Pharah Player Icons
(142, 1, 1, 2, 11, 'Raptora', 1),
(143, 1, 1, 2, 11, 'Wadjet', 1),
(144, 6, 1, 2, 11, 'Basketball', 4), -- Summer Games Pharah Player Icons
(2329, 18, 1, 2, 11, 'Anniversareeha', 17), -- Anniversary Pharah Player Icons
(145, 1, 1, 2, 12, 'Emblem', 1), -- Normal Reaper Player Icons
(146, 1, 1, 2, 12, 'Reaper', 1),
(147, 1, 1, 2, 12, 'Soul Globe', 1),
(148, 6, 1, 2, 12, 'BMX', 4), -- Summer Games Reaper Player Icons
(149, 7, 1, 2, 12, 'The Reaper', 7), -- Halloween Terror Reaper Player Icons
(2330, 18, 1, 2, 12, 'Reapiversary', 17), -- Anniversary Reaper Player Icons
(150, 1, 1, 2, 13, 'Lionhardt', 1), -- Normal Reinhardt Player Icons
(151, 1, 1, 2, 13, 'Reinhardt', 1),
(152, 1, 1, 2, 13, 'Scar', 1),
(153, 6, 1, 2, 13, 'Wrestling', 4), -- Summer Games Reinhardt Player Icons
(2021, 14, 1, 2, 13, 'Sandy', 13), -- Lunar New Year Reinhardt Player Icons
(2204, 16, 1, 2, 13, 'Lieutenant', 16), -- Uprising Reinhardt Player Icons
(2331, 18, 1, 2, 13, 'Goldhardt', 17), -- Anniversary Reinhardt Player Icons
(154, 1, 1, 2, 14, 'Hook', 1), -- Normal Roadhog Player Icons
(155, 1, 1, 2, 14, 'Piggy', 1),
(156, 1, 1, 2, 14, 'Roadhog', 1),
(157, 6, 1, 2, 14, 'Diving', 4), -- Summer Games Roadhog Player Icons
(158, 7, 1, 2, 14, 'The Monster', 7), -- Halloween Terror Roadhog Player Icons
(2024, 14, 1, 2, 14, 'Piggy', 13), -- Lunar New Year Roadhog Player Icons
(2332, 18, 1, 2, 14, 'Goldhog', 17), -- Anniversary Roadhog Player Icons
(159, 1, 1, 2, 15, '76', 1), -- Normal Soldier: 76 Player Icons
(160, 1, 1, 2, 15, 'Soldier: 76', 1),
(161, 1, 1, 2, 15, 'Strike-Commander', 1),
(162, 6, 1, 2, 15, 'Golf', 4), -- Summer Games Soldier: 76 Player Icons
(2333, 18, 1, 2, 15, 'Gold Soldier', 17), -- Anniversary Soldier: 76 Player Icons
(191, 1, 1, 2, 23, 'Hacker', 9), -- Normal Sombra Player Icons
(192, 1, 1, 2, 23, 'Skull', 9),
(193, 1, 1, 2, 23, 'Sombra', 9),
(2334, 18, 1, 2, 23, 'Aniversario', 17), -- Anniversary Sombra Player Icons
(163, 1, 1, 2, 16, 'Sentry', 1), -- Normal Symmetra Player Icons
(164, 1, 1, 2, 16, 'Symmetra', 1),
(165, 1, 1, 2, 16, 'Vishkar', 1),
(166, 6, 1, 2, 16, 'Rythmic Gymnastics', 4), -- Summer Games Symmetra Player Icons
(2335, 18, 1, 2, 16, 'Vaswanniversary', 17), -- Anniversary Symmetra Player Icons
(167, 1, 1, 2, 17, 'Forge', 1), -- Normal Torbjörn Player Icons
(168, 1, 1, 2, 17, 'Gears', 1),
(169, 1, 1, 2, 17, 'Torbjörn', 1),
(170, 6, 1, 2, 17, 'Water Polo', 4), -- Summer Games Torbjörn Player Icons
(1901, 10, 1, 2, 17, 'Santaclad', 11), -- Winter Wonderland Torbjörn Player Icons
(2205, 16, 1, 2, 17, 'Chief Engineer', 16), -- Uprising Torbjörn Player Icons
(2336, 18, 1, 2, 17, 'Goldclad', 17), -- Anniversary Torbjörn Player Icons
(171, 1, 1, 2, 18, 'Patch', 1), -- Normal Tracer Player Icons
(172, 1, 1, 2, 18, 'Pulse Bomb', 1),
(173, 1, 1, 2, 18, 'Tracer', 1),
(1893, 10, 1, 2, 18, 'Jingle', 11), -- Winter Wonderland Tracer Player Icons
(174, 6, 1, 2, 18, 'Track', 4), -- Summer Games Tracer Player Icons
(2206, 16, 1, 2, 18, 'Cadet', 16), -- Uprising Tracer Player Icons
(2337, 18, 1, 2, 18, 'Auxton', 17), -- Anniversary Tracer Player Icons
(175, 1, 1, 2, 19, 'Baiser', 1), -- Normal Widowmaker Player Icons
(176, 1, 1, 2, 19, 'Grappling Hook', 1),
(177, 1, 1, 2, 19, 'Widowmaker', 1),
(178, 6, 1, 2, 19, 'Gymnastics', 4), -- Summer Games Widowmaker Player Icons
(2207, 16, 1, 2, 19, 'Lacroix', 16), -- Uprising Widowmaker Player Icons
(2338, 18, 1, 2, 19, 'D''Or', 17), -- Anniversary Widowmaker Player Icons
(179, 1, 1, 2, 20, 'Lunar Ops', 1), -- Normal Winston Player Icons
(180, 1, 1, 2, 20, 'Peanut Butter', 1),
(181, 1, 1, 2, 20, 'Winston', 1),
(182, 6, 1, 2, 20, 'Volleyball', 4), -- Summer Games Winston Player Icons
(1905, 10, 1, 2, 20, 'Yeti', 11), -- Winter Wonderland Winston Player Icons
(2022, 14, 1, 2, 20, 'Monkey', 13), -- Lunar New Year Winston Player Icons
(2339, 18, 1, 2, 20, 'Goldrilla', 17), -- Anniversary Winston Player Icons
(183, 1, 1, 2, 21, '512', 1), -- Normal Zarya Player Icons
(184, 1, 1, 2, 21, 'Particle Barrier', 1),
(185, 1, 1, 2, 21, 'Zarya', 1),
(186, 6, 1, 2, 21, 'Weightlifting', 4), -- Summer Games Zarya Player Icons
(2340, 18, 1, 2, 21, 'Zaryanoversary', 17), -- Anniversary Zarya Player Icons
(187, 1, 1, 2, 22, 'Harmony', 1), -- Normal Zenyatta Player Icons
(188, 1, 1, 2, 22, 'Meditation', 1),
(189, 1, 1, 2, 22, 'Zenyatta', 1),
(190, 6, 1, 2, 22, 'Taekwondo', 4), -- Summer Games Zenyatta Player Icons
(1906, 10, 1, 2, 22, 'Nutcracker', 11), -- Winter Wonderland Zenyatta Player Icons
(2023, 14, 1, 2, 22, 'Sanzang', 13), -- Lunar New Year Zenyatta Player Icons
(2341, 18, 1, 2, 22, 'Zeniversary', 17), -- Anniversary Zenyatta Player Icons
-- Skins
(194, NULL, 2, NULL, 1, 'Classic', 3), -- Default Ana Skins
(195, 1, 2, 2, 1, 'Citrine', 3), -- Normal Ana Skins
(196, 1, 2, 2, 1, 'Garnet', 3),
(197, 1, 2, 2, 1, 'Peridot', 3),
(198, 1, 2, 2, 1, 'Turquoise', 3),
(199, 1, 2, 3, 1, 'Merciful', 3),
(200, 1, 2, 3, 1, 'Shrike', 3),
(201, 1, 2, 4, 1, 'Wadjet', 3),
(202, 1, 2, 4, 1, 'Wasteland', 3),
(203, 1, 2, 4, 1, 'Captain Amari', 3),
(204, 1, 2, 4, 1, 'Horus', 3),
(205, 7, 2, 3, 1, 'Ghoul', 7), -- Halloween Terror Ana Skins
(2031, 14, 2, 3, 1, 'Tal', 13), -- Lunar New Year Ana Skins
(206, NULL, 2, NULL, 2, 'Classic', 1), -- Default Bastion Skins
(207, 1, 2, 2, 2, 'Dawn', 1), -- Normal Bastion Skins
(208, 1, 2, 2, 2, 'Meadow', 1),
(209, 1, 2, 2, 2, 'Sky', 1),
(210, 1, 2, 2, 2, 'Soot', 1),
(211, 1, 2, 3, 2, 'Defense Matrix', 1),
(212, 1, 2, 3, 2, 'Omnic Crisis', 1),
(213, 1, 2, 4, 2, 'Antique', 1),
(214, 1, 2, 4, 2, 'Gearbot', 1),
(215, 1, 2, 4, 2, 'Steambot', 1),
(216, 1, 2, 4, 2, 'Woodbot', 1),
(217, 3, 2, 4, 2, 'Overgrown', 1), -- Origins Edition Bastion Skins
(219, 8, 2, 3, 2, 'BlizzCon 2016', 7), -- BlizzCon Bastion Skins
(218, 7, 2, 3, 2, 'Tombstone', 7), -- Halloween Terror Bastion Skins
(2032, 14, 2, 3, 2, 'Rooster', 13), -- Lunar New Year Bastion Skins
(2208, 16, 2, 3, 2, 'Null Sector', 16), -- Uprising Bastion Skins
(2342, 18, 2, 4, 2, 'Dune Buggy', 17), -- Anniversary Bastion Skins
(220, NULL, 2, NULL, 3, 'Classic', 1), -- Default D.Va Skins
(221, 1, 2, 2, 3, 'Blueberry', 1), -- Normal D.Va Skins
(222, 1, 2, 2, 3, 'Lemon-Lime', 1),
(223, 1, 2, 2, 3, 'Tangerine', 1),
(224, 1, 2, 2, 3, 'Watermelon', 1),
(225, 1, 2, 3, 3, 'Carbon Fiber', 1),
(226, 1, 2, 3, 3, 'White Rabbit', 1),
(227, 1, 2, 4, 3, 'B.Va', 1),
(228, 1, 2, 4, 3, 'Junebug', 1),
(229, 1, 2, 4, 3, 'Junker', 1),
(230, 1, 2, 4, 3, 'Scavenger', 1),
(2312, 9, 2, 4, 3, 'Officer', 17), -- Blizzard D.Va Skins
(231, 6, 2, 3, 3, 'Taegeukgi', 4), -- Summer Games D.Va Skins
(2033, 14, 2, 4, 3, 'Palanquin', 13), -- Lunar New Year D.Va Skins
(2343, 18, 2, 4, 3, 'Cruiser', 17), -- Anniversary D.Va Skins
(232, NULL, 2, NULL, 4, 'Classic', 1), -- Default Genji Skins
(233, 1, 2, 2, 4, 'Azurite', 1), -- Normal Genji Skins
(234, 1, 2, 2, 4, 'Cinnabar', 1),
(235, 1, 2, 2, 4, 'Malachite', 1),
(236, 1, 2, 2, 4, 'Ochre', 1),
(237, 1, 2, 3, 4, 'Carbon Fiber', 1),
(238, 1, 2, 3, 4, 'Chrome', 1),
(239, 1, 2, 4, 4, 'Bedouin', 1),
(240, 1, 2, 4, 4, 'Nomad', 1),
(241, 1, 2, 4, 4, 'Sparrow', 1),
(242, 1, 2, 4, 4, 'Young Genji', 1),
(244, 9, 2, 4, 4, 'Oni', 9), -- Blizzard Genji Skins
(243, 6, 2, 3, 4, 'Nihon', 4), -- Summer Games Genji Skins
(2209, 16, 2, 4, 4, 'Blackwatch', 16), -- Uprising Genji Skins
(2344, 18, 2, 4, 4, 'Sentai', 17), -- Anniversary Genji Skins
(245, NULL, 2, NULL, 5, 'Classic', 1), -- Default Hanzo Skins
(246, 1, 2, 2, 5, 'Azuki', 1), -- Normal Hanzo Skins
(247, 1, 2, 2, 5, 'Kinoko', 1),
(248, 1, 2, 2, 5, 'Midori', 1),
(249, 1, 2, 2, 5, 'Sora', 1),
(250, 1, 2, 3, 5, 'Cloud', 1),
(251, 1, 2, 3, 5, 'Dragon', 1),
(252, 1, 2, 4, 5, 'Lone Wolf', 1),
(253, 1, 2, 4, 5, 'Okami', 1),
(254, 1, 2, 4, 5, 'Young Hanzo', 1),
(255, 1, 2, 4, 5, 'Young Master', 1),
(256, 7, 2, 3, 5, 'Demon', 7), -- Halloween Terror Hanzo Skins
(2345, 18, 2, 4, 5, 'Cyberninja', 17), -- Anniversary Hanzo Skins
(257, NULL, 2, NULL, 6, 'Classic', 1), -- Default Junkrat Skins
(258, 1, 2, 2, 6, 'Bleached', 1), -- Normal Junkrat Skins
(259, 1, 2, 2, 6, 'Drowned', 1),
(260, 1, 2, 2, 6, 'Irradiated', 1),
(261, 1, 2, 2, 6, 'Rusted', 1),
(262, 1, 2, 3, 6, 'Jailbird', 1),
(263, 1, 2, 3, 6, 'Toasted', 1),
(264, 1, 2, 4, 6, 'Fool', 1),
(265, 1, 2, 4, 6, 'Hayseed', 1),
(266, 1, 2, 4, 6, 'Jester', 1),
(267, 1, 2, 4, 6, 'Scarecrow', 1),
(268, 7, 2, 4, 6, 'Dr. Junkenstein', 7), -- Halloween Terror Junkrat Skins
(2034, 14, 2, 3, 6, 'Firework', 13), -- Lunar New Year Junkrat Skins
(269, NULL, 2, NULL, 7, 'Classic', 1), -- Default Lúcio Skins
(270, 1, 2, 2, 7, 'Azul', 1), -- Normal Lúcio Skins
(271, 1, 2, 2, 7, 'Laranja', 1),
(272, 1, 2, 2, 7, 'Roxo', 1),
(273, 1, 2, 2, 7, 'Vermelho', 1),
(274, 1, 2, 3, 7, 'Auditiva', 1),
(275, 1, 2, 3, 7, 'Synaesthesia', 1),
(276, 1, 2, 4, 7, 'Breakaway', 1),
(277, 1, 2, 4, 7, 'Hippityhop', 1),
(278, 1, 2, 4, 7, 'Ribbit', 1),
(279, 1, 2, 4, 7, 'Slapshot', 1),
(280, 6, 2, 4, 7, 'Seleção', 4), -- Summer Games Lúcio Skins
(281, 6, 2, 4, 7, 'Striker', 4),
(1958, 10, 2, 3, 7, 'Andes', 11), -- Winter Wonderland Lúcio Skins
(2346, 18, 2, 4, 7, 'Jazzy', 17), -- Anniversary Lúcio Skins
(282, NULL, 2, NULL, 8, 'Classic', 1), -- Default McCree Skins
(283, 1, 2, 2, 8, 'Ebony', 1), -- Normal McCree Skins
(284, 1, 2, 2, 8, 'Lake', 1),
(285, 1, 2, 2, 8, 'Sage', 1),
(286, 1, 2, 2, 8, 'Wheat', 1),
(287, 1, 2, 3, 8, 'On the Range', 1),
(288, 1, 2, 3, 8, 'White Hat', 1),
(289, 1, 2, 4, 8, 'Gambler', 1),
(290, 1, 2, 4, 8, 'Mystery Man', 1),
(291, 1, 2, 4, 8, 'Riverboat', 1),
(292, 1, 2, 4, 8, 'Vigilante', 1),
(293, 6, 2, 3, 8, 'American', 4), -- Summer Games McCree Skins
(1959, 10, 2, 3, 8, 'Scrooge', 11), -- Winter Wonderland McCree Skins
(2210, 16, 2, 4, 8, 'Blackwatch', 16), -- Uprising McCree Skins
(294, NULL, 2, NULL, 9, 'Classic', 1), -- Default Mei Skins
(295, 1, 2, 2, 9, 'Chrysanthemum', 1), -- Normal Mei Skins
(296, 1, 2, 2, 9, 'Heliotrope', 1),
(297, 1, 2, 2, 9, 'Jade', 1),
(298, 1, 2, 2, 9, 'Persimmon', 1),
(299, 1, 2, 3, 9, 'Earthen', 1),
(300, 1, 2, 3, 9, 'Snow Plum', 1),
(301, 1, 2, 4, 9, 'Abominable', 1),
(302, 1, 2, 4, 9, 'Firefighter', 1),
(303, 1, 2, 4, 9, 'Rescue Mei', 1),
(304, 1, 2, 4, 9, 'Yeti Hunter', 1),
(1960, 10, 2, 4, 9, 'Mei-rry', 11), -- Winter Wonderland Mei Skins
(2035, 14, 2, 4, 9, 'Chang''e', 13), -- Lunar New Year Mei Skins
(2036, 14, 2, 4, 9, 'Luna', 13),
(2347, 18, 2, 4, 9, 'Beekeeper', 17), -- Anniversary Mei Skins
(305, NULL, 2, NULL, 10, 'Classic', 1), -- Default Mercy Skins
(306, 1, 2, 2, 10, 'Celestial', 1), -- Normal Mercy Skins
(307, 1, 2, 2, 10, 'Mist', 1),
(308, 1, 2, 2, 10, 'Orchid', 1),
(309, 1, 2, 2, 10, 'Verdant', 1),
(310, 1, 2, 3, 10, 'Amber', 1),
(311, 1, 2, 3, 10, 'Cobalt', 1),
(312, 1, 2, 4, 10, 'Devil', 1),
(313, 1, 2, 4, 10, 'Imp', 1),
(314, 1, 2, 4, 10, 'Sigrún', 1),
(315, 1, 2, 4, 10, 'Valkyrie', 1),
(316, 6, 2, 3, 10, 'Eidgenossin', 4), -- Summer Games Mercy Skins
(317, 7, 2, 4, 10, 'Witch', 7), -- Halloween Terror Mercy Skins
(2037, 14, 2, 3, 10, 'Golden', 13), -- Lunar New Year Mercy Skins
(2211, 16, 2, 4, 10, 'Combat Medic Ziegler', 16), -- Uprising Mercy Skins
(2132, NULL, 2, NULL, 24, 'Classic', 1), -- Default Orisa Skins
(2133, 1, 2, 2, 24, 'Dawn', 15), -- Normal Orisa Skins
(2134, 1, 2, 2, 24, 'Plains', 15),
(2135, 1, 2, 2, 24, 'Sunrise', 15),
(2136, 1, 2, 2, 24, 'Twilight', 15),
(2137, 1, 2, 3, 24, 'Camouflage', 15),
(2138, 1, 2, 4, 24, 'Carbon Fiber', 15),
(2139, 1, 2, 4, 24, 'Dynastinae', 15),
(2140, 1, 2, 4, 24, 'Megasoma', 15),
(2141, 1, 2, 4, 24, 'Protector', 15),
(2212, 16, 2, 4, 24, 'Null Sector', 16), -- Uprising Orisa Skins
(318, NULL, 2, NULL, 11, 'Classic', 1), -- Default Pharah Skins
(319, 1, 2, 2, 11, 'Amethyst', 1), -- Normal Pharah Skins
(320, 1, 2, 2, 11, 'Copper', 1),
(321, 1, 2, 2, 11, 'Emerald', 1),
(322, 1, 2, 2, 11, 'Titanium', 1),
(323, 1, 2, 3, 11, 'Anubis', 1),
(324, 1, 2, 3, 11, 'Jackal', 1),
(325, 1, 2, 4, 11, 'Mechaqueen', 1),
(326, 1, 2, 4, 11, 'Raindancer', 1),
(327, 1, 2, 4, 11, 'Raptorion', 1),
(328, 1, 2, 4, 11, 'Thunderbird', 1),
(329, 3, 2, 4, 11, 'Security Chief', 1), -- Origins Edition Pharah Skins
(330, 7, 2, 3, 11, 'Possessed', 7), -- Halloween Terror Pharah Skins
(1961, 10, 2, 3, 11, 'Frostbite', 11), -- Winter Wonderland Pharah Skins
(2348, 18, 2, 4, 11, 'Bedouin', 17), -- Anniversary Pharah Skins
(331, NULL, 2, NULL, 12, 'Classic', 1), -- Default Reaper Skins
(332, 1, 2, 2, 12, 'Blood', 1), -- Normal Reaper Skins
(333, 1, 2, 2, 12, 'Midnight', 1),
(334, 1, 2, 2, 12, 'Moss', 1),
(335, 1, 2, 2, 12, 'Royal', 1),
(336, 1, 2, 3, 12, 'Desert', 1),
(337, 1, 2, 3, 12, 'Wight', 1),
(338, 1, 2, 4, 12, 'El Blanco', 1),
(339, 1, 2, 4, 12, 'Mariachi', 1),
(340, 1, 2, 4, 12, 'Nevermore', 1),
(341, 1, 2, 4, 12, 'Plague Doctor', 1),
(342, 3, 2, 4, 12, 'Blackwatch Reyes', 1), -- Origins Edition Reaper Skins
(343, 7, 2, 4, 12, 'Pumpkin', 7), -- Halloween Terror Reaper Skins
(1962, 10, 2, 3, 12, 'Shiver', 11), -- Winter Wonderland Reaper Skins
(344, NULL, 2, NULL, 13, 'Classic', 1), -- Default Reinhardt Skins
(345, 1, 2, 2, 13, 'Brass', 1), -- Normal Reinhardt Skins
(346, 1, 2, 2, 13, 'Cobalt', 1),
(347, 1, 2, 2, 13, 'Copper', 1),
(348, 1, 2, 2, 13, 'Viridian', 1),
(349, 1, 2, 3, 13, 'Bundeswehr', 1),
(350, 1, 2, 3, 13, 'Paragon', 1),
(351, 1, 2, 4, 13, 'Balderich', 5),
(352, 1, 2, 4, 13, 'Blackhardt', 1),
(353, 1, 2, 4, 13, 'Bloodhardt', 1),
(354, 1, 2, 4, 13, 'Griefhardt', 5),
(355, 1, 2, 4, 13, 'Lionhardt', 1),
(356, 1, 2, 4, 13, 'Stonehardt', 1),
(357, 7, 2, 3, 13, 'Coldhardt', 7), -- Halloween Terror Reinhardt Skins
(2038, 14, 2, 4, 13, 'Wujing', 13), -- Lunar New Year Reinhardt Skins
(2213, 16, 2, 3, 13, 'Lieutenant Wilhelm', 16), -- Uprising Reinhardt Skins
(358, NULL, 2, NULL, 14, 'Classic', 1), -- Default Roadhog Skins
(359, 1, 2, 2, 14, 'Kiwi', 1), -- Normal Roadhog Skins
(360, 1, 2, 2, 14, 'Mud', 1),
(361, 1, 2, 2, 14, 'Sand', 1),
(362, 1, 2, 2, 14, 'Thistle', 1),
(363, 1, 2, 3, 14, 'Pigpen', 1),
(364, 1, 2, 3, 14, 'Stitched', 1),
(365, 1, 2, 4, 14, 'Islander', 1),
(366, 1, 2, 4, 14, 'Mako', 1),
(367, 1, 2, 4, 14, 'Sharkbait', 1),
(368, 1, 2, 4, 14, 'Toa', 1),
(369, 7, 2, 4, 14, 'Junkenstein''s Monster', 7), -- Halloween Terror Roadhog Skins
(1963, 10, 2, 3, 14, 'Rudolph', 11), -- Winter Wonderland Roadhog Skins
(2039, 14, 2, 4, 14, 'Bajie', 13), -- Lunar New Year Roadhog Skins
(370, NULL, 2, NULL, 15, 'Classic', 1), -- Default Soldier: 76 Skins
(371, 1, 2, 2, 15, 'Jet', 1), -- Normal Soldier: 76 Skins
(372, 1, 2, 2, 15, 'Olive', 1),
(373, 1, 2, 2, 15, 'Russet', 1),
(374, 1, 2, 2, 15, 'Smoke', 1),
(375, 1, 2, 3, 15, 'Bone', 1),
(376, 1, 2, 3, 15, 'Golden', 1),
(377, 1, 2, 4, 15, 'Commando: 76', 1),
(378, 1, 2, 4, 15, 'Daredevil: 76', 1),
(379, 1, 2, 4, 15, 'Night Ops: 76', 1),
(380, 1, 2, 4, 15, 'Stunt Rider: 76', 1),
(381, 3, 2, 4, 15, 'Strike-Commander Morrison', 1), -- Origins Edition Soldier: 76 Skins
(382, 7, 2, 3, 15, 'Immortal', 7), -- Halloween Terror Soldier: 76 Skins
(2349, 18, 2, 4, 15, 'Cyborg: 76', 17), -- Anniversary Soldier: 76 Skins
(470, NULL, 2, NULL, 23, 'Classic', 9), -- Default Sombra Skins
(471, 1, 2, 2, 23, 'Cidro', 9), -- Normal Sombra Skins
(472, 1, 2, 2, 23, 'Incendio', 9),
(473, 1, 2, 2, 23, 'Mar', 9),
(474, 1, 2, 2, 23, 'Noche', 9),
(475, 1, 2, 3, 23, 'Azúcar', 9),
(476, 1, 2, 3, 23, 'Glitch', 9),
(477, 1, 2, 4, 23, 'Virus', 9),
(478, 1, 2, 4, 23, 'Augmented', 9),
(479, 1, 2, 4, 23, 'Cyberspace', 9),
(480, 1, 2, 4, 23, 'Los Muertos', 9),
(1969, 10, 2, 3, 23, 'Peppermint', 11), -- Winter Wonderland Sombra Skins
(383, NULL, 2, NULL, 16, 'Classic', 1), -- Default Symmetra Skins
(384, 1, 2, 2, 16, 'Cardamom', 1), -- Normal Symmetra Skins
(385, 1, 2, 2, 16, 'Hyacinth', 1),
(386, 1, 2, 2, 16, 'Saffron', 1),
(387, 1, 2, 2, 16, 'Technomancer', 1),
(388, 1, 2, 3, 16, 'Regal', 1),
(389, 1, 2, 3, 16, 'Utopaea', 1),
(390, 1, 2, 4, 16, 'Architech', 1),
(391, 1, 2, 4, 16, 'Devi', 1),
(392, 1, 2, 4, 16, 'Goddess', 1),
(393, 1, 2, 4, 16, 'Vishkar', 1),
(394, 7, 2, 3, 16, 'Vampire', 7), -- Halloween Terror Symmetra Skins
(2040, 14, 2, 3, 16, 'Qipao', 13), -- Lunar New Year Symmetra Skins
(2350, 18, 2, 4, 16, 'Oasis', 17), -- Anniversary Symmetra Skins
(395, NULL, 2, NULL, 17, 'Classic', 1), -- Default Torbjörn Skins
(396, 1, 2, 2, 17, 'Blå', 1), -- Normal Torbjörn Skins
(397, 1, 2, 2, 17, 'Citron', 1),
(398, 1, 2, 2, 17, 'Grön', 1),
(399, 1, 2, 2, 17, 'Plommon', 1),
(400, 1, 2, 3, 17, 'Cathode', 1),
(401, 1, 2, 3, 17, 'Woodclad', 1),
(402, 1, 2, 4, 17, 'Barbarossa', 1),
(403, 1, 2, 4, 17, 'Blackbeard', 1),
(404, 1, 2, 4, 17, 'Chopper', 1),
(405, 1, 2, 4, 17, 'Deadlock', 1),
(406, 6, 2, 3, 17, 'Tre Kronor', 4), -- Summer Games Torbjörn Skins
(1964, 10, 2, 3, 17, 'Santaclad', 11), -- Winter Wonderland Torbjörn Skins
(2214, 16, 2, 4, 17, 'Chief Engineer Lindholm', 16), -- Uprising Torbjörn Skins
(2215, 16, 2, 4, 17, 'Ironclad', 16),
(407, NULL, 2, NULL, 18, 'Classic', 1), -- Default Tracer Skins
(408, 1, 2, 2, 18, 'Electric Purple', 1), -- Normal Tracer Skins
(409, 1, 2, 2, 18, 'Hot Pink', 1),
(410, 1, 2, 2, 18, 'Neon Green', 1),
(411, 1, 2, 2, 18, 'Royal Blue', 1),
(412, 1, 2, 3, 18, 'Posh', 1),
(413, 1, 2, 3, 18, 'Sporty', 1),
(414, 1, 2, 4, 18, 'Mach T', 1),
(415, 1, 2, 4, 18, 'Punk', 1),
(416, 1, 2, 4, 18, 'T. Racer', 1),
(417, 1, 2, 4, 18, 'Ultraviolet', 1),
(418, 3, 2, 4, 18, 'Slipstream', 1), -- Origins Edition Tracer Skins
(419, 6, 2, 4, 18, 'Sprinter', 4), -- Summer Games Tracer Skins
(420, 6, 2, 4, 18, 'Track and Field', 4),
(1965, 10, 2, 4, 18, 'Jingle', 11), -- Winter Wonderland Tracer Skins
(2041, 14, 2, 3, 18, 'Rose', 13), -- Lunar New Year Tracer Skins
(2216, 16, 2, 4, 18, 'Cadet Oxton', 16), -- Uprising Tracer Skins
(2351, 18, 2, 4, 18, 'Graffiti', 17), -- Anniversary Tracer Skins
(421, NULL, 2, NULL, 19, 'Classic', 1), -- Default Widowmaker Skins
(422, 1, 2, 2, 19, 'Ciel', 1), -- Normal Widowmaker Skins
(423, 1, 2, 2, 19, 'Nuit', 1),
(424, 1, 2, 2, 19, 'Rose', 1),
(425, 1, 2, 2, 19, 'Vert', 1),
(426, 1, 2, 3, 19, 'Patina', 1),
(427, 1, 2, 3, 19, 'Winter', 1),
(428, 1, 2, 4, 19, 'Comptesse', 1),
(429, 1, 2, 4, 19, 'Huntress', 1),
(430, 1, 2, 4, 19, 'Odette', 1),
(431, 1, 2, 4, 19, 'Odile', 1),
(432, 4, 2, 4, 19, 'Noire', 1), -- Preorder Widowmaker Skins
(433, 6, 2, 3, 19, 'Tricolore', 4), -- Summer Games Widowmaker Skins
(2217, 16, 2, 4, 19, 'Talon', 16), -- Uprising Widowmaker Skins
(434, NULL, 2, NULL, 20, 'Classic', 1), -- Default Winston Skins
(435, 1, 2, 2, 20, 'atmosphere', 1), -- Normal Winston Skins
(436, 1, 2, 2, 20, 'Banana', 1),
(437, 1, 2, 2, 20, 'Forest', 1),
(438, 1, 2, 2, 20, 'Red Planet', 1),
(439, 1, 2, 3, 20, 'Desert', 1),
(440, 1, 2, 3, 20, 'Horizon', 1),
(441, 1, 2, 4, 20, 'Explorer', 1),
(442, 1, 2, 4, 20, 'Frogston', 1),
(443, 1, 2, 4, 20, 'Safari', 1),
(444, 1, 2, 4, 20, 'Undersea', 1),
(1966, 10, 2, 4, 20, 'Yeti', 11), -- Winter Wonderland Winston Skins
(2042, 14, 2, 4, 20, 'Wukong', 13), -- Lunar New Year Winston Skins
(445, NULL, 2, NULL, 21, 'Classic', 1), -- Default Zarya Skins
(446, 1, 2, 2, 21, 'Brick', 1), -- Normal Zarya Skins
(447, 1, 2, 2, 21, 'Goldenrod', 1),
(448, 1, 2, 2, 21, 'Taiga', 1),
(449, 1, 2, 2, 21, 'Violet', 1),
(450, 1, 2, 3, 21, 'Dawn', 1),
(451, 1, 2, 3, 21, 'Midnight', 1),
(452, 1, 2, 4, 21, 'Arctic', 1),
(453, 1, 2, 4, 21, 'Cybergoth', 1),
(454, 1, 2, 4, 21, 'Industrial', 1),
(455, 1, 2, 4, 21, 'Siberian Front', 1),
(456, 6, 2, 4, 21, 'Champion', 4), -- Summer Games Zarya Skins
(457, 6, 2, 4, 21, 'Weightlifter', 4),
(1967, 10, 2, 3, 21, 'Frosted', 11), -- Winter Wonderland Zarya Skins
(2352, 18, 2, 4, 21, 'Cyberian', 17), -- Anniversary Zarya Skins
(458, NULL, 2, NULL, 22, 'Classic', 1), -- Default Zenyatta Skins
(459, 1, 2, 2, 22, 'Air', 1), -- Normal Zenyatta Skins
(460, 1, 2, 2, 22, 'Earth', 1),
(461, 1, 2, 2, 22, 'Leaf', 1),
(462, 1, 2, 2, 22, 'Water', 1),
(463, 1, 2, 3, 22, 'Ascendant', 1),
(464, 1, 2, 3, 22, 'Harmonious', 1),
(465, 1, 2, 4, 22, 'Djinnyatta', 1),
(466, 1, 2, 4, 22, 'Ifrit', 1),
(467, 1, 2, 4, 22, 'Ra', 1),
(468, 1, 2, 4, 22, 'Sunyatta', 1),
(469, 7, 2, 3, 22, 'Skullyatta', 7), -- Halloween Terror Zenyatta Skins
(1968, 10, 2, 4, 22, 'Nutcracker', 11), -- Winter Wonderland Zenyatta Skins
(2043, 14, 2, 4, 22, 'Sanzang', 13), -- Lunar New Year Zenyatta Skins
-- Emotes
(481, NULL, 3, NULL, 1, 'Heroic', 3), -- Default Ana Emotes
(482, 1, 3, 3, 1, 'Disapproving', 3), -- Normal Ana Emotes
(483, 1, 3, 3, 1, 'Not Impressed', 5),
(484, 1, 3, 3, 1, 'Protector', 3),
(485, 1, 3, 3, 1, 'Take a Knee', 5),
(486, 1, 3, 3, 1, 'Tea Time', 3),
(487, 7, 3, 3, 1, 'Candy', 7), -- Halloween Terror Ana Emotes
(2353, 18, 3, 3, 1, 'Dance', 17), -- Anniversary Ana Emotes
(488, NULL, 3, NULL, 2, 'Heroic', 1), -- Default Bastion Emotes
(489, 1, 3, 3, 2, 'Alert! Alert!', 1), -- Normal Bastion Emotes
(490, 1, 3, 3, 2, 'Chortle', 5),
(491, 1, 3, 3, 2, 'Dizzy', 1),
(492, 1, 3, 3, 2, 'Robot', 1),
(493, 1, 3, 3, 2, 'Rest Mode', 5),
(494, 6, 3, 3, 2, 'Boxing', 4), -- Summer Games Bastion Emotes
(2354, 18, 3, 3, 2, 'Robo Boogie', 17), -- Anniversary Bastion Emotes
(495, NULL, 3, NULL, 3, 'Heroic', 1), -- Default D.Va Emotes
(496, 1, 3, 3, 3, '^O^', 5), -- Normal D.Va Emotes
(497, 1, 3, 3, 3, 'Bunny Hop', 1),
(498, 1, 3, 3, 3, 'Heartbreaker', 1),
(499, 1, 3, 3, 3, 'Party Time', 1),
(500, 1, 3, 4, 3, 'Game On', 5),
(2044, 14, 3, 3, 3, 'Bow', 13), -- Lunar New Year D.Va Emotes
(2355, 18, 3, 3, 3, 'Dance', 17), -- Anniversary D.Va Emotes
(501, NULL, 3, NULL, 4, 'Heroic', 1), -- Default Genji Emotes
(502, 1, 3, 3, 4, 'Amusing', 5), -- Normal Genji Emotes
(503, 1, 3, 3, 4, 'Challenge', 1),
(504, 1, 3, 3, 4, 'Cutting Edge', 1),
(505, 1, 3, 3, 4, 'Meditate', 5),
(506, 1, 3, 3, 4, 'Salute', 1),
(2356, 18, 3, 3, 4, 'Dance', 17), -- Anniversary Genji Emotes
(507, NULL, 3, NULL, 5, 'Heroic', 1), -- Default Hanzo Emotes
(508, 1, 3, 3, 5, 'Beckon', 1), -- Normal Hanzo Emotes
(509, 1, 3, 3, 5, 'Brush Shoulder', 1),
(510, 1, 3, 3, 5, 'Chuckle', 5),
(511, 1, 3, 3, 5, 'Meditate', 5),
(512, 1, 3, 3, 5, 'Victory', 1),
(2218, 16, 3, 3, 5, 'Training', 16), -- Uprising Hanzo Emotes
(2357, 18, 3, 3, 5, 'Fisherman Dance', 17), -- Anniversary Hanzo Emotes
(513, NULL, 3, NULL, 6, 'Heroic', 1), -- Default Junkrat Emotes
(514, 1, 3, 3, 6, 'Can''t Deal', 5), -- Normal Junkrat Emotes
(515, 1, 3, 3, 6, 'Juggling', 1),
(516, 1, 3, 3, 6, 'Lounging', 5),
(517, 1, 3, 3, 6, 'Puppet', 1),
(518, 1, 3, 3, 6, 'Vaudeville', 1),
(2045, 14, 3, 3, 6, 'Dud?', 13), -- Lunar New Year Junkrat Emotes
(2358, 18, 3, 3, 6, 'Running Rat', 17), -- Anniversary Junkrat Emotes
(519, NULL, 3, NULL, 7, 'Heroic', 1), -- Default Lúcio Emotes
(520, 1, 3, 3, 7, 'Capoeira', 1), -- Normal Lúcio Emotes
(521, 1, 3, 3, 7, 'Chilling', 5),
(522, 1, 3, 3, 7, 'In the Groove', 1),
(523, 1, 3, 3, 7, 'Knee Slapper', 5),
(524, 1, 3, 3, 7, 'Nah!', 1),
(525, 6, 3, 3, 7, 'Juggle', 4), -- Summer Games Lúcio Emotes
(2359, 18, 3, 3, 7, 'Smooth', 17), -- Anniversary Lúcio Emotes
(526, NULL, 3, NULL, 8, 'Heroic', 1), -- Default McCree Emotes
(527, 1, 3, 3, 8, 'Gunspinning', 1), -- Normal McCree Emotes
(528, 1, 3, 3, 8, 'Hat Tip', 1),
(529, 1, 3, 3, 8, 'Joker', 5),
(530, 1, 3, 3, 8, 'Spit', 1),
(531, 1, 3, 3, 8, 'Take a Load off', 5),
(1970, 10, 3, 3, 8, 'Hat Trick', 11), -- Winter Wonderland McCree Emotes
(2360, 18, 3, 3, 8, 'Line Dance', 17), -- Anniversary McCree Emotes
(532, NULL, 3, NULL, 9, 'Heroic', 1), -- Default Mei Emotes
(533, 1, 3, 3, 9, 'Companion', 1), -- Normal Mei Emotes
(534, 1, 3, 3, 9, 'Giggle', 5),
(535, 1, 3, 3, 9, 'Kneel', 5),
(536, 1, 3, 3, 9, 'Spray', 1),
(537, 1, 3, 3, 9, 'Yaaaaaaaaay!', 1),
(1971, 10, 3, 3, 9, 'Snowman', 11), -- Winter Wonderland Mei Emotes
(2046, 14, 3, 3, 9, 'So Excited', 13), -- Lunar New Year Mei Emotes
(2361, 18, 3, 3, 9, 'Sunny Dance', 17), -- Anniversary Mei Emotes
(538, NULL, 3, NULL, 10, 'Heroic', 1), -- Default Mercy Emotes
(539, 1, 3, 3, 10, 'Applause', 1), -- Normal Mercy Emotes
(540, 1, 3, 3, 10, 'Caduceus', 1),
(541, 1, 3, 3, 10, 'No Pulse', 1),
(542, 1, 3, 3, 10, 'Relax', 5),
(543, 1, 3, 3, 10, 'The Best Medicine', 5),
(2362, 18, 3, 3, 10, 'Hustle', 17), -- Anniversary Mercy Emotes
(2142, NULL, 3, NULL, 24, 'Heroic', 15), -- Default Orisa Emotes
(2143, 1, 3, 3, 24, 'Halt!', 15), -- Normal Orisa Emotes
(2144, 1, 3, 3, 24, 'Kicking Dirt', 15),
(2363, 18, 3, 3, 24, 'Dance', 17), -- Anniversary Orisa Emotes
(544, NULL, 3, NULL, 11, 'Heroic', 1), -- Default Pharah Emotes
(545, 1, 3, 3, 11, 'Cheer', 1), -- Normal Pharah Emotes
(546, 1, 3, 3, 11, 'Chuckle', 5),
(547, 1, 3, 3, 11, 'Flourish', 1),
(548, 1, 3, 3, 11, 'Knuckles', 1),
(549, 1, 3, 3, 11, 'Take a Knee', 5),
(2219, 16, 3, 3, 11, 'Flair', 16), -- Uprising Pharah Emotes
(2364, 18, 3, 3, 11, 'Rocket Guitar', 17), -- Anniversary Pharah Emotes
(550, NULL, 3, NULL, 12, 'Heroic', 1), -- Default Reaper Emotes
(551, 1, 3, 3, 12, 'Cackle', 5), -- Normal Reaper Emotes
(552, 1, 3, 3, 12, 'Not Impressed', 1),
(553, 1, 3, 3, 12, 'Slice', 1),
(554, 1, 3, 3, 12, 'Slow Clap', 1),
(555, 1, 3, 3, 12, 'Take a Knee', 5),
(2365, 18, 3, 3, 12, 'Dance', 17), -- Anniversary Reaper Emotes
(556, NULL, 3, NULL, 13, 'Heroic', 1), -- Default Reinhardt Emotes
(557, 1, 3, 3, 13, 'Flex', 1), -- Normal Reinhardt Emotes
(558, 1, 3, 3, 13, 'Kneel', 5),
(559, 1, 3, 3, 13, 'Taunt', 1),
(560, 1, 3, 3, 13, 'Uproarious', 5),
(561, 1, 3, 3, 13, 'Warrior''s Salute', 1),
(562, 7, 3, 3, 13, 'Pumpkin Smash', 7), -- Halloween Terror Reinhardt Emotes
(2366, 18, 3, 3, 13, 'Sweethardt', 17), -- Anniversary Reinhardt Emotes
(563, NULL, 3, NULL, 14, 'Heroic', 1), -- Default Roadhog Emotes
(564, 1, 3, 3, 14, 'Belly Laugh', 5), -- Normal Roadhog Emotes
(565, 1, 3, 3, 14, 'Boo!', 1),
(566, 1, 3, 3, 14, 'Can Crusher', 1),
(567, 1, 3, 3, 14, 'Headbanging', 1),
(568, 1, 3, 3, 14, 'Tuckered Out', 5),
(2367, 18, 3, 3, 14, 'Dance', 17), -- Anniversary Roadhog Emotes
(569, NULL, 3, NULL, 15, 'Heroic', 1), -- Default Soldier: 76 Emotes
(570, 1, 3, 3, 15, 'Amused', 5), -- Normal Soldier: 76 Emotes
(571, 1, 3, 3, 15, 'Fist', 1),
(572, 1, 3, 3, 15, 'I See You', 1),
(573, 1, 3, 3, 15, 'Locked and Loaded', 1),
(574, 1, 3, 3, 15, 'Take a Knee', 5),
(2220, 16, 3, 3, 15, 'Push-ups', 16), -- Uprising Soldier: 76 Emotes
(2368, 18, 3, 3, 15, 'Dance', 17), -- Anniversary Soldier: 76 Emotes
(618, NULL, 3, NULL, 23, 'Heroic', 9), -- Default Sombra Emotes
(619, 1, 3, 3, 23, 'Amused', 9), -- Normal Sombra Emotes
(620, 1, 3, 3, 23, 'Hold On', 9),