-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathdatabase-config.sql
5146 lines (5123 loc) · 312 KB
/
database-config.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
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.5.8.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Aug 20, 2015 at 06:52 PM
-- Server version: 5.5.42-37.1-log
-- PHP Version: 5.4.23
--
-- Copyright (c) 2015 Jordan Turley, CSGO Win Big. All Rights Reserved.
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 */;
/*!40101 SET NAMES utf8 */;
-- --------------------------------------------------------
--
-- Table structure for table 'chat'
--
DROP TABLE IF EXISTS chat;
CREATE TABLE IF NOT EXISTS chat (
id int(11) NOT NULL AUTO_INCREMENT,
steamUserID bigint(11) NOT NULL,
`text` text COLLATE latin1_general_ci NOT NULL,
`date` text COLLATE latin1_general_ci NOT NULL,
`time` text COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table 'currentPot'
--
DROP TABLE IF EXISTS currentPot;
CREATE TABLE IF NOT EXISTS currentPot (
id int(11) NOT NULL AUTO_INCREMENT,
classId bigint(20) NOT NULL,
instanceId bigint(20) NOT NULL,
ownerSteamId64 text NOT NULL,
ownerSteamId32 text NOT NULL,
itemName text NOT NULL,
itemPrice int(11) NOT NULL,
itemRarityName text NOT NULL,
itemRarityColor varchar(6) NOT NULL,
itemIcon text NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table 'history'
--
DROP TABLE IF EXISTS `history`;
CREATE TABLE IF NOT EXISTS `history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`endTime` bigint(20) NOT NULL,
`winnerSteamId32` text NOT NULL,
`winnerSteamId64` bigint(20) NOT NULL,
`userPutInPrice` int(11) NOT NULL,
`potPrice` int(11) NOT NULL,
`allItemsJson` longtext NOT NULL,
`date` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table 'items'
--
DROP TABLE IF EXISTS items;
CREATE TABLE IF NOT EXISTS items (
marketName text COLLATE utf8mb4_unicode_ci NOT NULL,
avgPrice7Days int(11) DEFAULT NULL,
avgPrice30Days int(11) DEFAULT NULL,
currentPrice int(11) DEFAULT NULL,
suggestedPriceMin int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table 'items'
--
INSERT INTO items (marketName, avgPrice7Days, avgPrice30Days, currentPrice, suggestedPriceMin) VALUES
('Sticker | One Shot One Kill', 100, 100, 100, 0),
('Sticker | Queen Of Pain', 100, 100, 100, 0),
('Sticker | Fnatic (Holo) | DreamHack 2014', 300, 300, 300, 0),
('Sticker | Bomb Doge', 200, 200, 200, 0),
('Sticker | Stay Frosty', 500, 500, 500, 0),
('Sticker | Fearsome (Holo)', 100, 100, 100, 0),
('EMS Katowice 2014 Challengers', 10400, 8600, 10900, 0),
('Sticker | CS On The Mind', 300, 200, 300, 0),
('Sticker | Headhunter (Foil)', 1400, 1300, 1600, 0),
('Sticker | T On Cat', 400, 300, 400, 0),
('Community Sticker Capsule 1 Key', 100, 100, 100, 0),
('Sticker | Bosh (Holo)', 100, 100, 100, 0),
('Sticker | Knife Club', 100, 100, 100, 0),
('Music Kit | Robert Allaire, Insurgency', 200, 200, 200, 0),
('★ Karambit', 23700, 22900, 24500, 0),
('Sticker | Crown (Foil)', 1900, 1900, 2000, 0),
('Sticker | Silent Ninja', 100, 100, 100, 0),
('DreamHack 2014 Cobblestone Souvenir Package', 33100, 33100, 28800, 0),
('Sticker | dAT team | Cologne 2014', 0, 0, 0, 0),
('Sticker | Reason Gaming | Katowice 2014', 1800, 1700, 1900, 0),
('Sticker | Ninjas in Pyjamas (Holo) | Katowice 2015', 300, 300, 300, 0),
('Chroma Case', 0, 0, 0, 0),
('Sticker | Clan-Mystik | Katowice 2014', 1200, 1200, 1300, 0),
('Sticker | Headless Chicken', 300, 200, 300, 0),
('Sticker | Team Dignitas | DreamHack 2014', 0, 100, 100, 0),
('Sticker | Fnatic | Katowice 2015', 100, 100, 100, 0),
('Sticker | Epsilon eSports | Cologne 2014', 0, 0, 0, 0),
('Sticker | Virtus.Pro | Katowice 2014', 2700, 2400, 3600, 0),
('Sticker | Team EnVyUs | Katowice 2015', 100, 100, 100, 0),
('ESL One Katowice 2015 Mirage Souvenir Package', 400, 500, 400, 0),
('★ Gut Knife', 5800, 5700, 6000, 0),
('Sticker | Eco Rush', 100, 100, 100, 0),
('Sticker | Natus Vincere (Foil) | DreamHack 2014', 300, 300, 300, 0),
('Sticker | Cloud9 | Cologne 2014', 100, 100, 100, 0),
('Sticker | Ninjas in Pyjamas | Katowice 2015', 100, 100, 0, 0),
('Winter Offensive Weapon Case', 0, 0, 0, 0),
('Sticker | Ho Ho Ho', 400, 400, 500, 0),
('Sticker | Epsilon eSports (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | Team LDLC.com (Holo) | Katowice 2014', 8700, 7800, 9900, 0),
('ESL One Katowice 2015 Challengers (Holo/Foil)', 900, 900, NULL, 0),
('Sticker | Team Dignitas (Foil) | DreamHack 2014', 200, 200, 200, 0),
('Sticker | Natus Vincere | Cologne 2014', 100, 100, 0, 0),
('Sticker | 3DMAX (Holo) | Katowice 2015', 200, 300, 200, 0),
('Sticker | Fearsome', 0, 0, 0, 0),
('Sticker | SAS Chicken', 300, 300, 300, 0),
('ESL One Cologne 2014 Dust II Souvenir Package', 800, 700, 900, 0),
('Sticker | Flipsid3 Tactics (Holo) | Katowice 2015', 300, 400, 300, 0),
('Sticker | The Spartan', 100, 100, 100, 0),
('★ StatTrak™ Butterfly Knife', 20000, 19400, 19900, 0),
('Sticker | Cat Call', 400, 300, 400, 0),
('★ StatTrak™ Gut Knife', 8000, 7900, 8000, 0),
('Sticker | Burn Them All', 0, 0, 0, 0),
('Sticker | I Conquered', 0, 0, 0, 0),
('Sticker | Ninjas in Pyjamas (Holo) | DreamHack 2014', 200, 200, 200, 0),
('Operation Phoenix Case Key', 249, 249, 249, 0),
('Sticker | Pigeon Master', 400, 400, 300, 0),
('Sticker | Easy Peasy', 100, 100, 100, 0),
('Sticker | Let''s Roll-oll', 0, 0, 0, 0),
('Sticker | Chi Bomb', 100, 100, 100, 0),
('Sticker | Bash (Holo)', 100, 100, 100, 0),
('Sticker | Chabo', 100, 100, 100, 0),
('Music Kit | Daniel Sadowski, Crimson Assault', 300, 300, 300, 0),
('Sticker | DreamHack Winter 2014', 100, 100, 100, 0),
('Sticker | Keyd Stars | Katowice 2015', 0, 0, 0, 0),
('Sticker | Black Dog', 0, 0, 0, 0),
('Sticker | Massive Pear', 400, 300, 400, 0),
('Sticker | 3DMAX | Katowice 2015', 100, 100, 100, 0),
('★ M9 Bayonet', 15400, 15100, 15800, 0),
('Sticker | Flipsid3 Tactics | DreamHack 2014', 200, 200, 200, 0),
('Sticker | Team LDLC.com | Cologne 2014', 0, 0, 0, 0),
('Sticker | LGB eSports | Katowice 2014', 2500, 2200, 2400, 0),
('Sticker | TSM Kinguin | Katowice 2015', 100, 100, 100, 0),
('Sticker | Wanna Fight', 400, 400, 600, 0),
('Sticker | DreamHack Winter 2014 (Foil)', 300, 300, 300, 0),
('Operation Bravo Pass', 3000, 2400, 3100, 0),
('Sticker | Titan (Foil) | Katowice 2015', 2000, 2100, 2300, 0),
('Sticker | Cloud9 (Holo) | Cologne 2014', 400, 400, 400, 0),
('Sticker | Natus Vincere | Katowice 2014', 2800, 2800, 3700, 0),
('Sticker | Flipsid3 Tactics | Katowice 2015', 100, 100, 100, 0),
('ESL One Cologne 2014 Nuke Souvenir Package', 2200, 2200, 2400, 0),
('ESL One Katowice 2015 Nuke Souvenir Package', 1100, 1000, 1200, 0),
('ESL One Cologne 2014 Overpass Souvenir Package', 4400, 4400, 5000, 0),
('eSports 2013 Case', 500, 400, 500, 0),
('Sticker | Firestarter (Holo)', 500, 500, 500, 0),
('Sticker | Ninjas in Pyjamas (Foil) | DreamHack 2014', 300, 300, 400, 0),
('Sticker | Ninjas in Pyjamas | Cologne 2014', 0, 0, 0, 0),
('Sticker | PENTA Sports (Holo) | Katowice 2015', 100, 100, 100, 0),
('Sticker Capsule 2', 0, 0, 0, 0),
('Sticker | Warowl', 400, 400, 400, 0),
('Pallet of Presents', 3000, 3000, 2800, 0),
('Sticker | ESL Wolf (Foil) | Katowice 2014', 2900, 2600, 3900, 0),
('Sticker | Team EnVyUs (Foil) | Katowice 2015', 1100, 1100, 1400, 0),
('★ StatTrak™ Falchion Knife', 13900, 15000, 14300, 0),
('★ StatTrak™ Huntsman Knife', 16200, 16600, 17400, 0),
('DreamHack 2014 Mirage Souvenir Package', 900, 800, 900, 0),
('Sticker | Virtus.Pro | Cologne 2014', 100, 100, 0, 0),
('Sticker | iBUYPOWER (Holo) | Katowice 2014', 39100, 39100, NULL, 0),
('Sticker | Doomed', 100, 100, 100, 0),
('Sticker | Cloud9 (Holo) | DreamHack 2014', 400, 400, 400, 0),
('Sticker | Salute!', 0, 0, 0, 0),
('Sticker | Nelu the Bear', 200, 200, 200, 0),
('Huntsman Weapon Case', 0, 0, 0, 0),
('Sticker | Luck Skill', 0, 0, 0, 0),
('Sticker | Pros Don''t Fake', 100, 100, 100, 0),
('Sticker | Shooting Star Return', 300, 300, 300, 0),
('Sticker | Good Game', 0, 0, 0, 0),
('Sticker | Baaa-ckstabber!', 200, 200, 200, 0),
('Music Kit | Sasha, LNOE', 200, 200, 200, 0),
('Sticker | Howling Dawn', 9400, 9200, 9700, 0),
('Sticker | Welcome to the Clutch', 100, 100, 100, 0),
('Gift Package', 1000, 700, 1000, 0),
('Sticker | The Samurai', 100, 100, 100, 0),
('Sticker | Windy Walking Club', 600, 600, 700, 0),
('DreamHack 2014 Cache Souvenir Package', 2000, 1200, 2400, 0),
('Sticker | Vox Eminor (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | compLexity Gaming | Katowice 2014', 2100, 2000, 1900, 0),
('Sticker | Vox Eminor (Holo) | Katowice 2015', 200, 200, 200, 0),
('Music Kit | Midnight Riders, All I Want for Christmas', 2200, 2100, 2200, 0),
('Sticker | HellRaisers | Katowice 2014', 1300, 1300, 1500, 0),
('Sticker | Hostage Rescue', 200, 200, 200, 0),
('DreamHack 2014 Overpass Souvenir Package', 2800, 2600, 2600, 0),
('Sticker | iBUYPOWER | Cologne 2014', 100, 100, 100, 0),
('Sticker | mousesports (Holo) | Katowice 2014', 6400, 5800, 7000, 0),
('Sticker | PENTA Sports | Katowice 2015', 0, 0, 0, 0),
('Sticker | Rekt (Holo)', 300, 300, 300, 0),
('ESL One Katowice 2015 Dust II Souvenir Package', 400, 400, 400, 0),
('Music Kit | Daniel Sadowski, Total Domination', 300, 300, 400, 0),
('Sticker | Team Dignitas (Holo) | DreamHack 2014', 200, 100, 100, 0),
('Sticker | Fnatic | Cologne 2014', 100, 100, 0, 0),
('Sticker | ESL One (Foil) | Katowice 2015', 500, 500, 500, 0),
('CS:GO Weapon Case 2', 0, 0, 0, 0),
('Sticker | Team LDLC.com (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | Titan (Holo) | Katowice 2014', 37200, 37200, NULL, 0),
('Sticker | Cloud9 G2A (Foil) | Katowice 2015', 4100, 3400, 3700, 0),
('Music Kit | Various Artists, Hotline Miami', 300, 300, 300, 0),
('Sticker | Natus Vincere (Holo) | DreamHack 2014', 200, 200, 200, 0),
('Sticker | London Conspiracy | Cologne 2014', 0, 0, 0, 0),
('Sticker | Titan | Katowice 2015', 100, 100, 100, 0),
('Sticker | Vigilance', 0, 0, 0, 0),
('Sticker | Phoenix (Foil)', 500, 500, 500, 0),
('Sticker | Natus Vincere (Holo) | Katowice 2014', 13700, 13700, 24400, 0),
('Sticker | HellRaisers (Holo) | Katowice 2015', 200, 200, 200, 0),
('StatTrak™ Swap Tool', 0, 0, 0, 0),
('Sticker | Chicken Strike', 600, 600, 600, 0),
('Sticker | Trick Or Treat', 200, 300, 200, 0),
('Sticker | Shave Master', 100, 100, 100, 0),
('Sticker | Team LDLC.com | DreamHack 2014', 0, 0, 0, 0),
('CS:GO Case Key', 249, 249, 249, 0),
('★ Huntsman Knife', 11300, 11100, 11200, 0),
('Sticker | Blitzkrieg', 900, 800, 900, 0),
('Operation Vanguard Access Pass', 2300, 2300, 2300, 0),
('Sticker | Rising Skull', 100, 100, 100, 0),
('Sticker | Aces High (Holo)', 100, 100, 100, 0),
('Sticker | Skull Troop', 0, 0, 0, 0),
('ESL One Cologne 2014 Cache Souvenir Package', 1800, 1900, 1800, 0),
('★ StatTrak™ Flip Knife', 9100, 8700, 8800, 0),
('Sticker | Have Fun', 0, 0, 0, 0),
('Sticker | Skull Lil Boney', 0, 0, 0, 0),
('Music Kit | Austin Wintory, Desert Fire', 300, 300, 300, 0),
('Sticker | Harp of War (Holo)', 900, 900, 1000, 0),
('Enfu Sticker Capsule', 100, 100, 100, 0),
('Music Kit | Damjan Mravunac, The Talos Principle', 400, 400, 300, 0),
('Sticker | Virtus.Pro (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | Ninjas in Pyjamas | Katowice 2014', 3600, 3200, 3800, 0),
('Sticker | Virtus.pro (Holo) | Katowice 2015', 400, 400, 300, 0),
('Chroma Case Key', 249, 249, 249, 0),
('ESL One Cologne 2014 Mirage Souvenir Package', 1200, 1200, 1500, 0),
('Sticker | Robo', 400, 400, 400, 0),
('Sticker | Fnatic | DreamHack 2014', 100, 100, 100, 0),
('Sticker | ESL One | Katowice 2015', 100, 100, 100, 0),
('Sticker | Natus Vincere (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | compLexity Gaming (Holo) | Katowice 2014', 3900, 4200, 5900, 0),
('Sticker | Ninjas in Pyjamas (Foil) | Katowice 2015', 900, 1000, 900, 0),
('ESL One Katowice 2015 Cache Souvenir Package', 700, 700, 700, 0),
('eSports 2013 Winter Case', 0, 0, 0, 0),
('Music Kit | Matt Lange, IsoRhythm', 200, 200, 200, 0),
('Sticker | Planetkey Dynamics | DreamHack 2014', 100, 100, 100, 0),
('Sticker | Team Dignitas | Cologne 2014', 0, 0, 0, 0),
('Sticker | TSM Kinguin (Holo) | Katowice 2015', 200, 200, 200, 0),
('CS:GO Weapon Case', 400, 400, 400, 0),
('Sticker | Dinked', 100, 100, 100, 0),
('Sticker | ESL One Cologne 2014 (Red)', 500, 600, 700, 0),
('Sticker | Virtus.Pro (Holo) | Katowice 2014', 11200, 9700, 12800, 0),
('Sticker | LGB eSports (Holo) | Katowice 2015', 500, 500, 500, 0),
('Sticker | ESC Gaming | DreamHack 2014', 100, 100, 100, 0),
('Sticker | Fnatic (Holo) | Cologne 2014', 200, 200, 100, 0),
('Sticker | Cloud9 G2A (Holo) | Katowice 2015', 1000, 1000, 1000, 0),
('Sticker | Banana', 0, 0, 0, 0),
('Sticker | My Little Friend', 300, 300, 300, 0),
('ESL One Cologne 2014 Inferno Souvenir Package', 700, 700, 800, 0),
('Sticker | Natus Vincere (Foil) | Katowice 2015', 900, 1000, 800, 0),
('Sticker | Silent Ninja (Foil)', 300, 300, 300, 0),
('Operation Bloodhound Access Pass', 600, 600, 600, 0),
('Sticker | War Penguin', 400, 400, 400, 0),
('★ StatTrak™ Karambit', 33700, 32500, 32500, 0),
('Operation Vanguard Weapon Case', 0, 0, 0, 0),
('★ Falchion Knife', 9100, 9500, 9000, 0),
('Sticker | Vigilance (Holo)', 100, 100, 100, 0),
('DreamHack 2014 Legends (Holo/Foil)', 300, 300, NULL, 0),
('CS:GO Capsule Key', 100, 100, 100, 0),
('Sticker | CT in Banana', 700, 600, 600, 0),
('Sticker | Backstab', 0, 0, 0, 0),
('Sticker | Lucky 13 (Foil)', 200, 200, 200, 0),
('Sticker | Let''s Roll-oll (Holo)', 100, 100, 100, 0),
('Sticker | The Zombie', 100, 100, 100, 0),
('Music Kit | Dren, Death''s Head Demolition', 200, 200, 200, 0),
('Sticker | Llama Cannon', 0, 0, 0, 0),
('Sticker | Chicken Lover', 0, 0, 0, 0),
('Sticker | Bombsquad', 0, 0, 0, 0),
('★ StatTrak™ Bayonet', 21400, 20800, 21700, 0),
('Music Kit | Feed Me, High Noon', 300, 300, 300, 0),
('Sticker | Winged Defuser', 1700, 1300, 1900, 0),
('Sticker | King on the Field', 2000, 2000, 2100, 0),
('Sticker | Cloud9 | DreamHack 2014', 200, 200, 200, 0),
('DreamHack 2014 Nuke Souvenir Package', 2200, 1600, 2500, 0),
('Sticker | ESL One Cologne 2014 (Blue)', 100, 100, 100, 0),
('Sticker | 3DMAX | Katowice 2014', 1300, 1100, 1300, 0),
('Sticker | Natus Vincere (Holo) | Katowice 2015', 400, 500, 400, 0),
('Sticker | Pandamonium', 300, 300, 300, 0),
('ESL One Cologne 2014 Cobblestone Souvenir Package', 11100, 11100, 11900, 0),
('Sticker | Ninjas in Pyjamas (Holo) | Cologne 2014', 200, 200, 200, 0),
('Sticker | Reason Gaming (Holo) | Katowice 2014', 9300, 7400, 16400, 0),
('Sticker | 3DMAX (Foil) | Katowice 2015', 800, 800, 800, 0),
('Operation Breakout Case Key', 249, 249, 249, 0),
('Sticker | Lucky Cat (Foil)', 1700, 1600, 2100, 0),
('Sticker | Natus Vincere | DreamHack 2014', 100, 100, 100, 0),
('Operation Payback Pass', 4300, 4400, 4700, 0),
('Sticker | TSM Kinguin (Foil) | Katowice 2015', 900, 800, 900, 0),
('Sticker | London Conspiracy (Holo) | Cologne 2014', 100, 100, 200, 0),
('Sticker | Fnatic | Katowice 2014', 3700, 3500, 4300, 0),
('Sticker | Fnatic (Foil) | Katowice 2015', 1100, 1300, 1000, 0),
('Sticker | Death Comes', 100, 100, 100, 0),
('ESL One Katowice 2015 Overpass Souvenir Package', 2000, 1900, 2100, 0),
('Sticker | Witchcraft', 900, 800, 800, 0),
('Sticker | Bravado Gaming | DreamHack 2014', 100, 100, 200, 0),
('Sticker | Vox Eminor | Cologne 2014', 0, 0, 0, 0),
('Sticker | Counter Logic Gaming (Holo) | Katowice 2015', 300, 300, 300, 0),
('Operation Phoenix Weapon Case', 0, 0, 0, 0),
('Sticker | Blood Boiler', 300, 300, 400, 0),
('Sticker | 3DMAX (Holo) | Katowice 2014', 3700, 3400, 6900, 0),
('Sticker | LGB eSports | Katowice 2015', 200, 100, 200, 0),
('Sticker | Witch', 400, 400, 500, 0),
('Sticker | To B or not to B', 0, 0, 0, 0),
('Sticker | Ninjas in Pyjamas | DreamHack 2014', 100, 100, 100, 0),
('★ Butterfly Knife', 14000, 13500, 14100, 0),
('Sticker | Don''t Worry, I''m Pro', 100, 100, 100, 0),
('Sticker | Lucky 13', 0, 0, 0, 0),
('Sticker | Delicious Tears', 100, 100, 100, 0),
('Sticker | Swag (Foil)', 1000, 1000, 1200, 0),
('Sticker | Stupid Banana (Foil)', 100, 100, 100, 0),
('Sticker | Ninja Defuse', 100, 100, 100, 0),
('Falchion Case', 0, 0, 0, 0),
('Music Kit | Sean Murray, A*D*8', 200, 200, 200, 0),
('Sticker | Nice Shot', 100, 100, 100, 0),
('Sticker | iBUYPOWER | Katowice 2014', 10500, 10000, 11500, 0),
('Audience Participation Parcel', 1100, 1100, 1200, 0),
('Sticker | Unicorn (Holo)', 200, 200, 200, 0),
('Sticker | Terrorized', 500, 500, 600, 0),
('Operation Breakout Weapon Case', 0, 0, 0, 0),
('DreamHack 2014 Inferno Souvenir Package', 900, 800, 900, 0),
('Sticker | Team Dignitas (Holo) | Cologne 2014', 300, 200, 200, 0),
('Sticker | mousesports | Katowice 2014', 3400, 2300, 3800, 0),
('Sticker | HellRaisers | Katowice 2015', 100, 100, 100, 0),
('Sticker | Titan | Katowice 2014', 7000, 5500, 8000, 0),
('★ Bayonet', 15000, 14700, 15100, 0),
('Sticker | Just Trolling', 100, 100, 100, 0),
('Sticker | Titan (Holo) | Katowice 2015', 1000, 1000, 900, 0),
('Sticker | Copenhagen Wolves (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | LGB eSports (Holo) | Katowice 2014', 15400, 10600, 16300, 0),
('Sticker | Virtus.pro | Katowice 2015', 100, 100, 100, 0),
('ESL One Katowice 2015 Cobblestone Souvenir Package', 5000, 5200, 5000, 0),
('Music Kit | Mateo Messina, For No Mankind', 200, 200, 200, 0),
('Sticker | PENTA Sports | DreamHack 2014', 100, 100, 100, 0),
('Sticker | Titan | Cologne 2014', 100, 100, 0, 0),
('Sticker | Keyd Stars (Holo) | Katowice 2015', 200, 200, 200, 0),
('CS:GO Weapon Case 3', 0, 0, 0, 0),
('Sticker | Piece Of Cake', 300, 200, 300, 0),
('Sticker | MTS GameGod Wolf | Cologne 2014', 0, 0, 0, 0),
('Sticker | Team Dignitas (Holo) | Katowice 2014', 7900, 7000, 9500, 0),
('ESL One Katowice 2015 Legends (Holo/Foil)', 600, 600, NULL, 0),
('Sticker | myXMG | DreamHack 2014', 100, 100, 100, 0),
('ESL One Cologne 2014 Challengers', 100, 100, 100, 0),
('Sticker | Keyd Stars (Foil) | Katowice 2015', 500, 600, 500, 0),
('Sticker | Cerberus', 0, 0, 0, 0),
('Sticker | Drug War Veteran', 100, 100, 100, 0),
('Sticker | Cloud9 G2A | Katowice 2015', 200, 200, 200, 0),
('Sticker | Skulltorgeist', 100, 100, 100, 0),
('Sticker | Bossy Burger', 500, 400, 400, 0),
('Sticker | Trick Or Threat', 300, 300, 300, 0),
('Sticker | Luck Skill (Foil)', 100, 100, 200, 0),
('Sticker | Cloud9 (Foil) | DreamHack 2014', 900, 800, 800, 0),
('★ StatTrak™ M9 Bayonet', 20300, 20100, 18200, 0),
('Winter Offensive Case Key', 249, 249, 249, 0),
('Sticker | Flashbang', 400, 400, 400, 0),
('Sticker | Sneaky Beaky Like', 100, 100, 100, 0),
('Sticker | Seek & Destroy', 0, 0, 0, 0),
('Sticker | Doru The Fox', 200, 200, 200, 0),
('Chroma 2 Case Key', 249, 249, 249, 0),
('Sticker | Bish (Holo)', 100, 100, 100, 0),
('Sticker | Awp Country', 100, 100, 100, 0),
('Music Kit | Noisia, Sharpened', 200, 200, 200, 0),
('Huntsman Case Key', 249, 249, 249, 0),
('Sticker | Natus Vincere | Katowice 2015', 100, 100, 100, 0),
('Sticker | Copenhagen Wolves | DreamHack 2014', 100, 100, 100, 0),
('Sticker | HellRaisers | Cologne 2014', 0, 0, 0, 0),
('Sticker | Vox Eminor (Holo) | Katowice 2014', 9400, 7100, 9900, 0),
('Sticker | Team EnVyUs (Holo) | Katowice 2015', 300, 300, 300, 0),
('Sticker | Pocket BBQ', 0, 0, 0, 0),
('Sticker | Hamster Hawk', 100, 100, 100, 0),
('Sticker | Virtus.Pro | DreamHack 2014', 100, 100, 100, 0),
('Operation Phoenix Pass', 700, 800, 700, 0),
('Sticker | LGB eSports (Foil) | Katowice 2015', 2100, 1900, 2100, 0),
('Sticker | iBUYPOWER (Holo) | Cologne 2014', 400, 500, 400, 0),
('Sticker | Ninjas in Pyjamas (Holo) | Katowice 2014', 8600, 7000, 12100, 0),
('Sticker | Flipsid3 Tactics (Foil) | Katowice 2015', 1700, 1800, 1600, 0),
('ESL One Katowice 2015 Inferno Souvenir Package', 400, 400, 400, 0),
('eSports 2014 Summer Case', 0, 0, 0, 0),
('Music Kit | Damjan Mravunac, The Talos Principal', 800, 800, 700, 0),
('Sticker | Virtus.Pro (Foil) | DreamHack 2014', 300, 400, 400, 0),
('Sticker | Copenhagen Wolves | Cologne 2014', 0, 0, 0, 0),
('Sticker | Fnatic (Holo) | Katowice 2015', 400, 500, 500, 0),
('Operation Bravo Case', 700, 700, 700, 0),
('Sticker | Thug Life', 100, 100, 100, 0),
('Name Tag', 200, 200, 200, 0),
('Sticker | ESL Skull (Foil) | Katowice 2014', 3200, 1800, 6200, 0),
('Sticker | HellRaisers (Foil) | Katowice 2015', 600, 600, 600, 0),
('Sticker | Virtus.Pro (Holo) | DreamHack 2014', 300, 300, 300, 0),
('Sticker | Titan (Holo) | Cologne 2014', 300, 300, 300, 0),
('Sticker | Vox Eminor | Katowice 2014', 1300, 1300, 1300, 0),
('Sticker | Metal', 0, 0, 0, 0),
('Sticker | T-Rekt', 500, 400, 500, 0),
('Sticker | iBUYPOWER | DreamHack 2014', 500, 500, 400, 0),
('Sticker | Bombsquad (Foil)', 100, 100, 200, 0),
('Sticker | Kawaii Killer CT', 100, 100, 100, 0),
('Community Sticker Capsule 1', 0, 0, 0, 0),
('Operation Vanguard Case Key', 249, 249, 249, 0),
('Sticker | Aces High', 0, 0, 0, 0),
('EMS Katowice 2014 Legends', 7100, 6800, 8400, 0),
('Sticker | Kawaii Killer Terrorist', 100, 100, 100, 0),
('eSports Key', 200, 200, 200, 0),
('★ Flip Knife', 6300, 6200, 6300, 0),
('Sticker | Till Death Do Us Part', 400, 400, 500, 0),
('Sticker | Good Luck', 0, 0, 0, 0),
('Sticker | New Sheriff (Foil)', 900, 800, 800, 0),
('EMS One 2014 Souvenir Package', 7800, 7800, 8400, 0),
('Sticker | The Guru', 100, 100, 100, 0),
('Chroma 2 Case', 0, 0, 0, 0),
('Falchion Case Key', 249, 249, 249, 0),
('Music Kit | Skog, Metal', 200, 200, 300, 0),
('Sticker | Flammable (Foil)', 1000, 1000, 1300, 0),
('Sticker | Bomb Code', 0, 0, 0, 0),
('DreamHack 2013 Souvenir Package', 3100, 3100, 3200, 0),
('Sticker | Unicorn', 200, 100, 200, 0),
('Sticker | Fight like a Girl', 900, 800, 900, 0),
('Sticker | Zombie Lover', 300, 300, 300, 0),
('Sticker | Teamwork (Holo)', 200, 200, 200, 0),
('Sticker | My Other Awp', 100, 100, 100, 0),
('DreamHack 2014 Dust II Souvenir Package', 900, 900, 900, 0),
('Sticker | HellRaisers (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | Team LDLC.com | Katowice 2014', 1400, 1400, 1300, 0),
('Sticker | Virtus.pro (Foil) | Katowice 2015', 900, 1000, 900, 0),
('Sticker | Work For Ammo', 400, 400, 500, 0),
('Sticker | Team Dignitas | Katowice 2014', 1200, 1200, 1300, 0),
('Sticker | dAT team (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | Clan-Mystik (Holo) | Katowice 2014', 4200, 4300, 3900, 0),
('Sticker | Counter Logic Gaming (Foil) | Katowice 2015', 1400, 1300, 1500, 0),
('Sticker | Flickshot', 100, 100, 100, 0),
('Sticker | Fnatic (Foil) | DreamHack 2014', 400, 400, 400, 0),
('Operation Breakout All Access Pass', 300, 400, 300, 0),
('Sticker | Vox Eminor | Katowice 2015', 0, 0, 0, 0),
('Sticker Capsule', 0, 0, 0, 0),
('Sticker | MTS GameGod Wolf (Holo) | Cologne 2014', 100, 100, 100, 0),
('Sticker | Fnatic (Holo) | Katowice 2014', 10000, 10000, 12500, 0),
('Sticker | Counter Logic Gaming | Katowice 2015', 0, 100, 0, 0),
('Sticker | Headshot Guarantee', 100, 100, 100, 0),
('Sticker | HellRaisers | DreamHack 2014', 100, 100, 100, 0),
('ESL One Cologne 2014 Legends', 100, 100, 100, 0),
('Sticker | PENTA Sports (Foil) | Katowice 2015', 300, 300, 300, 0),
('Sticker | Bomb Squad (Foil)', 1200, 1400, 1500, 0),
('Sticker | HellRaisers (Holo) | Katowice 2014', 9500, 9500, 11000, 0),
('Sticker | Vox Eminor (Foil) | Katowice 2015', 500, 500, 500, 0),
('P2000 | Corticera (Factory New)', 300, 300, 300, 0),
('★ Huntsman Knife | Stained (Factory New)', 11100, 11100, 10700, 0),
('★ StatTrak™ M9 Bayonet | Slaughter (Factory New)', NULL, NULL, NULL, 57500),
('★ Gut Knife | Doppler (Factory New)', 9100, 9200, 9200, 0),
('StatTrak™ CZ75-Auto | Poison Dart (Factory New)', 400, 400, 500, 0),
('Souvenir Glock-18 | Candy Apple (Factory New)', 4200, 4200, 4300, 0),
('Souvenir P90 | Fallout Warning (Factory New)', 6700, 6700, 9800, 0),
('StatTrak™ PP-Bizon | Blue Streak (Factory New)', 5100, 5100, 6900, 0),
('Galil AR | Kami (Factory New)', 0, 0, 0, 0),
('★ Gut Knife | Marble Fade (Factory New)', 11700, 11600, 11700, 0),
('M4A4 | Modern Hunter (Factory New)', 18400, 18400, 31700, 0),
('★ Karambit | Tiger Tooth (Factory New)', NULL, NULL, NULL, 38500),
('SSG 08 | Acid Fade (Factory New)', 0, 0, 0, 0),
('PP-Bizon | Irradiated Alert (Factory New)', 100, 100, 100, 0),
('SCAR-20 | Army Sheen (Factory New)', 0, 0, 0, 0),
('★ Karambit | Boreal Forest (Factory New)', NULL, NULL, NULL, 22400),
('★ StatTrak™ Butterfly Knife | Blue Steel (Factory New)', NULL, NULL, NULL, 90000),
('M4A1-S | Atomic Alloy (Factory New)', 1600, 1600, 1600, 0),
('StatTrak™ AWP | Worm God (Factory New)', 1000, 1100, 1000, 0),
('StatTrak™ M4A1-S | Guardian (Factory New)', 5700, 5600, 5600, 0),
('★ StatTrak™ Falchion Knife | Stained (Factory New)', NULL, NULL, 20000, 0),
('Souvenir MAC-10 | Indigo (Factory New)', 600, 600, 700, 0),
('MAC-10 | Ultraviolet (Factory New)', 100, 100, 100, 0),
('M4A4 | 龍王 (Dragon King) (Factory New)', 600, 700, 600, 0),
('StatTrak™ PP-Bizon | Antique (Factory New)', 400, 400, 400, 0),
('StatTrak™ M4A1-S | Atomic Alloy (Factory New)', 7000, 7700, 6600, 0),
('Nova | Caged Steel (Factory New)', 0, 0, 0, 0),
('StatTrak™ P2000 | Fire Elemental (Factory New)', 10100, 9300, 12000, 0),
('SCAR-20 | Cyrex (Factory New)', 400, 400, 400, 0),
('Souvenir M249 | Contrast Spray (Factory New)', 1100, 1100, 1700, 0),
('M4A4 | Jungle Tiger (Factory New)', 600, 500, 500, 0),
('StatTrak™ Nova | Ranger (Factory New)', 100, 100, 100, 0),
('★ Karambit | Crimson Web (Factory New)', NULL, NULL, NULL, 240000),
('Souvenir Tec-9 | Brass (Factory New)', 3600, 3700, 6500, 0),
('Dual Berettas | Marina (Factory New)', 200, 200, 300, 0),
('★ M9 Bayonet | Night (Factory New)', NULL, NULL, NULL, 195000),
('Negev | CaliCamo (Factory New)', 0, 0, 0, 0),
('Souvenir MP9 | Dark Age (Factory New)', 400, 400, 400, 0),
('StatTrak™ G3SG1 | Murky (Factory New)', 0, 0, 0, 0),
('UMP-45 | Delusion (Factory New)', 0, 0, 0, 0),
('★ Huntsman Knife | Safari Mesh (Factory New)', 10100, 10100, 13100, 0),
('StatTrak™ Dual Berettas | Panther (Factory New)', 500, 400, 400, 0),
('P250 | Gunsmoke (Factory New)', 500, 500, 500, 0),
('★ StatTrak™ Flip Knife | Damascus Steel (Factory New)', 15400, 15400, 22300, 0),
('Souvenir MP7 | Gunsmoke (Factory New)', 4200, 4200, 9500, 0),
('Desert Eagle | Pilot (Factory New)', 1600, 1600, 2700, 0),
('AK-47 | Aquamarine Revenge (Factory New)', 8200, 8500, 7900, 0),
('★ Flip Knife | Crimson Web (Factory New)', NULL, NULL, NULL, 45000),
('Souvenir P90 | Ash Wood (Factory New)', 800, 800, 1200, 0),
('Souvenir Glock-18 | Groundwater (Factory New)', NULL, NULL, 10700, 0),
('SSG 08 | Sand Dune (Factory New)', 200, 200, 200, 0),
('StatTrak™ Sawed-Off | Orange DDPAT (Factory New)', 3300, 3300, 6500, 0),
('AWP | Lightning Strike (Factory New)', 3400, 3400, 3300, 0),
('PP-Bizon | Blue Streak (Factory New)', 600, 600, 600, 0),
('★ StatTrak™ Karambit | Slaughter (Factory New)', NULL, NULL, NULL, 75000),
('StatTrak™ Desert Eagle | Crimson Web (Factory New)', 14700, 13900, 16300, 0),
('Five-SeveN | Candy Apple (Factory New)', 500, 500, 500, 0),
('StatTrak™ AK-47 | Blue Laminate (Factory New)', 1500, 1500, 1600, 0),
('CZ75-Auto | Army Sheen (Factory New)', 0, 0, 0, 0),
('★ Gut Knife | Night (Factory New)', 19500, 19500, NULL, 0),
('Souvenir XM1014 | Bone Machine (Factory New)', 1500, 1400, 1700, 0),
('Tec-9 | Urban DDPAT (Factory New)', 0, 0, 0, 0),
('StatTrak™ P250 | Valence (Factory New)', 300, 300, 300, 0),
('StatTrak™ UMP-45 | Labyrinth (Factory New)', 0, 0, 0, 0),
('MAG-7 | Bulldozer (Factory New)', 2900, 2900, 2400, 0),
('StatTrak™ Five-SeveN | Case Hardened (Factory New)', 8200, 8500, 8000, 0),
('StatTrak™ XM1014 | Heaven Guard (Factory New)', 600, 500, 500, 0),
('★ StatTrak™ Karambit | Stained (Factory New)', NULL, NULL, NULL, 65000),
('Souvenir AUG | Colony (Factory New)', 1100, 1100, 1000, 0),
('P250 | Hive (Factory New)', 0, 0, 0, 0),
('★ Falchion Knife | Stained (Factory New)', 10400, 10000, 10800, 0),
('Desert Eagle | Mudder (Factory New)', 0, 0, 0, 0),
('P90 | Teardown (Factory New)', 0, 0, 0, 0),
('P250 | Mehndi (Factory New)', 700, 700, 700, 0),
('★ StatTrak™ Flip Knife | Slaughter (Factory New)', 20400, 20600, 20800, 0),
('P90 | Fallout Warning (Factory New)', 1300, 1100, 1400, 0),
('P90 | Scorched (Factory New)', 200, 100, 200, 0),
('★ Karambit | Safari Mesh (Factory New)', 18800, 18800, 18500, 0),
('★ Flip Knife | Marble Fade (Factory New)', 19000, 19300, 19900, 0),
('★ Gut Knife | Forest DDPAT (Factory New)', 8200, 8200, 18000, 0),
('PP-Bizon | Carbon Fiber (Factory New)', 300, 300, 300, 0),
('Souvenir Dual Berettas | Anodized Navy (Factory New)', 200, 200, 200, 0),
('Glock-18 | Catacombs (Factory New)', 0, 0, 0, 0),
('Five-SeveN | Nitro (Factory New)', 2600, 3000, 2500, 0),
('M249 | Gator Mesh (Factory New)', 0, 0, 0, 0),
('AWP | BOOM (Factory New)', 9200, 9100, 8700, 0),
('★ StatTrak™ M9 Bayonet | Case Hardened (Factory New)', NULL, NULL, NULL, 122100),
('StatTrak™ M4A4 | Desert-Strike (Factory New)', 2800, 2600, 2700, 0),
('Five-SeveN | Neon Kimono (Factory New)', 2000, 1900, 1900, 0),
('Sawed-Off | Snake Camo (Factory New)', 0, 0, 0, 0),
('USP-S | Night Ops (Factory New)', 0, 0, 0, 0),
('FAMAS | Contrast Spray (Factory New)', 300, 300, 300, 0),
('StatTrak™ USP-S | Guardian (Factory New)', 400, 400, 400, 0),
('Five-SeveN | Hot Shot (Factory New)', 200, 200, 100, 0),
('AUG | Contractor (Factory New)', 0, 0, 0, 0),
('Galil AR | Hunting Blind (Factory New)', 0, 0, 0, 0),
('StatTrak™ AK-47 | Case Hardened (Factory New)', 24100, 23400, 22800, 0),
('StatTrak™ Nova | Antique (Factory New)', 800, 800, 1000, 0),
('Souvenir SCAR-20 | Carbon Fiber (Factory New)', 700, 700, 700, 0),
('P250 | Nuclear Threat (Factory New)', 29600, 29600, 32500, 0),
('USP-S | Stainless (Factory New)', 200, 200, 200, 0),
('Tec-9 | Blue Titanium (Factory New)', 0, 0, 0, 0),
('★ Falchion Knife | Blue Steel (Factory New)', 15200, 15200, 18400, 0),
('★ M9 Bayonet | Case Hardened (Factory New)', 25600, 25600, 30600, 0),
('StatTrak™ AK-47 | Wasteland Rebel (Factory New)', NULL, NULL, NULL, 42900),
('StatTrak™ MAG-7 | Heat (Factory New)', 600, 600, 600, 0),
('SCAR-20 | Storm (Factory New)', 0, 0, 0, 0),
('StatTrak™ USP-S | Torque (Factory New)', 300, 300, 300, 0),
('StatTrak™ AWP | Electric Hive (Factory New)', 4700, 4900, 5300, 0),
('Souvenir P250 | Contamination (Factory New)', 600, 600, 700, 0),
('Souvenir Dual Berettas | Stained (Factory New)', 3500, 3500, 2700, 0),
('USP-S | Blood Tiger (Factory New)', 0, 0, 0, 0),
('P2000 | Grassland Leaves (Factory New)', 900, 900, 500, 0),
('P90 | Virus (Factory New)', 400, 400, 400, 0),
('M249 | System Lock (Factory New)', 0, 0, 0, 0),
('Galil AR | Cerberus (Factory New)', 1900, 1900, 1900, 0),
('SG 553 | Waves Perforated (Factory New)', 0, 0, 0, 0),
('SG 553 | Tornado (Factory New)', 300, 300, 400, 0),
('★ Falchion Knife | Fade (Factory New)', 16600, 17400, 15200, 0),
('Souvenir MP7 | Orange Peel (Factory New)', 6500, 6500, 3000, 0),
('★ Gut Knife | Tiger Tooth (Factory New)', 11100, 11100, 10500, 0),
('CZ75-Auto | Pole Position (Factory New)', 0, 0, 0, 0),
('SG 553 | Traveler (Factory New)', 100, 100, 100, 0),
('FAMAS | Neural Net (Factory New)', 0, 0, 0, 0),
('StatTrak™ P250 | Steel Disruption (Factory New)', 100, 100, 100, 0),
('Souvenir AUG | Contractor (Factory New)', 7000, 7000, 8500, 0),
('StatTrak™ PP-Bizon | Water Sigil (Factory New)', 100, 100, 0, 0),
('Souvenir G3SG1 | Desert Storm (Factory New)', 800, 800, 1100, 0),
('StatTrak™ Glock-18 | Catacombs (Factory New)', 100, 100, 100, 0),
('★ Karambit | Case Hardened (Factory New)', NULL, NULL, NULL, 31000),
('SCAR-20 | Carbon Fiber (Factory New)', 0, 0, 0, 0),
('★ Karambit | Forest DDPAT (Factory New)', 24100, 24100, 27800, 0),
('★ Huntsman Knife | Forest DDPAT (Factory New)', 12700, 12700, 21700, 0),
('StatTrak™ Nova | Rising Skull (Factory New)', 400, 400, 500, 0),
('USP-S | Serum (Factory New)', 400, 400, 500, 0),
('Souvenir Five-SeveN | Forest Night (Factory New)', 4700, 4700, 9900, 0),
('UMP-45 | Riot (Factory New)', 0, 0, 0, 0),
('StatTrak™ MP7 | Nemesis (Factory New)', 2700, 3000, 2600, 0),
('MAC-10 | Palm (Factory New)', 0, 0, 0, 0),
('AK-47 | Hydroponic (Factory New)', 20300, 20000, 19800, 0),
('Glock-18 | Twilight Galaxy (Factory New)', 2000, 2200, 1900, 0),
('StatTrak™ Desert Eagle | Heirloom (Factory New)', 2600, 2400, 2200, 0),
('Souvenir MAC-10 | Candy Apple (Factory New)', 600, 700, 600, 0),
('★ StatTrak™ Falchion Knife | Slaughter (Factory New)', NULL, NULL, NULL, 59900),
('StatTrak™ Five-SeveN | Urban Hazard (Factory New)', 200, 200, 200, 0),
('StatTrak™ AUG | Bengal Tiger (Factory New)', 7800, 7800, 8300, 0),
('StatTrak™ AUG | Wings (Factory New)', 200, 200, 200, 0),
('PP-Bizon | Cobalt Halftone (Factory New)', 0, 0, 0, 0),
('Glock-18 | Blue Fissure (Factory New)', 300, 300, 300, 0),
('M249 | Contrast Spray (Factory New)', 0, 0, 0, 0),
('CZ75-Auto | The Fuschia Is Now (Factory New)', 200, 300, 200, 0),
('★ StatTrak™ Karambit | Doppler (Factory New)', NULL, NULL, NULL, 55000),
('Souvenir G3SG1 | Safari Mesh (Factory New)', 700, 700, 700, 0),
('UMP-45 | Minotaur''s Labyrinth (Factory New)', 1000, 1000, 1000, 0),
('Sawed-Off | Copper (Factory New)', 400, 300, 300, 0),
('Souvenir CZ75-Auto | Chalice (Factory New)', 3100, 3300, 3600, 0),
('Souvenir UMP-45 | Scorched (Factory New)', 1000, 1000, 900, 0),
('UMP-45 | Carbon Fiber (Factory New)', 0, 0, 0, 0),
('Souvenir MP7 | Anodized Navy (Factory New)', 1500, 1700, 2400, 0),
('MAC-10 | Curse (Factory New)', 100, 100, 100, 0),
('P90 | Elite Build (Factory New)', 0, 100, 100, 0),
('Souvenir SSG 08 | Acid Fade (Factory New)', 3600, 2500, 2800, 0),
('AK-47 | Jet Set (Factory New)', 10700, 10700, 12200, 0),
('USP-S | Business Class (Factory New)', 1300, 1400, 1500, 0),
('StatTrak™ M4A4 | Evil Daimyo (Factory New)', 1200, 1400, 1100, 0),
('★ Karambit | Marble Fade (Factory New)', NULL, NULL, NULL, 49000),
('Souvenir UMP-45 | Fallout Warning (Factory New)', 5800, 5800, 9100, 0),
('Souvenir Negev | Nuclear Waste (Factory New)', 200, 100, 100, 0),
('Desert Eagle | Bronze Deco (Factory New)', 0, 0, 0, 0),
('MP7 | Urban Hazard (Factory New)', 0, 0, 0, 0),
('Souvenir P250 | Metallic DDPAT (Factory New)', 500, 500, 500, 0),
('MAC-10 | Heat (Factory New)', 0, 100, 0, 0),
('Sawed-Off | Orange DDPAT (Factory New)', 1200, 1000, 1400, 0),
('★ StatTrak™ M9 Bayonet | Marble Fade (Factory New)', NULL, NULL, NULL, 80000),
('Souvenir Desert Eagle | Urban Rubble (Factory New)', 3000, 3000, 3800, 0),
('AK-47 | Jaguar (Factory New)', 4400, 4300, 4000, 0),
('AWP | Snake Camo (Factory New)', 1400, 1400, 1700, 0),
('★ Huntsman Knife | Night (Factory New)', NULL, NULL, NULL, 109900),
('StatTrak™ M4A4 | Griffin (Factory New)', 1000, 1000, 900, 0),
('StatTrak™ Desert Eagle | Naga (Factory New)', 800, 800, 900, 0),
('MAG-7 | Silver (Factory New)', 0, 0, 0, 0),
('M4A1-S | Basilisk (Factory New)', 300, 300, 300, 0),
('StatTrak™ P250 | Cartel (Factory New)', 2900, 3000, 3100, 0),
('★ StatTrak™ Gut Knife | Marble Fade (Factory New)', 16000, 16200, 16900, 0),
('StatTrak™ P2000 | Handgun (Factory New)', 2000, 2100, 1800, 0),
('UMP-45 | Indigo (Factory New)', 0, 0, 100, 0),
('StatTrak™ Galil AR | Rocket Pop (Factory New)', 500, 600, 500, 0),
('★ StatTrak™ Huntsman Knife | Night (Factory New)', NULL, NULL, NULL, 325000),
('★ StatTrak™ Bayonet | Doppler (Factory New)', NULL, NULL, NULL, 32500),
('Souvenir PP-Bizon | Brass (Factory New)', 2700, 2700, 3600, 0),
('Souvenir Five-SeveN | Hot Shot (Factory New)', 2200, 1900, 2300, 0),
('StatTrak™ SCAR-20 | Cyrex (Factory New)', 1700, 1800, 1800, 0),
('★ Falchion Knife | Boreal Forest (Factory New)', 13100, 13100, 15700, 0),
('★ Huntsman Knife | Crimson Web (Factory New)', NULL, NULL, NULL, 59000),
('★ StatTrak™ M9 Bayonet | Blue Steel (Factory New)', NULL, NULL, NULL, 116400),
('★ Flip Knife | Blue Steel (Factory New)', 9800, 9800, 10400, 0),
('USP-S | Orion (Factory New)', 1000, 1000, 1000, 0),
('CZ75-Auto | Victoria (Factory New)', 900, 1000, 900, 0),
('★ StatTrak™ Huntsman Knife | Blue Steel (Factory New)', NULL, NULL, NULL, 36100),
('StatTrak™ M4A1-S | Basilisk (Factory New)', 1800, 1800, 1800, 0),
('StatTrak™ MAC-10 | Malachite (Factory New)', 200, 200, 200, 0),
('Sawed-Off | Forest DDPAT (Factory New)', 0, 0, 0, 0),
('AK-47 | Predator (Factory New)', 400, 400, 400, 0),
('SG 553 | Anodized Navy (Factory New)', 0, 0, 0, 0),
('StatTrak™ Glock-18 | Bunsen Burner (Factory New)', 400, 500, 400, 0),
('Souvenir Desert Eagle | Mudder (Factory New)', 2200, 2200, NULL, 0),
('★ StatTrak™ M9 Bayonet | Tiger Tooth (Factory New)', NULL, NULL, NULL, 55000),
('Nova | Green Apple (Factory New)', 0, 0, 0, 0),
('★ Huntsman Knife | Urban Masked (Factory New)', 13000, 13000, 15900, 0),
('Glock-18 | Dragon Tattoo (Factory New)', 400, 400, 400, 0),
('StatTrak™ CZ75-Auto | Yellow Jacket (Factory New)', 3300, 3300, 3200, 0),
('★ Butterfly Knife | Safari Mesh (Factory New)', 11500, 11500, 16800, 0),
('StatTrak™ M4A1-S | Blood Tiger (Factory New)', 1400, 1300, 1300, 0),
('Souvenir Tec-9 | Red Quartz (Factory New)', 7300, 7300, 15900, 0),
('CZ75-Auto | Hexane (Factory New)', 0, 0, 0, 0),
('P2000 | Scorpion (Factory New)', 100, 100, 100, 0),
('P90 | Sand Spray (Factory New)', 0, 0, 0, 0),
('UMP-45 | Bone Pile (Factory New)', 200, 200, 200, 0),
('★ StatTrak™ Bayonet | Tiger Tooth (Factory New)', NULL, NULL, NULL, 43000),
('StatTrak™ Negev | Bratatat (Factory New)', 300, 400, 300, 0),
('★ StatTrak™ Flip Knife | Urban Masked (Factory New)', NULL, NULL, NULL, 12000),
('★ Flip Knife | Doppler (Factory New)', 14500, 14400, 13300, 0),
('Tec-9 | Army Mesh (Factory New)', 0, 0, 0, 0),
('★ Gut Knife | Stained (Factory New)', 7000, 7200, 7300, 0),
('★ M9 Bayonet | Marble Fade (Factory New)', NULL, NULL, NULL, 37900),
('Five-SeveN | Kami (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Gut Knife | Stained (Factory New)', 12300, 12300, NULL, 0),
('USP-S | Torque (Factory New)', 0, 0, 0, 0),
('★ Falchion Knife | Urban Masked (Factory New)', 11600, 11600, 14200, 0),
('Nova | Modern Hunter (Factory New)', 2000, 2000, 2200, 0),
('G3SG1 | Chronos (Factory New)', 1600, 1600, 1600, 0),
('Souvenir FAMAS | Teardown (Factory New)', 2900, 2900, 2800, 0),
('★ Flip Knife | Urban Masked (Factory New)', 10400, 10400, 10000, 0),
('★ Bayonet | Safari Mesh (Factory New)', 11200, 11200, 16100, 0),
('Souvenir USP-S | Road Rash (Factory New)', 34900, 34900, NULL, 0),
('StatTrak™ M4A4 | X-Ray (Factory New)', 2900, 2900, 2900, 0),
('★ StatTrak™ Karambit | Boreal Forest (Factory New)', NULL, NULL, NULL, 100000),
('★ StatTrak™ M9 Bayonet | Stained (Factory New)', 23000, 23000, 35500, 0),
('Dual Berettas | Urban Shock (Factory New)', 0, 0, 0, 0),
('M4A4 | Poseidon (Factory New)', 14800, 14900, 15500, 0),
('G3SG1 | Safari Mesh (Factory New)', 500, 600, 800, 0),
('XM1014 | Blue Steel (Factory New)', 0, 0, 0, 0),
('StatTrak™ PP-Bizon | Osiris (Factory New)', 200, 200, 200, 0),
('★ Karambit | Blue Steel (Factory New)', NULL, NULL, NULL, 34000),
('Souvenir Desert Eagle | Urban DDPAT (Factory New)', 8500, 8500, 10400, 0),
('Souvenir XM1014 | CaliCamo (Factory New)', 900, 900, 900, 0),
('Nova | Ranger (Factory New)', 0, 0, 0, 0),
('USP-S | Forest Leaves (Factory New)', 0, 0, 0, 0),
('StatTrak™ Negev | Terrain (Factory New)', 0, 0, 0, 0),
('PP-Bizon | Rust Coat (Factory New)', 1200, 1000, 1300, 0),
('★ StatTrak™ Bayonet | Slaughter (Factory New)', NULL, NULL, NULL, 50000),
('XM1014 | Blaze Orange (Factory New)', 2500, 2600, 2800, 0),
('Souvenir Tec-9 | Groundwater (Factory New)', 4400, 4400, 4900, 0),
('Negev | Terrain (Factory New)', 0, 0, 0, 0),
('★ Gut Knife | Blue Steel (Factory New)', 8100, 7900, 9800, 0),
('Souvenir P250 | Bone Mask (Factory New)', 800, 800, 1300, 0),
('StatTrak™ P90 | Virus (Factory New)', 3800, 3000, 4800, 0),
('SG 553 | Army Sheen (Factory New)', 0, 0, 0, 0),
('StatTrak™ P250 | Undertow (Factory New)', 1600, 1700, 1700, 0),
('MAC-10 | Candy Apple (Factory New)', 0, 0, 0, 0),
('P2000 | Handgun (Factory New)', 300, 300, 300, 0),
('Tec-9 | Ossified (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Butterfly Knife | Slaughter (Factory New)', NULL, NULL, NULL, 38700),
('M4A1-S | Knight (Factory New)', 24500, 24600, 26600, 0),
('MP7 | Groundwater (Factory New)', 200, 200, 300, 0),
('StatTrak™ AWP | Lightning Strike (Factory New)', 13600, 13600, 14400, 0),
('AUG | Storm (Factory New)', 0, 0, 0, 0),
('★ Bayonet | Forest DDPAT (Factory New)', 19300, 19300, 25000, 0),
('★ StatTrak™ Butterfly Knife | Fade (Factory New)', NULL, NULL, NULL, 28900),
('SSG 08 | Tropical Storm (Factory New)', 500, 600, 700, 0),
('★ StatTrak™ Falchion Knife | Urban Masked (Factory New)', NULL, NULL, 23000, 0),
('StatTrak™ M249 | System Lock (Factory New)', 0, 0, 0, 0),
('Souvenir Nova | Polar Mesh (Factory New)', 3900, 3900, 3000, 0),
('Nova | Antique (Factory New)', 300, 300, 300, 0),
('Souvenir Nova | Candy Apple (Factory New)', 2100, 1500, 2500, 0),
('Souvenir Sawed-Off | Sage Spray (Factory New)', 600, 600, 1700, 0),
('USP-S | Guardian (Factory New)', 0, 0, 0, 0),
('UMP-45 | Scorched (Factory New)', 0, 0, 0, 0),
('Desert Eagle | Cobalt Disruption (Factory New)', 300, 300, 300, 0),
('StatTrak™ P2000 | Red FragCam (Factory New)', 400, 300, 400, 0),
('★ StatTrak™ Karambit | Marble Fade (Factory New)', NULL, NULL, NULL, 81000),
('StatTrak™ M249 | Magma (Factory New)', 0, 0, 0, 0),
('SG 553 | Damascus Steel (Factory New)', 100, 100, 100, 0),
('StatTrak™ XM1014 | Tranquility (Factory New)', 1900, 1600, 2000, 0),
('P250 | Modern Hunter (Factory New)', 4500, 4500, 8000, 0),
('StatTrak™ AWP | Graphite (Factory New)', 9900, 9600, 10400, 0),
('P2000 | Chainmail (Factory New)', 200, 200, 200, 0),
('StatTrak™ P90 | Elite Build (Factory New)', 600, 700, 600, 0),
('Souvenir PP-Bizon | Irradiated Alert (Factory New)', 900, 900, 1000, 0),
('USP-S | Road Rash (Factory New)', 2900, 2700, 2700, 0),
('Souvenir M249 | Gator Mesh (Factory New)', 1500, 1500, 1500, 0),
('★ Bayonet | Night (Factory New)', NULL, NULL, NULL, 52400),
('Souvenir P250 | Gunsmoke (Factory New)', 3000, 3000, 3100, 0),
('Souvenir XM1014 | Blue Steel (Factory New)', 3000, 3000, 5100, 0),
('Souvenir AUG | Radiation Hazard (Factory New)', 500, 400, 400, 0),
('MAG-7 | Storm (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Gut Knife | Case Hardened (Factory New)', 24700, 24700, 34900, 0),
('P250 | Supernova (Factory New)', 0, 0, 0, 0),
('MAC-10 | Tornado (Factory New)', 100, 100, 100, 0),
('AK-47 | Safari Mesh (Factory New)', 100, 200, 100, 0),
('Desert Eagle | Urban DDPAT (Factory New)', 200, 200, 200, 0),
('AUG | Condemned (Factory New)', 100, 100, 100, 0),
('MP9 | Orange Peel (Factory New)', 0, 0, 0, 0),
('StatTrak™ MAG-7 | Firestarter (Factory New)', 200, 200, 200, 0),
('StatTrak™ P250 | Muertos (Factory New)', 1400, 1300, 1200, 0),
('M4A4 | Howl (Factory New)', NULL, NULL, NULL, 31800),
('MAG-7 | Seabird (Factory New)', 0, 0, 0, 0),
('StatTrak™ SCAR-20 | Cardiac (Factory New)', 3400, 3700, 4100, 0),
('★ Bayonet | Damascus Steel (Factory New)', 19100, 19200, 19100, 0),
('★ Karambit | Night (Factory New)', NULL, NULL, NULL, 105000),
('★ Bayonet | Tiger Tooth (Factory New)', NULL, NULL, 38400, 24000),
('★ StatTrak™ Bayonet | Urban Masked (Factory New)', NULL, NULL, NULL, 100000),
('★ StatTrak™ Huntsman Knife | Case Hardened (Factory New)', NULL, NULL, 32000, 39500),
('AUG | Anodized Navy (Factory New)', 400, 300, 400, 0),
('Souvenir MAC-10 | Amber Fade (Factory New)', 1500, 1200, 1100, 0),
('PP-Bizon | Osiris (Factory New)', 0, 0, 0, 0),
('P2000 | Granite Marbleized (Factory New)', 0, 0, 0, 0),
('AWP | Medusa (Factory New)', NULL, NULL, NULL, 160000),
('★ M9 Bayonet | Fade (Factory New)', NULL, NULL, 34900, 21900),
('MP7 | Asterion (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Butterfly Knife | Case Hardened (Factory New)', NULL, NULL, NULL, 40400),
('StatTrak™ Negev | Desert-Strike (Factory New)', 0, 0, 0, 0),
('StatTrak™ Dual Berettas | Urban Shock (Factory New)', 200, 200, 200, 0),
('Souvenir USP-S | Night Ops (Factory New)', 6700, 6700, 15200, 0),
('M4A1-S | Blood Tiger (Factory New)', 200, 200, 200, 0),
('★ StatTrak™ Bayonet | Boreal Forest (Factory New)', 37700, 37700, 38700, 0),
('StatTrak™ Glock-18 | Blue Fissure (Factory New)', 2600, 2700, 2800, 0),
('Souvenir PP-Bizon | Urban Dashed (Factory New)', 1600, 1600, 2800, 0),
('★ Flip Knife | Tiger Tooth (Factory New)', 17600, 17200, 16600, 0),
('PP-Bizon | Night Ops (Factory New)', 0, 0, 0, 0),
('★ Gut Knife | Ultraviolet (Factory New)', 32800, 32800, 34100, 0),
('SCAR-20 | Splash Jam (Factory New)', 9400, 9400, 9800, 0),
('★ Falchion Knife | Scorched (Factory New)', 18200, 18200, 21600, 0),
('M4A1-S | Hot Rod (Factory New)', 19400, 19600, 18700, 0),
('Sawed-Off | The Kraken (Factory New)', 400, 400, 400, 0),
('FAMAS | Teardown (Factory New)', 0, 0, 0, 0),
('★ Bayonet | Stained (Factory New)', 14900, 14000, 15300, 0),
('StatTrak™ MP7 | Urban Hazard (Factory New)', 0, 0, 0, 0),
('FAMAS | Hexane (Factory New)', 0, 0, 0, 0),
('MP7 | Whiteout (Factory New)', 21400, 21400, 20000, 0),
('StatTrak™ G3SG1 | Demeter (Factory New)', 3600, 2800, 4600, 0),
('Dual Berettas | Colony (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ M9 Bayonet | Fade (Factory New)', NULL, NULL, NULL, 40000),
('★ Karambit | Urban Masked (Factory New)', NULL, NULL, NULL, 49900),
('★ Bayonet | Scorched (Factory New)', 13600, 13600, 16800, 0),
('★ Bayonet | Doppler (Factory New)', NULL, NULL, 29200, 21000),
('Glock-18 | Bunsen Burner (Factory New)', 0, 0, 0, 0),
('Souvenir UMP-45 | Blaze (Factory New)', 2700, 2500, 3500, 0),
('Negev | Palm (Factory New)', 900, 900, 1000, 0),
('CZ75-Auto | Twist (Factory New)', 0, 0, 0, 0),
('PP-Bizon | Brass (Factory New)', 100, 0, 0, 0),
('P2000 | Ocean Foam (Factory New)', 2000, 1900, 2200, 0),
('AWP | Electric Hive (Factory New)', 1000, 1000, 900, 0),
('StatTrak™ Galil AR | Orange DDPAT (Factory New)', 7800, 7800, 13300, 0),
('SCAR-20 | Grotto (Factory New)', 0, 0, 0, 0),
('AUG | Akihabara Accept (Factory New)', NULL, NULL, NULL, 79800),
('Souvenir Galil AR | Hunting Blind (Factory New)', 200, 200, 200, 0),
('★ M9 Bayonet | Stained (Factory New)', 15100, 15100, 17000, 0),
('FAMAS | Styx (Factory New)', 800, 800, 800, 0),
('Galil AR | Sage Spray (Factory New)', 0, 0, 0, 0),
('★ Gut Knife | Boreal Forest (Factory New)', 10100, 10100, NULL, 0),
('Souvenir P2000 | Grassland (Factory New)', 2900, 2900, 1500, 0),
('G3SG1 | Contractor (Factory New)', 100, 100, 100, 0),
('Desert Eagle | Heirloom (Factory New)', 200, 200, 300, 0),
('Nova | Polar Mesh (Factory New)', 0, 0, 0, 0),
('StatTrak™ Dual Berettas | Hemoglobin (Factory New)', 400, 400, 300, 0),
('StatTrak™ Glock-18 | Dragon Tattoo (Factory New)', 1600, 1600, 1600, 0),
('Nova | Ghost Camo (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Huntsman Knife | Stained (Factory New)', 29200, 29200, 29900, 0),
('Nova | Graphite (Factory New)', 0, 0, 0, 0),
('M4A4 | X-Ray (Factory New)', 300, 300, 300, 0),
('P90 | Storm (Factory New)', 0, 0, 0, 0),
('★ Flip Knife | Fade (Factory New)', 17100, 17000, 15600, 0),
('G3SG1 | VariCamo (Factory New)', 0, 0, 0, 0),
('Souvenir Dual Berettas | Colony (Factory New)', 4700, 4700, 5000, 0),
('Glock-18 | Steel Disruption (Factory New)', 0, 0, 0, 0),
('MP7 | Orange Peel (Factory New)', 200, 200, 200, 0),
('Five-SeveN | Forest Night (Factory New)', 0, 0, 0, 0),
('Souvenir Nova | Green Apple (Factory New)', 300, 200, 300, 0),
('★ StatTrak™ Flip Knife | Fade (Factory New)', 23100, 22900, 21800, 0),
('Souvenir Dual Berettas | Contractor (Factory New)', 2000, 2000, 2700, 0),
('StatTrak™ Dual Berettas | Black Limba (Factory New)', 2700, 2500, 3200, 0),
('FAMAS | Spitfire (Factory New)', 10900, 10900, 12900, 0),
('Dual Berettas | Moon in Libra (Factory New)', 0, 0, 0, 0),
('UMP-45 | Corporal (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Huntsman Knife | Fade (Factory New)', NULL, NULL, 30100, 22100),
('MP7 | Forest DDPAT (Factory New)', 0, 0, 0, 0),
('MAC-10 | Silver (Factory New)', 0, 0, 0, 0),
('P250 | Crimson Kimono (Factory New)', 100, 100, 100, 0),
('P90 | Cold Blooded (Factory New)', 400, 400, 400, 0),
('★ Karambit | Doppler (Factory New)', NULL, NULL, NULL, 28000),
('Tec-9 | VariCamo (Factory New)', 0, 0, 0, 0),
('StatTrak™ Desert Eagle | Golden Koi (Factory New)', 8800, 9300, 9800, 0),
('Tec-9 | Bamboo Forest (Factory New)', 0, 0, 0, 0),
('Souvenir Sawed-Off | Snake Camo (Factory New)', 1100, 1100, 2200, 0),
('Sawed-Off | Bamboo Shadow (Factory New)', 0, 0, 0, 0),
('UMP-45 | Gunsmoke (Factory New)', 0, 0, 0, 0),
('M4A1-S | Icarus Fell (Factory New)', 15100, 14800, 14600, 0),
('Dual Berettas | Retribution (Factory New)', 0, 0, 0, 0),
('Souvenir Dual Berettas | Cobalt Quartz (Factory New)', 11600, 11600, 15000, 0),
('P2000 | Pathfinder (Factory New)', 0, 0, 0, 0),
('StatTrak™ Tec-9 | Blue Titanium (Factory New)', 200, 200, 300, 0),
('SCAR-20 | Cardiac (Factory New)', 600, 600, 700, 0),
('Souvenir SCAR-20 | Storm (Factory New)', 500, 700, 500, 0),
('Glock-18 | Candy Apple (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Gut Knife | Tiger Tooth (Factory New)', 16000, 16300, 15500, 0),
('USP-S | Royal Blue (Factory New)', 600, 600, 700, 0),
('Souvenir M4A4 | Radiation Hazard (Factory New)', 9300, 9300, NULL, 0),
('★ StatTrak™ Flip Knife | Marble Fade (Factory New)', NULL, NULL, 29500, 23000),
('Nova | Rising Skull (Factory New)', 100, 100, 100, 0),
('MAC-10 | Indigo (Factory New)', 0, 0, 0, 0),
('★ StatTrak™ Gut Knife | Blue Steel (Factory New)', 13200, 13200, 23900, 0),
('StatTrak™ M4A4 | Faded Zebra (Factory New)', 1400, 1300, 1400, 0),
('Souvenir Galil AR | VariCamo (Factory New)', 1700, 1700, 1900, 0),
('Souvenir Glock-18 | Reactor (Factory New)', 6500, 6500, 8100, 0),
('StatTrak™ CZ75-Auto | Crimson Web (Factory New)', 3800, 3200, 4500, 0),
('★ StatTrak™ Falchion Knife | Case Hardened (Factory New)', NULL, NULL, 34000, 50000),
('StatTrak™ AUG | Torque (Factory New)', 400, 400, 400, 0),
('M4A1-S | Boreal Forest (Factory New)', 300, 300, 300, 0),
('★ Flip Knife | Night (Factory New)', 24500, 24500, NULL, 0),
('StatTrak™ MAC-10 | Ultraviolet (Factory New)', 600, 500, 600, 0),
('Negev | Army Sheen (Factory New)', 0, 0, 0, 0),
('StatTrak™ USP-S | Overgrowth (Factory New)', 35800, 35800, NULL, 0),
('XM1014 | Heaven Guard (Factory New)', 100, 100, 100, 0),
('CZ75-Auto | Tread Plate (Factory New)', 0, 0, 0, 0),
('Desert Eagle | Hypnotic (Factory New)', 400, 400, 400, 0),
('Five-SeveN | Anodized Gunmetal (Factory New)', 0, 0, 0, 0),
('M4A1-S | Hyper Beast (Factory New)', 13400, 13300, 12200, 0),
('MP7 | Anodized Navy (Factory New)', 0, 0, 0, 0),
('StatTrak™ Glock-18 | Water Elemental (Factory New)', 3800, 3800, 4100, 0),
('StatTrak™ Tec-9 | Titanium Bit (Factory New)', 800, 800, 800, 0),
('★ Butterfly Knife | Night (Factory New)', NULL, NULL, NULL, 42000),
('MAG-7 | Memento (Factory New)', 0, 0, 0, 0),
('★ M9 Bayonet | Scorched (Factory New)', 18300, 18300, 20600, 0),
('Souvenir FAMAS | Styx (Factory New)', 5900, 5700, 7900, 0),
('Sawed-Off | Serenity (Factory New)', 0, 0, 0, 0),
('P250 | Franklin (Factory New)', 100, 100, 100, 0),
('★ Bayonet | Slaughter (Factory New)', 29800, 29200, 29200, 0),
('StatTrak™ FAMAS | Afterimage (Factory New)', 2300, 2300, 2500, 0),
('StatTrak™ M4A4 | Bullet Rain (Factory New)', 6600, 7000, 6000, 0),
('StatTrak™ Five-SeveN | Copper Galaxy (Factory New)', 1100, 1000, 1000, 0),
('AK-47 | Wasteland Rebel (Factory New)', 7300, 7400, 7400, 0),
('StatTrak™ Dual Berettas | Retribution (Factory New)', 100, 200, 100, 0),
('★ M9 Bayonet | Tiger Tooth (Factory New)', NULL, NULL, NULL, 29500),
('Souvenir MAG-7 | Sand Dune (Factory New)', 100, 100, 100, 0),
('Souvenir P90 | Sand Spray (Factory New)', 500, 500, 400, 0),
('StatTrak™ FAMAS | Djinn (Factory New)', 4000, 3500, 3700, 0),
('★ StatTrak™ Flip Knife | Blue Steel (Factory New)', 16200, 16200, 24400, 0),
('Galil AR | Winter Forest (Factory New)', 1500, 1400, 1500, 0),
('★ M9 Bayonet | Urban Masked (Factory New)', 18600, 18600, 27700, 0),
('Desert Eagle | Urban Rubble (Factory New)', 0, 0, 0, 0),
('SSG 08 | Blood in the Water (Factory New)', 3400, 3300, 3400, 0),
('Dual Berettas | Duelist (Factory New)', 2200, 2200, 2300, 0),
('★ Falchion Knife | Forest DDPAT (Factory New)', 10000, 10000, 12000, 0),
('Tec-9 | Titanium Bit (Factory New)', 100, 100, 0, 0),
('M4A1-S | VariCamo (Factory New)', 100, 100, 100, 0),
('StatTrak™ AUG | Chameleon (Factory New)', 1400, 1400, 1500, 0),
('Souvenir P90 | Teardown (Factory New)', 2200, 2200, 5400, 0),
('P250 | Sand Dune (Factory New)', 0, 0, 0, 0),
('XM1014 | Blue Spruce (Factory New)', 0, 0, 0, 0),
('Souvenir UMP-45 | Urban DDPAT (Factory New)', 3900, 3900, 39900, 0),
('★ Gut Knife | Damascus Steel (Factory New)', 8000, 8100, 8400, 0),
('Souvenir Glock-18 | Night (Factory New)', 10700, 10700, 12200, 0),
('StatTrak™ Desert Eagle | Bronze Deco (Factory New)', 100, 100, 100, 0),
('P90 | Module (Factory New)', 0, 0, 0, 0),
('Sawed-Off | Rust Coat (Factory New)', 0, 0, 0, 0),
('MP9 | Ruby Poison Dart (Factory New)', 0, 0, 0, 0),
('StatTrak™ CZ75-Auto | Pole Position (Factory New)', 300, 300, 200, 0),
('★ StatTrak™ M9 Bayonet | Doppler (Factory New)', NULL, NULL, NULL, 42000),
('MP9 | Storm (Factory New)', 0, 0, 0, 0),
('StatTrak™ P250 | Hive (Factory New)', 200, 200, 200, 0),
('XM1014 | Quicksilver (Factory New)', 0, 0, 0, 0),
('M4A4 | Urban DDPAT (Factory New)', 100, 100, 100, 0),
('★ Falchion Knife | Case Hardened (Factory New)', 17800, 17800, 16700, 0);
INSERT INTO items (marketName, avgPrice7Days, avgPrice30Days, currentPrice, suggestedPriceMin) VALUES
('StatTrak™ G3SG1 | Azure Zebra (Factory New)', 100, 100, 100, 0),
('Tec-9 | Hades (Factory New)', 100, 100, 100, 0),
('P2000 | Red FragCam (Factory New)', 0, 0, 0, 0),
('Nova | Walnut (Factory New)', 100, 100, 100, 0),
('★ Karambit | Slaughter (Factory New)', NULL, NULL, NULL, 31500),
('Souvenir Galil AR | Cerberus (Factory New)', 17900, 17900, 17200, 0),
('MAC-10 | Neon Rider (Factory New)', 800, 800, 800, 0),
('P2000 | Pulse (Factory New)', 0, 0, 0, 0),
('Glock-18 | Sand Dune (Factory New)', 1400, 1200, 1200, 0),
('Desert Eagle | Sunset Storm 壱 (Factory New)', 1900, 1900, 1800, 0),
('StatTrak™ MP9 | Rose Iron (Factory New)', 400, 400, 500, 0),
('Nova | Blaze Orange (Factory New)', 2700, 2700, 2900, 0),
('Souvenir Five-SeveN | Silver Quartz (Factory New)', 2900, 2900, 4000, 0),
('Nova | Sand Dune (Factory New)', 0, 0, 0, 0),
('M4A4 | Radiation Hazard (Factory New)', 7200, 7100, 9000, 0),
('PP-Bizon | Bamboo Print (Factory New)', 0, 0, 0, 0),
('XM1014 | Fallout Warning (Factory New)', 1400, 1400, 1400, 0),
('★ StatTrak™ Bayonet | Fade (Factory New)', NULL, NULL, NULL, 29900),
('Souvenir Negev | CaliCamo (Factory New)', 200, 200, 200, 0),
('Souvenir Five-SeveN | Orange Peel (Factory New)', 2300, 2300, 3400, 0),
('★ Falchion Knife | Slaughter (Factory New)', NULL, NULL, 18000, 14200),
('★ Flip Knife | Safari Mesh (Factory New)', 7400, 7400, 9000, 0),
('StatTrak™ AK-47 | Jaguar (Factory New)', 31600, 31600, 35000, 0),
('★ StatTrak™ Flip Knife | Doppler (Factory New)', 20400, 20100, 19400, 0),
('AUG | Wings (Factory New)', 0, 0, 0, 0),
('MP7 | Armor Core (Factory New)', 0, 0, 0, 0),
('StatTrak™ FAMAS | Hexane (Factory New)', 200, 200, 300, 0),
('StatTrak™ Sawed-Off | The Kraken (Factory New)', 2600, 2300, 3000, 0),
('★ Bayonet | Boreal Forest (Factory New)', 16300, 16300, 22800, 0),
('StatTrak™ Five-SeveN | Fowl Play (Factory New)', 1500, 1500, 1500, 0),
('MAC-10 | Amber Fade (Factory New)', 200, 200, 200, 0),
('★ Gut Knife | Fade (Factory New)', 10800, 10700, 10700, 0),
('CZ75-Auto | Tigris (Factory New)', 0, 0, 0, 0),
('Five-SeveN | Urban Hazard (Factory New)', 0, 0, 0, 0),
('★ Huntsman Knife | Case Hardened (Factory New)', 19700, 18800, 18000, 0),
('Souvenir MP9 | Storm (Factory New)', 1000, 1000, 1100, 0),
('StatTrak™ Dual Berettas | Marina (Factory New)', 1800, 1600, 1700, 0),
('MP9 | Dark Age (Factory New)', 200, 200, 200, 0),
('StatTrak™ MP9 | Ruby Poison Dart (Factory New)', 300, 300, 300, 0),
('Galil AR | Shattered (Factory New)', 300, 300, 400, 0),
('★ StatTrak™ Bayonet | Marble Fade (Factory New)', NULL, NULL, NULL, 40500),
('Souvenir PP-Bizon | Chemical Green (Factory New)', 1400, 1400, 2100, 0),
('Souvenir G3SG1 | VariCamo (Factory New)', 1700, 1700, 1600, 0),
('M4A4 | Griffin (Factory New)', 100, 100, 100, 0),
('StatTrak™ MAG-7 | Memento (Factory New)', 200, 200, 200, 0),
('MP9 | Dart (Factory New)', 0, 0, 0, 0),
('AUG | Chameleon (Factory New)', 200, 200, 200, 0),
('CZ75-Auto | Green Plaid (Factory New)', 0, 0, 0, 0),