-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercises.json
1706 lines (1705 loc) · 58.1 KB
/
exercises.json
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
{
"exercises": [
{
"id": 1,
"difficulty": "intermediate",
"category": ["legs", "back"],
"name": "back squats",
"desc": "Strength building exercise for legs, back and core",
"muscle_group": "quads",
"equipment_req": ["Barbell", "Knee Pads", "Belt"],
"mechanics": "compound",
"force_type": "legs",
"secondary_muscle_group": [
"calves",
"glutes",
"hamstrings",
"lower back"
],
"ImageUrl": "back-squats.jpeg",
"overview": "The squat is the king of all exercises, working over 256 muscles in one movement! From bodybuilders to powerlifters to competitive athletes, the squat is a staple compound exercise and should be in every workout plan.<br /><br /> For powerlifters, it is known as one of the “big three” lifts which includes the squat, deadlift, and bench press. For athletes, having an explosive squat is a good indicator for on field/court performance. And for bodybuilders, the squat is a compound exercise that targets nearly every muscle of your lower body and core. <br /> <br /> The squat directly targets the muscles of the quads, but also involves the hamstrings, glutes, back, and core as well as muscles of the shoulders and arms to a lesser degree. <br /> <br /> Not everyone is built to perform the traditional barbell back squat and it can result in some pain for certain individuals. Over the years, several squatting variations have been developed to help everyone be able to train this critical movement pattern safely.",
"safety_check": [
{
"icon": "safety-back.png",
"safety": "Never round your back."
},
{
"icon": "safety-leaning.png",
"safety": "Dont lean too forward."
},
{
"icon": "safety-squat.png",
"safety": "Dont squat too below."
}
],
"instructions": [
{
"step": 1,
"instr": "Set up for the exercise by setting the barbell to just below shoulder height and loading the weight you want to use."
},
{
"step": 2,
"instr": "Stand under the bar with your feet at about shoulder width apart."
},
{
"step": 3,
"instr": "Position the bar so that it is resting on the muscles on the top of your back, not on the back of your neck."
},
{
"step": 4,
"instr": "You should now bend at the knees and straighten your back in preparation to take the weight off the rack."
},
{
"step": 5,
"instr": "Keeping your back straight and eyes up, push up through the legs and take the weight off the rack and slowly take a small step back and stabilize yourself."
},
{
"step": 6,
"instr": "Keeping your eyes facing forward slowly lower your body down. Don't lean forward as you come down."
},
{
"step": 7,
"instr": "Squat down until your thighs are parallel with the floor, and then slowly raise your body back up by pushing through your heels and REPEAT."
}
],
"relevant_exercise": [
{
"force_type": "legs",
"name": "leg press",
"shortDesc": "limit pusher press",
"rel_imgUrl": "leg-press.jpg"
},
{
"force_type": "legs",
"name": "leg extension",
"shortDesc": "leg extensions - the screamer ",
"rel_imgUrl": "leg-extension.webp"
},
{
"force_type": "legs",
"name": "front squat",
"shortDesc": "Front Squat - the balancer",
"rel_imgUrl": "front-squat.jpg"
}
],
"video_resources": []
},
{
"id": 30,
"difficulty": "intermediate",
"category": ["biceps"],
"name": "preacher curl",
"desc": "Preacher curls target the biceps with precision - using dumbbell or preacher machine.",
"muscle_group": "biceps",
"equipment_req": ["Dumbbell", "preacher machine"],
"mechanics": "isolation",
"force_type": "pull",
"secondary_muscle_group": ["brachialis"],
"ImageUrl": "preacher-curls.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 2,
"difficulty": "intermediate",
"category": ["chest", "triceps"],
"name": "bench press",
"desc": "Strength building exercise for chest, arms and core",
"muscle_group": "chest",
"equipment_req": ["Barbell", "Bench", "Belt", "Wristbands"],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["triceps"],
"ImageUrl": "bench-press.jpg",
"overview": "The barbell bench press is a classic exercise popular among all weight lifting circles. From bodybuilders to powerlifters, the bench press is a staple chest exercise in nearly every workout program. <br/> <br/>For powerlifters, it is known as one of the “big three” lifts which includes the squat, deadlift, and bench press. <br/> <br/> For athletes, 1 rep max on bench press is a good indicator for on field/court performance. And for bodybuilders, the bench press is a compound exercise that targets many of the muscles in your upper body. <br/> <br/> By performing the bench press, you primarily work your pectoralis major (your chest). Other muscles which assist in moving the barbell during a bench press are other muscles of the chest, triceps, and shoulders. <br/> <br/> Not everyone is built to perform the traditional barbell bench press, so several variations have been created to ensure people can train this crucial movement pattern in a safe and comfortable way.",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
},
{
"icon": "safety-grip.png",
"safety": "Dont take suicide grip."
},
{
"icon": "safety-wrist.png",
"safety": "Wear wrist bands for heavy weights."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
},
{
"step": 2,
"instr": "Keep the bar in line with your wrist and elbows and ensure it travels in a straight line."
},
{
"step": 3,
"instr": "Lie on your back and make an arch on back, Take a regular grip with wrists a little wider than your shoulders. Take a deep breath and lift off."
},
{
"step": 4,
"instr": "Control the weight throughout the movement. Take a pause at the bottom and then push back."
},
{
"step": 5,
"instr": "While lifting make sure you retract the shoulder blades and tighten your core to make the lift feel easier."
},
{
"step": 6,
"instr": "Squeeze the barbell as if you are trying to bend the bar to ensure your shoulder stability."
},
{
"step": 7,
"instr": "If you have weak wrists, you can also use wristbands. Lift and maintain constant tension throughtout and REPEAT."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "incline dumbbell press",
"shortDesc": "The Ultimate push ",
"rel_imgUrl": "incline-db-press.png"
},
{
"force_type": "push",
"name": "cable fly",
"shortDesc": "the peck deck fly",
"rel_imgUrl": "cable-fly.webp"
},
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 3,
"difficulty": "beginner",
"category": ["chest", "triceps"],
"name": "pushups",
"desc": "Evergreen exercise for full body - chest, shoulders, back, triceps and legs",
"muscle_group": "chest",
"equipment_req": [],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["triceps", "shoulders", "Back"],
"ImageUrl": "push-up.jpg",
"overview": "The Pushup is a classic exercise for your full body core strength and muscle development. From bodybuilders, crossfit atheletes, powerlifters and calisthenics, everyone considers pushups to be the most basic and efficient exercise for muscle and strength growth. <br/ ><br/ >There are different variations of pushups which one can perform to target various muscle groups. Ex: A normal pushup - major focus on chest while minor on back and triceps.<br/ > Switch it with Archer pushups - Major for shoulders and minor for core and arms or switch it to diamond pushup to target your inner chest and triceps. <br/ ><br/ >This exercise can be performed by beginners to experts, with a mild adjustment you can make this exercise difficult and try to achieve that level. <br/ ><br/ > Beginners can start from Knee pushups. Once you are able to do 10 knee pushups, you can try to do one normal pushup. Once you are able to do 5 normal pushup - you can try to do a wide stance pushup. If you are able to do 5 wide pushups - you can try a diamond pushup and so on to Archer pushup and then final finish it with a one arm pushup. <br/> <br/> Once you are able to do one arm pushups - you can also try weighted pushups where you can put on weighted bags or put plates of weight over your back while you perform the motion.",
"safety_check": [
{
"icon": "safety-elbows.png",
"safety": "Don't flare out elbows."
},
{
"icon": "safety-wrist.png",
"safety": "Don't put too much pressure on wrist."
},
{
"icon": "safety-spine.png",
"safety": "Keep hip, spine, neck and head straight ."
}
],
"instructions": [
{
"step": 1,
"instr": "Assume a quadruped position on the floor with your hands under your shoulders, toes tucked, and knees under hips."
},
{
"step": 2,
"instr": "Slowly descend to the floor by retracting the shoulder blades and unlocking the elbows."
},
{
"step": 3,
"instr": "Descend until the upper arms are parallel or your chest touches the floor."
},
{
"step": 4,
"instr": "Push back to the starting point by extending the elbows and driving your palms into the floor."
},
{
"step": 5,
"instr": "control the movement while descending and come back up with same speed and REPEAT."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "bench press",
"shortDesc": "the classic bench press",
"rel_imgUrl": "bench-press.jpg"
},
{
"force_type": "push",
"name": "cable fly",
"shortDesc": "the peck deck fly",
"rel_imgUrl": "cable-fly.webp"
},
{
"force_type": "push",
"name": "incline dumbbell press",
"shortDesc": "The Ultimate push ",
"rel_imgUrl": "incline-db-press.png"
}
],
"video_resources": []
},
{
"id": 32,
"difficulty": "intermediate",
"category": ["triceps"],
"name": "overhead extensions",
"desc": "Overhead extensions - a potent triceps exercise which involves extending a weight overhead.",
"muscle_group": "triceps",
"equipment_req": ["Dumbbell", "cable machine"],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["shoulders", "traps"],
"ImageUrl": "overhead-extension.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 20,
"difficulty": "advanced",
"category": ["legs", "back"],
"name": "deadlift",
"desc": "Deadlift is a compound exercise engaging hams, glutes, arms and core muscles.",
"muscle_group": "Legs, Hamstrings, Glutes, Lower back, Arms and Core muscles.",
"equipment_req": ["Barbell", "Belt", "weighted plates"],
"mechanics": "compound",
"force_type": "pull",
"secondary_muscle_group": [
"hamstrings",
"glutes",
"core",
"lower back",
"grip strength",
"traps"
],
"ImageUrl": "deadlift.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 19,
"difficulty": "beginner",
"category": ["legs"],
"name": "leg extension",
"desc": "Leg extensions are an isolation exercise that specifically targeting front of the quadriceps.",
"muscle_group": "Quads",
"equipment_req": ["leg extension machine"],
"mechanics": "isolation",
"force_type": "push",
"secondary_muscle_group": ["none"],
"ImageUrl": "leg-extension.webp",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 35,
"difficulty": "intermediate",
"category": ["abs"],
"name": "leg raises",
"desc": "Leg raises are core-strengthening exercise engaging the lower abdominal muscles.",
"muscle_group": "abdominal",
"equipment_req": ["bodyweight"],
"mechanics": "isolation",
"force_type": "pull",
"secondary_muscle_group": ["none"],
"ImageUrl": "abs-leg-raises.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 34,
"difficulty": "intermediate",
"category": ["triceps"],
"name": "skull crusher",
"desc": "Skull Crushers - challenging exercise that isolates and strengthens the triceps.",
"muscle_group": "triceps",
"equipment_req": ["Dumbbell", "EZ bar"],
"mechanics": "isolation",
"force_type": "push",
"secondary_muscle_group": ["shoulders", "chest", "forearms"],
"ImageUrl": "skull-crushers.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 4,
"difficulty": "beginner",
"category": ["chest"],
"name": "cable fly",
"desc": "Cable fly for targeting your lower peck for a well rounded chest.",
"muscle_group": "chest",
"equipment_req": ["cable machine"],
"mechanics": "isolation",
"force_type": "push",
"secondary_muscle_group": ["shoulders", "triceps"],
"ImageUrl": "cable-fly.webp",
"overview": "The standing cable fly is a variation of the chest fly and an exercise used to strengthen the pushing muscles of the body including the chest, triceps, and shoulders.<br/><br/> The standing cable fly can be tough to overload as it requires a great deal of core stability, so it is probably best used as an accessory movement for those looking to increase their chest muscle mass. <br/> <br/>Take small weights and control the movement throughout and hold at the streched position for about 1-2 sec and then slowly go back to the starting position.",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
},
{
"icon": "safety-grip.png",
"safety": "Dont take suicide grip."
}
],
"instructions": [
{
"step": 1,
"instr": "Set both pulleys directly at (or slightly above) shoulder height and select the desired weight.."
},
{
"step": 2,
"instr": "Grasp both handles with a neutral grip and take a step forward to split the stance."
},
{
"step": 3,
"instr": "Press the handles to lockout while flexing the pecs and extending the elbows and hold for about 1-2 secs."
},
{
"step": 4,
"instr": "Keep a slight bend in the elbows, move entirely at the shoulder joint, and slowly allow the arms to open while the pecs stretch."
},
{
"step": 5,
"instr": "Return to the starting position by flexing your pecs and bringing the handles together at chest height."
},
{
"step": 6,
"instr": "Slowly lower back to the starting position and repeat for the desired number of repetitions."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "bench press",
"shortDesc": "the classic bench press",
"rel_imgUrl": "bench-press.jpg"
},
{
"force_type": "push",
"name": "incline dumbbell press",
"shortDesc": "The Ultimate push ",
"rel_imgUrl": "incline-db-press.png"
},
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 5,
"difficulty": "beginner",
"category": ["chest"],
"name": "incline dumbbell press",
"desc": "Utilizing an incline dumbbell press will allow you to better target the upper chest.",
"muscle_group": "chest",
"equipment_req": ["Dumbbell", "bench"],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["shoulders", "triceps"],
"ImageUrl": "incline-db-press.png",
"overview": "The incline dumbbell bench press is a variation of the incline bench press and an exercise used to build the muscles of the chest. The shoulders and triceps will be indirectly involved as well. <br/><br/>Utilizing an incline will allow you to better target the upper portion of the chest, a lagging part for a lot of lifters.<br/><br/>The use of dumbbells will also promote balanced and equal strength among both sides of the chest.<br/> They can also help prevent shoulder and pec injuries when performing presses.",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
},
{
"icon": "safety-grip.png",
"safety": "Dont take suicide grip."
},
{
"icon": "safety-wrist.png",
"safety": "Don't put too much pressure on wrist."
},
{
"icon": "safety-dumbbell.png",
"safety": "Don't drop weights sideways."
}
],
"instructions": [
{
"step": 1,
"instr": "Pick up the dumbbells off the floor using a neutral grip (palms facing in). Position the ends of the dumbbells in your hip crease, and sit down on the edge of an incline bench."
},
{
"step": 2,
"instr": "Lie on your back and make an arch on back, Take a regular grip with wrists a little wider than your shoulders.To get into position, lay back and keep the weights close to your chest."
},
{
"step": 3,
"instr": "Once you are in position, take a deep breath, and press the dumbbells to lockout at the top."
},
{
"step": 4,
"instr": "Contract the chest and push the dumbbells back up to the starting position. Make sure to control the weight rather than letting weights move of gravity. Resist the motion."
},
{
"step": 5,
"instr": "If you have weak wrists, you can also use wristbands. Lift and maintain constant tension throughout and REPEAT."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "bench press",
"shortDesc": "the classic bench press",
"rel_imgUrl": "bench-press.jpg"
},
{
"force_type": "push",
"name": "cable fly",
"shortDesc": "the peck deck fly",
"rel_imgUrl": "cable-fly.webp"
},
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 6,
"difficulty": "beginner",
"category": ["chest"],
"name": "flys",
"desc": "Flys gives you wings that make you fly and make those pecks fill.",
"muscle_group": "chest",
"equipment_req": ["Dumbbell", "cable machine", "Bench"],
"mechanics": "isolation",
"force_type": "push",
"secondary_muscle_group": ["shoulders", "Back", "Lats"],
"ImageUrl": "flys.jpg",
"overview": "The fly utilizes a chest fly movement pattern to isolate the muscles fo the chest to better help the muscles grow and become stronger. <br/> <br/>The fly is often thought of as a classic bodybuilding movement as the goal of the exercise is to isolate the chest for aesthetic purposes. <br/> <br/>One can try both dumbbell or machine variation, although the dumbbell variation is far more better than machine because it sets the tone of the movement. <br/> <br/>The dumbbell flys can make you feel the strech at the end of the motion and that is when your muscle grows.",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
},
{
"icon": "safety-dumbbell.png",
"safety": "Don't Ego lift."
}
],
"instructions": [
{
"step": 1,
"instr": "Pick up the dumbbells off the floor using a neutral grip (palms facing in). Position the ends of the dumbbells in your hip crease, and sit down on the bench."
},
{
"step": 2,
"instr": "To get into position, lay back and keep the weights close to your chest. Once you are in position, take a deep breath, then press the dumbbells to lockout at the top."
},
{
"step": 3,
"instr": "Slightly retract your shoulder blades, unlock your elbows, and slowly lower the dumbbells laterally while maintaining the angle at your elbow."
},
{
"step": 4,
"instr": "Once the dumbbells reach chest level, reverse the movement by squeezing your pecs together and bringing the dumbbells back to their starting position."
},
{
"step": 5,
"instr": "Without allowing the dumbbells to touch, start the next repetition, and continue until the set is completed."
},
{
"step": 6,
"instr": "If performing same on the Flys machine - perform similarly and remember to pause at the contracting position."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "bench press",
"shortDesc": "the classic bench press",
"rel_imgUrl": "bench-press.jpg"
},
{
"force_type": "push",
"name": "cable fly",
"shortDesc": "the peck deck fly",
"rel_imgUrl": "cable-fly.webp"
},
{
"force_type": "push",
"name": "incline dumbbell press",
"shortDesc": "The Ultimate push ",
"rel_imgUrl": "incline-db-press.png"
}
],
"video_resources": []
},
{
"id": 7,
"difficulty": "intermediate",
"category": ["chest", "back"],
"name": "dumbbell pullover",
"desc": "The Dumbbell pullover targets your lats which give your chest and back a wider look.",
"muscle_group": "chest",
"equipment_req": ["Dumbbell", "bench"],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["Lats", "shoulders", "triceps"],
"ImageUrl": "db-pullovers.jpg",
"overview": "The dumbbell pullover exercise targets the chest, back, and triceps, promoting strength and muscle development. <br/><br/>It involves a controlled movement, where a dumbbell is lowered behind the head until the arms are parallel to the floor, then raised back to the starting position. <br/><br/>This exercise is versatile, benefiting both muscle mass and core stability. The pullover is known for expanding the ribcage and improving shoulder flexibility. <br/><br/>Utilizing the dumbbell over machines enhances the engagement of stabilizing muscles and allows for a more extensive range of motion, intensifying the workout's effectiveness. <br/><br/>When performed correctly, this exercise stimulates both the chest and back muscles, aiding in overall upper body strength and development.",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
},
{
"icon": "safety-dumbbell.png",
"safety": "Don't let dumbbell go too forward ."
}
],
"instructions": [
{
"step": 1,
"instr": "Grasp a dumbbell with both hands and position yourself on a flat bench with your shoulder blades resting on the bench."
},
{
"step": 2,
"instr": "You should be at a 90 degree angle to the bench. Your back shoulder be straight, knees bent at 90 degrees, and feet firmly plated on the floor."
},
{
"step": 3,
"instr": "Holding the dumbbell in both hands, straighten your arms so that dumbbell is directly overhead. This is the starting position."
},
{
"step": 4,
"instr": "Bending at the shoulders only and keeping your arms straight, slowly lower the weight down behind your head until the dumbbell reaches the height of the bench."
},
{
"step": 4,
"instr": "Slowly raise the dumbbell back to the starting position and Repeat."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "dips",
"shortDesc": "The ultimate overall bodyweight exercise",
"rel_imgUrl": "dips.jpg"
},
{
"force_type": "push",
"name": "cable fly",
"shortDesc": "the peck deck fly",
"rel_imgUrl": "cable-fly.webp"
},
{
"force_type": "push",
"name": "flys",
"shortDesc": "The peck deck developer",
"rel_imgUrl": "flys.jpg"
}
],
"video_resources": []
},
{
"id": 8,
"difficulty": "intermediate",
"category": ["chest", "triceps"],
"name": "dips",
"desc": "Dips are a bodyweight exercise targeting the chest, shoulders and triceps using parallel bars",
"muscle_group": "chest",
"equipment_req": ["bars"],
"mechanics": "isolation",
"force_type": "push",
"secondary_muscle_group": ["shoulders", "abs"],
"ImageUrl": "dips.jpg",
"overview": "Dips, a foundational bodyweight exercise, engage the chest, shoulders, and triceps. Using parallel bars or a stable surface, individuals lower their bodies by flexing their elbows until their upper arms are parallel to the ground, then push back up to the starting position.<br/><br/>This movement effectively builds upper body strength and muscle endurance. Dips offer versatility, accommodating various hand placements and body positions to emphasize specific muscle groups, making them a versatile and adaptable exercise.<br/><br/>Chest dips effectively hit the lower region of the pec, similarly to the decline bench press. However, it follows a vertical pressing movement pattern, which provides a unique stimulus for the muscles of the chest.<br/> <br/>They challenge and effectively target multiple upper body muscle groups, fostering not just strength but also enhancing stability.<br/>When properly executed, dips serve as an excellent addition to any workout routine, aiding in overall upper body development and toning.",
"safety_check": [
{
"icon": "safety-dip-bar.png",
"safety": "Use a fixed parallel bar."
},
{
"icon": "safety-elbows.png",
"safety": "Don't flare out elbows."
}
],
"instructions": [
{
"step": 1,
"instr": "Step up on the dip station and position your hands with a neutral grip."
},
{
"step": 2,
"instr": "Initiate the dip by unlocking the elbows and slowly lowering the body until the forearms are almost parallel with the floor."
},
{
"step": 3,
"instr": "Control the descent to parallel and then drive back to the starting position by pushing through the palms."
},
{
"step": 4,
"instr": "Ensure you dont flare out elbows too much putting risk on your shoulders and elbows then Repeat."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "bench press",
"shortDesc": "the classic bench press",
"rel_imgUrl": "bench-press.jpg"
},
{
"force_type": "push",
"name": "dumbbell pullover",
"shortDesc": "The lats developer",
"rel_imgUrl": "db-pullovers.jpg"
},
{
"force_type": "push",
"name": "flys",
"shortDesc": "The peck deck developer",
"rel_imgUrl": "flys.jpg"
}
],
"video_resources": []
},
{
"id": 9,
"difficulty": "overhead press",
"category": ["shoulders"],
"name": "overhead press",
"desc": "The overhead press, a fundamental exercise targetting the shoulders and triceps",
"muscle_group": "shoulders",
"equipment_req": ["Dumbbell", "seated bench"],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["chest", "traps", "Back"],
"ImageUrl": "overhead-press.jpg",
"overview": "The seated dumbbell press is a variation of the standing dumbbell press and an exercise used to strengthen the muscles of the shoulders.<br/> <br/> The overhead press is a foundational movement for establishing baseline strength and building a completely balanced physique. Tests your core stability. <br/> <br/> Utilizing dumbbells as opposed to performing with a barbell will allow the individual to strengthen each side of the muscle equally.",
"safety_check": [
{
"icon": "safety-grip.png",
"safety": "Take a neutral grip."
},
{
"icon": "safety-dumbbell.png",
"safety": "Don't Ego lift if beginner."
},
{
"icon": "safety-wrist.png",
"safety": "Wear wrist bands for heavy weights."
}
],
"instructions": [
{
"step": 1,
"instr": "Set up an adjustable angle bench to be a little more than 90 degrees and select the desired weight from the rack."
},
{
"step": 2,
"instr": "Pick up the dumbbells from the floor using a neutral grip (palms facing in). Position the end of the dumbbells on your knees and sit down on the bench."
},
{
"step": 3,
"instr": "Using a safe and controlled motion, kick your knees up one at a time in order to get each dumbbell into place. This step is very underrated and much time neglected. Make sure you kick the dumbbell and reach extended arm position."
},
{
"step": 4,
"instr": "Once the dumbbells are in place, rotate your palms so they are at about 45 degrees with your face."
},
{
"step": 5,
"instr": "Take a deep breath then press the dumbbells overhead by extending the elbows and contracting the deltoids."
},
{
"step": 6,
"instr": "Slowly lower the dumbbells back to the starting position and don't go below the shoulders level. Once you go below shoulders level - main target will shift from shoulders to traps and back. Repeat for reps."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 10,
"difficulty": "beginner",
"category": ["shoulders"],
"name": "lateral raise",
"desc": "The shoulders killer - Ego destroyer of bodybuilders.",
"muscle_group": "shoulders",
"equipment_req": ["Dumbbell"],
"mechanics": "isolation",
"force_type": "push",
"secondary_muscle_group": ["forearms", "traps", "back"],
"ImageUrl": "lateral-raise.webp",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 11,
"difficulty": "advanced",
"category": ["shoulders"],
"name": "military press",
"desc": "The military press is perfect for building shoulder muscle and strength measurement.",
"muscle_group": "shoulders",
"equipment_req": ["Barbell", "weighted plates"],
"mechanics": "compound",
"force_type": "push",
"secondary_muscle_group": ["abs", "triceps", "back"],
"ImageUrl": "military-press.webp",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 12,
"difficulty": "beginner",
"category": ["shoulders", "back"],
"name": "face pull",
"desc": "Face pull targets the rear part of your shoulders and back muscles.",
"muscle_group": "shoulders",
"equipment_req": ["cable machine", "rope attachment"],
"mechanics": "compound",
"force_type": "pull",
"secondary_muscle_group": ["upper back", "traps"],
"ImageUrl": "face-pull.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"
}
],
"video_resources": []
},
{
"id": 13,
"difficulty": "rear delt fly",
"category": ["shoulders", "back"],
"name": "rear delt fly",
"desc": "Rear delt fly targeting the rear deltoids and back of the shoulders.",
"muscle_group": "shoulders",
"equipment_req": ["Dumbbell", "seated bench"],
"mechanics": "isolation",
"force_type": "pull",
"secondary_muscle_group": ["traps", "triceps"],
"ImageUrl": "rear-delt.jpg",
"overview": "",
"safety_check": [
{
"icon": "safety-bench.png",
"safety": "Tighten core & brace."
}
],
"instructions": [
{
"step": 1,
"instr": "Technique and posture first, Weights second - Don't EGO Lift."
}
],
"relevant_exercise": [
{
"force_type": "push",
"name": "pushups",
"shortDesc": "the evergreen pushups",
"rel_imgUrl": "push-up.jpg"