-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathitem-urls.js
2140 lines (2068 loc) · 57.3 KB
/
item-urls.js
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
// Item url dictionary
const searchUrls = {
// Plate URLs
'plate hi-temp': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Bumper Plates by Hi-Temp',
link: 'https://www.roguefitness.com/rogue-hi-temp-bumper-plates',
last_avail: null,
category: 'plate',
},
'plate hg2': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue HG 2.0 Bumper Plates',
link: 'https://www.roguefitness.com/rogue-hg-2-0-bumper-plates',
last_avail: null,
category: 'plate',
},
'plate hg2 kg': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue HG 2.0 KG Bumper Plates',
link: 'https://www.roguefitness.com/kg-rogue-bumpers',
last_avail: null,
category: 'plate',
},
'plate comp lb': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue LB Competition Plates',
link: 'https://www.roguefitness.com/rogue-competition-plates',
last_avail: null,
category: 'plate',
},
'plate comp white lb': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue LB Training 2.0 Plates (White Print)',
link:
'https://www.roguefitness.com/rogue-lb-training-2-0-plates-white-print',
last_avail: null,
category: 'plate',
},
'plate comp kg': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue KG Competition Plates (IWF)',
link: 'https://www.roguefitness.com/rogue-kg-competition-plates-iwf',
last_avail: null,
category: 'plate',
},
'plate comp lb2': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Color LB Training 2.0 Plates',
link: 'https://www.roguefitness.com/rogue-color-lb-training-2-0-plates',
last_avail: null,
category: 'plate',
},
'plate black lb': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Black Training LB Plates',
link:
'https://www.roguefitness.com/rogue-black-training-lb-color-stripe-plates',
last_avail: null,
category: 'plate',
},
'plate black lb2': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue LB Training 2.0 Plates',
link: 'https://www.roguefitness.com/rogue-lb-training-2-0-plates',
last_avail: null,
category: 'plate',
},
'plate black kg': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Black Training KG Plates',
link: 'https://www.roguefitness.com/rogue-black-training-kg-striped-plates',
last_avail: null,
category: 'plate',
},
'plate training 2.0 kg': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue KG Training 2.0 Plates',
link: 'https://www.roguefitness.com/rogue-kg-training-2-0-plates',
last_avail: null,
category: 'plate',
},
'plate echo v2': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Echo Bumper Plates V2',
link:
'https://www.roguefitness.com/rogue-echo-bumper-plates-with-white-text',
last_avail: null,
category: 'plate',
},
'plate echo v1': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Echo Bumper Plates V1',
link:
'https://www.roguefitness.com/rogue-echo-bumper-plates-with-white-text-v1',
last_avail: null,
category: 'plate',
},
'plate echo color': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Color Echo Bumper Plates',
link: 'https://www.roguefitness.com/rogue-color-echo-bumper-plate',
last_avail: null,
category: 'plate',
},
'plate deep dish': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Deep Dish Plates',
link: 'https://www.roguefitness.com/rogue-deep-dish-plates',
last_avail: null,
category: 'plate',
},
'plate machined': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Machined Olympic Plates',
link: 'https://www.roguefitness.com/rogue-machined-olympic-plates',
last_avail: null,
category: 'plate',
},
'plate fleck': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Fleck Plate',
link: 'https://www.roguefitness.com/rogue-fleck-plates',
last_avail: null,
category: 'plate',
},
'plate olympic': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Olympic Plates',
link: 'https://www.roguefitness.com/rogue-olympic-plates',
last_avail: null,
category: 'plate',
},
'plate cal': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Calibrated LB Steel Plates',
link: 'https://www.roguefitness.com/rogue-calibrated-lb-steel-plates',
last_avail: null,
category: 'plate',
},
'plate change': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue LB Change Plates',
link: 'https://www.roguefitness.com/rogue-lb-change-plates',
last_avail: null,
category: 'plate',
},
'plate change kg': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue KG Change Plates (IWF)',
link: 'https://www.roguefitness.com/rogue-kg-change-plates',
last_avail: null,
category: 'plate',
},
'plate mil spec': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue US-MIL Spec Bumper',
link: 'https://www.roguefitness.com/rogue-us-mil-sprc-bumper-plates',
last_avail: null,
category: 'plate',
},
'plate mil spec echo': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue MIL Spec Echo Bumper',
link: 'https://www.roguefitness.com/rogue-mil-echo-bumper-plates-black',
last_avail: null,
category: 'plate',
},
'plate 6-shooter': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue 6-Shooter Olympic Grip Plates',
link: 'https://www.roguefitness.com/rogue-6-shooter-olympic-plates',
last_avail: null,
category: 'plate',
},
'plate cal kg': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Calibrated KG Steel Plates',
link: 'https://www.roguefitness.com/rogue-calibrated-kg-steel-plates',
last_avail: null,
category: 'plate',
},
'plate urethane': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Urethane Plates',
link: 'https://www.roguefitness.com/rogue-urethane-plates',
last_avail: null,
category: 'plate',
},
'plate tree': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Vertical Plate Tree 2.0',
link: 'https://www.roguefitness.com/rogue-vertical-plate-tree-2-0',
last_avail: null,
category: 'storage',
},
// Barbell URLs
// Ohio Bar
'barbell op oxide': {
type: 'single',
senderIDs: {},
product_name: 'The Ohio Bar - Black Oxide',
link: 'https://www.roguefitness.com/rogue-ohio-bar-black-oxide',
last_avail: null,
category: 'barbell',
},
'barbell op zinc': {
type: 'single',
senderIDs: {},
product_name: 'The Ohio Bar - Black Zinc',
link: 'https://www.roguefitness.com/the-ohio-bar-black-zinc',
last_avail: null,
category: 'barbell',
},
'barbell op ecoat': {
type: 'single',
senderIDs: {},
product_name: 'The Ohio Bar - E-Coat',
link: 'https://www.roguefitness.com/the-ohio-bar-2-0-e-coat',
last_avail: null,
category: 'barbell',
},
'barbell op ss': {
type: 'single',
senderIDs: {},
product_name: 'The Ohio Bar - Stainless Steel',
link: 'https://www.roguefitness.com/stainless-steel-ohio-bar',
last_avail: null,
category: 'barbell',
},
'barbell op cerakote': {
type: 'cerakote',
senderIDs: {},
product_name: 'The Ohio Bar - Cerakote',
link: 'https://www.roguefitness.com/the-ohio-bar-cerakote',
last_avail: null,
category: 'barbell',
},
'barbell op fraser': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Athlete Cerakote Ohio Bar - Fraser Edition',
link:
'https://www.roguefitness.com/rogue-athlete-ohio-bar-fraser-cerakote-edition',
last_avail: null,
category: 'barbell',
},
// Ohio Power Bar
'barbell opb steel': {
type: 'single',
senderIDs: {},
product_name: 'Rogue 45LB Ohio Power Bar - Bare Steel',
link: 'https://www.roguefitness.com/rogue-45lb-ohio-power-bar-bare-steel',
last_avail: null,
category: 'barbell',
},
'barbell opb ecoat': {
type: 'single',
senderIDs: {},
product_name: 'Rogue 45LB Ohio Power Bar - E-Coat',
link: 'https://www.roguefitness.com/rogue-ohio-power-bar-e-coat',
last_avail: null,
category: 'barbell',
},
'barbell opb zinc': {
type: 'single',
senderIDs: {},
product_name: 'Rogue 45LB Ohio Power Bar - Black Zinc',
link: 'https://www.roguefitness.com/rogue-45lb-ohio-power-bar-black-zinc',
last_avail: null,
category: 'barbell',
},
'barbell opb ss': {
type: 'custom',
senderIDs: {},
product_name: 'Rogue 45LB Ohio Power Bar - Stainless Steel',
link: 'https://www.roguefitness.com/rogue-45lb-ohio-power-bar-stainless',
last_avail: null,
category: 'barbell',
},
'barbell opb ss kg': {
type: 'single',
senderIDs: {},
product_name: 'Rogue 20KG Ohio Power Bar - Stainless Steel',
link:
'https://www.roguefitness.com/rogue-20-kg-ohio-power-bar-stainless-steel',
last_avail: null,
category: 'barbell',
},
'barbell opb cerakote': {
type: 'cerakote',
senderIDs: {},
product_name: 'Rogue 45LB Ohio Power Bar - Cerakote',
link: 'https://www.roguefitness.com/rogue-45lb-ohio-powerlift-bar-cerakote',
last_avail: null,
category: 'barbell',
},
'barbell dl cerakote': {
type: 'cerakote',
senderIDs: {},
product_name: 'Rogue Ohio Deadlift Bar - Cerakote',
link: 'https://www.roguefitness.com/rogue-ohio-deadlift-cerakote',
last_avail: null,
category: 'barbell',
},
// Boneyard
'bone 29': {
type: 'bone',
senderIDs: {},
product_name: 'Boneyard 29mm Bars',
link: 'https://www.roguefitness.com/rogue-29mm-boneyard-bars',
last_avail: null,
category: 'boneyard',
},
'bone 28': {
type: 'bone',
senderIDs: {},
product_name: 'Boneyard 28mm Bars',
link: 'https://www.roguefitness.com/rogue-28mm-boneyard-bars',
last_avail: null,
category: 'boneyard',
},
'bone 28.5': {
type: 'bone',
senderIDs: {},
product_name: 'Boneyard 28.5mm Bars',
link: 'https://www.roguefitness.com/rogue-28-5-mm-boneyard-bars',
last_avail: null,
category: 'boneyard',
},
'bone dead': {
type: 'bone',
senderIDs: {},
product_name: 'Boneyard Deadlift Bars',
link: 'https://www.roguefitness.com/rogue-boneyard-ohio-deadlift-bar',
last_avail: null,
category: 'boneyard',
},
'bone curl': {
type: 'bone',
senderIDs: {},
product_name: 'Boneyard Curl Bars',
link: 'https://www.roguefitness.com/rogue-boneyard-curl-bar',
last_avail: null,
category: 'boneyard',
},
'bone 25': {
type: 'bone',
senderIDs: {},
product_name: 'Rogue 25MM Boneyard Bars',
link: 'https://www.roguefitness.com/rogue-25mm-boneyard-bars',
last_avail: null,
category: 'boneyard',
},
'grab bag barbell': {
type: 'grab bag',
senderIDs: {},
product_name: 'Used Barbells',
link: 'https://www.roguefitness.com/miscellaneous-barbells-used',
last_avail: null,
category: 'boneyard',
},
'bone oso pro': {
type: 'bone',
senderIDs: {},
product_name: 'Boneyard OSO Pro Collars',
link: 'https://www.roguefitness.com/boneyard-oso-pro-collars-closeout',
last_avail: null,
category: 'boneyard',
},
// Ironmaster
'ironmaster adj 75': {
type: 'ironmaster',
senderIDs: {},
product_name: 'Quick-Lock Adjustable Dumbbell System 75 lb Set',
link:
'https://www.ironmaster.com/products/quick-lock-adjustable-dumbbells-75/',
last_avail: null,
category: 'ironmaster',
},
'ironmaster adj 45': {
type: 'ironmaster',
senderIDs: {},
product_name: 'Quick-Lock Adjustable Dumbbell System 45 lb Set',
link:
'https://www.ironmaster.com/products/quick-lock-dumbbell-system-45-lb-set/',
last_avail: null,
category: 'ironmaster',
},
'ironmaster addon 120': {
type: 'ironmaster',
senderIDs: {},
product_name: 'Quick-Lock Dumbbell – 120 lb Add on Kit ',
link:
'https://www.ironmaster.com/products/add-on-kit-to-120-lbs-quick-lock/',
last_avail: null,
category: 'ironmaster',
},
// Bella Bars
'bella ecoat': {
type: 'single',
senderIDs: {},
product_name: 'The Bella Bar 2.0 - E-Coat',
link: 'https://www.roguefitness.com/the-bella-bar-2-0-e-coat',
last_avail: null,
category: 'barbell',
},
'bella zinc': {
type: 'single',
senderIDs: {},
product_name: 'The Bella Bar 2.0 - Black Zinc',
link: 'https://www.roguefitness.com/rogue-bella-bar-2-0-black-zinc',
last_avail: null,
category: 'barbell',
},
'bella ss': {
type: 'single',
senderIDs: {},
product_name: 'The Bella Bar 2.0 - Stainless Steel',
link: 'https://www.roguefitness.com/the-bella-bar-2-0-stainless',
last_avail: null,
category: 'barbell',
},
'bella cerakote': {
type: 'cerakote',
senderIDs: {},
product_name: 'The Bella Bar 2.0 - Cerakote',
link: 'https://www.roguefitness.com/the-bella-rogue-womens-bar-cerakote',
last_avail: null,
category: 'barbell',
},
'barbell operator': {
type: 'cerakote',
senderIDs: {},
product_name: 'Rogue Operator Bar 3.0',
link: 'https://www.roguefitness.com/rogue-operator-bar-cerakote',
last_avail: null,
category: 'barbell',
},
'barbell chan': {
type: 'cerakote',
senderIDs: {},
product_name: 'Rogue Chan Bar - Cerakote',
link: 'https://www.roguefitness.com/chan-bar-cerakote',
last_avail: null,
category: 'barbell',
},
'barbell training zinc': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue 28MM Training Bar - Black Zinc',
link: 'https://www.roguefitness.com/rogue-28mm-training-bar',
last_avail: null,
category: 'barbell',
},
'barbell training cerakote': {
type: 'cerakote',
senderIDs: {},
product_name: 'Rogue 28MM Training Bar - Cerakote',
link: 'https://www.roguefitness.com/rogue-28mm-training-bar-cerakote',
last_avail: null,
category: 'barbell',
},
'barbell b&r': {
type: 'single',
senderIDs: {},
product_name: 'Rogue B&R Bar 2.0',
link: 'https://www.roguefitness.com/rogue-29mm-burgener-rippetoe-bar-2-0',
last_avail: null,
category: 'barbell',
},
// Curl Bar
'curl cerakote': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Curl Bar - Cerakote',
link: 'https://www.roguefitness.com/rogue-curl-bar-cerakote',
last_avail: null,
category: 'spec_bar',
},
curl: {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Curl Bar',
link: 'https://www.roguefitness.com/rogue-curl-bar',
last_avail: null,
category: 'spec_bar',
},
'curl rackable': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Rackable Curl Bar',
link: 'https://www.roguefitness.com/rogue-rackable-curl-bar',
last_avail: null,
category: 'spec_bar',
},
// Other bars
'barbell rogue 2.0': {
type: 'multi',
senderIDs: {},
product_name: 'The Rogue Bar 2.0',
link: 'https://www.roguefitness.com/the-rogue-bar-2-0',
last_avail: null,
category: 'barbell',
},
'barbell echo 2.0': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Echo Bar 2.0',
link: 'https://www.roguefitness.com/rogue-echo-bar',
last_avail: null,
category: 'barbell',
},
'barbell freedom': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Freedom Bar - 28.5MM',
link: 'https://www.roguefitness.com/cerakote-28-5-mm-freedom-bar',
last_avail: null,
category: 'barbell',
},
'db 15': {
type: 'db15',
senderIDs: {},
product_name: 'Rogue DB-15 Loadable Dumbbell',
link: 'https://www.roguefitness.com/rogue-loadable-dumbbells',
last_avail: null,
category: 'cond',
},
'db 10': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue DB-10 Loadable Dumbbell',
link: 'https://www.roguefitness.com/rogue-loadable-dumbbells',
last_avail: null,
category: 'cond',
},
// Echo bike
'bike echo': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Echo Bike',
link: 'https://www.roguefitness.com/rogue-echo-bike',
last_avail: null,
category: 'cardio',
},
// Bench
'bench monster 2.0': {
type: 'monster bench',
senderIDs: {},
product_name: 'Monster Utility Bench 2.0',
link: 'https://www.roguefitness.com/monster-utility-bench-2-0-mg-black',
last_avail: null,
category: 'bench',
},
'bench flat 2.0': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Flat Utility Bench 2.0',
link: 'https://www.roguefitness.com/rogue-flat-utility-bench',
last_avail: null,
category: 'bench',
},
'bench adj 2.0': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Adjustable Bench 2.0',
link: 'https://www.roguefitness.com/rogue-adjustable-bench-2-0',
last_avail: null,
category: 'bench',
},
'bench ab2': {
type: 'multi',
senderIDs: {},
product_name: 'AB-2 Adjustable Bench',
link: 'https://www.roguefitness.com/ab-2-adjustable-bench',
last_avail: null,
category: 'bench',
},
'bench ab3': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue AB-3 Adjustable Bench',
link: 'https://www.roguefitness.com/rogue-ab-3-adjustable-bench',
last_avail: null,
category: 'bench',
},
'bench thompson': {
type: 'single',
senderIDs: {},
product_name: 'Thompson Fat Pad™',
link: 'https://www.roguefitness.com/thompson-fatpad',
last_avail: null,
category: 'bench',
},
'bench fatpad': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Competition Fat Pad',
link: 'https://www.roguefitness.com/rogue-competition-fat-pad',
last_avail: null,
category: 'bench',
},
'bench foldup': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Fold Up Utility Bench',
link: 'https://www.roguefitness.com/rogue-fold-up-utility-bench',
last_avail: null,
category: 'bench',
},
'bench westside 2.0': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Westside Bench 2.0',
link: 'https://www.roguefitness.com/rogue-westside-bench-2-0',
last_avail: null,
category: 'bench',
},
'bench monster westside': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Monster Westside Bench',
link: 'https://www.roguefitness.com/rogue-monster-westside-bench',
last_avail: null,
category: 'bench',
},
// Squat Stands
'squat sml-2': {
type: 'multi',
senderIDs: {},
product_name: 'SML-2 Rogue 90" Monster Lite Squat Stand',
link:
'https://www.roguefitness.com/sml-2-rogue-90-monster-lite-squat-stand',
last_avail: null,
category: 'squat stand',
},
'squat sml-3': {
type: 'multi',
senderIDs: {},
product_name: 'SML-3 Rogue 108" Monster Lite Squat Stand',
link:
'https://www.roguefitness.com/sml-3-rogue-108-monster-lite-squat-stand',
last_avail: null,
category: 'squat stand',
},
'squat s-1': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue S-1 Squat Stand 2.0',
link: 'https://www.roguefitness.com/rogue-s-1-squat-stand-2-0',
last_avail: null,
category: 'squat stand',
},
'squat s-2': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue S-2 Squat Stand 2.0',
link: 'https://www.roguefitness.com/rogue-s2-squat-stand-2-0',
last_avail: null,
category: 'squat stand',
},
'squat s-4': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue S-4 Squat Stand 2.0',
link: 'https://www.roguefitness.com/rogue-s-4-squat-stand-2',
last_avail: null,
category: 'squat stand',
},
'squat echo': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Echo Squat Stand 2.0',
link: 'https://www.roguefitness.com/rogue-echo-squat-stand-2-0',
last_avail: null,
category: 'squat stand',
},
// Racks
'rack rml-390f': {
type: 'multi',
senderIDs: {},
product_name: 'RML-390F Flat Foot Monster Lite Rack',
link: 'https://www.roguefitness.com/rml-390f-flat-foot-monster-lite-rack',
last_avail: null,
category: 'rack',
},
'rack rml-490': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue RML-490 Power Rack',
link: 'https://www.roguefitness.com/rogue-rml-490-power-rack',
last_avail: null,
category: 'rack',
},
'rack rml-490c': {
type: 'rmlc',
senderIDs: {},
product_name: 'Rogue RML-490C Power Rack 3.0',
link: 'https://www.roguefitness.com/rogue-rml-490-power-rack-color-3-0',
last_avail: null,
category: 'rack',
},
'rack rml-690': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue RML-690 Power Rack',
link: 'https://www.roguefitness.com/rml-690-power-rack',
last_avail: null,
category: 'rack',
},
'rack r-3': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue R-3 Power Rack',
link: 'https://www.roguefitness.com/rogue-r-3-power-rack',
last_avail: null,
category: 'rack',
},
'rack rm-3 fortis': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue RM-3 Fortis Rack',
link: 'https://www.roguefitness.com/rogue-rm-3-fortis-rack',
last_avail: null,
category: 'rack',
},
'rack rm-4 fortis': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue RM-4 Fortis Rack',
link: 'https://www.roguefitness.com/rogue-rm-4-fortis-rack',
last_avail: null,
category: 'rack',
},
'combo rack': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Combo Rack',
link: 'https://www.roguefitness.com/rogue-combo-rack',
last_avail: null,
category: 'rack',
},
'ml spotter': {
type: 'single',
senderIDs: {},
product_name: 'SAML-24 Monster Lite Safety Spotter Arms (Pair)',
link: 'https://www.roguefitness.com/saml-24-monster-lite-spotter-arms-pair',
last_avail: null,
category: 'ml',
},
'm spotter': {
type: 'single',
senderIDs: {},
product_name: 'Monster Safety Spotter Arms 2.0',
link: 'https://www.roguefitness.com/monster-safety-spotter-arms-2-0',
last_avail: null,
category: 'm',
},
'm top beam': {
type: 'custom2',
senderIDs: {},
product_name: 'Monster 43 Top Beam',
link: 'https://www.roguefitness.com/monster-43-top-beam',
last_avail: null,
category: 'm',
},
'm slinger': {
type: 'custom2',
senderIDs: {},
product_name: 'Rogue Monster Slinger',
link: 'https://www.roguefitness.com/rogue-monster-slinger',
last_avail: null,
category: 'm',
},
'm attach post': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Monster Attachment Post',
link: 'https://www.roguefitness.com/rogue-monster-attachment-post',
last_avail: null,
category: 'm',
},
'm 4-bar hanger': {
type: 'single',
senderIDs: {},
product_name: 'Monster Rack Mount 4-Bar Hanger',
link: 'https://www.roguefitness.com/monster-rack-mount-4-bar-hanger',
last_avail: null,
category: 'm',
},
'infinity spotter': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Infinity Safety Spotter Arms',
link: 'https://www.roguefitness.com/set-of-safety-spotter-arms',
last_avail: null,
category: 'inf',
},
'ml straps': {
type: 'multi',
senderIDs: {},
product_name: 'Monster Lite Strap Safety System 2.0',
link: 'https://www.roguefitness.com/monster-lite-strap-safety-system-2-0',
last_avail: null,
category: 'ml',
},
'infinity straps': {
type: 'multi',
senderIDs: {},
product_name: 'Infinity Strap Safety System 2.0',
link: 'https://www.roguefitness.com/infinity-strap-safety-system-2-0',
last_avail: null,
category: 'inf',
},
'infinity j-cups': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Infinity J-Cup Set',
link: 'https://www.roguefitness.com/extra-infinity-j-cup-set',
last_avail: null,
category: 'inf',
},
'ml j-cups': {
type: 'single',
senderIDs: {},
product_name: 'Monster Lite J-Cups',
link: 'https://www.roguefitness.com/j-3358-monster-lite-j-cups',
last_avail: null,
category: 'ml',
},
'ml sandwich j-cups': {
type: 'single',
senderIDs: {},
product_name: 'Monster Lite Sandwich J-Cup Pair',
link: 'https://www.roguefitness.com/monster-lite-sandwich-j-cup-pair',
last_avail: null,
category: 'ml',
},
'ml slinger': {
type: 'custom2',
senderIDs: {},
product_name: 'Rogue Monster Lite Slinger',
link: 'https://www.roguefitness.com/rogue-monster-lite-slinger',
last_avail: null,
category: 'ml',
},
landmine: {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Landmines',
link: 'https://www.roguefitness.com/landmines',
last_avail: null,
category: 'ml',
},
'm landmine': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Monster Landmine 2.0',
link: 'https://www.roguefitness.com/rogue-monster-landmine-2-0',
last_avail: null,
category: 'm',
},
'parallel landmine handle': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Parallel Landmine Handle',
link: 'https://www.roguefitness.com/rogue-parallel-landmine-handle',
last_avail: null,
category: 'acc',
},
// Yoke
'yoke y1': {
type: 'multi',
senderIDs: {},
product_name: 'Y-1 Rogue Yoke',
link: 'https://www.roguefitness.com/rogue-yoke',
last_avail: null,
category: 'other',
},
'yoke y2': {
type: 'multi',
senderIDs: {},
product_name: 'Y-2 Rogue Yoke',
link: 'https://www.roguefitness.com/y2-yoke',
last_avail: null,
category: 'other',
},
// Row
'rower pm5': {
type: 'single',
senderIDs: {},
product_name: 'Black Concept 2 Model D Rower - PM5',
link: 'https://www.roguefitness.com/black-concept-2-model-d-rower-pm5',
last_avail: null,
category: 'cardio',
},
'rower pm5 model e': {
type: 'single',
senderIDs: {},
product_name: 'Black Concept 2 Model E Rower - PM5',
link: 'https://www.roguefitness.com/concept2-model-e-rower-pm5-black',
last_avail: null,
status: 'new',
category: 'cardio',
},
// GHD
'abram ghd': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Abram GHD 2.0',
link: 'https://www.roguefitness.com/rogue-abram-glute-ham-developer-2-0',
last_avail: null,
category: 'other',
},
'm ghd': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Monster Swing Arm GHD',
link: 'https://www.roguefitness.com/rogue-monster-swing-arm-ghd',
last_avail: null,
category: 'other',
},
'echo ghd': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue 3x3 Echo GHD',
link: 'https://www.roguefitness.com/rogue-echo-ghd',
last_avail: null,
category: 'other',
},
'mini dl jack': {
type: 'single',
senderIDs: {},
product_name: 'Mini Deadlift Bar Jack',
link: 'https://www.roguefitness.com/mini-deadlift-bar-jack',
last_avail: null,
category: 'acc',
},
'dl jack': {
type: 'single',
senderIDs: {},
product_name: 'Rogue Deadlift Bar Jack',
link: 'https://www.roguefitness.com/bar-jack',
last_avail: null,
category: 'acc',
},
// Free weights
kettlebells: {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Kettlebells',
link: 'https://www.roguefitness.com/rogue-kettlebells',
last_avail: null,
category: 'cond',
},
'kettlebells comp': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Competition Kettlebells',
link: 'https://www.roguefitness.com/rogue-competition-kettlebells',
last_avail: null,
category: 'cond',
},
'kettlebells ecoat': {
type: 'multi',
senderIDs: {},
product_name: 'Rogue Kettlebell - E Coat',