@franzenzenhofer/asanakit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +153 -0
  3. package/dist/anatomy/muscles.d.ts +55 -0
  4. package/dist/anatomy/muscles.d.ts.map +1 -0
  5. package/dist/anatomy/muscles.js +79 -0
  6. package/dist/anatomy/muscles.js.map +1 -0
  7. package/dist/anatomy/validate.d.ts +11 -0
  8. package/dist/anatomy/validate.d.ts.map +1 -0
  9. package/dist/anatomy/validate.js +94 -0
  10. package/dist/anatomy/validate.js.map +1 -0
  11. package/dist/cli/commands/export.d.ts +3 -0
  12. package/dist/cli/commands/export.d.ts.map +1 -0
  13. package/dist/cli/commands/export.js +45 -0
  14. package/dist/cli/commands/export.js.map +1 -0
  15. package/dist/cli/commands/info.d.ts +3 -0
  16. package/dist/cli/commands/info.d.ts.map +1 -0
  17. package/dist/cli/commands/info.js +101 -0
  18. package/dist/cli/commands/info.js.map +1 -0
  19. package/dist/cli/commands/render.d.ts +3 -0
  20. package/dist/cli/commands/render.d.ts.map +1 -0
  21. package/dist/cli/commands/render.js +103 -0
  22. package/dist/cli/commands/render.js.map +1 -0
  23. package/dist/cli/index.d.ts +3 -0
  24. package/dist/cli/index.d.ts.map +1 -0
  25. package/dist/cli/index.js +31 -0
  26. package/dist/cli/index.js.map +1 -0
  27. package/dist/cli/resolve.d.ts +12 -0
  28. package/dist/cli/resolve.d.ts.map +1 -0
  29. package/dist/cli/resolve.js +46 -0
  30. package/dist/cli/resolve.js.map +1 -0
  31. package/dist/core/angles.d.ts +12 -0
  32. package/dist/core/angles.d.ts.map +1 -0
  33. package/dist/core/angles.js +27 -0
  34. package/dist/core/angles.js.map +1 -0
  35. package/dist/core/rig.d.ts +8 -0
  36. package/dist/core/rig.d.ts.map +1 -0
  37. package/dist/core/rig.js +97 -0
  38. package/dist/core/rig.js.map +1 -0
  39. package/dist/core/skeleton.d.ts +17 -0
  40. package/dist/core/skeleton.d.ts.map +1 -0
  41. package/dist/core/skeleton.js +144 -0
  42. package/dist/core/skeleton.js.map +1 -0
  43. package/dist/core/types.d.ts +105 -0
  44. package/dist/core/types.d.ts.map +1 -0
  45. package/dist/core/types.js +47 -0
  46. package/dist/core/types.js.map +1 -0
  47. package/dist/core/vec2.d.ts +19 -0
  48. package/dist/core/vec2.d.ts.map +1 -0
  49. package/dist/core/vec2.js +41 -0
  50. package/dist/core/vec2.js.map +1 -0
  51. package/dist/index.d.ts +11 -0
  52. package/dist/index.d.ts.map +1 -0
  53. package/dist/index.js +11 -0
  54. package/dist/index.js.map +1 -0
  55. package/dist/library/index.d.ts +27 -0
  56. package/dist/library/index.d.ts.map +1 -0
  57. package/dist/library/index.js +75 -0
  58. package/dist/library/index.js.map +1 -0
  59. package/dist/model/index.d.ts +4 -0
  60. package/dist/model/index.d.ts.map +1 -0
  61. package/dist/model/index.js +4 -0
  62. package/dist/model/index.js.map +1 -0
  63. package/dist/model/parse.d.ts +12 -0
  64. package/dist/model/parse.d.ts.map +1 -0
  65. package/dist/model/parse.js +43 -0
  66. package/dist/model/parse.js.map +1 -0
  67. package/dist/model/pose.d.ts +11 -0
  68. package/dist/model/pose.d.ts.map +1 -0
  69. package/dist/model/pose.js +26 -0
  70. package/dist/model/pose.js.map +1 -0
  71. package/dist/model/schema.d.ts +1122 -0
  72. package/dist/model/schema.d.ts.map +1 -0
  73. package/dist/model/schema.js +178 -0
  74. package/dist/model/schema.js.map +1 -0
  75. package/dist/render/anatomy.d.ts +10 -0
  76. package/dist/render/anatomy.d.ts.map +1 -0
  77. package/dist/render/anatomy.js +77 -0
  78. package/dist/render/anatomy.js.map +1 -0
  79. package/dist/render/annotations.d.ts +9 -0
  80. package/dist/render/annotations.d.ts.map +1 -0
  81. package/dist/render/annotations.js +185 -0
  82. package/dist/render/annotations.js.map +1 -0
  83. package/dist/render/context.d.ts +16 -0
  84. package/dist/render/context.d.ts.map +1 -0
  85. package/dist/render/context.js +2 -0
  86. package/dist/render/context.js.map +1 -0
  87. package/dist/render/figure.d.ts +8 -0
  88. package/dist/render/figure.d.ts.map +1 -0
  89. package/dist/render/figure.js +138 -0
  90. package/dist/render/figure.js.map +1 -0
  91. package/dist/render/index.d.ts +7 -0
  92. package/dist/render/index.d.ts.map +1 -0
  93. package/dist/render/index.js +7 -0
  94. package/dist/render/index.js.map +1 -0
  95. package/dist/render/project.d.ts +18 -0
  96. package/dist/render/project.d.ts.map +1 -0
  97. package/dist/render/project.js +35 -0
  98. package/dist/render/project.js.map +1 -0
  99. package/dist/render/props.d.ts +9 -0
  100. package/dist/render/props.d.ts.map +1 -0
  101. package/dist/render/props.js +178 -0
  102. package/dist/render/props.js.map +1 -0
  103. package/dist/render/raster.d.ts +19 -0
  104. package/dist/render/raster.d.ts.map +1 -0
  105. package/dist/render/raster.js +39 -0
  106. package/dist/render/raster.js.map +1 -0
  107. package/dist/render/scene.d.ts +26 -0
  108. package/dist/render/scene.d.ts.map +1 -0
  109. package/dist/render/scene.js +144 -0
  110. package/dist/render/scene.js.map +1 -0
  111. package/dist/render/sheet.d.ts +20 -0
  112. package/dist/render/sheet.d.ts.map +1 -0
  113. package/dist/render/sheet.js +74 -0
  114. package/dist/render/sheet.js.map +1 -0
  115. package/dist/render/styles.d.ts +77 -0
  116. package/dist/render/styles.d.ts.map +1 -0
  117. package/dist/render/styles.js +122 -0
  118. package/dist/render/styles.js.map +1 -0
  119. package/dist/render/svg.d.ts +19 -0
  120. package/dist/render/svg.d.ts.map +1 -0
  121. package/dist/render/svg.js +40 -0
  122. package/dist/render/svg.js.map +1 -0
  123. package/dist/standards/keypoints.d.ts +31 -0
  124. package/dist/standards/keypoints.d.ts.map +1 -0
  125. package/dist/standards/keypoints.js +118 -0
  126. package/dist/standards/keypoints.js.map +1 -0
  127. package/docs/AUTHORING.md +144 -0
  128. package/package.json +94 -0
  129. package/poses/surf/bottom-turn.pose.yaml +47 -0
  130. package/poses/surf/cutback.pose.yaml +47 -0
  131. package/poses/surf/duck-dive.pose.yaml +47 -0
  132. package/poses/surf/noseride.pose.yaml +48 -0
  133. package/poses/surf/paddling.pose.yaml +48 -0
  134. package/poses/surf/pop-up.pose.yaml +47 -0
  135. package/poses/surf/takeoff.pose.yaml +47 -0
  136. package/poses/surf/tube-stance.pose.yaml +47 -0
  137. package/poses/yoga/ashtanga/adho-mukha-svanasana.pose.yaml +42 -0
  138. package/poses/yoga/ashtanga/ardha-uttanasana.pose.yaml +42 -0
  139. package/poses/yoga/ashtanga/baddha-konasana.pose.yaml +42 -0
  140. package/poses/yoga/ashtanga/balasana.pose.yaml +43 -0
  141. package/poses/yoga/ashtanga/chaturanga-dandasana.pose.yaml +41 -0
  142. package/poses/yoga/ashtanga/dandasana.pose.yaml +42 -0
  143. package/poses/yoga/ashtanga/halasana.pose.yaml +43 -0
  144. package/poses/yoga/ashtanga/janu-sirsasana-a.pose.yaml +42 -0
  145. package/poses/yoga/ashtanga/karnapidasana.pose.yaml +43 -0
  146. package/poses/yoga/ashtanga/marichyasana-a.pose.yaml +42 -0
  147. package/poses/yoga/ashtanga/marichyasana-c.pose.yaml +42 -0
  148. package/poses/yoga/ashtanga/matsyasana.pose.yaml +43 -0
  149. package/poses/yoga/ashtanga/navasana.pose.yaml +42 -0
  150. package/poses/yoga/ashtanga/padahastasana.pose.yaml +42 -0
  151. package/poses/yoga/ashtanga/padangusthasana.pose.yaml +42 -0
  152. package/poses/yoga/ashtanga/padmasana.pose.yaml +43 -0
  153. package/poses/yoga/ashtanga/parsvottanasana.pose.yaml +42 -0
  154. package/poses/yoga/ashtanga/paschimottanasana.pose.yaml +42 -0
  155. package/poses/yoga/ashtanga/prasarita-padottanasana-a.pose.yaml +46 -0
  156. package/poses/yoga/ashtanga/prasarita-padottanasana-c.pose.yaml +46 -0
  157. package/poses/yoga/ashtanga/primary.seq.yaml +74 -0
  158. package/poses/yoga/ashtanga/purvottanasana.pose.yaml +42 -0
  159. package/poses/yoga/ashtanga/salamba-sarvangasana.pose.yaml +43 -0
  160. package/poses/yoga/ashtanga/samasthiti.pose.yaml +29 -0
  161. package/poses/yoga/ashtanga/savasana.pose.yaml +43 -0
  162. package/poses/yoga/ashtanga/setu-bandhasana.pose.yaml +42 -0
  163. package/poses/yoga/ashtanga/sirsasana.pose.yaml +43 -0
  164. package/poses/yoga/ashtanga/supta-padangusthasana.pose.yaml +42 -0
  165. package/poses/yoga/ashtanga/upavistha-konasana.pose.yaml +42 -0
  166. package/poses/yoga/ashtanga/urdhva-dhanurasana.pose.yaml +43 -0
  167. package/poses/yoga/ashtanga/urdhva-hastasana.pose.yaml +42 -0
  168. package/poses/yoga/ashtanga/urdhva-mukha-svanasana.pose.yaml +42 -0
  169. package/poses/yoga/ashtanga/utkatasana.pose.yaml +42 -0
  170. package/poses/yoga/ashtanga/uttanasana.pose.yaml +42 -0
  171. package/poses/yoga/ashtanga/utthita-parsvakonasana.pose.yaml +44 -0
  172. package/poses/yoga/ashtanga/utthita-trikonasana.pose.yaml +44 -0
  173. package/poses/yoga/ashtanga/virabhadrasana-a.pose.yaml +42 -0
  174. package/poses/yoga/ashtanga/virabhadrasana-b.pose.yaml +42 -0
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: urdhva-dhanurasana
3
+ name: Upward Bow
4
+ sanskrit: Ūrdhva Dhanurāsana
5
+ english: Upward Bow / Wheel
6
+ discipline: yoga
7
+ family: backbend
8
+ difficulty: 4
9
+ description: A deep backbend. Hands and feet press the floor, the hips and chest lift into a high arc, the head hangs back between the arms.
10
+ tags: [ashtanga, finishing, backbend]
11
+ breath: inhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Press evenly through hands and feet to lift the chest
15
+ - Keep the knees tracking over the feet, do not splay
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 195
22
+ world:
23
+ pelvis: 195
24
+ spine: 210
25
+ neck: 235
26
+ head: 250
27
+ upperArmL: -88
28
+ upperArmR: -88
29
+ forearmL: -88
30
+ forearmR: -88
31
+ handL: 0
32
+ handR: 0
33
+ thighL: -50
34
+ thighR: -50
35
+ shinL: -110
36
+ shinR: -110
37
+ footL: -15
38
+ footR: -15
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [gluteus, erectorSpinae, deltoid, triceps, quadriceps]
43
+ stretched: [pectoralis, rectusAbdominis, hipFlexors]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: urdhva-hastasana
3
+ name: Upward Salute
4
+ sanskrit: Ūrdhva Hastāsana
5
+ english: Upward Salute
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 1
9
+ description: First movement of Surya Namaskara. Arms sweep overhead, palms meet, gaze to the thumbs.
10
+ tags: [ashtanga, surya-namaskara-a, standing, backbend]
11
+ breath: inhale
12
+ drishti: angustha-ma-dyai
13
+ cues:
14
+ - Sweep the arms wide and up on the inhale
15
+ - Lift the chest, keep the ribs knitted
16
+ contact: [toeL, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 93
22
+ world:
23
+ thighL: -90
24
+ thighR: -90
25
+ shinL: -90
26
+ shinR: -90
27
+ footL: -18
28
+ footR: -18
29
+ spine: 97
30
+ neck: 105
31
+ head: 110
32
+ upperArmL: 100
33
+ upperArmR: 100
34
+ forearmL: 98
35
+ forearmR: 98
36
+ handL: 96
37
+ handR: 96
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [deltoid, erectorSpinae, quadriceps]
42
+ stretched: [rectusAbdominis, latissimus]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: urdhva-mukha-svanasana
3
+ name: Upward-Facing Dog
4
+ sanskrit: Ūrdhva Mukha Śvānāsana
5
+ english: Upward-Facing Dog
6
+ discipline: yoga
7
+ family: backbend
8
+ difficulty: 3
9
+ description: Arms straight, chest open, thighs lifted off the floor. Only the hands and the tops of the feet touch down.
10
+ tags: [ashtanga, surya-namaskara-a, backbend, arm-support]
11
+ breath: inhale
12
+ drishti: urdhva
13
+ cues:
14
+ - Press the floor away, lift the thighs
15
+ - Draw the chest through the arms, shoulders back
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 30
22
+ world:
23
+ spine: 55
24
+ neck: 80
25
+ head: 105
26
+ thighL: -168
27
+ thighR: -168
28
+ shinL: -172
29
+ shinR: -172
30
+ footL: -160
31
+ footR: -160
32
+ upperArmL: -80
33
+ upperArmR: -80
34
+ forearmL: -86
35
+ forearmR: -86
36
+ handL: 0
37
+ handR: 0
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [erectorSpinae, triceps, gluteus, deltoid]
42
+ stretched: [rectusAbdominis, pectoralis, hipFlexors]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: utkatasana
3
+ name: Chair Pose
4
+ sanskrit: Utkaṭāsana
5
+ english: Fierce Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 2
9
+ description: Knees bend deeply, the hips sit back as if onto a chair, the torso leans forward and the arms reach overhead in line with the spine.
10
+ tags: [ashtanga, surya-namaskara-b, standing]
11
+ breath: inhale
12
+ drishti: angustha-ma-dyai
13
+ cues:
14
+ - Sit the hips back, keep the knees over the ankles
15
+ - Reach the arms up alongside the ears
16
+ contact: [toeL, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 70
22
+ world:
23
+ thighL: -30
24
+ thighR: -30
25
+ shinL: -100
26
+ shinR: -100
27
+ footL: -18
28
+ footR: -18
29
+ spine: 65
30
+ neck: 70
31
+ head: 72
32
+ upperArmL: 78
33
+ upperArmR: 78
34
+ forearmL: 80
35
+ forearmR: 80
36
+ handL: 82
37
+ handR: 82
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
42
+ stretched: [gastrocnemius, latissimus]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: uttanasana
3
+ name: Standing Forward Fold
4
+ sanskrit: Uttānāsana
5
+ english: Intense Stretch Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 2
9
+ description: Fold from the hips with straight legs, hands to the floor beside the feet, head toward the shins.
10
+ tags: [ashtanga, surya-namaskara-a, standing, forward-fold]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Hinge from the hip joints, not the waist
15
+ - Lengthen the spine before rounding
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -70
22
+ world:
23
+ thighL: -90
24
+ thighR: -90
25
+ shinL: -90
26
+ shinR: -90
27
+ footL: -18
28
+ footR: -18
29
+ spine: -80
30
+ neck: -90
31
+ head: -95
32
+ upperArmL: -95
33
+ upperArmR: -95
34
+ forearmL: -50
35
+ forearmR: -50
36
+ handL: -8
37
+ handR: -8
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, rectusAbdominis]
42
+ stretched: [hamstrings, erectorSpinae, gastrocnemius]
@@ -0,0 +1,44 @@
1
+ asanakit: 1
2
+ id: utthita-parsvakonasana
3
+ name: Extended Side Angle
4
+ sanskrit: Utthita Pārśvakoṇāsana
5
+ english: Extended Side Angle Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 3
9
+ description: Legs wide, the front knee bends to a right angle, the bottom hand plants on the floor outside the front foot and the top arm reaches over the ear in one long line from the back heel to the fingertips. Held five breaths.
10
+ tags: [ashtanga, standing, side-bend, primary-series]
11
+ breath: exhale
12
+ drishti: hastagrai
13
+ cues:
14
+ - Front shin vertical, knee stacked over the ankle
15
+ - Press the back heel down and stretch the top arm over the ear
16
+ contact: [toeL, toeR, handTipL]
17
+ figure:
18
+ view: front
19
+ grounded: true
20
+ root:
21
+ rotation: 30
22
+ world:
23
+ hipL: 0
24
+ hipR: 180
25
+ thighL: 0
26
+ shinL: -90
27
+ footL: -10
28
+ thighR: -150
29
+ shinR: -150
30
+ footR: -170
31
+ spine: 30
32
+ neck: 35
33
+ head: 55
34
+ upperArmL: -55
35
+ forearmL: -55
36
+ handL: -55
37
+ upperArmR: 30
38
+ forearmR: 30
39
+ handR: 30
40
+ props:
41
+ - type: mat
42
+ muscles:
43
+ engaged: [quadriceps, gluteus, obliques, deltoid]
44
+ stretched: [adductors, latissimus, obliques, hipFlexors]
@@ -0,0 +1,44 @@
1
+ asanakit: 1
2
+ id: utthita-trikonasana
3
+ name: Extended Triangle
4
+ sanskrit: Utthita Trikoṇāsana
5
+ english: Extended Triangle Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 2
9
+ description: Legs wide and straight, the torso tilts sideways over the front leg, the bottom hand catches the big toe and the top arm reaches straight up. Held five breaths.
10
+ tags: [ashtanga, standing, side-bend, primary-series]
11
+ breath: exhale
12
+ drishti: hastagrai
13
+ cues:
14
+ - Reach sideways out of the waist before you tilt down
15
+ - Stack both shoulders in one line, chest open to the side
16
+ contact: [toeL, toeR, handTipL]
17
+ figure:
18
+ view: front
19
+ grounded: true
20
+ root:
21
+ rotation: 25
22
+ world:
23
+ hipL: 0
24
+ hipR: 180
25
+ thighL: -45
26
+ shinL: -45
27
+ footL: -20
28
+ thighR: -135
29
+ shinR: -135
30
+ footR: -160
31
+ spine: 25
32
+ neck: 30
33
+ head: 55
34
+ upperArmL: -80
35
+ forearmL: -80
36
+ handL: -80
37
+ upperArmR: 100
38
+ forearmR: 100
39
+ handR: 100
40
+ props:
41
+ - type: mat
42
+ muscles:
43
+ engaged: [quadriceps, obliques, deltoid, erectorSpinae]
44
+ stretched: [hamstrings, adductors, obliques, latissimus]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: virabhadrasana-a
3
+ name: Warrior I
4
+ sanskrit: Vīrabhadrāsana A
5
+ english: Warrior I
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 3
9
+ description: A long lunge. The front knee bends over the ankle, the back leg drives straight to a grounded heel, the chest lifts and the arms reach overhead.
10
+ tags: [ashtanga, standing, lunge, backbend]
11
+ breath: inhale
12
+ drishti: angustha-ma-dyai
13
+ cues:
14
+ - Front knee tracks over the ankle, back leg straight and strong
15
+ - Lift the chest, reach the fingertips up
16
+ contact: [toeL, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 88
22
+ world:
23
+ thighL: -15
24
+ shinL: -95
25
+ footL: -18
26
+ thighR: -142
27
+ shinR: -142
28
+ footR: -15
29
+ spine: 92
30
+ neck: 97
31
+ head: 100
32
+ upperArmL: 99
33
+ upperArmR: 99
34
+ forearmL: 97
35
+ forearmR: 97
36
+ handL: 95
37
+ handR: 95
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
42
+ stretched: [hipFlexors, gastrocnemius, pectoralis]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: virabhadrasana-b
3
+ name: Warrior II
4
+ sanskrit: Vīrabhadrāsana B
5
+ english: Warrior II
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 3
9
+ description: A wide stance. The front knee bends to a right angle stacked over the ankle, the back leg stays straight, and the arms extend level with the floor.
10
+ tags: [ashtanga, standing, lunge, hip-opener]
11
+ breath: exhale
12
+ drishti: hastagrai
13
+ cues:
14
+ - Bend the front knee until the shin is vertical
15
+ - Extend evenly through both fingertips, shoulders down
16
+ contact: [toeL, toeR]
17
+ figure:
18
+ view: front
19
+ grounded: true
20
+ root:
21
+ rotation: 90
22
+ world:
23
+ thighL: -10
24
+ shinL: -90
25
+ footL: -20
26
+ thighR: -144
27
+ shinR: -144
28
+ footR: -165
29
+ spine: 90
30
+ neck: 90
31
+ head: 90
32
+ upperArmL: 0
33
+ forearmL: 0
34
+ handL: 0
35
+ upperArmR: 180
36
+ forearmR: 180
37
+ handR: 180
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, gluteus, adductors, deltoid]
42
+ stretched: [adductors, hipFlexors, pectoralis]