physical.ts 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359
  1. import { ITraining } from './src/training/types'
  2. const data: { trainings: ITraining[]; polls: any } = {
  3. trainings: [
  4. {
  5. id: 'training0',
  6. title: 'Circuit 2',
  7. type: {
  8. id: 'type0',
  9. name: 'HIIT',
  10. description: 'High intensity interval training.',
  11. },
  12. createdAt: '2020-04-21T21:13:43.284Z',
  13. trainingDate: '2020-04-22T09:45:00.000Z',
  14. location: 'At home',
  15. registrations: [],
  16. attendance: 0,
  17. ratings: [],
  18. published: true,
  19. blocks: [
  20. {
  21. id: 'block1',
  22. sequence: 0,
  23. title: 'Physical',
  24. repetitions: 1,
  25. rest: 90,
  26. video: '/media/physical.mp4',
  27. format: {
  28. id: 'format0',
  29. name: 'Sequence',
  30. description: 'Sequence of exercises',
  31. },
  32. blocks: [
  33. {
  34. id: 'block4',
  35. duration: 13,
  36. exercises: [
  37. {
  38. id: 'exercise1',
  39. name: 'Setup',
  40. repetitions: 1,
  41. description: '',
  42. videos: [],
  43. pictures: [],
  44. targets: ['Thighs', 'Glutes'],
  45. baseExercise: {
  46. id: 'baseExercise1',
  47. name: 'Squat',
  48. },
  49. },
  50. ],
  51. },
  52. {
  53. id: 'block1',
  54. duration: 26,
  55. description: '',
  56. exercises: [
  57. {
  58. id: 'exercise1',
  59. name: 'Pushup',
  60. repetitions: 4,
  61. description: '',
  62. videos: [],
  63. pictures: [],
  64. targets: ['Thighs', 'Glutes'],
  65. baseExercise: {
  66. id: 'baseExercise1',
  67. name: 'Squat',
  68. },
  69. },
  70. {
  71. id: 'exercise1',
  72. name: 'Shoulder-tap plank',
  73. repetitions: 4,
  74. description: '',
  75. videos: [],
  76. pictures: [],
  77. targets: ['Thighs', 'Glutes'],
  78. baseExercise: {
  79. id: 'baseExercise1',
  80. name: 'Squat',
  81. },
  82. },
  83. ],
  84. },
  85. {
  86. id: 'block2',
  87. duration: 26,
  88. description: '',
  89. exercises: [
  90. {
  91. id: 'exercise1',
  92. name: 'Slow mountain climber',
  93. repetitions: 4,
  94. description: '',
  95. videos: [],
  96. pictures: [],
  97. targets: ['Thighs', 'Glutes'],
  98. baseExercise: {
  99. id: 'baseExercise1',
  100. name: 'Squat',
  101. },
  102. },
  103. {
  104. id: 'exercise1',
  105. name: 'Side climber',
  106. repetitions: 4,
  107. description: '',
  108. videos: [],
  109. pictures: [],
  110. targets: ['Thighs', 'Glutes'],
  111. baseExercise: {
  112. id: 'baseExercise1',
  113. name: 'Squat',
  114. },
  115. },
  116. ],
  117. },
  118. {
  119. id: 'block3',
  120. duration: 42,
  121. description: 'The same excercises, just faster!',
  122. exercises: [
  123. {
  124. id: 'exercise1',
  125. name: 'Pushup',
  126. repetitions: 4,
  127. description: '',
  128. videos: [],
  129. pictures: [],
  130. targets: ['Thighs', 'Glutes'],
  131. baseExercise: {
  132. id: 'baseExercise1',
  133. name: 'Squat',
  134. },
  135. },
  136. {
  137. id: 'exercise1',
  138. name: 'Shoulder-tap',
  139. repetitions: 4,
  140. description: '',
  141. videos: [],
  142. pictures: [],
  143. targets: ['Thighs', 'Glutes'],
  144. baseExercise: {
  145. id: 'baseExercise1',
  146. name: 'Squat',
  147. },
  148. },
  149. {
  150. id: 'exercise1',
  151. name: 'Mountain climber',
  152. repetitions: 4,
  153. description: '',
  154. videos: [],
  155. pictures: [],
  156. targets: ['Thighs', 'Glutes'],
  157. baseExercise: {
  158. id: 'baseExercise1',
  159. name: 'Squat',
  160. },
  161. },
  162. {
  163. id: 'exercise1',
  164. name: 'Side climber',
  165. repetitions: 4,
  166. description: '',
  167. videos: [],
  168. pictures: [],
  169. targets: ['Thighs', 'Glutes'],
  170. baseExercise: {
  171. id: 'baseExercise1',
  172. name: 'Squat',
  173. },
  174. },
  175. ],
  176. },
  177. {
  178. id: 'block4',
  179. duration: 14,
  180. description: 'Stay low on the squat',
  181. exercises: [
  182. {
  183. id: 'exercise1',
  184. name: 'Squat pulses',
  185. repetitions: 4,
  186. description: '',
  187. videos: [],
  188. pictures: [],
  189. targets: ['Thighs', 'Glutes'],
  190. baseExercise: {
  191. id: 'baseExercise1',
  192. name: 'Squat',
  193. },
  194. },
  195. ],
  196. },
  197. {
  198. id: 'block4',
  199. duration: 16,
  200. description: 'Stay low on the squat',
  201. exercises: [
  202. {
  203. id: 'exercise1',
  204. name: 'Squat pulses with jump',
  205. repetitions: 4,
  206. description: '',
  207. videos: [],
  208. pictures: [],
  209. targets: ['Thighs', 'Glutes'],
  210. baseExercise: {
  211. id: 'baseExercise1',
  212. name: 'Squat',
  213. },
  214. },
  215. ],
  216. },
  217. {
  218. id: 'block5',
  219. duration: 26,
  220. exercises: [
  221. {
  222. id: 'exercise1',
  223. name: 'Ice skater',
  224. repetitions: 8,
  225. description: '',
  226. videos: [],
  227. pictures: [],
  228. targets: ['Thighs', 'Glutes'],
  229. baseExercise: {
  230. id: 'baseExercise1',
  231. name: 'Squat',
  232. },
  233. },
  234. {
  235. id: 'exercise1',
  236. name: 'Rotation jump squat',
  237. repetitions: 4,
  238. description: '',
  239. videos: [],
  240. pictures: [],
  241. targets: ['Thighs', 'Glutes'],
  242. baseExercise: {
  243. id: 'baseExercise1',
  244. name: 'Squat',
  245. },
  246. },
  247. ],
  248. },
  249. {
  250. id: 'block5',
  251. duration: 16,
  252. description: '10 second speed challenge!',
  253. exercises: [
  254. {
  255. id: 'exercise1',
  256. name: 'Ice skater',
  257. repetitions: 8,
  258. description: '',
  259. videos: [],
  260. pictures: [],
  261. targets: ['Thighs', 'Glutes'],
  262. baseExercise: {
  263. id: 'baseExercise1',
  264. name: 'Squat',
  265. },
  266. },
  267. {
  268. id: 'exercise1',
  269. name: 'Rotation jump squat',
  270. repetitions: 4,
  271. description: '',
  272. videos: [],
  273. pictures: [],
  274. targets: ['Thighs', 'Glutes'],
  275. baseExercise: {
  276. id: 'baseExercise1',
  277. name: 'Squat',
  278. },
  279. },
  280. ],
  281. },
  282. {
  283. id: 'block4',
  284. duration: 13,
  285. description: 'Stay low on the squat',
  286. exercises: [
  287. {
  288. id: 'exercise1',
  289. name: 'Squat pulses',
  290. repetitions: 4,
  291. description: '',
  292. videos: [],
  293. pictures: [],
  294. targets: ['Thighs', 'Glutes'],
  295. baseExercise: {
  296. id: 'baseExercise1',
  297. name: 'Squat',
  298. },
  299. },
  300. ],
  301. },
  302. {
  303. id: 'block4',
  304. duration: 13,
  305. description: 'Stay low on the squat',
  306. exercises: [
  307. {
  308. id: 'exercise1',
  309. name: 'Squat pulses with jump',
  310. repetitions: 4,
  311. description: '',
  312. videos: [],
  313. pictures: [],
  314. targets: ['Thighs', 'Glutes'],
  315. baseExercise: {
  316. id: 'baseExercise1',
  317. name: 'Squat',
  318. },
  319. },
  320. ],
  321. },
  322. {
  323. id: 'block5',
  324. duration: 26,
  325. exercises: [
  326. {
  327. id: 'exercise1',
  328. name: 'Pushup',
  329. repetitions: 4,
  330. description: '',
  331. videos: [],
  332. pictures: [],
  333. targets: ['Thighs', 'Glutes'],
  334. baseExercise: {
  335. id: 'baseExercise1',
  336. name: 'Squat',
  337. },
  338. },
  339. {
  340. id: 'exercise1',
  341. name: 'Side climber',
  342. repetitions: 4,
  343. description: '',
  344. videos: [],
  345. pictures: [],
  346. targets: ['Thighs', 'Glutes'],
  347. baseExercise: {
  348. id: 'baseExercise1',
  349. name: 'Squat',
  350. },
  351. },
  352. ],
  353. },
  354. {
  355. id: 'block5',
  356. duration: 43,
  357. description: '40 second speed challenge!',
  358. exercises: [
  359. {
  360. id: 'exercise1',
  361. name: 'Mountain climber',
  362. repetitions: 8,
  363. description: '',
  364. videos: [],
  365. pictures: [],
  366. targets: ['Thighs', 'Glutes'],
  367. baseExercise: {
  368. id: 'baseExercise1',
  369. name: 'Squat',
  370. },
  371. },
  372. ],
  373. },
  374. {
  375. id: 'block6',
  376. duration: 26,
  377. exercises: [
  378. {
  379. id: 'exercise1',
  380. name: 'Lunge L/R',
  381. repetitions: 1,
  382. description: '',
  383. videos: [],
  384. pictures: [],
  385. targets: ['Thighs', 'Glutes'],
  386. baseExercise: {
  387. id: 'baseExercise1',
  388. name: 'Squat',
  389. },
  390. },
  391. ],
  392. },
  393. {
  394. id: 'block7',
  395. duration: 32,
  396. exercises: [
  397. {
  398. id: 'exercise1',
  399. name: 'Burpee',
  400. repetitions: 1,
  401. description: '',
  402. videos: [],
  403. pictures: [],
  404. targets: ['Thighs', 'Glutes'],
  405. baseExercise: {
  406. id: 'baseExercise1',
  407. name: 'Squat',
  408. },
  409. },
  410. {
  411. id: 'exercise1',
  412. name: 'Tuck jump',
  413. repetitions: 2,
  414. description: '',
  415. videos: [],
  416. pictures: [],
  417. targets: ['Thighs', 'Glutes'],
  418. baseExercise: {
  419. id: 'baseExercise1',
  420. name: 'Squat',
  421. },
  422. },
  423. {
  424. id: 'exercise1',
  425. name: 'High knees',
  426. repetitions: 8,
  427. description: '',
  428. videos: [],
  429. pictures: [],
  430. targets: ['Thighs', 'Glutes'],
  431. baseExercise: {
  432. id: 'baseExercise1',
  433. name: 'Squat',
  434. },
  435. },
  436. ],
  437. },
  438. {
  439. id: 'block6',
  440. duration: 20,
  441. exercises: [
  442. {
  443. id: 'exercise1',
  444. name: 'Lunge L/R',
  445. repetitions: 1,
  446. description: '',
  447. videos: [],
  448. pictures: [],
  449. targets: ['Thighs', 'Glutes'],
  450. baseExercise: {
  451. id: 'baseExercise1',
  452. name: 'Squat',
  453. },
  454. },
  455. ],
  456. },
  457. {
  458. id: 'block7',
  459. duration: 39,
  460. exercises: [
  461. {
  462. id: 'exercise1',
  463. name: 'Burpee',
  464. repetitions: 1,
  465. description: '',
  466. videos: [],
  467. pictures: [],
  468. targets: ['Thighs', 'Glutes'],
  469. baseExercise: {
  470. id: 'baseExercise1',
  471. name: 'Squat',
  472. },
  473. },
  474. {
  475. id: 'exercise1',
  476. name: 'Tuck jump',
  477. repetitions: 2,
  478. description: '',
  479. videos: [],
  480. pictures: [],
  481. targets: ['Thighs', 'Glutes'],
  482. baseExercise: {
  483. id: 'baseExercise1',
  484. name: 'Squat',
  485. },
  486. },
  487. {
  488. id: 'exercise1',
  489. name: 'High knees',
  490. repetitions: 8,
  491. description: '',
  492. videos: [],
  493. pictures: [],
  494. targets: ['Thighs', 'Glutes'],
  495. baseExercise: {
  496. id: 'baseExercise1',
  497. name: 'Squat',
  498. },
  499. },
  500. ],
  501. },
  502. {
  503. id: 'block7',
  504. duration: 15,
  505. description: '15 second finisher',
  506. exercises: [
  507. {
  508. id: 'exercise1',
  509. name: 'Burpee',
  510. repetitions: 1,
  511. description: '',
  512. videos: [],
  513. pictures: [],
  514. targets: ['Thighs', 'Glutes'],
  515. baseExercise: {
  516. id: 'baseExercise1',
  517. name: 'Squat',
  518. },
  519. },
  520. {
  521. id: 'exercise1',
  522. name: 'High knees',
  523. repetitions: 4,
  524. description: '',
  525. videos: [],
  526. pictures: [],
  527. targets: ['Thighs', 'Glutes'],
  528. baseExercise: {
  529. id: 'baseExercise1',
  530. name: 'Squat',
  531. },
  532. },
  533. ],
  534. },
  535. {
  536. id: 'block7',
  537. duration: 4,
  538. exercises: [
  539. {
  540. id: 'exercise1',
  541. name: 'Rest!',
  542. repetitions: 1,
  543. description: '',
  544. videos: [],
  545. pictures: [],
  546. targets: ['Thighs', 'Glutes'],
  547. baseExercise: {
  548. id: 'baseExercise1',
  549. name: 'Squat',
  550. },
  551. },
  552. ],
  553. },
  554. ],
  555. },
  556. {
  557. id: 'block0',
  558. sequence: 0,
  559. title: 'Circuit',
  560. repetitions: 2,
  561. rest: 60,
  562. format: {
  563. id: 'format0',
  564. name: 'Sequence',
  565. description: 'Sequence of exercises',
  566. },
  567. blocks: [
  568. {
  569. id: 'block1',
  570. duration: 45,
  571. rest: 15,
  572. video: '/media/russian_twist.mp4',
  573. exercises: [
  574. {
  575. id: 'exercise0',
  576. name: 'Russian twist',
  577. repetitions: 4,
  578. description: '',
  579. videos: [],
  580. pictures: [],
  581. targets: [],
  582. baseExercise: {
  583. id: 'baseExercise1',
  584. name: 'Jog on the spot',
  585. },
  586. },
  587. {
  588. id: 'exercise0',
  589. name: 'Bicycle leg extension',
  590. repetitions: 1,
  591. description: '',
  592. videos: [],
  593. pictures: [],
  594. targets: [],
  595. baseExercise: {
  596. id: 'baseExercise1',
  597. name: 'Jog on the spot',
  598. },
  599. },
  600. ],
  601. },
  602. {
  603. id: 'block2',
  604. duration: 45,
  605. rest: 15,
  606. video: '/media/bicep_curl.mp4',
  607. exercises: [
  608. {
  609. id: 'exercise1',
  610. name: 'Bicep curl',
  611. repetitions: 1,
  612. description:
  613. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  614. videos: [],
  615. pictures: [],
  616. targets: ['Thighs', 'Glutes'],
  617. baseExercise: {
  618. id: 'baseExercise1',
  619. name: 'Squat',
  620. },
  621. },
  622. ],
  623. },
  624. {
  625. id: 'block3',
  626. duration: 45,
  627. rest: 15,
  628. description: '',
  629. video: '/media/side_plank.mp4',
  630. exercises: [
  631. {
  632. id: 'exercise1',
  633. name: 'Side plank',
  634. repetitions: 1,
  635. description:
  636. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  637. videos: [],
  638. pictures: [],
  639. targets: ['Thighs', 'Glutes'],
  640. baseExercise: {
  641. id: 'baseExercise1',
  642. name: 'Squat',
  643. },
  644. },
  645. ],
  646. },
  647. {
  648. id: 'block4',
  649. duration: 45,
  650. rest: 15,
  651. video: '/media/swimmer.mp4',
  652. exercises: [
  653. {
  654. id: 'exercise1',
  655. name: 'Swimmer',
  656. repetitions: 8,
  657. description:
  658. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  659. videos: [],
  660. pictures: [],
  661. targets: ['Thighs', 'Glutes'],
  662. baseExercise: {
  663. id: 'baseExercise1',
  664. name: 'Squat',
  665. },
  666. },
  667. {
  668. id: 'exercise1',
  669. name: 'Static superman',
  670. repetitions: 1,
  671. description:
  672. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  673. videos: [],
  674. pictures: [],
  675. targets: ['Thighs', 'Glutes'],
  676. baseExercise: {
  677. id: 'baseExercise1',
  678. name: 'Squat',
  679. },
  680. },
  681. ],
  682. },
  683. {
  684. id: 'block5',
  685. duration: 45,
  686. rest: 15,
  687. video: '/media/drop_legextension.mp4',
  688. exercises: [
  689. {
  690. id: 'exercise1',
  691. name: 'Side drop leg extension',
  692. repetitions: 1,
  693. description:
  694. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  695. videos: [],
  696. pictures: [],
  697. targets: ['Thighs', 'Glutes'],
  698. baseExercise: {
  699. id: 'baseExercise1',
  700. name: 'Squat',
  701. },
  702. },
  703. ],
  704. },
  705. {
  706. id: 'block6',
  707. duration: 45,
  708. rest: 15,
  709. video: '/media/side_touch_lunges.mp4',
  710. exercises: [
  711. {
  712. id: 'exercise1',
  713. name: 'Side touch lunges',
  714. repetitions: 4,
  715. description:
  716. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  717. videos: [],
  718. pictures: [],
  719. targets: ['Thighs', 'Glutes'],
  720. baseExercise: {
  721. id: 'baseExercise1',
  722. name: 'Squat',
  723. },
  724. },
  725. {
  726. id: 'exercise1',
  727. name: 'Surfer jumps',
  728. repetitions: 4,
  729. description:
  730. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  731. videos: [],
  732. pictures: [],
  733. targets: ['Thighs', 'Glutes'],
  734. baseExercise: {
  735. id: 'baseExercise1',
  736. name: 'Squat',
  737. },
  738. },
  739. ],
  740. },
  741. ],
  742. },
  743. {
  744. id: 'block0',
  745. sequence: 0,
  746. title: 'Shoulder Training',
  747. repetitions: 1,
  748. video: '/media/goeslikethis.mp4',
  749. rest: 60,
  750. format: {
  751. id: 'format0',
  752. name: 'Challenge',
  753. description: 'Finish 6 repetitions and earn a break.',
  754. },
  755. blocks: [
  756. {
  757. id: 'block4',
  758. duration: 14,
  759. exercises: [
  760. {
  761. id: 'exercise1',
  762. name: 'Setup',
  763. repetitions: 1,
  764. description: '',
  765. videos: [],
  766. pictures: [],
  767. targets: ['Thighs', 'Glutes'],
  768. baseExercise: {
  769. id: 'baseExercise1',
  770. name: 'Squat',
  771. },
  772. },
  773. ],
  774. },
  775. {
  776. id: 'block1',
  777. duration: 29,
  778. description: 'Start slowly',
  779. exercises: [
  780. {
  781. id: 'exercise1',
  782. name: 'Side raise',
  783. repetitions: 4,
  784. description: '',
  785. videos: [],
  786. pictures: [],
  787. targets: ['Thighs', 'Glutes'],
  788. baseExercise: {
  789. id: 'baseExercise1',
  790. name: 'Squat',
  791. },
  792. },
  793. {
  794. id: 'exercise1',
  795. name: 'Front raise',
  796. repetitions: 4,
  797. description: '',
  798. videos: [],
  799. pictures: [],
  800. targets: ['Thighs', 'Glutes'],
  801. baseExercise: {
  802. id: 'baseExercise1',
  803. name: 'Squat',
  804. },
  805. },
  806. ],
  807. },
  808. {
  809. id: 'block1',
  810. duration: 29,
  811. description: 'A bit quicker',
  812. exercises: [
  813. {
  814. id: 'exercise1',
  815. name: 'Side raise',
  816. repetitions: 2,
  817. description: '',
  818. videos: [],
  819. pictures: [],
  820. targets: ['Thighs', 'Glutes'],
  821. baseExercise: {
  822. id: 'baseExercise1',
  823. name: 'Squat',
  824. },
  825. },
  826. {
  827. id: 'exercise1',
  828. name: 'Front raise',
  829. repetitions: 2,
  830. description: '',
  831. videos: [],
  832. pictures: [],
  833. targets: ['Thighs', 'Glutes'],
  834. baseExercise: {
  835. id: 'baseExercise1',
  836. name: 'Squat',
  837. },
  838. },
  839. ],
  840. },
  841. {
  842. id: 'block2',
  843. duration: 15,
  844. description: '',
  845. exercises: [
  846. {
  847. id: 'exercise1',
  848. name: 'Rear deltoid fly',
  849. repetitions: 1,
  850. description: '',
  851. videos: [],
  852. pictures: [],
  853. targets: ['Thighs', 'Glutes'],
  854. baseExercise: {
  855. id: 'baseExercise1',
  856. name: 'Squat',
  857. },
  858. },
  859. ],
  860. },
  861. {
  862. id: 'block2',
  863. duration: 15,
  864. description: '',
  865. exercises: [
  866. {
  867. id: 'exercise1',
  868. name: 'Rear deltoid fly',
  869. repetitions: 3,
  870. description: '',
  871. videos: [],
  872. pictures: [],
  873. targets: ['Thighs', 'Glutes'],
  874. baseExercise: {
  875. id: 'baseExercise1',
  876. name: 'Squat',
  877. },
  878. },
  879. ],
  880. },
  881. {
  882. id: 'block2',
  883. duration: 14,
  884. description: '',
  885. exercises: [
  886. {
  887. id: 'exercise1',
  888. name: 'Rear deltoid fly',
  889. repetitions: 7,
  890. description: '',
  891. videos: [],
  892. pictures: [],
  893. targets: ['Thighs', 'Glutes'],
  894. baseExercise: {
  895. id: 'baseExercise1',
  896. name: 'Squat',
  897. },
  898. },
  899. ],
  900. },
  901. {
  902. id: 'block2',
  903. duration: 14,
  904. description: '',
  905. exercises: [
  906. {
  907. id: 'exercise1',
  908. name: 'Slow side raise',
  909. repetitions: 2,
  910. description: '',
  911. videos: [],
  912. pictures: [],
  913. targets: ['Thighs', 'Glutes'],
  914. baseExercise: {
  915. id: 'baseExercise1',
  916. name: 'Squat',
  917. },
  918. },
  919. ],
  920. },
  921. {
  922. id: 'block3',
  923. duration: 59,
  924. exercises: [
  925. {
  926. id: 'exercise1',
  927. name: 'Rotator raise',
  928. repetitions: 2,
  929. description: '',
  930. videos: [],
  931. pictures: [],
  932. targets: ['Thighs', 'Glutes'],
  933. baseExercise: {
  934. id: 'baseExercise1',
  935. name: 'Squat',
  936. },
  937. },
  938. {
  939. id: 'exercise1',
  940. name: 'Front raise',
  941. repetitions: 4,
  942. description: '',
  943. videos: [],
  944. pictures: [],
  945. targets: ['Thighs', 'Glutes'],
  946. baseExercise: {
  947. id: 'baseExercise1',
  948. name: 'Squat',
  949. },
  950. },
  951. ],
  952. },
  953. {
  954. id: 'block2',
  955. duration: 15,
  956. description: '',
  957. exercises: [
  958. {
  959. id: 'exercise1',
  960. name: 'Rear deltoid fly',
  961. repetitions: 1,
  962. description: '',
  963. videos: [],
  964. pictures: [],
  965. targets: ['Thighs', 'Glutes'],
  966. baseExercise: {
  967. id: 'baseExercise1',
  968. name: 'Squat',
  969. },
  970. },
  971. ],
  972. },
  973. {
  974. id: 'block2',
  975. duration: 15,
  976. description: '',
  977. exercises: [
  978. {
  979. id: 'exercise1',
  980. name: 'Rear deltoid fly',
  981. repetitions: 3,
  982. description: '',
  983. videos: [],
  984. pictures: [],
  985. targets: ['Thighs', 'Glutes'],
  986. baseExercise: {
  987. id: 'baseExercise1',
  988. name: 'Squat',
  989. },
  990. },
  991. ],
  992. },
  993. {
  994. id: 'block2',
  995. duration: 14,
  996. description: '',
  997. exercises: [
  998. {
  999. id: 'exercise1',
  1000. name: 'Rear deltoid fly',
  1001. repetitions: 7,
  1002. description: '',
  1003. videos: [],
  1004. pictures: [],
  1005. targets: ['Thighs', 'Glutes'],
  1006. baseExercise: {
  1007. id: 'baseExercise1',
  1008. name: 'Squat',
  1009. },
  1010. },
  1011. ],
  1012. },
  1013. {
  1014. id: 'block2',
  1015. duration: 14,
  1016. description: '',
  1017. exercises: [
  1018. {
  1019. id: 'exercise1',
  1020. name: 'Slow side raise',
  1021. repetitions: 2,
  1022. description: '',
  1023. videos: [],
  1024. pictures: [],
  1025. targets: ['Thighs', 'Glutes'],
  1026. baseExercise: {
  1027. id: 'baseExercise1',
  1028. name: 'Squat',
  1029. },
  1030. },
  1031. ],
  1032. },
  1033. {
  1034. id: 'block3',
  1035. duration: 59,
  1036. exercises: [
  1037. {
  1038. id: 'exercise1',
  1039. name: 'Rotator raise',
  1040. repetitions: 2,
  1041. description: '',
  1042. videos: [],
  1043. pictures: [],
  1044. targets: ['Thighs', 'Glutes'],
  1045. baseExercise: {
  1046. id: 'baseExercise1',
  1047. name: 'Squat',
  1048. },
  1049. },
  1050. {
  1051. id: 'exercise1',
  1052. name: 'Front raise',
  1053. repetitions: 4,
  1054. description: '',
  1055. videos: [],
  1056. pictures: [],
  1057. targets: ['Thighs', 'Glutes'],
  1058. baseExercise: {
  1059. id: 'baseExercise1',
  1060. name: 'Squat',
  1061. },
  1062. },
  1063. ],
  1064. },
  1065. {
  1066. id: 'block4',
  1067. duration: 15,
  1068. exercises: [
  1069. {
  1070. id: 'exercise1',
  1071. name: 'Pushup',
  1072. repetitions: 8,
  1073. description: '',
  1074. videos: [],
  1075. pictures: [],
  1076. targets: ['Thighs', 'Glutes'],
  1077. baseExercise: {
  1078. id: 'baseExercise1',
  1079. name: 'Squat',
  1080. },
  1081. },
  1082. ],
  1083. },
  1084. {
  1085. id: 'block4',
  1086. duration: 18,
  1087. exercises: [
  1088. {
  1089. id: 'exercise1',
  1090. name: 'Mountain climber',
  1091. repetitions: 16,
  1092. description: '',
  1093. videos: [],
  1094. pictures: [],
  1095. targets: ['Thighs', 'Glutes'],
  1096. baseExercise: {
  1097. id: 'baseExercise1',
  1098. name: 'Squat',
  1099. },
  1100. },
  1101. ],
  1102. },
  1103. ],
  1104. },
  1105. {
  1106. id: 'block0',
  1107. sequence: 0,
  1108. title: 'sax',
  1109. repetitions: 1,
  1110. video: '/media/sax.mp4',
  1111. format: {
  1112. id: 'format0',
  1113. name: 'Sequence',
  1114. description: 'Sequence of exercises',
  1115. },
  1116. blocks: [
  1117. {
  1118. id: 'block2',
  1119. duration: 29,
  1120. exercises: [
  1121. {
  1122. id: 'exercise0',
  1123. name: 'Setup',
  1124. repetitions: 1,
  1125. description: '',
  1126. videos: [],
  1127. pictures: [],
  1128. targets: [],
  1129. baseExercise: {
  1130. id: 'baseExercise1',
  1131. name: 'Jog on the spot',
  1132. },
  1133. },
  1134. ],
  1135. },
  1136. {
  1137. id: 'block3',
  1138. duration: 30,
  1139. exercises: [
  1140. {
  1141. id: 'exercise1',
  1142. name: 'Hover - Spider plank',
  1143. repetitions: 1,
  1144. description:
  1145. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1146. videos: [],
  1147. pictures: [],
  1148. targets: ['Thighs', 'Glutes'],
  1149. baseExercise: {
  1150. id: 'baseExercise1',
  1151. name: 'Squat',
  1152. },
  1153. },
  1154. ],
  1155. },
  1156. {
  1157. id: 'block4',
  1158. duration: 14,
  1159. exercises: [
  1160. {
  1161. id: 'exercise1',
  1162. name: 'Setup plank',
  1163. repetitions: 1,
  1164. description:
  1165. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1166. videos: [],
  1167. pictures: [],
  1168. targets: ['Thighs', 'Glutes'],
  1169. baseExercise: {
  1170. id: 'baseExercise1',
  1171. name: 'Squat',
  1172. },
  1173. },
  1174. ],
  1175. },
  1176. {
  1177. id: 'block4',
  1178. duration: 52,
  1179. exercises: [
  1180. {
  1181. id: 'exercise1',
  1182. name: 'Sit-back plank',
  1183. repetitions: 1,
  1184. description:
  1185. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1186. videos: [],
  1187. pictures: [],
  1188. targets: ['Thighs', 'Glutes'],
  1189. baseExercise: {
  1190. id: 'baseExercise1',
  1191. name: 'Squat',
  1192. },
  1193. },
  1194. ],
  1195. },
  1196. {
  1197. id: 'block4',
  1198. duration: 19,
  1199. exercises: [
  1200. {
  1201. id: 'exercise1',
  1202. name: 'Crunch pulse',
  1203. repetitions: 1,
  1204. description:
  1205. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1206. videos: [],
  1207. pictures: [],
  1208. targets: ['Thighs', 'Glutes'],
  1209. baseExercise: {
  1210. id: 'baseExercise1',
  1211. name: 'Squat',
  1212. },
  1213. },
  1214. ],
  1215. },
  1216. {
  1217. id: 'block4',
  1218. duration: 10,
  1219. exercises: [
  1220. {
  1221. id: 'exercise1',
  1222. name: 'Leg extension',
  1223. repetitions: 1,
  1224. description:
  1225. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1226. videos: [],
  1227. pictures: [],
  1228. targets: ['Thighs', 'Glutes'],
  1229. baseExercise: {
  1230. id: 'baseExercise1',
  1231. name: 'Squat',
  1232. },
  1233. },
  1234. ],
  1235. },
  1236. {
  1237. id: 'block4',
  1238. duration: 22,
  1239. exercises: [
  1240. {
  1241. id: 'exercise1',
  1242. name: 'Oblique crunch',
  1243. repetitions: 1,
  1244. description:
  1245. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1246. videos: [],
  1247. pictures: [],
  1248. targets: ['Thighs', 'Glutes'],
  1249. baseExercise: {
  1250. id: 'baseExercise1',
  1251. name: 'Squat',
  1252. },
  1253. },
  1254. ],
  1255. },
  1256. {
  1257. id: 'block4',
  1258. duration: 52,
  1259. exercises: [
  1260. {
  1261. id: 'exercise1',
  1262. name: 'Pulse crunch',
  1263. repetitions: 2,
  1264. description:
  1265. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1266. videos: [],
  1267. pictures: [],
  1268. targets: ['Thighs', 'Glutes'],
  1269. baseExercise: {
  1270. id: 'baseExercise1',
  1271. name: 'Squat',
  1272. },
  1273. },
  1274. {
  1275. id: 'exercise1',
  1276. name: 'Leg extension',
  1277. repetitions: 1,
  1278. description:
  1279. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1280. videos: [],
  1281. pictures: [],
  1282. targets: ['Thighs', 'Glutes'],
  1283. baseExercise: {
  1284. id: 'baseExercise1',
  1285. name: 'Squat',
  1286. },
  1287. },
  1288. ],
  1289. },
  1290. {
  1291. id: 'block3',
  1292. duration: 29,
  1293. exercises: [
  1294. {
  1295. id: 'exercise1',
  1296. name: 'Hover - Spider plank',
  1297. repetitions: 1,
  1298. description:
  1299. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1300. videos: [],
  1301. pictures: [],
  1302. targets: ['Thighs', 'Glutes'],
  1303. baseExercise: {
  1304. id: 'baseExercise1',
  1305. name: 'Squat',
  1306. },
  1307. },
  1308. ],
  1309. },
  1310. {
  1311. id: 'block4',
  1312. duration: 15,
  1313. exercises: [
  1314. {
  1315. id: 'exercise1',
  1316. name: 'Setup plank',
  1317. repetitions: 1,
  1318. description:
  1319. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1320. videos: [],
  1321. pictures: [],
  1322. targets: ['Thighs', 'Glutes'],
  1323. baseExercise: {
  1324. id: 'baseExercise1',
  1325. name: 'Squat',
  1326. },
  1327. },
  1328. ],
  1329. },
  1330. {
  1331. id: 'block4',
  1332. duration: 49,
  1333. exercises: [
  1334. {
  1335. id: 'exercise1',
  1336. name: 'Sit-back plank',
  1337. repetitions: 1,
  1338. description:
  1339. 'Sit down backwards, hip about knee-high. Keep your knees behind the toes.',
  1340. videos: [],
  1341. pictures: [],
  1342. targets: ['Thighs', 'Glutes'],
  1343. baseExercise: {
  1344. id: 'baseExercise1',
  1345. name: 'Squat',
  1346. },
  1347. },
  1348. ],
  1349. },
  1350. ],
  1351. },
  1352. ],
  1353. },
  1354. ],
  1355. polls: [],
  1356. }
  1357. export default data