diff --git a/_scripts/094df78979ceaa7fb8fae058e23ad1cb.png b/_scripts/094df78979ceaa7fb8fae058e23ad1cb.png new file mode 100644 index 000000000000..1ae48478a60b Binary files /dev/null and b/_scripts/094df78979ceaa7fb8fae058e23ad1cb.png differ diff --git a/_scripts/a21290277926f146eac5d6f9dbe982e4.png b/_scripts/a21290277926f146eac5d6f9dbe982e4.png new file mode 100644 index 000000000000..dd43ccf4d082 Binary files /dev/null and b/_scripts/a21290277926f146eac5d6f9dbe982e4.png differ diff --git a/_scripts/build-pdf.php b/_scripts/build-pdf.php new file mode 100644 index 000000000000..d8634177f673 --- /dev/null +++ b/_scripts/build-pdf.php @@ -0,0 +1,114 @@ +path = $path; + } + + public function getPath() + { + return $this->path; + } + public function getOrientation() + { + return 'portrait'; + } +} + +class ExerciseAdapter implements ExerciseInterface +{ + protected $document; + + function __construct($document) + { + $this->document = $document; + } + + public function getTitle() + { + return $this->document->getYaml()['title']; + } + public function getCues() + { + return 'My cues'; + } + public function getIntroduction() + { + return $this->document->getYaml()['excerpt']; + } + public function getDescription() + { + return $this->document->Content(); + } + public function getUrl() + { + return 'http://motionsplan.dk' . $this->document->getYaml()['permalink']; + } + + /** + * return array with ImageInterface[] + */ + public function getImages() + { + if (!is_array($this->document->getYaml()['gallery'])) return array(); + $images = array(); + foreach ($this->document->getYaml()['gallery'] as $img) { + $images[] = new ExerciseImage(__DIR__ . "/../" . $img['image_path']); + } + return $images; + } + + public function getBarCode() + { + return null; + } + + function __destruct() + { + $this->document = null; + } +} + + +//Get a list of file paths using the glob function. +$fileList = glob(__DIR__ . "/../_exercises/*"); + +//Loop through the array that glob returned. +foreach ($fileList as $filename){ + $str = file_get_contents($filename); + $name = pathinfo($filename); + + $parser = new Mni\FrontYAML\Parser(); + $document = $parser->parse($str); + + unset($parser); + + $filename = __DIR__ . '/../assets/pdf/exercises/' . $name['filename'] . '.pdf'; + $pdf = new Portrait(); + $pdf->setTemporaryDirectory(__DIR__); + $pdf->setLogo(new ExerciseImage(__DIR__ . '/../assets/images/mp-logo.png'), 'http://www.motionsplan.dk'); + $pdf->setContribLogo(new ExerciseImage(__DIR__ . '/../assets/images/vih_logo.jpg'), 'http://www.vih.dk'); + $adapter = new ExerciseAdapter($document); + $pdf->addNewPage($adapter); + + echo "Written " . $adapter->getTitle() . "\n"; + + // This is not really testing the library - just to see whether functions works. + $pdf->Output($filename, 'F'); + + unset($document); + unset($pdf); + + flush(); +} diff --git a/_scripts/f80805283d68a45ede55ac9f415128cf.png b/_scripts/f80805283d68a45ede55ac9f415128cf.png new file mode 100644 index 000000000000..7186bb2bceb3 Binary files /dev/null and b/_scripts/f80805283d68a45ede55ac9f415128cf.png differ diff --git a/assets/pdf/exercises/180-jump.pdf b/assets/pdf/exercises/180-jump.pdf new file mode 100644 index 000000000000..300d0f2c32e8 Binary files /dev/null and b/assets/pdf/exercises/180-jump.pdf differ diff --git a/assets/pdf/exercises/428.pdf b/assets/pdf/exercises/428.pdf new file mode 100644 index 000000000000..af88605efcb2 Binary files /dev/null and b/assets/pdf/exercises/428.pdf differ diff --git a/assets/pdf/exercises/487.pdf b/assets/pdf/exercises/487.pdf new file mode 100644 index 000000000000..508ed8e0e613 Binary files /dev/null and b/assets/pdf/exercises/487.pdf differ diff --git a/assets/pdf/exercises/488.pdf b/assets/pdf/exercises/488.pdf new file mode 100644 index 000000000000..6cb9ee66dd60 Binary files /dev/null and b/assets/pdf/exercises/488.pdf differ diff --git a/assets/pdf/exercises/490.pdf b/assets/pdf/exercises/490.pdf new file mode 100644 index 000000000000..7e23ff7a553f Binary files /dev/null and b/assets/pdf/exercises/490.pdf differ diff --git a/assets/pdf/exercises/499.pdf b/assets/pdf/exercises/499.pdf new file mode 100644 index 000000000000..0edd62494499 Binary files /dev/null and b/assets/pdf/exercises/499.pdf differ diff --git a/assets/pdf/exercises/achillessene-excentrisk.pdf b/assets/pdf/exercises/achillessene-excentrisk.pdf new file mode 100644 index 000000000000..2c14b9f79a3e Binary files /dev/null and b/assets/pdf/exercises/achillessene-excentrisk.pdf differ diff --git a/assets/pdf/exercises/albuestraek.pdf b/assets/pdf/exercises/albuestraek.pdf new file mode 100644 index 000000000000..e53b222540aa Binary files /dev/null and b/assets/pdf/exercises/albuestraek.pdf differ diff --git a/assets/pdf/exercises/alternating-swiss-ball-step-offs.pdf b/assets/pdf/exercises/alternating-swiss-ball-step-offs.pdf new file mode 100644 index 000000000000..ca982029c468 Binary files /dev/null and b/assets/pdf/exercises/alternating-swiss-ball-step-offs.pdf differ diff --git a/assets/pdf/exercises/anterior-loaded-reverse-lunge.pdf b/assets/pdf/exercises/anterior-loaded-reverse-lunge.pdf new file mode 100644 index 000000000000..f81af28a42e1 Binary files /dev/null and b/assets/pdf/exercises/anterior-loaded-reverse-lunge.pdf differ diff --git a/assets/pdf/exercises/anti-rotation-cable-wide-stance.pdf b/assets/pdf/exercises/anti-rotation-cable-wide-stance.pdf new file mode 100644 index 000000000000..b9dcd57b28d7 Binary files /dev/null and b/assets/pdf/exercises/anti-rotation-cable-wide-stance.pdf differ diff --git a/assets/pdf/exercises/armgang.pdf b/assets/pdf/exercises/armgang.pdf new file mode 100644 index 000000000000..ccda45431844 Binary files /dev/null and b/assets/pdf/exercises/armgang.pdf differ diff --git a/assets/pdf/exercises/armstand-kast-bold-returner-med-skiftende-haender.pdf b/assets/pdf/exercises/armstand-kast-bold-returner-med-skiftende-haender.pdf new file mode 100644 index 000000000000..54a89e80a068 Binary files /dev/null and b/assets/pdf/exercises/armstand-kast-bold-returner-med-skiftende-haender.pdf differ diff --git a/assets/pdf/exercises/armstand-tril-bold-returner-med-haenderne-skiftevis.pdf b/assets/pdf/exercises/armstand-tril-bold-returner-med-haenderne-skiftevis.pdf new file mode 100644 index 000000000000..ee9349719463 Binary files /dev/null and b/assets/pdf/exercises/armstand-tril-bold-returner-med-haenderne-skiftevis.pdf differ diff --git a/assets/pdf/exercises/armstraekker.pdf b/assets/pdf/exercises/armstraekker.pdf new file mode 100644 index 000000000000..e988275b58e3 Binary files /dev/null and b/assets/pdf/exercises/armstraekker.pdf differ diff --git a/assets/pdf/exercises/armstraekning-easy-spiderman.pdf b/assets/pdf/exercises/armstraekning-easy-spiderman.pdf new file mode 100644 index 000000000000..f4fab6f3b7e4 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-easy-spiderman.pdf differ diff --git a/assets/pdf/exercises/armstraekning-en-arm.pdf b/assets/pdf/exercises/armstraekning-en-arm.pdf new file mode 100644 index 000000000000..94fc478e5f6c Binary files /dev/null and b/assets/pdf/exercises/armstraekning-en-arm.pdf differ diff --git a/assets/pdf/exercises/armstraekning-haenderne-haevet.pdf b/assets/pdf/exercises/armstraekning-haenderne-haevet.pdf new file mode 100644 index 000000000000..1a67adff2d2d Binary files /dev/null and b/assets/pdf/exercises/armstraekning-haenderne-haevet.pdf differ diff --git a/assets/pdf/exercises/armstraekning-knaestoette.pdf b/assets/pdf/exercises/armstraekning-knaestoette.pdf new file mode 100644 index 000000000000..3d2cc78a2062 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-knaestoette.pdf differ diff --git a/assets/pdf/exercises/armstraekning-makker-holder-og-slipper-ben.pdf b/assets/pdf/exercises/armstraekning-makker-holder-og-slipper-ben.pdf new file mode 100644 index 000000000000..a4fdf99a5735 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-makker-holder-og-slipper-ben.pdf differ diff --git a/assets/pdf/exercises/armstraekning-med-benene-haevet.pdf b/assets/pdf/exercises/armstraekning-med-benene-haevet.pdf new file mode 100644 index 000000000000..be1deb15c471 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-med-benene-haevet.pdf differ diff --git a/assets/pdf/exercises/armstraekning-med-rows.pdf b/assets/pdf/exercises/armstraekning-med-rows.pdf new file mode 100644 index 000000000000..7de1b4400052 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-med-rows.pdf differ diff --git a/assets/pdf/exercises/armstraekning-spiderman.pdf b/assets/pdf/exercises/armstraekning-spiderman.pdf new file mode 100644 index 000000000000..75f6ec57ffa5 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-spiderman.pdf differ diff --git a/assets/pdf/exercises/armstraekning-superman.pdf b/assets/pdf/exercises/armstraekning-superman.pdf new file mode 100644 index 000000000000..5473a7f565c0 Binary files /dev/null and b/assets/pdf/exercises/armstraekning-superman.pdf differ diff --git a/assets/pdf/exercises/armstraekning-t.pdf b/assets/pdf/exercises/armstraekning-t.pdf new file mode 100644 index 000000000000..941504cf6cec Binary files /dev/null and b/assets/pdf/exercises/armstraekning-t.pdf differ diff --git "a/assets/pdf/exercises/armstr\303\246kning-hindu.pdf" "b/assets/pdf/exercises/armstr\303\246kning-hindu.pdf" new file mode 100644 index 000000000000..86c4ea22f182 Binary files /dev/null and "b/assets/pdf/exercises/armstr\303\246kning-hindu.pdf" differ diff --git "a/assets/pdf/exercises/armstr\303\246kning-med-bold.pdf" "b/assets/pdf/exercises/armstr\303\246kning-med-bold.pdf" new file mode 100644 index 000000000000..ccba9248b098 Binary files /dev/null and "b/assets/pdf/exercises/armstr\303\246kning-med-bold.pdf" differ diff --git "a/assets/pdf/exercises/armstr\303\246kning-trx.pdf" "b/assets/pdf/exercises/armstr\303\246kning-trx.pdf" new file mode 100644 index 000000000000..39e1f553514c Binary files /dev/null and "b/assets/pdf/exercises/armstr\303\246kning-trx.pdf" differ diff --git a/assets/pdf/exercises/arnold-press.pdf b/assets/pdf/exercises/arnold-press.pdf new file mode 100644 index 000000000000..f45c8bf3b9e2 Binary files /dev/null and b/assets/pdf/exercises/arnold-press.pdf differ diff --git a/assets/pdf/exercises/atomic-situp.pdf b/assets/pdf/exercises/atomic-situp.pdf new file mode 100644 index 000000000000..f172e4d1e124 Binary files /dev/null and b/assets/pdf/exercises/atomic-situp.pdf differ diff --git a/assets/pdf/exercises/back-squat.pdf b/assets/pdf/exercises/back-squat.pdf new file mode 100644 index 000000000000..a59dd013ee49 Binary files /dev/null and b/assets/pdf/exercises/back-squat.pdf differ diff --git a/assets/pdf/exercises/baenkpres-decline.pdf b/assets/pdf/exercises/baenkpres-decline.pdf new file mode 100644 index 000000000000..08060f67351b Binary files /dev/null and b/assets/pdf/exercises/baenkpres-decline.pdf differ diff --git a/assets/pdf/exercises/baenkpres-skraa.pdf b/assets/pdf/exercises/baenkpres-skraa.pdf new file mode 100644 index 000000000000..37d14653bc1b Binary files /dev/null and b/assets/pdf/exercises/baenkpres-skraa.pdf differ diff --git a/assets/pdf/exercises/baenkpres.pdf b/assets/pdf/exercises/baenkpres.pdf new file mode 100644 index 000000000000..a9b2ae05cf11 Binary files /dev/null and b/assets/pdf/exercises/baenkpres.pdf differ diff --git a/assets/pdf/exercises/baglaar-glid-ud-ben.pdf b/assets/pdf/exercises/baglaar-glid-ud-ben.pdf new file mode 100644 index 000000000000..dc24f6f3b66d Binary files /dev/null and b/assets/pdf/exercises/baglaar-glid-ud-ben.pdf differ diff --git a/assets/pdf/exercises/baglaar-glidud-et-ben.pdf b/assets/pdf/exercises/baglaar-glidud-et-ben.pdf new file mode 100644 index 000000000000..121cfb379186 Binary files /dev/null and b/assets/pdf/exercises/baglaar-glidud-et-ben.pdf differ diff --git a/assets/pdf/exercises/baglaar-paa-swissbold.pdf b/assets/pdf/exercises/baglaar-paa-swissbold.pdf new file mode 100644 index 000000000000..134daae9dea4 Binary files /dev/null and b/assets/pdf/exercises/baglaar-paa-swissbold.pdf differ diff --git a/assets/pdf/exercises/balance-paa-bold-staaende.pdf b/assets/pdf/exercises/balance-paa-bold-staaende.pdf new file mode 100644 index 000000000000..d28f9f00a1c3 Binary files /dev/null and b/assets/pdf/exercises/balance-paa-bold-staaende.pdf differ diff --git a/assets/pdf/exercises/balance-paa-bold.pdf b/assets/pdf/exercises/balance-paa-bold.pdf new file mode 100644 index 000000000000..938ec9f448be Binary files /dev/null and b/assets/pdf/exercises/balance-paa-bold.pdf differ diff --git a/assets/pdf/exercises/balance-paa-et-ben.pdf b/assets/pdf/exercises/balance-paa-et-ben.pdf new file mode 100644 index 000000000000..2c8e3beb7ee4 Binary files /dev/null and b/assets/pdf/exercises/balance-paa-et-ben.pdf differ diff --git a/assets/pdf/exercises/balancebom.pdf b/assets/pdf/exercises/balancebom.pdf new file mode 100644 index 000000000000..70a9465b40d5 Binary files /dev/null and b/assets/pdf/exercises/balancebom.pdf differ diff --git a/assets/pdf/exercises/balancehop.pdf b/assets/pdf/exercises/balancehop.pdf new file mode 100644 index 000000000000..094530ac5e07 Binary files /dev/null and b/assets/pdf/exercises/balancehop.pdf differ diff --git a/assets/pdf/exercises/balancekrabbe.pdf b/assets/pdf/exercises/balancekrabbe.pdf new file mode 100644 index 000000000000..30def8bd87d8 Binary files /dev/null and b/assets/pdf/exercises/balancekrabbe.pdf differ diff --git a/assets/pdf/exercises/band-upright-row-rotation.pdf b/assets/pdf/exercises/band-upright-row-rotation.pdf new file mode 100644 index 000000000000..86e251111106 Binary files /dev/null and b/assets/pdf/exercises/band-upright-row-rotation.pdf differ diff --git a/assets/pdf/exercises/bear-squat.pdf b/assets/pdf/exercises/bear-squat.pdf new file mode 100644 index 000000000000..d4282d9e9b82 Binary files /dev/null and b/assets/pdf/exercises/bear-squat.pdf differ diff --git a/assets/pdf/exercises/benpres.pdf b/assets/pdf/exercises/benpres.pdf new file mode 100644 index 000000000000..7ff7f73ef1a1 Binary files /dev/null and b/assets/pdf/exercises/benpres.pdf differ diff --git a/assets/pdf/exercises/bent-arm-waiter-walk.pdf b/assets/pdf/exercises/bent-arm-waiter-walk.pdf new file mode 100644 index 000000000000..2035b902c3fc Binary files /dev/null and b/assets/pdf/exercises/bent-arm-waiter-walk.pdf differ diff --git a/assets/pdf/exercises/biceps-curl.pdf b/assets/pdf/exercises/biceps-curl.pdf new file mode 100644 index 000000000000..ec68f4bb6e20 Binary files /dev/null and b/assets/pdf/exercises/biceps-curl.pdf differ diff --git a/assets/pdf/exercises/biceps-kabeltraek.pdf b/assets/pdf/exercises/biceps-kabeltraek.pdf new file mode 100644 index 000000000000..d9ac6dfee93d Binary files /dev/null and b/assets/pdf/exercises/biceps-kabeltraek.pdf differ diff --git "a/assets/pdf/exercises/bild\303\246k-armstr\303\246kning-med-spring.pdf" "b/assets/pdf/exercises/bild\303\246k-armstr\303\246kning-med-spring.pdf" new file mode 100644 index 000000000000..a93fa7c3e2cc Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-armstr\303\246kning-med-spring.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-armstr\303\246kning-og-vend.pdf" "b/assets/pdf/exercises/bild\303\246k-armstr\303\246kning-og-vend.pdf" new file mode 100644 index 000000000000..fe3b324e3d33 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-armstr\303\246kning-og-vend.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-back-throw.pdf" "b/assets/pdf/exercises/bild\303\246k-back-throw.pdf" new file mode 100644 index 000000000000..fb4def3acd27 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-back-throw.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-lunges-ii.pdf" "b/assets/pdf/exercises/bild\303\246k-lunges-ii.pdf" new file mode 100644 index 000000000000..8eca6cf58983 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-lunges-ii.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-lunges.pdf" "b/assets/pdf/exercises/bild\303\246k-lunges.pdf" new file mode 100644 index 000000000000..9351b9f5f30f Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-lunges.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-maverulning-til-armstr\303\246kning.pdf" "b/assets/pdf/exercises/bild\303\246k-maverulning-til-armstr\303\246kning.pdf" new file mode 100644 index 000000000000..09c48abc58be Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-maverulning-til-armstr\303\246kning.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-mave\303\270velse-ii.pdf" "b/assets/pdf/exercises/bild\303\246k-mave\303\270velse-ii.pdf" new file mode 100644 index 000000000000..388d2e0cce4b Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-mave\303\270velse-ii.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-mave\303\270velse.pdf" "b/assets/pdf/exercises/bild\303\246k-mave\303\270velse.pdf" new file mode 100644 index 000000000000..0f26c3e515e2 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-mave\303\270velse.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-prowler.pdf" "b/assets/pdf/exercises/bild\303\246k-prowler.pdf" new file mode 100644 index 000000000000..9df88bd8ddd2 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-prowler.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-roning-med-arme.pdf" "b/assets/pdf/exercises/bild\303\246k-roning-med-arme.pdf" new file mode 100644 index 000000000000..b5f9572cd093 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-roning-med-arme.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-russian-twist.pdf" "b/assets/pdf/exercises/bild\303\246k-russian-twist.pdf" new file mode 100644 index 000000000000..af50e935a54e Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-russian-twist.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-side-slams.pdf" "b/assets/pdf/exercises/bild\303\246k-side-slams.pdf" new file mode 100644 index 000000000000..93364f62c467 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-side-slams.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-skub-med-arme.pdf" "b/assets/pdf/exercises/bild\303\246k-skub-med-arme.pdf" new file mode 100644 index 000000000000..4df09a81ef58 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-skub-med-arme.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-slams.pdf" "b/assets/pdf/exercises/bild\303\246k-slams.pdf" new file mode 100644 index 000000000000..4bb80e1fee73 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-slams.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-sl\303\245-et-tr\303\246.pdf" "b/assets/pdf/exercises/bild\303\246k-sl\303\245-et-tr\303\246.pdf" new file mode 100644 index 000000000000..116004296089 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-sl\303\245-et-tr\303\246.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-swing-overhead.pdf" "b/assets/pdf/exercises/bild\303\246k-swing-overhead.pdf" new file mode 100644 index 000000000000..ea7b4fa111ca Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-swing-overhead.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-swing-slam.pdf" "b/assets/pdf/exercises/bild\303\246k-swing-slam.pdf" new file mode 100644 index 000000000000..46053026f2f4 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-swing-slam.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-tippe-d\303\246k-armstr\303\246kning.pdf" "b/assets/pdf/exercises/bild\303\246k-tippe-d\303\246k-armstr\303\246kning.pdf" new file mode 100644 index 000000000000..2bfabe17435a Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-tippe-d\303\246k-armstr\303\246kning.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-tr\303\246-og-slam.pdf" "b/assets/pdf/exercises/bild\303\246k-tr\303\246-og-slam.pdf" new file mode 100644 index 000000000000..e240ce7b6b3d Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-tr\303\246-og-slam.pdf" differ diff --git "a/assets/pdf/exercises/bild\303\246k-tr\303\246kke-med-ben.pdf" "b/assets/pdf/exercises/bild\303\246k-tr\303\246kke-med-ben.pdf" new file mode 100644 index 000000000000..1510a040d137 Binary files /dev/null and "b/assets/pdf/exercises/bild\303\246k-tr\303\246kke-med-ben.pdf" differ diff --git a/assets/pdf/exercises/birddog.pdf b/assets/pdf/exercises/birddog.pdf new file mode 100644 index 000000000000..751d6fc3a4a4 Binary files /dev/null and b/assets/pdf/exercises/birddog.pdf differ diff --git a/assets/pdf/exercises/bjoernekravl.pdf b/assets/pdf/exercises/bjoernekravl.pdf new file mode 100644 index 000000000000..3233c234fd19 Binary files /dev/null and b/assets/pdf/exercises/bjoernekravl.pdf differ diff --git a/assets/pdf/exercises/bokning-slaa-i-maven.pdf b/assets/pdf/exercises/bokning-slaa-i-maven.pdf new file mode 100644 index 000000000000..899cfe7591c8 Binary files /dev/null and b/assets/pdf/exercises/bokning-slaa-i-maven.pdf differ diff --git a/assets/pdf/exercises/bottom-kb-carry.pdf b/assets/pdf/exercises/bottom-kb-carry.pdf new file mode 100644 index 000000000000..8d391a058cf1 Binary files /dev/null and b/assets/pdf/exercises/bottom-kb-carry.pdf differ diff --git a/assets/pdf/exercises/box-jump.pdf b/assets/pdf/exercises/box-jump.pdf new file mode 100644 index 000000000000..db54ee812781 Binary files /dev/null and b/assets/pdf/exercises/box-jump.pdf differ diff --git a/assets/pdf/exercises/brettzel-20.pdf b/assets/pdf/exercises/brettzel-20.pdf new file mode 100644 index 000000000000..b9640a63b66a Binary files /dev/null and b/assets/pdf/exercises/brettzel-20.pdf differ diff --git a/assets/pdf/exercises/brettzel-30.pdf b/assets/pdf/exercises/brettzel-30.pdf new file mode 100644 index 000000000000..54ebd5969c12 Binary files /dev/null and b/assets/pdf/exercises/brettzel-30.pdf differ diff --git a/assets/pdf/exercises/brettzel.pdf b/assets/pdf/exercises/brettzel.pdf new file mode 100644 index 000000000000..890b08ff63f1 Binary files /dev/null and b/assets/pdf/exercises/brettzel.pdf differ diff --git a/assets/pdf/exercises/bulgarian-split-squat.pdf b/assets/pdf/exercises/bulgarian-split-squat.pdf new file mode 100644 index 000000000000..b4b0f8a8ded5 Binary files /dev/null and b/assets/pdf/exercises/bulgarian-split-squat.pdf differ diff --git a/assets/pdf/exercises/bulgarian-training-bag.pdf b/assets/pdf/exercises/bulgarian-training-bag.pdf new file mode 100644 index 000000000000..176841572838 Binary files /dev/null and b/assets/pdf/exercises/bulgarian-training-bag.pdf differ diff --git a/assets/pdf/exercises/burpees.pdf b/assets/pdf/exercises/burpees.pdf new file mode 100644 index 000000000000..4619ef232f09 Binary files /dev/null and b/assets/pdf/exercises/burpees.pdf differ diff --git a/assets/pdf/exercises/cable-cross.pdf b/assets/pdf/exercises/cable-cross.pdf new file mode 100644 index 000000000000..05c45f87348e Binary files /dev/null and b/assets/pdf/exercises/cable-cross.pdf differ diff --git a/assets/pdf/exercises/cable-pushdown.pdf b/assets/pdf/exercises/cable-pushdown.pdf new file mode 100644 index 000000000000..26d584ebcbbd Binary files /dev/null and b/assets/pdf/exercises/cable-pushdown.pdf differ diff --git a/assets/pdf/exercises/chest-push-medicinbold.pdf b/assets/pdf/exercises/chest-push-medicinbold.pdf new file mode 100644 index 000000000000..4aa17c2fd805 Binary files /dev/null and b/assets/pdf/exercises/chest-push-medicinbold.pdf differ diff --git a/assets/pdf/exercises/chinup.pdf b/assets/pdf/exercises/chinup.pdf new file mode 100644 index 000000000000..5ef2720c011a Binary files /dev/null and b/assets/pdf/exercises/chinup.pdf differ diff --git a/assets/pdf/exercises/clubbell-rundt-om-hovedet-til-balance.pdf b/assets/pdf/exercises/clubbell-rundt-om-hovedet-til-balance.pdf new file mode 100644 index 000000000000..a5e4db4caf02 Binary files /dev/null and b/assets/pdf/exercises/clubbell-rundt-om-hovedet-til-balance.pdf differ diff --git a/assets/pdf/exercises/contalateral-knee-touch.pdf b/assets/pdf/exercises/contalateral-knee-touch.pdf new file mode 100644 index 000000000000..54d3963dd258 Binary files /dev/null and b/assets/pdf/exercises/contalateral-knee-touch.pdf differ diff --git a/assets/pdf/exercises/contalateral-toe-touch.pdf b/assets/pdf/exercises/contalateral-toe-touch.pdf new file mode 100644 index 000000000000..b0928844b1c1 Binary files /dev/null and b/assets/pdf/exercises/contalateral-toe-touch.pdf differ diff --git a/assets/pdf/exercises/corestabilitet-med-stor-bold.pdf b/assets/pdf/exercises/corestabilitet-med-stor-bold.pdf new file mode 100644 index 000000000000..bd08d3035a52 Binary files /dev/null and b/assets/pdf/exercises/corestabilitet-med-stor-bold.pdf differ diff --git a/assets/pdf/exercises/crosstrainer.pdf b/assets/pdf/exercises/crosstrainer.pdf new file mode 100644 index 000000000000..484287cd080a Binary files /dev/null and b/assets/pdf/exercises/crosstrainer.pdf differ diff --git a/assets/pdf/exercises/cuban-press-0.pdf b/assets/pdf/exercises/cuban-press-0.pdf new file mode 100644 index 000000000000..b61a86e7228c Binary files /dev/null and b/assets/pdf/exercises/cuban-press-0.pdf differ diff --git a/assets/pdf/exercises/curl.pdf b/assets/pdf/exercises/curl.pdf new file mode 100644 index 000000000000..557fe71e296f Binary files /dev/null and b/assets/pdf/exercises/curl.pdf differ diff --git a/assets/pdf/exercises/cykel-kondicykel.pdf b/assets/pdf/exercises/cykel-kondicykel.pdf new file mode 100644 index 000000000000..1ae8d50df8c9 Binary files /dev/null and b/assets/pdf/exercises/cykel-kondicykel.pdf differ diff --git a/assets/pdf/exercises/cykel-spinning.pdf b/assets/pdf/exercises/cykel-spinning.pdf new file mode 100644 index 000000000000..b7a22e582c09 Binary files /dev/null and b/assets/pdf/exercises/cykel-spinning.pdf differ diff --git a/assets/pdf/exercises/cykelmaveoevelse.pdf b/assets/pdf/exercises/cykelmaveoevelse.pdf new file mode 100644 index 000000000000..0d2715ff7bf8 Binary files /dev/null and b/assets/pdf/exercises/cykelmaveoevelse.pdf differ diff --git a/assets/pdf/exercises/dead-bug.pdf b/assets/pdf/exercises/dead-bug.pdf new file mode 100644 index 000000000000..2403946b626c Binary files /dev/null and b/assets/pdf/exercises/dead-bug.pdf differ diff --git a/assets/pdf/exercises/deadlift-one-leg.pdf b/assets/pdf/exercises/deadlift-one-leg.pdf new file mode 100644 index 000000000000..9efb2224207b Binary files /dev/null and b/assets/pdf/exercises/deadlift-one-leg.pdf differ diff --git a/assets/pdf/exercises/diagonal-mave.pdf b/assets/pdf/exercises/diagonal-mave.pdf new file mode 100644 index 000000000000..61362baa9996 Binary files /dev/null and b/assets/pdf/exercises/diagonal-mave.pdf differ diff --git a/assets/pdf/exercises/dip-paa-stepbaenk.pdf b/assets/pdf/exercises/dip-paa-stepbaenk.pdf new file mode 100644 index 000000000000..cb7f063d2191 Binary files /dev/null and b/assets/pdf/exercises/dip-paa-stepbaenk.pdf differ diff --git a/assets/pdf/exercises/dips-med-coretraening.pdf b/assets/pdf/exercises/dips-med-coretraening.pdf new file mode 100644 index 000000000000..e40863d5f1ef Binary files /dev/null and b/assets/pdf/exercises/dips-med-coretraening.pdf differ diff --git a/assets/pdf/exercises/dips-med-makker.pdf b/assets/pdf/exercises/dips-med-makker.pdf new file mode 100644 index 000000000000..675b22b96720 Binary files /dev/null and b/assets/pdf/exercises/dips-med-makker.pdf differ diff --git a/assets/pdf/exercises/dips.pdf b/assets/pdf/exercises/dips.pdf new file mode 100644 index 000000000000..ede0422e8a51 Binary files /dev/null and b/assets/pdf/exercises/dips.pdf differ diff --git a/assets/pdf/exercises/doedloeft-stivbenet.pdf b/assets/pdf/exercises/doedloeft-stivbenet.pdf new file mode 100644 index 000000000000..3665eaa9209f Binary files /dev/null and b/assets/pdf/exercises/doedloeft-stivbenet.pdf differ diff --git a/assets/pdf/exercises/doedloeft-sumo-med-makker.pdf b/assets/pdf/exercises/doedloeft-sumo-med-makker.pdf new file mode 100644 index 000000000000..ac673610f118 Binary files /dev/null and b/assets/pdf/exercises/doedloeft-sumo-med-makker.pdf differ diff --git a/assets/pdf/exercises/doedloeft.pdf b/assets/pdf/exercises/doedloeft.pdf new file mode 100644 index 000000000000..c44368403f2d Binary files /dev/null and b/assets/pdf/exercises/doedloeft.pdf differ diff --git a/assets/pdf/exercises/dragon-flags.pdf b/assets/pdf/exercises/dragon-flags.pdf new file mode 100644 index 000000000000..abc4f41f46e9 Binary files /dev/null and b/assets/pdf/exercises/dragon-flags.pdf differ diff --git a/assets/pdf/exercises/drop-and-touch.pdf b/assets/pdf/exercises/drop-and-touch.pdf new file mode 100644 index 000000000000..ec371bdc205b Binary files /dev/null and b/assets/pdf/exercises/drop-and-touch.pdf differ diff --git a/assets/pdf/exercises/drop-lunges.pdf b/assets/pdf/exercises/drop-lunges.pdf new file mode 100644 index 000000000000..5e3e409026e7 Binary files /dev/null and b/assets/pdf/exercises/drop-lunges.pdf differ diff --git a/assets/pdf/exercises/egypteren.pdf b/assets/pdf/exercises/egypteren.pdf new file mode 100644 index 000000000000..b5a4cf33796f Binary files /dev/null and b/assets/pdf/exercises/egypteren.pdf differ diff --git a/assets/pdf/exercises/eye-spirals.pdf b/assets/pdf/exercises/eye-spirals.pdf new file mode 100644 index 000000000000..e9019f343dac Binary files /dev/null and b/assets/pdf/exercises/eye-spirals.pdf differ diff --git a/assets/pdf/exercises/farmerwalk.pdf b/assets/pdf/exercises/farmerwalk.pdf new file mode 100644 index 000000000000..ec3ea1b68324 Binary files /dev/null and b/assets/pdf/exercises/farmerwalk.pdf differ diff --git a/assets/pdf/exercises/fire-hydrant-straight-legged.pdf b/assets/pdf/exercises/fire-hydrant-straight-legged.pdf new file mode 100644 index 000000000000..465a012144f6 Binary files /dev/null and b/assets/pdf/exercises/fire-hydrant-straight-legged.pdf differ diff --git a/assets/pdf/exercises/fire-hydrant.pdf b/assets/pdf/exercises/fire-hydrant.pdf new file mode 100644 index 000000000000..4fa58d97f374 Binary files /dev/null and b/assets/pdf/exercises/fire-hydrant.pdf differ diff --git a/assets/pdf/exercises/floor-press.pdf b/assets/pdf/exercises/floor-press.pdf new file mode 100644 index 000000000000..b27439eabe98 Binary files /dev/null and b/assets/pdf/exercises/floor-press.pdf differ diff --git a/assets/pdf/exercises/floor-wipers.pdf b/assets/pdf/exercises/floor-wipers.pdf new file mode 100644 index 000000000000..e000d37ff66b Binary files /dev/null and b/assets/pdf/exercises/floor-wipers.pdf differ diff --git a/assets/pdf/exercises/foamrolling-baglaar.pdf b/assets/pdf/exercises/foamrolling-baglaar.pdf new file mode 100644 index 000000000000..6077a9d96a2a Binary files /dev/null and b/assets/pdf/exercises/foamrolling-baglaar.pdf differ diff --git a/assets/pdf/exercises/foamrolling-balle.pdf b/assets/pdf/exercises/foamrolling-balle.pdf new file mode 100644 index 000000000000..057f6aef2ebf Binary files /dev/null and b/assets/pdf/exercises/foamrolling-balle.pdf differ diff --git a/assets/pdf/exercises/foamrolling-forlaar.pdf b/assets/pdf/exercises/foamrolling-forlaar.pdf new file mode 100644 index 000000000000..1ea72233c900 Binary files /dev/null and b/assets/pdf/exercises/foamrolling-forlaar.pdf differ diff --git a/assets/pdf/exercises/foamrolling-inderlaar.pdf b/assets/pdf/exercises/foamrolling-inderlaar.pdf new file mode 100644 index 000000000000..ba293d2692ca Binary files /dev/null and b/assets/pdf/exercises/foamrolling-inderlaar.pdf differ diff --git a/assets/pdf/exercises/foamrolling-it-band.pdf b/assets/pdf/exercises/foamrolling-it-band.pdf new file mode 100644 index 000000000000..2f4de13ef32a Binary files /dev/null and b/assets/pdf/exercises/foamrolling-it-band.pdf differ diff --git a/assets/pdf/exercises/foamrolling-laeg.pdf b/assets/pdf/exercises/foamrolling-laeg.pdf new file mode 100644 index 000000000000..179fe7b72ca9 Binary files /dev/null and b/assets/pdf/exercises/foamrolling-laeg.pdf differ diff --git a/assets/pdf/exercises/foamrolling-nedre-ryg.pdf b/assets/pdf/exercises/foamrolling-nedre-ryg.pdf new file mode 100644 index 000000000000..ce1b1c95eb7e Binary files /dev/null and b/assets/pdf/exercises/foamrolling-nedre-ryg.pdf differ diff --git a/assets/pdf/exercises/foamrolling-oevre-ryg.pdf b/assets/pdf/exercises/foamrolling-oevre-ryg.pdf new file mode 100644 index 000000000000..f37083be5eaa Binary files /dev/null and b/assets/pdf/exercises/foamrolling-oevre-ryg.pdf differ diff --git a/assets/pdf/exercises/foamrolling-skinneben.pdf b/assets/pdf/exercises/foamrolling-skinneben.pdf new file mode 100644 index 000000000000..d8a84a18025f Binary files /dev/null and b/assets/pdf/exercises/foamrolling-skinneben.pdf differ diff --git a/assets/pdf/exercises/foamrolling-tensor-fascie-latae.pdf b/assets/pdf/exercises/foamrolling-tensor-fascie-latae.pdf new file mode 100644 index 000000000000..622adb178004 Binary files /dev/null and b/assets/pdf/exercises/foamrolling-tensor-fascie-latae.pdf differ diff --git a/assets/pdf/exercises/fodledsrotationsoevelse.pdf b/assets/pdf/exercises/fodledsrotationsoevelse.pdf new file mode 100644 index 000000000000..089512f900a4 Binary files /dev/null and b/assets/pdf/exercises/fodledsrotationsoevelse.pdf differ diff --git a/assets/pdf/exercises/forhindringsbanen.pdf b/assets/pdf/exercises/forhindringsbanen.pdf new file mode 100644 index 000000000000..2aefec2fe4b5 Binary files /dev/null and b/assets/pdf/exercises/forhindringsbanen.pdf differ diff --git a/assets/pdf/exercises/frivend-fra-hang-position.pdf b/assets/pdf/exercises/frivend-fra-hang-position.pdf new file mode 100644 index 000000000000..ed1a0f667540 Binary files /dev/null and b/assets/pdf/exercises/frivend-fra-hang-position.pdf differ diff --git a/assets/pdf/exercises/frivend-og-stoed.pdf b/assets/pdf/exercises/frivend-og-stoed.pdf new file mode 100644 index 000000000000..eee170b73823 Binary files /dev/null and b/assets/pdf/exercises/frivend-og-stoed.pdf differ diff --git a/assets/pdf/exercises/frivend-power-fra-blokke.pdf b/assets/pdf/exercises/frivend-power-fra-blokke.pdf new file mode 100644 index 000000000000..dc041f70ac50 Binary files /dev/null and b/assets/pdf/exercises/frivend-power-fra-blokke.pdf differ diff --git a/assets/pdf/exercises/frivend.pdf b/assets/pdf/exercises/frivend.pdf new file mode 100644 index 000000000000..a2ba4ec3bcb1 Binary files /dev/null and b/assets/pdf/exercises/frivend.pdf differ diff --git a/assets/pdf/exercises/full-sitouts.pdf b/assets/pdf/exercises/full-sitouts.pdf new file mode 100644 index 000000000000..74c90693fb9b Binary files /dev/null and b/assets/pdf/exercises/full-sitouts.pdf differ diff --git a/assets/pdf/exercises/glute-ham-raises.pdf b/assets/pdf/exercises/glute-ham-raises.pdf new file mode 100644 index 000000000000..40f0219ee5ed Binary files /dev/null and b/assets/pdf/exercises/glute-ham-raises.pdf differ diff --git a/assets/pdf/exercises/goodmorning.pdf b/assets/pdf/exercises/goodmorning.pdf new file mode 100644 index 000000000000..db50ad8d04a1 Binary files /dev/null and b/assets/pdf/exercises/goodmorning.pdf differ diff --git a/assets/pdf/exercises/grebsstyrke-grib-sten.pdf b/assets/pdf/exercises/grebsstyrke-grib-sten.pdf new file mode 100644 index 000000000000..deff7390060a Binary files /dev/null and b/assets/pdf/exercises/grebsstyrke-grib-sten.pdf differ diff --git a/assets/pdf/exercises/grebsstyrke.pdf b/assets/pdf/exercises/grebsstyrke.pdf new file mode 100644 index 000000000000..fe92f8173c89 Binary files /dev/null and b/assets/pdf/exercises/grebsstyrke.pdf differ diff --git a/assets/pdf/exercises/gunthers-backextension.pdf b/assets/pdf/exercises/gunthers-backextension.pdf new file mode 100644 index 000000000000..a7f2b349f158 Binary files /dev/null and b/assets/pdf/exercises/gunthers-backextension.pdf differ diff --git a/assets/pdf/exercises/haandstand-op-ad-mur.pdf b/assets/pdf/exercises/haandstand-op-ad-mur.pdf new file mode 100644 index 000000000000..a8f835a721a9 Binary files /dev/null and b/assets/pdf/exercises/haandstand-op-ad-mur.pdf differ diff --git a/assets/pdf/exercises/halo-med-kettlebell.pdf b/assets/pdf/exercises/halo-med-kettlebell.pdf new file mode 100644 index 000000000000..491182095d1c Binary files /dev/null and b/assets/pdf/exercises/halo-med-kettlebell.pdf differ diff --git a/assets/pdf/exercises/hammer-swings.pdf b/assets/pdf/exercises/hammer-swings.pdf new file mode 100644 index 000000000000..c0f62ab8d179 Binary files /dev/null and b/assets/pdf/exercises/hammer-swings.pdf differ diff --git a/assets/pdf/exercises/hanging-leg-raise-med-makkere.pdf b/assets/pdf/exercises/hanging-leg-raise-med-makkere.pdf new file mode 100644 index 000000000000..d2a6e7870517 Binary files /dev/null and b/assets/pdf/exercises/hanging-leg-raise-med-makkere.pdf differ diff --git a/assets/pdf/exercises/heel-touch-stepup.pdf b/assets/pdf/exercises/heel-touch-stepup.pdf new file mode 100644 index 000000000000..054081683a5c Binary files /dev/null and b/assets/pdf/exercises/heel-touch-stepup.pdf differ diff --git a/assets/pdf/exercises/high-throw-medicinbold.pdf b/assets/pdf/exercises/high-throw-medicinbold.pdf new file mode 100644 index 000000000000..7d07b51ebc75 Binary files /dev/null and b/assets/pdf/exercises/high-throw-medicinbold.pdf differ diff --git a/assets/pdf/exercises/hip-thrusters-leg-lift.pdf b/assets/pdf/exercises/hip-thrusters-leg-lift.pdf new file mode 100644 index 000000000000..70ace3b7c4c0 Binary files /dev/null and b/assets/pdf/exercises/hip-thrusters-leg-lift.pdf differ diff --git a/assets/pdf/exercises/hip-thrusters.pdf b/assets/pdf/exercises/hip-thrusters.pdf new file mode 100644 index 000000000000..4da537b7b7ad Binary files /dev/null and b/assets/pdf/exercises/hip-thrusters.pdf differ diff --git a/assets/pdf/exercises/hip-twister.pdf b/assets/pdf/exercises/hip-twister.pdf new file mode 100644 index 000000000000..c476d2c2bf9f Binary files /dev/null and b/assets/pdf/exercises/hip-twister.pdf differ diff --git a/assets/pdf/exercises/hiv-og-traek.pdf b/assets/pdf/exercises/hiv-og-traek.pdf new file mode 100644 index 000000000000..b66186ddcc6f Binary files /dev/null and b/assets/pdf/exercises/hiv-og-traek.pdf differ diff --git a/assets/pdf/exercises/hofteboejer-med-klud.pdf b/assets/pdf/exercises/hofteboejer-med-klud.pdf new file mode 100644 index 000000000000..09b62ad6b510 Binary files /dev/null and b/assets/pdf/exercises/hofteboejer-med-klud.pdf differ diff --git a/assets/pdf/exercises/hofteboejer.pdf b/assets/pdf/exercises/hofteboejer.pdf new file mode 100644 index 000000000000..590d777b8e60 Binary files /dev/null and b/assets/pdf/exercises/hofteboejer.pdf differ diff --git a/assets/pdf/exercises/hofteudstraekning-et-ben-staaende.pdf b/assets/pdf/exercises/hofteudstraekning-et-ben-staaende.pdf new file mode 100644 index 000000000000..39408d78c273 Binary files /dev/null and b/assets/pdf/exercises/hofteudstraekning-et-ben-staaende.pdf differ diff --git a/assets/pdf/exercises/hop-med-armtraek.pdf b/assets/pdf/exercises/hop-med-armtraek.pdf new file mode 100644 index 000000000000..95a924f26e41 Binary files /dev/null and b/assets/pdf/exercises/hop-med-armtraek.pdf differ diff --git a/assets/pdf/exercises/hop-paa-en-fod.pdf b/assets/pdf/exercises/hop-paa-en-fod.pdf new file mode 100644 index 000000000000..bc4fb20faac1 Binary files /dev/null and b/assets/pdf/exercises/hop-paa-en-fod.pdf differ diff --git a/assets/pdf/exercises/hop-paa-tyk-madras.pdf b/assets/pdf/exercises/hop-paa-tyk-madras.pdf new file mode 100644 index 000000000000..1f1b74960201 Binary files /dev/null and b/assets/pdf/exercises/hop-paa-tyk-madras.pdf differ diff --git a/assets/pdf/exercises/inchworm.pdf b/assets/pdf/exercises/inchworm.pdf new file mode 100644 index 000000000000..f28de50fd24c Binary files /dev/null and b/assets/pdf/exercises/inchworm.pdf differ diff --git a/assets/pdf/exercises/jefferson-squat.pdf b/assets/pdf/exercises/jefferson-squat.pdf new file mode 100644 index 000000000000..34531a8faf95 Binary files /dev/null and b/assets/pdf/exercises/jefferson-squat.pdf differ diff --git a/assets/pdf/exercises/kassegang.pdf b/assets/pdf/exercises/kassegang.pdf new file mode 100644 index 000000000000..343851e70bbe Binary files /dev/null and b/assets/pdf/exercises/kassegang.pdf differ diff --git a/assets/pdf/exercises/kast-bildaek.pdf b/assets/pdf/exercises/kast-bildaek.pdf new file mode 100644 index 000000000000..070ff3733c3b Binary files /dev/null and b/assets/pdf/exercises/kast-bildaek.pdf differ diff --git a/assets/pdf/exercises/knae-extension.pdf b/assets/pdf/exercises/knae-extension.pdf new file mode 100644 index 000000000000..f42095a74942 Binary files /dev/null and b/assets/pdf/exercises/knae-extension.pdf differ diff --git a/assets/pdf/exercises/knae-fleksion.pdf b/assets/pdf/exercises/knae-fleksion.pdf new file mode 100644 index 000000000000..1d8627b97463 Binary files /dev/null and b/assets/pdf/exercises/knae-fleksion.pdf differ diff --git a/assets/pdf/exercises/knaeboejning-statisk.pdf b/assets/pdf/exercises/knaeboejning-statisk.pdf new file mode 100644 index 000000000000..235044755019 Binary files /dev/null and b/assets/pdf/exercises/knaeboejning-statisk.pdf differ diff --git a/assets/pdf/exercises/knee-standing-jumps.pdf b/assets/pdf/exercises/knee-standing-jumps.pdf new file mode 100644 index 000000000000..753010bb3566 Binary files /dev/null and b/assets/pdf/exercises/knee-standing-jumps.pdf differ diff --git a/assets/pdf/exercises/kommandokravl.pdf b/assets/pdf/exercises/kommandokravl.pdf new file mode 100644 index 000000000000..84e5a2d00892 Binary files /dev/null and b/assets/pdf/exercises/kommandokravl.pdf differ diff --git "a/assets/pdf/exercises/konel\303\270b.pdf" "b/assets/pdf/exercises/konel\303\270b.pdf" new file mode 100644 index 000000000000..1056812708bb Binary files /dev/null and "b/assets/pdf/exercises/konel\303\270b.pdf" differ diff --git a/assets/pdf/exercises/krabbe-skuldermobilisering.pdf b/assets/pdf/exercises/krabbe-skuldermobilisering.pdf new file mode 100644 index 000000000000..ad77e6ead391 Binary files /dev/null and b/assets/pdf/exercises/krabbe-skuldermobilisering.pdf differ diff --git a/assets/pdf/exercises/l-lateral-raise.pdf b/assets/pdf/exercises/l-lateral-raise.pdf new file mode 100644 index 000000000000..d32ec4127681 Binary files /dev/null and b/assets/pdf/exercises/l-lateral-raise.pdf differ diff --git a/assets/pdf/exercises/laeg.pdf b/assets/pdf/exercises/laeg.pdf new file mode 100644 index 000000000000..375fd8d74953 Binary files /dev/null and b/assets/pdf/exercises/laeg.pdf differ diff --git a/assets/pdf/exercises/laengdespring.pdf b/assets/pdf/exercises/laengdespring.pdf new file mode 100644 index 000000000000..4e43cd8c2e5e Binary files /dev/null and b/assets/pdf/exercises/laengdespring.pdf differ diff --git a/assets/pdf/exercises/lateral-squat.pdf b/assets/pdf/exercises/lateral-squat.pdf new file mode 100644 index 000000000000..9f80ff60767a Binary files /dev/null and b/assets/pdf/exercises/lateral-squat.pdf differ diff --git a/assets/pdf/exercises/loeb-loebebaand.pdf b/assets/pdf/exercises/loeb-loebebaand.pdf new file mode 100644 index 000000000000..01fb3cacf5f9 Binary files /dev/null and b/assets/pdf/exercises/loeb-loebebaand.pdf differ diff --git a/assets/pdf/exercises/loeb.pdf b/assets/pdf/exercises/loeb.pdf new file mode 100644 index 000000000000..346f6112115b Binary files /dev/null and b/assets/pdf/exercises/loeb.pdf differ diff --git a/assets/pdf/exercises/loebe-gennem-daek.pdf b/assets/pdf/exercises/loebe-gennem-daek.pdf new file mode 100644 index 000000000000..5c6a123aee1d Binary files /dev/null and b/assets/pdf/exercises/loebe-gennem-daek.pdf differ diff --git a/assets/pdf/exercises/lunges-baglaens-med-stangen-over-hovedet.pdf b/assets/pdf/exercises/lunges-baglaens-med-stangen-over-hovedet.pdf new file mode 100644 index 000000000000..2fb1794cfd16 Binary files /dev/null and b/assets/pdf/exercises/lunges-baglaens-med-stangen-over-hovedet.pdf differ diff --git a/assets/pdf/exercises/lunges-dynamisk.pdf b/assets/pdf/exercises/lunges-dynamisk.pdf new file mode 100644 index 000000000000..4654b5d3e4f0 Binary files /dev/null and b/assets/pdf/exercises/lunges-dynamisk.pdf differ diff --git a/assets/pdf/exercises/lunges-hop.pdf b/assets/pdf/exercises/lunges-hop.pdf new file mode 100644 index 000000000000..b748544d604a Binary files /dev/null and b/assets/pdf/exercises/lunges-hop.pdf differ diff --git "a/assets/pdf/exercises/lunges-kettlebell-skifter-h\303\245nd.pdf" "b/assets/pdf/exercises/lunges-kettlebell-skifter-h\303\245nd.pdf" new file mode 100644 index 000000000000..302b8dc701a4 Binary files /dev/null and "b/assets/pdf/exercises/lunges-kettlebell-skifter-h\303\245nd.pdf" differ diff --git a/assets/pdf/exercises/lunges-med-drejning.pdf b/assets/pdf/exercises/lunges-med-drejning.pdf new file mode 100644 index 000000000000..afec079444a6 Binary files /dev/null and b/assets/pdf/exercises/lunges-med-drejning.pdf differ diff --git a/assets/pdf/exercises/lunges-med-en-haandvaegt-over-hovedet.pdf b/assets/pdf/exercises/lunges-med-en-haandvaegt-over-hovedet.pdf new file mode 100644 index 000000000000..d427d732e2de Binary files /dev/null and b/assets/pdf/exercises/lunges-med-en-haandvaegt-over-hovedet.pdf differ diff --git a/assets/pdf/exercises/lunges-stepup.pdf b/assets/pdf/exercises/lunges-stepup.pdf new file mode 100644 index 000000000000..91fff5f4afbc Binary files /dev/null and b/assets/pdf/exercises/lunges-stepup.pdf differ diff --git a/assets/pdf/exercises/lyset.pdf b/assets/pdf/exercises/lyset.pdf new file mode 100644 index 000000000000..f59ca271a94d Binary files /dev/null and b/assets/pdf/exercises/lyset.pdf differ diff --git "a/assets/pdf/exercises/l\303\270b-med-sands\303\246k.pdf" "b/assets/pdf/exercises/l\303\270b-med-sands\303\246k.pdf" new file mode 100644 index 000000000000..393ad50912a4 Binary files /dev/null and "b/assets/pdf/exercises/l\303\270b-med-sands\303\246k.pdf" differ diff --git "a/assets/pdf/exercises/l\303\270b-med-tung-pind.pdf" "b/assets/pdf/exercises/l\303\270b-med-tung-pind.pdf" new file mode 100644 index 000000000000..5ce2703eda57 Binary files /dev/null and "b/assets/pdf/exercises/l\303\270b-med-tung-pind.pdf" differ diff --git a/assets/pdf/exercises/macebell.pdf b/assets/pdf/exercises/macebell.pdf new file mode 100644 index 000000000000..8b7891ea340a Binary files /dev/null and b/assets/pdf/exercises/macebell.pdf differ diff --git a/assets/pdf/exercises/makker-paa-slaeb.pdf b/assets/pdf/exercises/makker-paa-slaeb.pdf new file mode 100644 index 000000000000..3746bf2cffe9 Binary files /dev/null and b/assets/pdf/exercises/makker-paa-slaeb.pdf differ diff --git "a/assets/pdf/exercises/makker\303\270velse-klap-p\303\245-fingre.pdf" "b/assets/pdf/exercises/makker\303\270velse-klap-p\303\245-fingre.pdf" new file mode 100644 index 000000000000..06f55ec99fac Binary files /dev/null and "b/assets/pdf/exercises/makker\303\270velse-klap-p\303\245-fingre.pdf" differ diff --git a/assets/pdf/exercises/manbuilder.pdf b/assets/pdf/exercises/manbuilder.pdf new file mode 100644 index 000000000000..d995e13815b7 Binary files /dev/null and b/assets/pdf/exercises/manbuilder.pdf differ diff --git a/assets/pdf/exercises/mave-benloeft.pdf b/assets/pdf/exercises/mave-benloeft.pdf new file mode 100644 index 000000000000..c01efee720e3 Binary files /dev/null and b/assets/pdf/exercises/mave-benloeft.pdf differ diff --git a/assets/pdf/exercises/mave-hanging-leg-raise.pdf b/assets/pdf/exercises/mave-hanging-leg-raise.pdf new file mode 100644 index 000000000000..e7f65ce33e24 Binary files /dev/null and b/assets/pdf/exercises/mave-hanging-leg-raise.pdf differ diff --git a/assets/pdf/exercises/mave-maskine.pdf b/assets/pdf/exercises/mave-maskine.pdf new file mode 100644 index 000000000000..fe9a3977df42 Binary files /dev/null and b/assets/pdf/exercises/mave-maskine.pdf differ diff --git a/assets/pdf/exercises/mave-rotation.pdf b/assets/pdf/exercises/mave-rotation.pdf new file mode 100644 index 000000000000..dc41d4446fa2 Binary files /dev/null and b/assets/pdf/exercises/mave-rotation.pdf differ diff --git a/assets/pdf/exercises/mave.pdf b/assets/pdf/exercises/mave.pdf new file mode 100644 index 000000000000..5ba0eca13973 Binary files /dev/null and b/assets/pdf/exercises/mave.pdf differ diff --git a/assets/pdf/exercises/maveboejning-loeftede-foedder.pdf b/assets/pdf/exercises/maveboejning-loeftede-foedder.pdf new file mode 100644 index 000000000000..b99f803d5d75 Binary files /dev/null and b/assets/pdf/exercises/maveboejning-loeftede-foedder.pdf differ diff --git a/assets/pdf/exercises/maveboejning-skraa.pdf b/assets/pdf/exercises/maveboejning-skraa.pdf new file mode 100644 index 000000000000..77063af1dc4e Binary files /dev/null and b/assets/pdf/exercises/maveboejning-skraa.pdf differ diff --git a/assets/pdf/exercises/maveboejning.pdf b/assets/pdf/exercises/maveboejning.pdf new file mode 100644 index 000000000000..28b1cb4592df Binary files /dev/null and b/assets/pdf/exercises/maveboejning.pdf differ diff --git a/assets/pdf/exercises/maveoevelse-captains-chair.pdf b/assets/pdf/exercises/maveoevelse-captains-chair.pdf new file mode 100644 index 000000000000..d759e26a919b Binary files /dev/null and b/assets/pdf/exercises/maveoevelse-captains-chair.pdf differ diff --git a/assets/pdf/exercises/maveoevelse-fra-bom.pdf b/assets/pdf/exercises/maveoevelse-fra-bom.pdf new file mode 100644 index 000000000000..b5612b131cc5 Binary files /dev/null and b/assets/pdf/exercises/maveoevelse-fra-bom.pdf differ diff --git a/assets/pdf/exercises/maveoevelse-hjul-rollout.pdf b/assets/pdf/exercises/maveoevelse-hjul-rollout.pdf new file mode 100644 index 000000000000..08e439fa2e29 Binary files /dev/null and b/assets/pdf/exercises/maveoevelse-hjul-rollout.pdf differ diff --git a/assets/pdf/exercises/maveoevelse-stuart-mcgill-curlup.pdf b/assets/pdf/exercises/maveoevelse-stuart-mcgill-curlup.pdf new file mode 100644 index 000000000000..b9653f3c00cb Binary files /dev/null and b/assets/pdf/exercises/maveoevelse-stuart-mcgill-curlup.pdf differ diff --git a/assets/pdf/exercises/maverotationer.pdf b/assets/pdf/exercises/maverotationer.pdf new file mode 100644 index 000000000000..4822d885c488 Binary files /dev/null and b/assets/pdf/exercises/maverotationer.pdf differ diff --git a/assets/pdf/exercises/maverulning-med-boksning.pdf b/assets/pdf/exercises/maverulning-med-boksning.pdf new file mode 100644 index 000000000000..1e6af6ecc3ff Binary files /dev/null and b/assets/pdf/exercises/maverulning-med-boksning.pdf differ diff --git a/assets/pdf/exercises/maverulning-paa-bold.pdf b/assets/pdf/exercises/maverulning-paa-bold.pdf new file mode 100644 index 000000000000..4d0ec3dcecd4 Binary files /dev/null and b/assets/pdf/exercises/maverulning-paa-bold.pdf differ diff --git a/assets/pdf/exercises/medicinbold-kastes.pdf b/assets/pdf/exercises/medicinbold-kastes.pdf new file mode 100644 index 000000000000..da0873df9caa Binary files /dev/null and b/assets/pdf/exercises/medicinbold-kastes.pdf differ diff --git a/assets/pdf/exercises/medicinbold-slams.pdf b/assets/pdf/exercises/medicinbold-slams.pdf new file mode 100644 index 000000000000..05ebd2f06862 Binary files /dev/null and b/assets/pdf/exercises/medicinbold-slams.pdf differ diff --git a/assets/pdf/exercises/michael-jackson-move.pdf b/assets/pdf/exercises/michael-jackson-move.pdf new file mode 100644 index 000000000000..231b7b1f69b4 Binary files /dev/null and b/assets/pdf/exercises/michael-jackson-move.pdf differ diff --git a/assets/pdf/exercises/military-press.pdf b/assets/pdf/exercises/military-press.pdf new file mode 100644 index 000000000000..881d4568502e Binary files /dev/null and b/assets/pdf/exercises/military-press.pdf differ diff --git a/assets/pdf/exercises/mobilisering-ankel.pdf b/assets/pdf/exercises/mobilisering-ankel.pdf new file mode 100644 index 000000000000..29b88b47907f Binary files /dev/null and b/assets/pdf/exercises/mobilisering-ankel.pdf differ diff --git a/assets/pdf/exercises/monster-x-band-walks.pdf b/assets/pdf/exercises/monster-x-band-walks.pdf new file mode 100644 index 000000000000..0dbf2823f593 Binary files /dev/null and b/assets/pdf/exercises/monster-x-band-walks.pdf differ diff --git a/assets/pdf/exercises/mountainclimber-paa-stepbaenk.pdf b/assets/pdf/exercises/mountainclimber-paa-stepbaenk.pdf new file mode 100644 index 000000000000..19b4e0c2478a Binary files /dev/null and b/assets/pdf/exercises/mountainclimber-paa-stepbaenk.pdf differ diff --git a/assets/pdf/exercises/muscle.pdf b/assets/pdf/exercises/muscle.pdf new file mode 100644 index 000000000000..03e287f91c15 Binary files /dev/null and b/assets/pdf/exercises/muscle.pdf differ diff --git a/assets/pdf/exercises/nordic-hamstring.pdf b/assets/pdf/exercises/nordic-hamstring.pdf new file mode 100644 index 000000000000..67f84d672dcf Binary files /dev/null and b/assets/pdf/exercises/nordic-hamstring.pdf differ diff --git a/assets/pdf/exercises/omvendt-krabbe.pdf b/assets/pdf/exercises/omvendt-krabbe.pdf new file mode 100644 index 000000000000..3803a8ae9029 Binary files /dev/null and b/assets/pdf/exercises/omvendt-krabbe.pdf differ diff --git a/assets/pdf/exercises/one-arm-clean-and-jerk.pdf b/assets/pdf/exercises/one-arm-clean-and-jerk.pdf new file mode 100644 index 000000000000..6f00585b55b5 Binary files /dev/null and b/assets/pdf/exercises/one-arm-clean-and-jerk.pdf differ diff --git a/assets/pdf/exercises/one-arm-overhead-dumbell-lockout.pdf b/assets/pdf/exercises/one-arm-overhead-dumbell-lockout.pdf new file mode 100644 index 000000000000..3ce3f0694ac9 Binary files /dev/null and b/assets/pdf/exercises/one-arm-overhead-dumbell-lockout.pdf differ diff --git a/assets/pdf/exercises/one-arm-overhead-press.pdf b/assets/pdf/exercises/one-arm-overhead-press.pdf new file mode 100644 index 000000000000..1cc82763928c Binary files /dev/null and b/assets/pdf/exercises/one-arm-overhead-press.pdf differ diff --git a/assets/pdf/exercises/one-legged-counter-balanced-seat-bench.pdf b/assets/pdf/exercises/one-legged-counter-balanced-seat-bench.pdf new file mode 100644 index 000000000000..526a01245aad Binary files /dev/null and b/assets/pdf/exercises/one-legged-counter-balanced-seat-bench.pdf differ diff --git a/assets/pdf/exercises/one-legged-rdl-kettlebells.pdf b/assets/pdf/exercises/one-legged-rdl-kettlebells.pdf new file mode 100644 index 000000000000..eadea274efcd Binary files /dev/null and b/assets/pdf/exercises/one-legged-rdl-kettlebells.pdf differ diff --git a/assets/pdf/exercises/one-legged-squat-trx.pdf b/assets/pdf/exercises/one-legged-squat-trx.pdf new file mode 100644 index 000000000000..c9b8c17e7422 Binary files /dev/null and b/assets/pdf/exercises/one-legged-squat-trx.pdf differ diff --git a/assets/pdf/exercises/over-og-under-haek.pdf b/assets/pdf/exercises/over-og-under-haek.pdf new file mode 100644 index 000000000000..d9d64aa0f1fc Binary files /dev/null and b/assets/pdf/exercises/over-og-under-haek.pdf differ diff --git a/assets/pdf/exercises/overhead-dumbell-lockout.pdf b/assets/pdf/exercises/overhead-dumbell-lockout.pdf new file mode 100644 index 000000000000..a50bf57ac8fd Binary files /dev/null and b/assets/pdf/exercises/overhead-dumbell-lockout.pdf differ diff --git a/assets/pdf/exercises/overhead-shrug.pdf b/assets/pdf/exercises/overhead-shrug.pdf new file mode 100644 index 000000000000..e1c7f3f4a68c Binary files /dev/null and b/assets/pdf/exercises/overhead-shrug.pdf differ diff --git a/assets/pdf/exercises/paloff-press.pdf b/assets/pdf/exercises/paloff-press.pdf new file mode 100644 index 000000000000..1fac20f0f77b Binary files /dev/null and b/assets/pdf/exercises/paloff-press.pdf differ diff --git a/assets/pdf/exercises/pencil-pushups.pdf b/assets/pdf/exercises/pencil-pushups.pdf new file mode 100644 index 000000000000..66590eca55d2 Binary files /dev/null and b/assets/pdf/exercises/pencil-pushups.pdf differ diff --git a/assets/pdf/exercises/peterson-stepup.pdf b/assets/pdf/exercises/peterson-stepup.pdf new file mode 100644 index 000000000000..b620d7712444 Binary files /dev/null and b/assets/pdf/exercises/peterson-stepup.pdf differ diff --git a/assets/pdf/exercises/pike-and-straight-arm-push-back-swissball.pdf b/assets/pdf/exercises/pike-and-straight-arm-push-back-swissball.pdf new file mode 100644 index 000000000000..98f04a8cc51f Binary files /dev/null and b/assets/pdf/exercises/pike-and-straight-arm-push-back-swissball.pdf differ diff --git a/assets/pdf/exercises/pike-press.pdf b/assets/pdf/exercises/pike-press.pdf new file mode 100644 index 000000000000..1990c91307e4 Binary files /dev/null and b/assets/pdf/exercises/pike-press.pdf differ diff --git a/assets/pdf/exercises/pistol.pdf b/assets/pdf/exercises/pistol.pdf new file mode 100644 index 000000000000..bae1bf1f10d9 Binary files /dev/null and b/assets/pdf/exercises/pistol.pdf differ diff --git a/assets/pdf/exercises/plank-knee-elbow.pdf b/assets/pdf/exercises/plank-knee-elbow.pdf new file mode 100644 index 000000000000..e46b4ddc25d8 Binary files /dev/null and b/assets/pdf/exercises/plank-knee-elbow.pdf differ diff --git a/assets/pdf/exercises/planken-mountain-climber.pdf b/assets/pdf/exercises/planken-mountain-climber.pdf new file mode 100644 index 000000000000..1b22af2b5fe3 Binary files /dev/null and b/assets/pdf/exercises/planken-mountain-climber.pdf differ diff --git a/assets/pdf/exercises/planken-superman.pdf b/assets/pdf/exercises/planken-superman.pdf new file mode 100644 index 000000000000..c3535e7d35ca Binary files /dev/null and b/assets/pdf/exercises/planken-superman.pdf differ diff --git a/assets/pdf/exercises/planken.pdf b/assets/pdf/exercises/planken.pdf new file mode 100644 index 000000000000..f29f233f03fd Binary files /dev/null and b/assets/pdf/exercises/planken.pdf differ diff --git a/assets/pdf/exercises/plate-loaded-lateral-lunge.pdf b/assets/pdf/exercises/plate-loaded-lateral-lunge.pdf new file mode 100644 index 000000000000..8fc929fb321f Binary files /dev/null and b/assets/pdf/exercises/plate-loaded-lateral-lunge.pdf differ diff --git a/assets/pdf/exercises/poliquin-stepup.pdf b/assets/pdf/exercises/poliquin-stepup.pdf new file mode 100644 index 000000000000..e4e84bd6408e Binary files /dev/null and b/assets/pdf/exercises/poliquin-stepup.pdf differ diff --git a/assets/pdf/exercises/prowler.pdf b/assets/pdf/exercises/prowler.pdf new file mode 100644 index 000000000000..a2307c62b39c Binary files /dev/null and b/assets/pdf/exercises/prowler.pdf differ diff --git a/assets/pdf/exercises/pull-aparts.pdf b/assets/pdf/exercises/pull-aparts.pdf new file mode 100644 index 000000000000..d423a90eb37e Binary files /dev/null and b/assets/pdf/exercises/pull-aparts.pdf differ diff --git a/assets/pdf/exercises/pull-med-makkere.pdf b/assets/pdf/exercises/pull-med-makkere.pdf new file mode 100644 index 000000000000..bd02ae81d4e1 Binary files /dev/null and b/assets/pdf/exercises/pull-med-makkere.pdf differ diff --git a/assets/pdf/exercises/pullup.pdf b/assets/pdf/exercises/pullup.pdf new file mode 100644 index 000000000000..c85e8f978114 Binary files /dev/null and b/assets/pdf/exercises/pullup.pdf differ diff --git a/assets/pdf/exercises/quadroped-extension-rotation.pdf b/assets/pdf/exercises/quadroped-extension-rotation.pdf new file mode 100644 index 000000000000..4ad7551f1c79 Binary files /dev/null and b/assets/pdf/exercises/quadroped-extension-rotation.pdf differ diff --git a/assets/pdf/exercises/quadruped-hip-extension.pdf b/assets/pdf/exercises/quadruped-hip-extension.pdf new file mode 100644 index 000000000000..0349531135bd Binary files /dev/null and b/assets/pdf/exercises/quadruped-hip-extension.pdf differ diff --git a/assets/pdf/exercises/raatraek.pdf b/assets/pdf/exercises/raatraek.pdf new file mode 100644 index 000000000000..1a38b62d76c2 Binary files /dev/null and b/assets/pdf/exercises/raatraek.pdf differ diff --git a/assets/pdf/exercises/rackpull-0.pdf b/assets/pdf/exercises/rackpull-0.pdf new file mode 100644 index 000000000000..8d71ce7e3b57 Binary files /dev/null and b/assets/pdf/exercises/rackpull-0.pdf differ diff --git a/assets/pdf/exercises/reach-through.pdf b/assets/pdf/exercises/reach-through.pdf new file mode 100644 index 000000000000..026b2b215c9d Binary files /dev/null and b/assets/pdf/exercises/reach-through.pdf differ diff --git a/assets/pdf/exercises/reaktionsoevelse.pdf b/assets/pdf/exercises/reaktionsoevelse.pdf new file mode 100644 index 000000000000..9a3092ffdec2 Binary files /dev/null and b/assets/pdf/exercises/reaktionsoevelse.pdf differ diff --git a/assets/pdf/exercises/reb-faa-det-til-boelge.pdf b/assets/pdf/exercises/reb-faa-det-til-boelge.pdf new file mode 100644 index 000000000000..8926d19c9911 Binary files /dev/null and b/assets/pdf/exercises/reb-faa-det-til-boelge.pdf differ diff --git a/assets/pdf/exercises/reb-klatring.pdf b/assets/pdf/exercises/reb-klatring.pdf new file mode 100644 index 000000000000..a1e89d6c8d03 Binary files /dev/null and b/assets/pdf/exercises/reb-klatring.pdf differ diff --git a/assets/pdf/exercises/reb-pigeklatring.pdf b/assets/pdf/exercises/reb-pigeklatring.pdf new file mode 100644 index 000000000000..df7595ae2b85 Binary files /dev/null and b/assets/pdf/exercises/reb-pigeklatring.pdf differ diff --git a/assets/pdf/exercises/reverse-crunch.pdf b/assets/pdf/exercises/reverse-crunch.pdf new file mode 100644 index 000000000000..a0d91792dd2e Binary files /dev/null and b/assets/pdf/exercises/reverse-crunch.pdf differ diff --git a/assets/pdf/exercises/reverse-extension-medicinbold.pdf b/assets/pdf/exercises/reverse-extension-medicinbold.pdf new file mode 100644 index 000000000000..a44f4f863873 Binary files /dev/null and b/assets/pdf/exercises/reverse-extension-medicinbold.pdf differ diff --git a/assets/pdf/exercises/reverse-hyper.pdf b/assets/pdf/exercises/reverse-hyper.pdf new file mode 100644 index 000000000000..c34c85163f8a Binary files /dev/null and b/assets/pdf/exercises/reverse-hyper.pdf differ diff --git a/assets/pdf/exercises/ringe-svinge-i-ringene.pdf b/assets/pdf/exercises/ringe-svinge-i-ringene.pdf new file mode 100644 index 000000000000..d9fe9bfcc9ad Binary files /dev/null and b/assets/pdf/exercises/ringe-svinge-i-ringene.pdf differ diff --git a/assets/pdf/exercises/rite-1-drej-rundt.pdf b/assets/pdf/exercises/rite-1-drej-rundt.pdf new file mode 100644 index 000000000000..a3c61e424a5f Binary files /dev/null and b/assets/pdf/exercises/rite-1-drej-rundt.pdf differ diff --git a/assets/pdf/exercises/rite-2-maveoevelse.pdf b/assets/pdf/exercises/rite-2-maveoevelse.pdf new file mode 100644 index 000000000000..8c785c11c364 Binary files /dev/null and b/assets/pdf/exercises/rite-2-maveoevelse.pdf differ diff --git a/assets/pdf/exercises/rite-3-forlaar.pdf b/assets/pdf/exercises/rite-3-forlaar.pdf new file mode 100644 index 000000000000..ff382fb7e9bf Binary files /dev/null and b/assets/pdf/exercises/rite-3-forlaar.pdf differ diff --git a/assets/pdf/exercises/rite-4-table-pose.pdf b/assets/pdf/exercises/rite-4-table-pose.pdf new file mode 100644 index 000000000000..bdf31f9d20f4 Binary files /dev/null and b/assets/pdf/exercises/rite-4-table-pose.pdf differ diff --git a/assets/pdf/exercises/rite-5-sael-og-omvendt-v.pdf b/assets/pdf/exercises/rite-5-sael-og-omvendt-v.pdf new file mode 100644 index 000000000000..88aacb468737 Binary files /dev/null and b/assets/pdf/exercises/rite-5-sael-og-omvendt-v.pdf differ diff --git a/assets/pdf/exercises/rkc-planke.pdf b/assets/pdf/exercises/rkc-planke.pdf new file mode 100644 index 000000000000..2cb7a73b607e Binary files /dev/null and b/assets/pdf/exercises/rkc-planke.pdf differ diff --git a/assets/pdf/exercises/romanian-deadlift.pdf b/assets/pdf/exercises/romanian-deadlift.pdf new file mode 100644 index 000000000000..ece0182bdfe9 Binary files /dev/null and b/assets/pdf/exercises/romanian-deadlift.pdf differ diff --git a/assets/pdf/exercises/roning-enarms-med-kettlebell.pdf b/assets/pdf/exercises/roning-enarms-med-kettlebell.pdf new file mode 100644 index 000000000000..0dd045251ed6 Binary files /dev/null and b/assets/pdf/exercises/roning-enarms-med-kettlebell.pdf differ diff --git a/assets/pdf/exercises/roning-enarms.pdf b/assets/pdf/exercises/roning-enarms.pdf new file mode 100644 index 000000000000..57d29304fc0f Binary files /dev/null and b/assets/pdf/exercises/roning-enarms.pdf differ diff --git a/assets/pdf/exercises/roning-etbens.pdf b/assets/pdf/exercises/roning-etbens.pdf new file mode 100644 index 000000000000..9dce985f870d Binary files /dev/null and b/assets/pdf/exercises/roning-etbens.pdf differ diff --git a/assets/pdf/exercises/roning-foroverboejet.pdf b/assets/pdf/exercises/roning-foroverboejet.pdf new file mode 100644 index 000000000000..46c11afbbd83 Binary files /dev/null and b/assets/pdf/exercises/roning-foroverboejet.pdf differ diff --git a/assets/pdf/exercises/roning-med-makker-og-klap-paa-skulderen.pdf b/assets/pdf/exercises/roning-med-makker-og-klap-paa-skulderen.pdf new file mode 100644 index 000000000000..6ff91a000989 Binary files /dev/null and b/assets/pdf/exercises/roning-med-makker-og-klap-paa-skulderen.pdf differ diff --git a/assets/pdf/exercises/roning-roergometer.pdf b/assets/pdf/exercises/roning-roergometer.pdf new file mode 100644 index 000000000000..ee94415b5dfe Binary files /dev/null and b/assets/pdf/exercises/roning-roergometer.pdf differ diff --git a/assets/pdf/exercises/roning-siddende.pdf b/assets/pdf/exercises/roning-siddende.pdf new file mode 100644 index 000000000000..b7b6c8521482 Binary files /dev/null and b/assets/pdf/exercises/roning-siddende.pdf differ diff --git a/assets/pdf/exercises/rotator-manchet.pdf b/assets/pdf/exercises/rotator-manchet.pdf new file mode 100644 index 000000000000..3f63bb17d193 Binary files /dev/null and b/assets/pdf/exercises/rotator-manchet.pdf differ diff --git a/assets/pdf/exercises/rows-m-elastik.pdf b/assets/pdf/exercises/rows-m-elastik.pdf new file mode 100644 index 000000000000..bce2e9a8cfde Binary files /dev/null and b/assets/pdf/exercises/rows-m-elastik.pdf differ diff --git "a/assets/pdf/exercises/russian-twist-med-v\303\246gt.pdf" "b/assets/pdf/exercises/russian-twist-med-v\303\246gt.pdf" new file mode 100644 index 000000000000..2f5240ec39d8 Binary files /dev/null and "b/assets/pdf/exercises/russian-twist-med-v\303\246gt.pdf" differ diff --git a/assets/pdf/exercises/russian-twist.pdf b/assets/pdf/exercises/russian-twist.pdf new file mode 100644 index 000000000000..132602b9b44e Binary files /dev/null and b/assets/pdf/exercises/russian-twist.pdf differ diff --git a/assets/pdf/exercises/rygoevelse-paa-bold.pdf b/assets/pdf/exercises/rygoevelse-paa-bold.pdf new file mode 100644 index 000000000000..7e85d754fb67 Binary files /dev/null and b/assets/pdf/exercises/rygoevelse-paa-bold.pdf differ diff --git a/assets/pdf/exercises/rygstraekning-0.pdf b/assets/pdf/exercises/rygstraekning-0.pdf new file mode 100644 index 000000000000..7f5b32adf4c1 Binary files /dev/null and b/assets/pdf/exercises/rygstraekning-0.pdf differ diff --git a/assets/pdf/exercises/rygstraekning.pdf b/assets/pdf/exercises/rygstraekning.pdf new file mode 100644 index 000000000000..8489b5a46cbf Binary files /dev/null and b/assets/pdf/exercises/rygstraekning.pdf differ diff --git a/assets/pdf/exercises/sakse-hofteloeft.pdf b/assets/pdf/exercises/sakse-hofteloeft.pdf new file mode 100644 index 000000000000..7e24041212a7 Binary files /dev/null and b/assets/pdf/exercises/sakse-hofteloeft.pdf differ diff --git a/assets/pdf/exercises/shrug.pdf b/assets/pdf/exercises/shrug.pdf new file mode 100644 index 000000000000..b24cdd462a16 Binary files /dev/null and b/assets/pdf/exercises/shrug.pdf differ diff --git a/assets/pdf/exercises/sid-paa-numsen-loeft-foedderne-grib-bold-og-returner-med-skiftende-haender.pdf b/assets/pdf/exercises/sid-paa-numsen-loeft-foedderne-grib-bold-og-returner-med-skiftende-haender.pdf new file mode 100644 index 000000000000..98e24a3efd34 Binary files /dev/null and b/assets/pdf/exercises/sid-paa-numsen-loeft-foedderne-grib-bold-og-returner-med-skiftende-haender.pdf differ diff --git a/assets/pdf/exercises/side-bridge.pdf b/assets/pdf/exercises/side-bridge.pdf new file mode 100644 index 000000000000..bf3695a75fb5 Binary files /dev/null and b/assets/pdf/exercises/side-bridge.pdf differ diff --git a/assets/pdf/exercises/side-swings.pdf b/assets/pdf/exercises/side-swings.pdf new file mode 100644 index 000000000000..c6916959a33c Binary files /dev/null and b/assets/pdf/exercises/side-swings.pdf differ diff --git a/assets/pdf/exercises/side-windmill.pdf b/assets/pdf/exercises/side-windmill.pdf new file mode 100644 index 000000000000..e5f717d0e2b1 Binary files /dev/null and b/assets/pdf/exercises/side-windmill.pdf differ diff --git a/assets/pdf/exercises/sideloeft-foroverboejet.pdf b/assets/pdf/exercises/sideloeft-foroverboejet.pdf new file mode 100644 index 000000000000..45f32644b85c Binary files /dev/null and b/assets/pdf/exercises/sideloeft-foroverboejet.pdf differ diff --git a/assets/pdf/exercises/sideloeft-siddende.pdf b/assets/pdf/exercises/sideloeft-siddende.pdf new file mode 100644 index 000000000000..f80e81ce133f Binary files /dev/null and b/assets/pdf/exercises/sideloeft-siddende.pdf differ diff --git a/assets/pdf/exercises/sjipning.pdf b/assets/pdf/exercises/sjipning.pdf new file mode 100644 index 000000000000..1069f8f524a5 Binary files /dev/null and b/assets/pdf/exercises/sjipning.pdf differ diff --git a/assets/pdf/exercises/skrogretteren.pdf b/assets/pdf/exercises/skrogretteren.pdf new file mode 100644 index 000000000000..0c5f2b8a48cf Binary files /dev/null and b/assets/pdf/exercises/skrogretteren.pdf differ diff --git a/assets/pdf/exercises/skubbe-madras.pdf b/assets/pdf/exercises/skubbe-madras.pdf new file mode 100644 index 000000000000..036171bc136b Binary files /dev/null and b/assets/pdf/exercises/skubbe-madras.pdf differ diff --git a/assets/pdf/exercises/skulder-external-rotation-0.pdf b/assets/pdf/exercises/skulder-external-rotation-0.pdf new file mode 100644 index 000000000000..9dc5f52fce3b Binary files /dev/null and b/assets/pdf/exercises/skulder-external-rotation-0.pdf differ diff --git a/assets/pdf/exercises/skulder-external-rotation.pdf b/assets/pdf/exercises/skulder-external-rotation.pdf new file mode 100644 index 000000000000..10bffc4945ad Binary files /dev/null and b/assets/pdf/exercises/skulder-external-rotation.pdf differ diff --git a/assets/pdf/exercises/skulder-internal-rotation-0.pdf b/assets/pdf/exercises/skulder-internal-rotation-0.pdf new file mode 100644 index 000000000000..ca20a392e882 Binary files /dev/null and b/assets/pdf/exercises/skulder-internal-rotation-0.pdf differ diff --git a/assets/pdf/exercises/skulder-internal-rotation.pdf b/assets/pdf/exercises/skulder-internal-rotation.pdf new file mode 100644 index 000000000000..9365dd9d23a2 Binary files /dev/null and b/assets/pdf/exercises/skulder-internal-rotation.pdf differ diff --git a/assets/pdf/exercises/skulder-shrugs-armstraekningsposition.pdf b/assets/pdf/exercises/skulder-shrugs-armstraekningsposition.pdf new file mode 100644 index 000000000000..a3cef08ca27b Binary files /dev/null and b/assets/pdf/exercises/skulder-shrugs-armstraekningsposition.pdf differ diff --git a/assets/pdf/exercises/skuldermobilisering-i.pdf b/assets/pdf/exercises/skuldermobilisering-i.pdf new file mode 100644 index 000000000000..30ea51b6f531 Binary files /dev/null and b/assets/pdf/exercises/skuldermobilisering-i.pdf differ diff --git a/assets/pdf/exercises/skuldermobilisering.pdf b/assets/pdf/exercises/skuldermobilisering.pdf new file mode 100644 index 000000000000..b0a4e662ffe3 Binary files /dev/null and b/assets/pdf/exercises/skuldermobilisering.pdf differ diff --git a/assets/pdf/exercises/skulderpres-vaegte.pdf b/assets/pdf/exercises/skulderpres-vaegte.pdf new file mode 100644 index 000000000000..dee832004c44 Binary files /dev/null and b/assets/pdf/exercises/skulderpres-vaegte.pdf differ diff --git a/assets/pdf/exercises/skulderpres.pdf b/assets/pdf/exercises/skulderpres.pdf new file mode 100644 index 000000000000..68fc7bec054e Binary files /dev/null and b/assets/pdf/exercises/skulderpres.pdf differ diff --git a/assets/pdf/exercises/skuldersideloeft.pdf b/assets/pdf/exercises/skuldersideloeft.pdf new file mode 100644 index 000000000000..3d006de5b118 Binary files /dev/null and b/assets/pdf/exercises/skuldersideloeft.pdf differ diff --git a/assets/pdf/exercises/slaede.pdf b/assets/pdf/exercises/slaede.pdf new file mode 100644 index 000000000000..2e21ff31bf64 Binary files /dev/null and b/assets/pdf/exercises/slaede.pdf differ diff --git a/assets/pdf/exercises/slalomhop.pdf b/assets/pdf/exercises/slalomhop.pdf new file mode 100644 index 000000000000..8bd631d0d084 Binary files /dev/null and b/assets/pdf/exercises/slalomhop.pdf differ diff --git a/assets/pdf/exercises/slideboard-bodysaw-pushup.pdf b/assets/pdf/exercises/slideboard-bodysaw-pushup.pdf new file mode 100644 index 000000000000..0252b84c280d Binary files /dev/null and b/assets/pdf/exercises/slideboard-bodysaw-pushup.pdf differ diff --git a/assets/pdf/exercises/slosh-pipe.pdf b/assets/pdf/exercises/slosh-pipe.pdf new file mode 100644 index 000000000000..ad0582eccb38 Binary files /dev/null and b/assets/pdf/exercises/slosh-pipe.pdf differ diff --git a/assets/pdf/exercises/smr-biceps.pdf b/assets/pdf/exercises/smr-biceps.pdf new file mode 100644 index 000000000000..de3036671182 Binary files /dev/null and b/assets/pdf/exercises/smr-biceps.pdf differ diff --git a/assets/pdf/exercises/smr-brystmuskel.pdf b/assets/pdf/exercises/smr-brystmuskel.pdf new file mode 100644 index 000000000000..1fbe76cd81e7 Binary files /dev/null and b/assets/pdf/exercises/smr-brystmuskel.pdf differ diff --git a/assets/pdf/exercises/smr-foedder.pdf b/assets/pdf/exercises/smr-foedder.pdf new file mode 100644 index 000000000000..db7816564aa9 Binary files /dev/null and b/assets/pdf/exercises/smr-foedder.pdf differ diff --git a/assets/pdf/exercises/smr-laeg.pdf b/assets/pdf/exercises/smr-laeg.pdf new file mode 100644 index 000000000000..afd3982738c8 Binary files /dev/null and b/assets/pdf/exercises/smr-laeg.pdf differ diff --git a/assets/pdf/exercises/smr-piriformis.pdf b/assets/pdf/exercises/smr-piriformis.pdf new file mode 100644 index 000000000000..948523e21493 Binary files /dev/null and b/assets/pdf/exercises/smr-piriformis.pdf differ diff --git a/assets/pdf/exercises/smr-skulder.pdf b/assets/pdf/exercises/smr-skulder.pdf new file mode 100644 index 000000000000..3b6cf09e11a4 Binary files /dev/null and b/assets/pdf/exercises/smr-skulder.pdf differ diff --git a/assets/pdf/exercises/smr-skulderblad.pdf b/assets/pdf/exercises/smr-skulderblad.pdf new file mode 100644 index 000000000000..de6b7a797aee Binary files /dev/null and b/assets/pdf/exercises/smr-skulderblad.pdf differ diff --git a/assets/pdf/exercises/smr-tensor-fascie-latae.pdf b/assets/pdf/exercises/smr-tensor-fascie-latae.pdf new file mode 100644 index 000000000000..c8205a5c02b6 Binary files /dev/null and b/assets/pdf/exercises/smr-tensor-fascie-latae.pdf differ diff --git a/assets/pdf/exercises/sots-press.pdf b/assets/pdf/exercises/sots-press.pdf new file mode 100644 index 000000000000..d91d4bc694d2 Binary files /dev/null and b/assets/pdf/exercises/sots-press.pdf differ diff --git a/assets/pdf/exercises/spiderman-lunges.pdf b/assets/pdf/exercises/spiderman-lunges.pdf new file mode 100644 index 000000000000..850cc143d72a Binary files /dev/null and b/assets/pdf/exercises/spiderman-lunges.pdf differ diff --git a/assets/pdf/exercises/split-squat.pdf b/assets/pdf/exercises/split-squat.pdf new file mode 100644 index 000000000000..8459b454773d Binary files /dev/null and b/assets/pdf/exercises/split-squat.pdf differ diff --git a/assets/pdf/exercises/spraellemand-paa-stepbaenk.pdf b/assets/pdf/exercises/spraellemand-paa-stepbaenk.pdf new file mode 100644 index 000000000000..e38eb940b982 Binary files /dev/null and b/assets/pdf/exercises/spraellemand-paa-stepbaenk.pdf differ diff --git a/assets/pdf/exercises/spring-hen-over-plint.pdf b/assets/pdf/exercises/spring-hen-over-plint.pdf new file mode 100644 index 000000000000..981692a233da Binary files /dev/null and b/assets/pdf/exercises/spring-hen-over-plint.pdf differ diff --git a/assets/pdf/exercises/sprint-0.pdf b/assets/pdf/exercises/sprint-0.pdf new file mode 100644 index 000000000000..cb23bc898c70 Binary files /dev/null and b/assets/pdf/exercises/sprint-0.pdf differ diff --git a/assets/pdf/exercises/sprint.pdf b/assets/pdf/exercises/sprint.pdf new file mode 100644 index 000000000000..0f0944162166 Binary files /dev/null and b/assets/pdf/exercises/sprint.pdf differ diff --git a/assets/pdf/exercises/squat-and-lunge-complex.pdf b/assets/pdf/exercises/squat-and-lunge-complex.pdf new file mode 100644 index 000000000000..993c1a854f07 Binary files /dev/null and b/assets/pdf/exercises/squat-and-lunge-complex.pdf differ diff --git a/assets/pdf/exercises/squat-med-hop-og-landing-paa-et-ben.pdf b/assets/pdf/exercises/squat-med-hop-og-landing-paa-et-ben.pdf new file mode 100644 index 000000000000..cd684ec7a2e6 Binary files /dev/null and b/assets/pdf/exercises/squat-med-hop-og-landing-paa-et-ben.pdf differ diff --git a/assets/pdf/exercises/squat-med-hop.pdf b/assets/pdf/exercises/squat-med-hop.pdf new file mode 100644 index 000000000000..415cc27b702d Binary files /dev/null and b/assets/pdf/exercises/squat-med-hop.pdf differ diff --git a/assets/pdf/exercises/squat-med-partner.pdf b/assets/pdf/exercises/squat-med-partner.pdf new file mode 100644 index 000000000000..a3f9c64363ec Binary files /dev/null and b/assets/pdf/exercises/squat-med-partner.pdf differ diff --git a/assets/pdf/exercises/squat-med-press.pdf b/assets/pdf/exercises/squat-med-press.pdf new file mode 100644 index 000000000000..197e73798fba Binary files /dev/null and b/assets/pdf/exercises/squat-med-press.pdf differ diff --git a/assets/pdf/exercises/squat-med-stangen-over-hovedet.pdf b/assets/pdf/exercises/squat-med-stangen-over-hovedet.pdf new file mode 100644 index 000000000000..cc1ccb46163f Binary files /dev/null and b/assets/pdf/exercises/squat-med-stangen-over-hovedet.pdf differ diff --git a/assets/pdf/exercises/squat-med-vaegtstang-foran.pdf b/assets/pdf/exercises/squat-med-vaegtstang-foran.pdf new file mode 100644 index 000000000000..e506f2c3ee3c Binary files /dev/null and b/assets/pdf/exercises/squat-med-vaegtstang-foran.pdf differ diff --git "a/assets/pdf/exercises/squat-mobiliserings\303\270velse.pdf" "b/assets/pdf/exercises/squat-mobiliserings\303\270velse.pdf" new file mode 100644 index 000000000000..f3abb36277ae Binary files /dev/null and "b/assets/pdf/exercises/squat-mobiliserings\303\270velse.pdf" differ diff --git a/assets/pdf/exercises/squat-one-arm-kb-rack-position.pdf b/assets/pdf/exercises/squat-one-arm-kb-rack-position.pdf new file mode 100644 index 000000000000..a985ae04c091 Binary files /dev/null and b/assets/pdf/exercises/squat-one-arm-kb-rack-position.pdf differ diff --git a/assets/pdf/exercises/squat-rolling-pistols.pdf b/assets/pdf/exercises/squat-rolling-pistols.pdf new file mode 100644 index 000000000000..f999fdd9d794 Binary files /dev/null and b/assets/pdf/exercises/squat-rolling-pistols.pdf differ diff --git a/assets/pdf/exercises/squat-rolling-standing.pdf b/assets/pdf/exercises/squat-rolling-standing.pdf new file mode 100644 index 000000000000..0793c72cd8ff Binary files /dev/null and b/assets/pdf/exercises/squat-rolling-standing.pdf differ diff --git a/assets/pdf/exercises/squat-vaegt-i-favnen.pdf b/assets/pdf/exercises/squat-vaegt-i-favnen.pdf new file mode 100644 index 000000000000..b8ee7897c277 Binary files /dev/null and b/assets/pdf/exercises/squat-vaegt-i-favnen.pdf differ diff --git a/assets/pdf/exercises/step-front-loaded.pdf b/assets/pdf/exercises/step-front-loaded.pdf new file mode 100644 index 000000000000..12d729b5b9df Binary files /dev/null and b/assets/pdf/exercises/step-front-loaded.pdf differ diff --git a/assets/pdf/exercises/step-out-high-lift-cable.pdf b/assets/pdf/exercises/step-out-high-lift-cable.pdf new file mode 100644 index 000000000000..889679684d3f Binary files /dev/null and b/assets/pdf/exercises/step-out-high-lift-cable.pdf differ diff --git a/assets/pdf/exercises/step.pdf b/assets/pdf/exercises/step.pdf new file mode 100644 index 000000000000..d09ed1fd185c Binary files /dev/null and b/assets/pdf/exercises/step.pdf differ diff --git a/assets/pdf/exercises/stepup-dumbbells.pdf b/assets/pdf/exercises/stepup-dumbbells.pdf new file mode 100644 index 000000000000..6b38a66fe58e Binary files /dev/null and b/assets/pdf/exercises/stepup-dumbbells.pdf differ diff --git a/assets/pdf/exercises/stepup.pdf b/assets/pdf/exercises/stepup.pdf new file mode 100644 index 000000000000..1c3f0959f8bb Binary files /dev/null and b/assets/pdf/exercises/stepup.pdf differ diff --git a/assets/pdf/exercises/stifflegged-traek.pdf b/assets/pdf/exercises/stifflegged-traek.pdf new file mode 100644 index 000000000000..0ce9c6810b7f Binary files /dev/null and b/assets/pdf/exercises/stifflegged-traek.pdf differ diff --git a/assets/pdf/exercises/stir-pot.pdf b/assets/pdf/exercises/stir-pot.pdf new file mode 100644 index 000000000000..ab1cf146fd9f Binary files /dev/null and b/assets/pdf/exercises/stir-pot.pdf differ diff --git a/assets/pdf/exercises/stoed-med-traestub.pdf b/assets/pdf/exercises/stoed-med-traestub.pdf new file mode 100644 index 000000000000..54c6da394eb6 Binary files /dev/null and b/assets/pdf/exercises/stoed-med-traestub.pdf differ diff --git a/assets/pdf/exercises/suitcase-carry.pdf b/assets/pdf/exercises/suitcase-carry.pdf new file mode 100644 index 000000000000..29e44d9c40ca Binary files /dev/null and b/assets/pdf/exercises/suitcase-carry.pdf differ diff --git a/assets/pdf/exercises/sumo-doedloeft.pdf b/assets/pdf/exercises/sumo-doedloeft.pdf new file mode 100644 index 000000000000..2e2b0a8145fc Binary files /dev/null and b/assets/pdf/exercises/sumo-doedloeft.pdf differ diff --git a/assets/pdf/exercises/sumo-squat-med-klud.pdf b/assets/pdf/exercises/sumo-squat-med-klud.pdf new file mode 100644 index 000000000000..eae4d6a5d8b3 Binary files /dev/null and b/assets/pdf/exercises/sumo-squat-med-klud.pdf differ diff --git a/assets/pdf/exercises/supine-bridge-and-reach.pdf b/assets/pdf/exercises/supine-bridge-and-reach.pdf new file mode 100644 index 000000000000..8f6de2adf8a6 Binary files /dev/null and b/assets/pdf/exercises/supine-bridge-and-reach.pdf differ diff --git a/assets/pdf/exercises/sving.pdf b/assets/pdf/exercises/sving.pdf new file mode 100644 index 000000000000..557909838149 Binary files /dev/null and b/assets/pdf/exercises/sving.pdf differ diff --git "a/assets/pdf/exercises/svinge-d\303\246k.pdf" "b/assets/pdf/exercises/svinge-d\303\246k.pdf" new file mode 100644 index 000000000000..f818eff7173d Binary files /dev/null and "b/assets/pdf/exercises/svinge-d\303\246k.pdf" differ diff --git a/assets/pdf/exercises/swing-high-row.pdf b/assets/pdf/exercises/swing-high-row.pdf new file mode 100644 index 000000000000..cfc535d95541 Binary files /dev/null and b/assets/pdf/exercises/swing-high-row.pdf differ diff --git a/assets/pdf/exercises/swiss-ball-curl.pdf b/assets/pdf/exercises/swiss-ball-curl.pdf new file mode 100644 index 000000000000..418a416f5fad Binary files /dev/null and b/assets/pdf/exercises/swiss-ball-curl.pdf differ diff --git a/assets/pdf/exercises/tabata-intervaller.pdf b/assets/pdf/exercises/tabata-intervaller.pdf new file mode 100644 index 000000000000..fdb605eaef65 Binary files /dev/null and b/assets/pdf/exercises/tabata-intervaller.pdf differ diff --git a/assets/pdf/exercises/tall-kneeling-one-arm-press-kettlebell.pdf b/assets/pdf/exercises/tall-kneeling-one-arm-press-kettlebell.pdf new file mode 100644 index 000000000000..5b1ae3ccc0a6 Binary files /dev/null and b/assets/pdf/exercises/tall-kneeling-one-arm-press-kettlebell.pdf differ diff --git a/assets/pdf/exercises/tall-kneeling-overhead-press.pdf b/assets/pdf/exercises/tall-kneeling-overhead-press.pdf new file mode 100644 index 000000000000..9f95df8db85b Binary files /dev/null and b/assets/pdf/exercises/tall-kneeling-overhead-press.pdf differ diff --git a/assets/pdf/exercises/thrusters.pdf b/assets/pdf/exercises/thrusters.pdf new file mode 100644 index 000000000000..10e36d6a1dd2 Binary files /dev/null and b/assets/pdf/exercises/thrusters.pdf differ diff --git a/assets/pdf/exercises/tohaandssving.pdf b/assets/pdf/exercises/tohaandssving.pdf new file mode 100644 index 000000000000..2ed32c85ecd1 Binary files /dev/null and b/assets/pdf/exercises/tohaandssving.pdf differ diff --git a/assets/pdf/exercises/touch-toes.pdf b/assets/pdf/exercises/touch-toes.pdf new file mode 100644 index 000000000000..3090ae7ba0b4 Binary files /dev/null and b/assets/pdf/exercises/touch-toes.pdf differ diff --git a/assets/pdf/exercises/traek-enarms.pdf b/assets/pdf/exercises/traek-enarms.pdf new file mode 100644 index 000000000000..b5a2726524aa Binary files /dev/null and b/assets/pdf/exercises/traek-enarms.pdf differ diff --git a/assets/pdf/exercises/traek-i-rebet.pdf b/assets/pdf/exercises/traek-i-rebet.pdf new file mode 100644 index 000000000000..452517834d70 Binary files /dev/null and b/assets/pdf/exercises/traek-i-rebet.pdf differ diff --git a/assets/pdf/exercises/traek-med-taeerne.pdf b/assets/pdf/exercises/traek-med-taeerne.pdf new file mode 100644 index 000000000000..83e04bf6d1d6 Binary files /dev/null and b/assets/pdf/exercises/traek-med-taeerne.pdf differ diff --git a/assets/pdf/exercises/traek-og-stoed-olympisk.pdf b/assets/pdf/exercises/traek-og-stoed-olympisk.pdf new file mode 100644 index 000000000000..5ee9ce8c73cb Binary files /dev/null and b/assets/pdf/exercises/traek-og-stoed-olympisk.pdf differ diff --git a/assets/pdf/exercises/traek-til-ansigt.pdf b/assets/pdf/exercises/traek-til-ansigt.pdf new file mode 100644 index 000000000000..af0cd602acf5 Binary files /dev/null and b/assets/pdf/exercises/traek-til-ansigt.pdf differ diff --git a/assets/pdf/exercises/traek-til-bryst.pdf b/assets/pdf/exercises/traek-til-bryst.pdf new file mode 100644 index 000000000000..2af9851cd6c6 Binary files /dev/null and b/assets/pdf/exercises/traek-til-bryst.pdf differ diff --git a/assets/pdf/exercises/traek-til-nakke.pdf b/assets/pdf/exercises/traek-til-nakke.pdf new file mode 100644 index 000000000000..29f42ce29e87 Binary files /dev/null and b/assets/pdf/exercises/traek-til-nakke.pdf differ diff --git "a/assets/pdf/exercises/trappel\303\270b.pdf" "b/assets/pdf/exercises/trappel\303\270b.pdf" new file mode 100644 index 000000000000..8b7215fbd41b Binary files /dev/null and "b/assets/pdf/exercises/trappel\303\270b.pdf" differ diff --git a/assets/pdf/exercises/triceps-fransk-pres.pdf b/assets/pdf/exercises/triceps-fransk-pres.pdf new file mode 100644 index 000000000000..f01e00987533 Binary files /dev/null and b/assets/pdf/exercises/triceps-fransk-pres.pdf differ diff --git a/assets/pdf/exercises/triceps-liggende.pdf b/assets/pdf/exercises/triceps-liggende.pdf new file mode 100644 index 000000000000..3d38ad6c1ee3 Binary files /dev/null and b/assets/pdf/exercises/triceps-liggende.pdf differ diff --git a/assets/pdf/exercises/trilleboer.pdf b/assets/pdf/exercises/trilleboer.pdf new file mode 100644 index 000000000000..57fe0815e0fc Binary files /dev/null and b/assets/pdf/exercises/trilleboer.pdf differ diff --git a/assets/pdf/exercises/trx-bodyrows.pdf b/assets/pdf/exercises/trx-bodyrows.pdf new file mode 100644 index 000000000000..612ad2ed34d7 Binary files /dev/null and b/assets/pdf/exercises/trx-bodyrows.pdf differ diff --git a/assets/pdf/exercises/trx-y.pdf b/assets/pdf/exercises/trx-y.pdf new file mode 100644 index 000000000000..066f3c916fa6 Binary files /dev/null and b/assets/pdf/exercises/trx-y.pdf differ diff --git a/assets/pdf/exercises/tuck-jumps.pdf b/assets/pdf/exercises/tuck-jumps.pdf new file mode 100644 index 000000000000..1545a4d88e28 Binary files /dev/null and b/assets/pdf/exercises/tuck-jumps.pdf differ diff --git a/assets/pdf/exercises/turkish-getup.pdf b/assets/pdf/exercises/turkish-getup.pdf new file mode 100644 index 000000000000..fc893927f030 Binary files /dev/null and b/assets/pdf/exercises/turkish-getup.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-baglaar-og-laeg.pdf b/assets/pdf/exercises/udstraekning-af-baglaar-og-laeg.pdf new file mode 100644 index 000000000000..f7b4c25436f8 Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-baglaar-og-laeg.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-bryst.pdf b/assets/pdf/exercises/udstraekning-af-bryst.pdf new file mode 100644 index 000000000000..7cd545e8abcd Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-bryst.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-forlaar.pdf b/assets/pdf/exercises/udstraekning-af-forlaar.pdf new file mode 100644 index 000000000000..32c50e09824c Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-forlaar.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-hasemusklen-og-laeg.pdf b/assets/pdf/exercises/udstraekning-af-hasemusklen-og-laeg.pdf new file mode 100644 index 000000000000..771c3acf1596 Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-hasemusklen-og-laeg.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-inderlaar-og-lyske.pdf b/assets/pdf/exercises/udstraekning-af-inderlaar-og-lyske.pdf new file mode 100644 index 000000000000..77707f813b6d Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-inderlaar-og-lyske.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-ryg-og-mave.pdf b/assets/pdf/exercises/udstraekning-af-ryg-og-mave.pdf new file mode 100644 index 000000000000..065b5bead936 Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-ryg-og-mave.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-rygmusklerne.pdf b/assets/pdf/exercises/udstraekning-af-rygmusklerne.pdf new file mode 100644 index 000000000000..9570bad35e09 Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-rygmusklerne.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-saedemusklen.pdf b/assets/pdf/exercises/udstraekning-af-saedemusklen.pdf new file mode 100644 index 000000000000..444c653dbe1b Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-saedemusklen.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-skulder.pdf b/assets/pdf/exercises/udstraekning-af-skulder.pdf new file mode 100644 index 000000000000..f63315e498dd Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-skulder.pdf differ diff --git a/assets/pdf/exercises/udstraekning-af-triceps.pdf b/assets/pdf/exercises/udstraekning-af-triceps.pdf new file mode 100644 index 000000000000..172f77f8bbd8 Binary files /dev/null and b/assets/pdf/exercises/udstraekning-af-triceps.pdf differ diff --git a/assets/pdf/exercises/upright-rows.pdf b/assets/pdf/exercises/upright-rows.pdf new file mode 100644 index 000000000000..db82a5c2aa48 Binary files /dev/null and b/assets/pdf/exercises/upright-rows.pdf differ diff --git a/assets/pdf/exercises/v-ups.pdf b/assets/pdf/exercises/v-ups.pdf new file mode 100644 index 000000000000..2843ac7425bb Binary files /dev/null and b/assets/pdf/exercises/v-ups.pdf differ diff --git a/assets/pdf/exercises/vaegtskive-rundt-om-hovedet.pdf b/assets/pdf/exercises/vaegtskive-rundt-om-hovedet.pdf new file mode 100644 index 000000000000..df14130c6068 Binary files /dev/null and b/assets/pdf/exercises/vaegtskive-rundt-om-hovedet.pdf differ diff --git a/assets/pdf/exercises/vandret-kropshaevning.pdf b/assets/pdf/exercises/vandret-kropshaevning.pdf new file mode 100644 index 000000000000..f9bd450cd907 Binary files /dev/null and b/assets/pdf/exercises/vandret-kropshaevning.pdf differ diff --git a/assets/pdf/exercises/vandret-roning-supineret.pdf b/assets/pdf/exercises/vandret-roning-supineret.pdf new file mode 100644 index 000000000000..b37932828e23 Binary files /dev/null and b/assets/pdf/exercises/vandret-roning-supineret.pdf differ diff --git a/assets/pdf/exercises/varm.pdf b/assets/pdf/exercises/varm.pdf new file mode 100644 index 000000000000..1b7a371bc6d6 Binary files /dev/null and b/assets/pdf/exercises/varm.pdf differ diff --git a/assets/pdf/exercises/vend-et-daek.pdf b/assets/pdf/exercises/vend-et-daek.pdf new file mode 100644 index 000000000000..b6d02b86c45d Binary files /dev/null and b/assets/pdf/exercises/vend-et-daek.pdf differ diff --git "a/assets/pdf/exercises/vende-h\303\245ndfladerne.pdf" "b/assets/pdf/exercises/vende-h\303\245ndfladerne.pdf" new file mode 100644 index 000000000000..d369410a7b9a Binary files /dev/null and "b/assets/pdf/exercises/vende-h\303\245ndfladerne.pdf" differ diff --git a/assets/pdf/exercises/victory-raise.pdf b/assets/pdf/exercises/victory-raise.pdf new file mode 100644 index 000000000000..07fdada1fab9 Binary files /dev/null and b/assets/pdf/exercises/victory-raise.pdf differ diff --git a/assets/pdf/exercises/vug-paa-ryggen-benspark-op-kom-op-og-staa.pdf b/assets/pdf/exercises/vug-paa-ryggen-benspark-op-kom-op-og-staa.pdf new file mode 100644 index 000000000000..224efe622a2b Binary files /dev/null and b/assets/pdf/exercises/vug-paa-ryggen-benspark-op-kom-op-og-staa.pdf differ diff --git a/assets/pdf/exercises/vug-paa-ryggen-med-benspark-op.pdf b/assets/pdf/exercises/vug-paa-ryggen-med-benspark-op.pdf new file mode 100644 index 000000000000..c79d1624237a Binary files /dev/null and b/assets/pdf/exercises/vug-paa-ryggen-med-benspark-op.pdf differ diff --git a/assets/pdf/exercises/vug-paa-ryggen-med-frie-haender.pdf b/assets/pdf/exercises/vug-paa-ryggen-med-frie-haender.pdf new file mode 100644 index 000000000000..66f03597625d Binary files /dev/null and b/assets/pdf/exercises/vug-paa-ryggen-med-frie-haender.pdf differ diff --git a/assets/pdf/exercises/vug-paa-ryggen-op-og-staa.pdf b/assets/pdf/exercises/vug-paa-ryggen-op-og-staa.pdf new file mode 100644 index 000000000000..3e291d3e8a47 Binary files /dev/null and b/assets/pdf/exercises/vug-paa-ryggen-op-og-staa.pdf differ diff --git a/assets/pdf/exercises/waiter-walk.pdf b/assets/pdf/exercises/waiter-walk.pdf new file mode 100644 index 000000000000..e8e8a92ff3e0 Binary files /dev/null and b/assets/pdf/exercises/waiter-walk.pdf differ diff --git a/assets/pdf/exercises/walking-lunges.pdf b/assets/pdf/exercises/walking-lunges.pdf new file mode 100644 index 000000000000..e4de4638fa39 Binary files /dev/null and b/assets/pdf/exercises/walking-lunges.pdf differ diff --git a/assets/pdf/exercises/walking-spiderman-hip-lift-and-overhead-reach.pdf b/assets/pdf/exercises/walking-spiderman-hip-lift-and-overhead-reach.pdf new file mode 100644 index 000000000000..48f44b62a103 Binary files /dev/null and b/assets/pdf/exercises/walking-spiderman-hip-lift-and-overhead-reach.pdf differ diff --git a/assets/pdf/exercises/wall-climber.pdf b/assets/pdf/exercises/wall-climber.pdf new file mode 100644 index 000000000000..13c5febbaaf4 Binary files /dev/null and b/assets/pdf/exercises/wall-climber.pdf differ diff --git a/assets/pdf/exercises/wall-hip-flexor.pdf b/assets/pdf/exercises/wall-hip-flexor.pdf new file mode 100644 index 000000000000..01c4d83162c7 Binary files /dev/null and b/assets/pdf/exercises/wall-hip-flexor.pdf differ diff --git a/assets/pdf/exercises/wall-slides.pdf b/assets/pdf/exercises/wall-slides.pdf new file mode 100644 index 000000000000..7152b16ca644 Binary files /dev/null and b/assets/pdf/exercises/wall-slides.pdf differ diff --git a/assets/pdf/exercises/x-band-walks.pdf b/assets/pdf/exercises/x-band-walks.pdf new file mode 100644 index 000000000000..09a24caf79ae Binary files /dev/null and b/assets/pdf/exercises/x-band-walks.pdf differ