Add Warm-Up and Stretching activity types
Adds WorkoutActivityType.warmUp (HealthKit .preparationAndRecovery) and .stretching (.flexibility), and retags the six starter splits that were all mislabeled as Functional Strength: - Warm-Up: Upper Body Warm-Up, Lower Body Warm-Up, Morning Wake-Up - Stretching: Morning Mobility, Full Body Stretch, Evening Stretch The split editor's activity picker surfaces them automatically (CaseIterable). Older app versions decode the new raw values as the default type — additive and not schema-gated, so no quarantine.
@@ -8,6 +8,8 @@ Each split can now set its own rest time, overriding the app-wide default in Set
|
||||
|
||||
The Morning Wake-Up starter split is now a timed routine that auto-advances through every move.
|
||||
|
||||
Splits can now be tagged Warm-Up or Stretching, and the built-in warm-up and stretch routines use them so they log correctly in Apple Health.
|
||||
|
||||
Tap the speaker on any library exercise to hear its full instructions read aloud.
|
||||
|
||||
Turn on Speak Exercise Cues in Settings to hear each exercise's setup and form cues spoken automatically when you start it, hands-free.
|
||||
|
||||
@@ -0,0 +1,280 @@
|
||||
# Exercise Library
|
||||
|
||||
How the exercise library is organized, end to end — from the hand-authored
|
||||
source at the repo root, through the render/export pipeline, to the resources
|
||||
the app bundles and the Swift code that consumes them.
|
||||
|
||||
There are **two** locations, and it matters which is which:
|
||||
|
||||
| | Path | Role |
|
||||
|---|---|---|
|
||||
| **Source** | `Exercise Library/` (repo root, outside every app target) | Authored + generated reference material. The source of truth. |
|
||||
| **Bundle** | `Workouts/Resources/ExerciseMotions/` | Verbatim export of just the two authored files per exercise (plus `skeleton.json`). The only part that ships. |
|
||||
|
||||
Data flows one way: you edit the **source**, run `render.py --export`, and the
|
||||
**bundle** is overwritten. Never hand-edit anything under
|
||||
`Workouts/Resources/ExerciseMotions/` — it is regenerated.
|
||||
|
||||
As of this writing the catalog is **64 exercises**.
|
||||
|
||||
```
|
||||
Exercise Library/ ← authoring source (repo root)
|
||||
├── README.md SYSTEM.md COVERAGE.md ← the three governing docs
|
||||
├── skeleton.json ← shared rig: bone lengths + joint ROM
|
||||
├── render.py kinematics.py ← the render pipeline + the FK math
|
||||
├── contact-sheet.png demo-sheet.png ← generated QA sheets
|
||||
└── <Exercise Name>/ ← one folder per exercise, 64 of them
|
||||
├── info.md ← AUTHORED: the reference page
|
||||
├── motion.json ← AUTHORED: the rig script (canonical visual source)
|
||||
├── frames/frame-N.svg ← generated: one SVG per key frame
|
||||
├── visual.svg ← generated: the primary frame (static contexts)
|
||||
├── preview.gif ← generated: the tweened, looping animation
|
||||
└── orbit.gif ← generated (on demand): camera sweeps 360°
|
||||
|
||||
│ python3 render.py --export
|
||||
▼
|
||||
Workouts/Resources/ExerciseMotions/ ← bundle (flat, unique basenames)
|
||||
├── skeleton.json
|
||||
├── <Exercise Name>.motion.json ← 64
|
||||
└── <Exercise Name>.info.md ← 64
|
||||
|
||||
│ Bundle.main lookups
|
||||
▼
|
||||
Workouts/ExerciseFigure/ ← app-side consumers (iOS only)
|
||||
├── ExerciseMotion.swift → ExerciseMotionLibrary (decodes rigs; catalog list)
|
||||
├── ExerciseInfo.swift → ExerciseInfoLibrary (parses info.md)
|
||||
├── MotionSolver.swift → port of kinematics.py
|
||||
└── ExerciseFigureView.swift → ExerciseFigureSlot (the animated figure)
|
||||
```
|
||||
|
||||
## The authoring source (`Exercise Library/`)
|
||||
|
||||
The library lives at the repo root, **deliberately outside** the app targets'
|
||||
source folders. Every exercise folder holds same-named files (`info.md`,
|
||||
`visual.svg`) that would collide in Xcode's flat resource copy, so the library
|
||||
directory itself is never added to the app — only the uniquely-renamed
|
||||
`--export` copies ship.
|
||||
|
||||
### The three governing docs
|
||||
|
||||
Read these first; they are the authority on their topics and this file does not
|
||||
duplicate their depth:
|
||||
|
||||
- **`README.md`** — the short index: what each per-exercise file is, and the
|
||||
authoring order for `info.md`.
|
||||
- **`SYSTEM.md`** — the visual system: the anatomical 3D rig, the joint-angle
|
||||
conventions (flexion/abduction/rotation, ISB coordinate frame), the full
|
||||
`motion.json` schema (frames, pins, camera, zoom, props), the visual language
|
||||
(near/far shading, working-part teal, nose tick, mat), and the `render.py`
|
||||
command reference. This is the big one.
|
||||
- **`COVERAGE.md`** — the **closed-catalog** model: the movement-pattern ×
|
||||
modality matrix and the gym-floor census that together define which exercises
|
||||
the library *must* contain, plus the considered exclusions. Judge every
|
||||
addition or removal against it.
|
||||
|
||||
### One folder per exercise
|
||||
|
||||
Folder names are exact app-facing exercise names (`Bench Press`, `Cat-Cow`,
|
||||
`Child's Pose`). Each folder has two **authored** files and several
|
||||
**generated** ones:
|
||||
|
||||
| File | Authored? | What it is |
|
||||
|---|---|---|
|
||||
| `info.md` | ✅ hand-written | The reference page (summary, facts, instructions). Parsed by the app. |
|
||||
| `motion.json` | ✅ hand-written | The rig script: key frames of joint angles. **Canonical source for all visuals** and the in-app animation. |
|
||||
| `frames/frame-N.svg` | generated | One SVG per key frame. |
|
||||
| `visual.svg` | generated | The `primary` frame, for static contexts. |
|
||||
| `preview.gif` | generated | The tweened, looping animation. |
|
||||
| `orbit.gif` | generated (`--orbit`) | Camera sweeps 360° while the motion loops. |
|
||||
|
||||
The generated files are **never hand-edited** — `render.py` rewrites them from
|
||||
`motion.json`. They exist in-repo as browsable reference/QA; only `visual.svg`
|
||||
and the GIFs are for humans, and none of them are exported to the app (the app
|
||||
renders live from the rig instead — see below).
|
||||
|
||||
### Shared / library-level files
|
||||
|
||||
- **`skeleton.json`** — the shared rig. Named bone-length **profiles**
|
||||
(`neutral`, `female`, `male`) plus each joint's degrees of freedom and its
|
||||
physiological **range of motion (ROM)**. The app renders `neutral` only.
|
||||
Because motions are authored against joint *names* in anatomical
|
||||
coordinates, swapping a profile never touches a motion script.
|
||||
*(Note: `README.md` still calls this `body.json` — a stale name; the file is
|
||||
`skeleton.json`, and `--export` actively deletes any legacy `body.json`.)*
|
||||
- **`render.py`** — the renderer (see pipeline section). ~910 lines; needs only
|
||||
Pillow for the GIFs/sheets (SVGs are dependency-free).
|
||||
- **`kinematics.py`** — the forward-kinematics + projection math, imported by
|
||||
`render.py`. The in-app `MotionSolver.swift` is a line-for-line port of this.
|
||||
- **`contact-sheet.png`** / **`demo-sheet.png`** — generated QA sheets
|
||||
(`--sheet` / `--demo`): every key frame, and rig customizations (profiles,
|
||||
flipped camera, theme).
|
||||
|
||||
## The two authored inputs, in detail
|
||||
|
||||
### `info.md` — the reference page
|
||||
|
||||
Uniform hand-authored Markdown in a fixed shape (the app parses the *known
|
||||
shape*, not general Markdown). Order: `# Title`, a one-line summary paragraph,
|
||||
metadata bullets, then instructional sections.
|
||||
|
||||
```markdown
|
||||
# Bench Press
|
||||
|
||||
The barbell press — lying on the flat bench, lower the bar to the chest…
|
||||
|
||||
- **Category:** Main circuit
|
||||
- **Type:** Free-weight horizontal press
|
||||
- **Targets:** Chest, front delts, triceps
|
||||
- **Prescription:** 4 × 6–8
|
||||
- **Defaults:** 4 × 6 weighted
|
||||
|
||||
## Setup
|
||||
## Execution (numbered steps)
|
||||
## Cues (bullets)
|
||||
## Common Mistakes (bullets)
|
||||
## Progression (easier → harder)
|
||||
```
|
||||
|
||||
Two metadata bullets carry app behavior beyond display:
|
||||
|
||||
- **`Type:`** — if it starts "Machine-based", `ExerciseInfo.isMachineBased` is
|
||||
true, which gates the machine-settings UI.
|
||||
- **`Defaults:`** — the suggested starting plan (`4 × 6 weighted`,
|
||||
`3 × 12 bodyweight`, `3 × 30 s`) parsed into sets/reps/loadType/duration for
|
||||
an exercise added outside a split. Unrecognized → `nil` (no guessing).
|
||||
|
||||
### `motion.json` — the rig script
|
||||
|
||||
The exercise scripted as key frames of anatomical joint angles on the shared
|
||||
rig, with IK pins for planted hands/feet, per-exercise camera, and an optional
|
||||
equipment `props` layer. **`SYSTEM.md` is the schema authority** — the shape in
|
||||
brief:
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "Bench Press",
|
||||
"primary": 1, // 1-based frame for visual.svg
|
||||
"camera": {"yaw": 0, "zoom": 0.7}, // side view; zoom fits tall standing motions
|
||||
"working": ["arm_r", "arm_l"], // parts drawn in accent teal
|
||||
"props": [ /* scene / cable / bar / dumbbell / pad / roller */ ],
|
||||
"frames": [
|
||||
{ "hold": 0.4, "tween": 0.9,
|
||||
"root": {"pos": [150, 116], "pitch": -90}, // pelvis anchor + trunk orientation
|
||||
"spine": [0, 0], "neck": 8, "head": 0,
|
||||
"shoulder_r": 15, "elbow_r": 100, // flexion shorthand, or a {…} dict
|
||||
"hip_r": 78, "knee_r": 82, "ankle_r": 5,
|
||||
"pins": {"foot_r": [196, 148], "hand_r": [93, 100]} } // IK targets
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Angles are degrees from the neutral standing pose (flexion forward, abduction
|
||||
from the midline, rotation external). Tweening happens in angle space so limbs
|
||||
swing in natural arcs; the last frame loops back to the first. Props have
|
||||
world-space 3D form and orbit with the figure. Canvas is 320×180, ground line
|
||||
at y = 152.
|
||||
|
||||
## The render pipeline
|
||||
|
||||
`render.py` (+ `kinematics.py` + `skeleton.json`) resolves each `motion.json`
|
||||
through 3D forward kinematics and orthographic projection into the generated
|
||||
files. Run from inside the library dir:
|
||||
|
||||
```sh
|
||||
cd "Exercise Library"
|
||||
python3 render.py # all exercises → frames/*.svg, preview.gif, visual.svg
|
||||
python3 render.py "Bird Dog" # just one exercise
|
||||
python3 render.py --sheet # + contact-sheet.png (every key frame)
|
||||
python3 render.py --demo # + demo-sheet.png (profiles / flipped / theme)
|
||||
python3 render.py --orbit "Bird Dog" # orbit.gif: 360° camera sweep
|
||||
python3 render.py --figure=female # render with another skeleton profile
|
||||
python3 render.py --flip # view from the other side
|
||||
python3 render.py --strict # fail on any ROM violation, listing each
|
||||
python3 render.py --export # bake app resources (see below)
|
||||
python3 render.py --fixtures # regenerate the Swift-solver fixtures (see below)
|
||||
```
|
||||
|
||||
Every key frame is validated against the skeleton ROM; an impossible pose is
|
||||
caught mechanically (a warning count, or a hard fail under `--strict`).
|
||||
|
||||
## The export step
|
||||
|
||||
`render.py --export` writes `Workouts/Resources/ExerciseMotions/` — and **only**
|
||||
three kinds of file:
|
||||
|
||||
- `skeleton.json` (verbatim copy),
|
||||
- `<Exercise Name>.motion.json` (one per folder, renamed to a unique basename),
|
||||
- `<Exercise Name>.info.md` (one per folder, likewise).
|
||||
|
||||
The generated SVGs and GIFs do **not** ship — the app renders the figure live
|
||||
from the rig instead. The rename to `<Name>.motion.json` / `<Name>.info.md` is
|
||||
what lets Xcode's flat resource copy hold all 64 without collision.
|
||||
|
||||
## The app-side consumers (`Workouts/ExerciseFigure/`)
|
||||
|
||||
Compiled into the **iOS target only** — commit b53381e dropped the
|
||||
`ExerciseFigure` sources *and* the `ExerciseMotions` resources from the watch
|
||||
target, which now shows a timer-only run screen (its own figure-less
|
||||
`Workouts Watch App/Views/ExerciseProgressView.swift`). All lookups are
|
||||
exact-name `Bundle.main` matches against the exported basenames.
|
||||
|
||||
- **`ExerciseMotion.swift` → `ExerciseMotionLibrary`** — Codable mirror of the
|
||||
rig data; decodes `<Name>.motion.json` + `skeleton.json`.
|
||||
- `ExerciseMotionLibrary.exerciseNames` enumerates every bundled
|
||||
`*.motion.json`, strips the suffix, and sorts — this is **the picker's
|
||||
entire list** and thus the app's catalog.
|
||||
- `resources(for:)` returns the motion + neutral profile for one exercise, or
|
||||
`nil` if none is bundled.
|
||||
- **`ExerciseInfo.swift` → `ExerciseInfoLibrary`** — `ExerciseInfo.parse(...)`
|
||||
turns the `info.md` shape into `summary` / `category` / `type` / `targets`
|
||||
(split for chips) / `sections` / `defaults`. `ExerciseInfoLibrary.info(for:)`
|
||||
loads the bundled page.
|
||||
- **`MotionSolver.swift`** — the FK + projection solver, a line-for-line port of
|
||||
`kinematics.py`. It is held to the Python pipeline by
|
||||
**`WorkoutsTests/Fixtures/figure-fixtures.json`** (projected-geometry
|
||||
snapshots the Swift solver must reproduce); regenerate with
|
||||
`render.py --fixtures` alongside any pipeline change.
|
||||
- **`ExerciseFigureView.swift` → `ExerciseFigureSlot(exerciseName:)`** — the
|
||||
public view. Renders the looping, slowly-orbiting figure with `Canvas` +
|
||||
`TimelineView`, or empty space when no motion matches. Used by the run
|
||||
screen's bottom half (`ExerciseProgressView`) and the reference screen
|
||||
(`ExerciseLibraryView`).
|
||||
|
||||
Other views that surface the catalog: `ExercisePickerView` and
|
||||
`ExerciseLibraryView` (Settings → Library) both list
|
||||
`ExerciseMotionLibrary.exerciseNames`.
|
||||
|
||||
### The closed-catalog rule
|
||||
|
||||
The picker lists **exactly** the bundled names with **no free-text fallback**.
|
||||
So the library is the app's closed catalog: a movement pattern or gym station
|
||||
with no entry is a hard wall for logging, not a cosmetic gap. That is why
|
||||
`COVERAGE.md` exists and why additions are judged against it.
|
||||
|
||||
## Making a change
|
||||
|
||||
Adding or editing an exercise is a source-only edit plus a re-export:
|
||||
|
||||
1. **Add/edit the folder** under `Exercise Library/<Exercise Name>/`: write or
|
||||
revise `info.md` and `motion.json`. For a new exercise, first check it against
|
||||
`COVERAGE.md` (does a real program train this pattern/station?).
|
||||
2. **Render** to preview and validate: `python3 render.py "<Exercise Name>"`
|
||||
(or bare `render.py` for all). Fix any ROM warnings; `--strict` to enforce.
|
||||
3. **Export** the bundle: `python3 render.py --export`. This is what the app
|
||||
sees; the picker picks up a new name automatically (no code change).
|
||||
4. **If you changed the pipeline** (`render.py`/`kinematics.py`/`skeleton.json`,
|
||||
or anything affecting projected geometry), regenerate the Swift-solver
|
||||
fixtures: `python3 render.py --fixtures`, and run `WorkoutsTests` so
|
||||
`MotionSolver` stays in lockstep with the Python renderer.
|
||||
|
||||
A persisted new field in `info.md` or `motion.json` that the app must read also
|
||||
needs the matching Codable/parse update in `ExerciseMotion.swift` /
|
||||
`ExerciseInfo.swift`.
|
||||
|
||||
## See also
|
||||
|
||||
- `Exercise Library/SYSTEM.md` — the rig, joint conventions, full `motion.json`
|
||||
schema, visual language, and render command reference.
|
||||
- `Exercise Library/COVERAGE.md` — the closed-catalog coverage model.
|
||||
- `Exercise Library/README.md` — the per-file index and `info.md` authoring order.
|
||||
- `CLAUDE.md` → *Architecture → Starter Data → Exercise library* — the one-paragraph summary.
|
||||
@@ -1,19 +1,39 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Abdominal</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="133.9" y1="126.8" x2="176.4" y2="109.3"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9399a4"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="176.4" y1="109.3" x2="172.0" y2="148.4"><stop offset="0" stop-color="#9399a4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="171.2" y1="111.6" x2="168.0" y2="150.9"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="168.0" y1="150.9" x2="179.0" y2="151.7"><stop offset="0" stop-color="#3b404c"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 105.8 160.8 L 213.8 160.8 L 213.8 150.3 L 105.8 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 120.0 128.0 L 114.0 62.0 L 114.0 62.0 L 120.0 128.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 106.0 130.0 L 150.0 130.0 L 150.0 130.0 L 106.0 130.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 122.0 132.0 L 122.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 102.0 150.0 L 150.0 150.0 L 150.0 150.0 L 102.0 150.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 156.0 149.0 L 190.0 149.0 L 190.0 149.0 L 156.0 149.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 133.9 126.8 L 176.4 109.3 L 172.0 148.4 L 182.9 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 130.9 42.5 L 159.5 33.6 L 161.0 63.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 133.9 126.8 L 176.4 109.3" stroke="url(#grad-leg_l-0)" stroke-width="5.09885" stroke-linecap="round"/>
|
||||
<path d="M 176.4 109.3 L 172.0 148.4" stroke="url(#grad-leg_l-1)" stroke-width="5.09885" stroke-linecap="round"/>
|
||||
<path d="M 172.0 148.4 L 182.9 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 130.9 42.5 L 159.5 33.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 159.5 33.6 L 143.5 8.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 130.9 42.5 L 125.0 42.4 L 125.0 44.3" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 133.9 126.8 L 128.0 126.0 L 128.0 127.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 128.0 126.0 Q 123.5 83.3 125.0 42.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 128.0 127.2 L 171.2 111.6 L 168.0 150.9 L 179.0 151.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 125.0 44.3 L 153.6 35.4 L 155.0 64.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 158.0 78.0 L 158.0 50.0" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 128.0 127.2 L 171.2 111.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 171.2 111.6 L 168.0 150.9" stroke="url(#grad-leg_r-1)" stroke-width="5.99418" stroke-linecap="round"/>
|
||||
<path d="M 168.0 150.9 L 179.0 151.7" stroke="url(#grad-leg_r-2)" stroke-width="5.97919" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 125.0 44.3 L 153.6 35.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 153.6 35.4 L 137.5 10.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 140.5 23.5 L 140.5 -4.5" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="127.8" cy="22.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="137.7" y1="24.3" x2="144.6" y2="25.2" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 4.1 KiB |
@@ -1,19 +1,39 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Abdominal</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="133.9" y1="126.8" x2="176.4" y2="109.3"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9399a4"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="176.4" y1="109.3" x2="172.0" y2="148.4"><stop offset="0" stop-color="#9399a4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="171.2" y1="111.6" x2="168.0" y2="150.9"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="168.0" y1="150.9" x2="179.0" y2="151.7"><stop offset="0" stop-color="#3b404c"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 105.8 160.8 L 213.8 160.8 L 213.8 150.3 L 105.8 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 120.0 128.0 L 114.0 62.0 L 114.0 62.0 L 120.0 128.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 106.0 130.0 L 150.0 130.0 L 150.0 130.0 L 106.0 130.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 122.0 132.0 L 122.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 102.0 150.0 L 150.0 150.0 L 150.0 150.0 L 102.0 150.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 156.0 149.0 L 190.0 149.0 L 190.0 149.0 L 156.0 149.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 133.9 126.8 L 176.4 109.3 L 172.0 148.4 L 182.9 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 173.5 57.8 L 201.8 47.9 L 196.0 76.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 133.9 126.8 L 176.4 109.3" stroke="url(#grad-leg_l-0)" stroke-width="5.09885" stroke-linecap="round"/>
|
||||
<path d="M 176.4 109.3 L 172.0 148.4" stroke="url(#grad-leg_l-1)" stroke-width="5.09885" stroke-linecap="round"/>
|
||||
<path d="M 172.0 148.4 L 182.9 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 173.5 57.8 L 201.8 47.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 201.8 47.9 L 178.7 29.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 173.5 57.8 L 167.6 57.7 L 167.6 59.6" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 133.9 126.8 L 128.0 126.0 L 128.0 127.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 128.0 126.0 Q 123.1 76.7 167.6 57.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 128.0 127.2 L 171.2 111.6 L 168.0 150.9 L 179.0 151.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 167.6 59.6 L 195.9 49.7 L 190.0 78.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 193.0 91.8 L 193.0 63.8" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 128.0 127.2 L 171.2 111.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 171.2 111.6 L 168.0 150.9" stroke="url(#grad-leg_r-1)" stroke-width="5.99418" stroke-linecap="round"/>
|
||||
<path d="M 168.0 150.9 L 179.0 151.7" stroke="url(#grad-leg_r-2)" stroke-width="5.97919" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 167.6 59.6 L 195.9 49.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.9 49.7 L 172.7 30.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 175.7 44.0 L 175.7 16.0" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="186.2" cy="50.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="193.7" y1="57.0" x2="198.9" y2="61.6" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 177 KiB After Width: | Height: | Size: 167 KiB |
@@ -1,19 +1,39 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Abdominal</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="133.9" y1="126.8" x2="176.4" y2="109.3"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9399a4"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="176.4" y1="109.3" x2="172.0" y2="148.4"><stop offset="0" stop-color="#9399a4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="171.2" y1="111.6" x2="168.0" y2="150.9"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="168.0" y1="150.9" x2="179.0" y2="151.7"><stop offset="0" stop-color="#3b404c"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 105.8 160.8 L 213.8 160.8 L 213.8 150.3 L 105.8 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 120.0 128.0 L 114.0 62.0 L 114.0 62.0 L 120.0 128.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 106.0 130.0 L 150.0 130.0 L 150.0 130.0 L 106.0 130.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 122.0 132.0 L 122.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 102.0 150.0 L 150.0 150.0 L 150.0 150.0 L 102.0 150.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 156.0 149.0 L 190.0 149.0 L 190.0 149.0 L 156.0 149.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 133.9 126.8 L 176.4 109.3 L 172.0 148.4 L 182.9 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 173.5 57.8 L 201.8 47.9 L 196.0 76.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 133.9 126.8 L 176.4 109.3" stroke="url(#grad-leg_l-0)" stroke-width="5.09885" stroke-linecap="round"/>
|
||||
<path d="M 176.4 109.3 L 172.0 148.4" stroke="url(#grad-leg_l-1)" stroke-width="5.09885" stroke-linecap="round"/>
|
||||
<path d="M 172.0 148.4 L 182.9 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 173.5 57.8 L 201.8 47.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 201.8 47.9 L 178.7 29.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 173.5 57.8 L 167.6 57.7 L 167.6 59.6" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 133.9 126.8 L 128.0 126.0 L 128.0 127.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 128.0 126.0 Q 123.1 76.7 167.6 57.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 128.0 127.2 L 171.2 111.6 L 168.0 150.9 L 179.0 151.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 167.6 59.6 L 195.9 49.7 L 190.0 78.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 193.0 91.8 L 193.0 63.8" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 128.0 127.2 L 171.2 111.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 171.2 111.6 L 168.0 150.9" stroke="url(#grad-leg_r-1)" stroke-width="5.99418" stroke-linecap="round"/>
|
||||
<path d="M 168.0 150.9 L 179.0 151.7" stroke="url(#grad-leg_r-2)" stroke-width="5.97919" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 167.6 59.6 L 195.9 49.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.9 49.7 L 172.7 30.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 175.7 44.0 L 175.7 16.0" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="186.2" cy="50.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="193.7" y1="57.0" x2="198.9" y2="61.6" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 4.1 KiB |
@@ -1,5 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Abductor</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="180.3" y1="60.8" x2="188.7" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="139.7" y1="60.8" x2="131.3" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="167.0" y1="116.0" x2="172.6" y2="133.1"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="153.0" y1="116.0" x2="147.4" y2="133.1"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 130.0 145.6 L 130.0 165.2 L 190.0 165.2 L 190.0 145.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 160.0 64.0 L 160.0 120.0 L 160.0 120.0 L 160.0 64.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 135.0 131.0 L 185.0 131.0 L 185.0 131.0 L 135.0 131.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,10 +13,24 @@
|
||||
<path id="girdle" d="M 171.0 32.3 L 160.0 32.3 L 149.0 32.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 167.0 116.0 L 160.0 116.0 L 153.0 116.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 116.0 Q 160.0 73.2 160.0 32.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 171.0 32.3 L 180.3 60.8 L 188.7 86.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 149.0 32.3 L 139.7 60.8 L 131.3 86.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 167.0 116.0 L 172.6 133.1 L 174.9 172.8 L 176.1 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 116.0 L 147.4 133.1 L 145.1 172.8 L 143.9 171.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 171.0 32.3 L 180.3 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 180.3 60.8 L 188.7 86.7" stroke="url(#grad-arm_l-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 149.0 32.3 L 139.7 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 139.7 60.8 L 131.3 86.7" stroke="url(#grad-arm_r-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 167.0 116.0 L 172.6 133.1" stroke="url(#grad-leg_l-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 172.6 133.1 L 174.9 172.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 174.9 172.8 L 176.1 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 116.0 L 147.4 133.1" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 147.4 133.1 L 145.1 172.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 145.1 172.8 L 143.9 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 147.4 146.1 L 147.4 120.1" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 172.6 146.1 L 172.6 120.1" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="160.0" cy="12.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,5 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Abductor</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="180.3" y1="60.8" x2="188.7" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="139.7" y1="60.8" x2="131.3" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="167.0" y1="116.0" x2="190.0" y2="130.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="153.0" y1="116.0" x2="130.0" y2="130.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 130.0 145.6 L 130.0 165.2 L 190.0 165.2 L 190.0 145.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 160.0 64.0 L 160.0 120.0 L 160.0 120.0 L 160.0 64.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 135.0 131.0 L 185.0 131.0 L 185.0 131.0 L 135.0 131.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,10 +13,24 @@
|
||||
<path id="girdle" d="M 171.0 32.3 L 160.0 32.3 L 149.0 32.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 167.0 116.0 L 160.0 116.0 L 153.0 116.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 116.0 Q 160.0 73.2 160.0 32.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 171.0 32.3 L 180.3 60.8 L 188.7 86.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 149.0 32.3 L 139.7 60.8 L 131.3 86.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 167.0 116.0 L 190.0 130.9 L 199.4 169.8 L 204.2 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 116.0 L 130.0 130.9 L 120.6 169.8 L 115.8 168.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 171.0 32.3 L 180.3 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 180.3 60.8 L 188.7 86.7" stroke="url(#grad-arm_l-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 149.0 32.3 L 139.7 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 139.7 60.8 L 131.3 86.7" stroke="url(#grad-arm_r-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 167.0 116.0 L 190.0 130.9" stroke="url(#grad-leg_l-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 190.0 130.9 L 199.4 169.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 199.4 169.8 L 204.2 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 116.0 L 130.0 130.9" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 130.0 130.9 L 120.6 169.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 120.6 169.8 L 115.8 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 130.0 143.9 L 130.0 117.9" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 190.0 143.9 L 190.0 117.9" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="160.0" cy="12.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 397 KiB |
|
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 201 KiB |
@@ -1,5 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Abductor</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="180.3" y1="60.8" x2="188.7" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="139.7" y1="60.8" x2="131.3" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="167.0" y1="116.0" x2="190.0" y2="130.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="153.0" y1="116.0" x2="130.0" y2="130.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 130.0 145.6 L 130.0 165.2 L 190.0 165.2 L 190.0 145.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 160.0 64.0 L 160.0 120.0 L 160.0 120.0 L 160.0 64.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 135.0 131.0 L 185.0 131.0 L 185.0 131.0 L 135.0 131.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,10 +13,24 @@
|
||||
<path id="girdle" d="M 171.0 32.3 L 160.0 32.3 L 149.0 32.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 167.0 116.0 L 160.0 116.0 L 153.0 116.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 116.0 Q 160.0 73.2 160.0 32.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 171.0 32.3 L 180.3 60.8 L 188.7 86.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 149.0 32.3 L 139.7 60.8 L 131.3 86.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 167.0 116.0 L 190.0 130.9 L 199.4 169.8 L 204.2 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 116.0 L 130.0 130.9 L 120.6 169.8 L 115.8 168.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 171.0 32.3 L 180.3 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 180.3 60.8 L 188.7 86.7" stroke="url(#grad-arm_l-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 149.0 32.3 L 139.7 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 139.7 60.8 L 131.3 86.7" stroke="url(#grad-arm_r-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 167.0 116.0 L 190.0 130.9" stroke="url(#grad-leg_l-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 190.0 130.9 L 199.4 169.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 199.4 169.8 L 204.2 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 116.0 L 130.0 130.9" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 130.0 130.9 L 120.6 169.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 120.6 169.8 L 115.8 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 130.0 143.9 L 130.0 117.9" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 190.0 143.9 L 190.0 117.9" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="160.0" cy="12.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,5 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Adductor</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="180.3" y1="60.8" x2="188.7" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="139.7" y1="60.8" x2="131.3" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="167.0" y1="116.0" x2="190.0" y2="130.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="153.0" y1="116.0" x2="130.0" y2="130.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 130.0 145.6 L 130.0 165.2 L 190.0 165.2 L 190.0 145.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 160.0 64.0 L 160.0 120.0 L 160.0 120.0 L 160.0 64.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 135.0 131.0 L 185.0 131.0 L 185.0 131.0 L 135.0 131.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,10 +13,24 @@
|
||||
<path id="girdle" d="M 171.0 32.3 L 160.0 32.3 L 149.0 32.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 167.0 116.0 L 160.0 116.0 L 153.0 116.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 116.0 Q 160.0 73.2 160.0 32.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 171.0 32.3 L 180.3 60.8 L 188.7 86.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 149.0 32.3 L 139.7 60.8 L 131.3 86.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 167.0 116.0 L 190.0 130.9 L 199.4 169.8 L 204.2 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 116.0 L 130.0 130.9 L 120.6 169.8 L 115.8 168.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 171.0 32.3 L 180.3 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 180.3 60.8 L 188.7 86.7" stroke="url(#grad-arm_l-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 149.0 32.3 L 139.7 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 139.7 60.8 L 131.3 86.7" stroke="url(#grad-arm_r-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 167.0 116.0 L 190.0 130.9" stroke="url(#grad-leg_l-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 190.0 130.9 L 199.4 169.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 199.4 169.8 L 204.2 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 116.0 L 130.0 130.9" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 130.0 130.9 L 120.6 169.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 120.6 169.8 L 115.8 168.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 130.0 143.9 L 130.0 117.9" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 190.0 143.9 L 190.0 117.9" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="160.0" cy="12.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,5 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Adductor</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="180.3" y1="60.8" x2="188.7" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="139.7" y1="60.8" x2="131.3" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="167.0" y1="116.0" x2="172.6" y2="133.1"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="153.0" y1="116.0" x2="147.4" y2="133.1"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 130.0 145.6 L 130.0 165.2 L 190.0 165.2 L 190.0 145.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 160.0 64.0 L 160.0 120.0 L 160.0 120.0 L 160.0 64.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 135.0 131.0 L 185.0 131.0 L 185.0 131.0 L 135.0 131.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,10 +13,24 @@
|
||||
<path id="girdle" d="M 171.0 32.3 L 160.0 32.3 L 149.0 32.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 167.0 116.0 L 160.0 116.0 L 153.0 116.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 116.0 Q 160.0 73.2 160.0 32.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 171.0 32.3 L 180.3 60.8 L 188.7 86.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 149.0 32.3 L 139.7 60.8 L 131.3 86.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 167.0 116.0 L 172.6 133.1 L 174.9 172.8 L 176.1 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 116.0 L 147.4 133.1 L 145.1 172.8 L 143.9 171.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 171.0 32.3 L 180.3 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 180.3 60.8 L 188.7 86.7" stroke="url(#grad-arm_l-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 149.0 32.3 L 139.7 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 139.7 60.8 L 131.3 86.7" stroke="url(#grad-arm_r-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 167.0 116.0 L 172.6 133.1" stroke="url(#grad-leg_l-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 172.6 133.1 L 174.9 172.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 174.9 172.8 L 176.1 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 116.0 L 147.4 133.1" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 147.4 133.1 L 145.1 172.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 145.1 172.8 L 143.9 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 147.4 146.1 L 147.4 120.1" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 172.6 146.1 L 172.6 120.1" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="160.0" cy="12.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 200 KiB |
@@ -1,5 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Adductor</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="180.3" y1="60.8" x2="188.7" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="139.7" y1="60.8" x2="131.3" y2="86.7"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="167.0" y1="116.0" x2="172.6" y2="133.1"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="153.0" y1="116.0" x2="147.4" y2="133.1"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 130.0 145.6 L 130.0 165.2 L 190.0 165.2 L 190.0 145.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 160.0 64.0 L 160.0 120.0 L 160.0 120.0 L 160.0 64.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="16" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 135.0 131.0 L 185.0 131.0 L 185.0 131.0 L 135.0 131.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,10 +13,24 @@
|
||||
<path id="girdle" d="M 171.0 32.3 L 160.0 32.3 L 149.0 32.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 167.0 116.0 L 160.0 116.0 L 153.0 116.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 116.0 Q 160.0 73.2 160.0 32.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 171.0 32.3 L 180.3 60.8 L 188.7 86.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 149.0 32.3 L 139.7 60.8 L 131.3 86.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 167.0 116.0 L 172.6 133.1 L 174.9 172.8 L 176.1 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 116.0 L 147.4 133.1 L 145.1 172.8 L 143.9 171.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 171.0 32.3 L 180.3 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 180.3 60.8 L 188.7 86.7" stroke="url(#grad-arm_l-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 149.0 32.3 L 139.7 60.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 139.7 60.8 L 131.3 86.7" stroke="url(#grad-arm_r-1)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 167.0 116.0 L 172.6 133.1" stroke="url(#grad-leg_l-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 172.6 133.1 L 174.9 172.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 174.9 172.8 L 176.1 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 116.0 L 147.4 133.1" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 147.4 133.1 L 145.1 172.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 145.1 172.8 L 143.9 171.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 147.4 146.1 L 147.4 120.1" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 172.6 146.1 L 172.6 120.1" stroke="#6b7180" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="160.0" cy="12.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Circles</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="165.4" y1="100.7" x2="170.8" y2="127.6"><stop offset="0" stop-color="#4f5460"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.4" y1="128.0" x2="157.6" y2="150.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#838994"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="157.6" y1="150.7" x2="163.4" y2="152.6"><stop offset="0" stop-color="#838994"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="182.9" y1="51.7" x2="198.7" y2="51.6"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#3caba0"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="155.8" y1="51.1" x2="166.8" y2="53.5"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.2 152.0 L 183.6 161.1 L 206.7 156.3 L 144.4 147.2 Z" fill="none" stroke="#b9bec9" stroke-width="1.8" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 165.4 100.7 L 170.8 127.6 L 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 157.3 101.0 L 162.4 128.0 L 157.6 150.7 L 163.4 152.6" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 165.4 100.7 L 170.8 127.6" stroke="url(#grad-leg_l-0)" stroke-width="3.24456" stroke-linecap="round"/>
|
||||
<path d="M 170.8 127.6 L 162.4 149.6" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 157.3 101.0 L 162.4 128.0" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 162.4 128.0 L 157.6 150.7" stroke="url(#grad-leg_r-1)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
<path d="M 157.6 150.7 L 163.4 152.6" stroke="url(#grad-leg_r-2)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 167.0 50.2 L 160.0 50.2 L 155.8 51.1" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 165.4 100.7 L 160.0 100.4 L 157.3 101.0" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 100.4 Q 160.0 74.7 160.0 50.2" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 167.0 50.2 L 182.9 51.7 L 198.7 51.6" stroke="#86cfc5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 155.8 51.1 L 166.8 53.5 L 177.9 54.4" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 167.0 50.2 L 182.9 51.7" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 182.9 51.7 L 198.7 51.6" stroke="url(#grad-arm_l-1)" stroke-width="3.18433" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 155.8 51.1 L 166.8 53.5" stroke="url(#grad-arm_r-0)" stroke-width="3.3" stroke-linecap="round"/>
|
||||
<path d="M 166.8 53.5 L 177.9 54.4" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="160.3" cy="38.4" r="6.0" fill="white" stroke="#3a3f4b" stroke-width="3.6"/>
|
||||
<line id="nose" x1="166.3" y1="39.0" x2="169.5" y2="39.3" stroke="#3a3f4b" stroke-width="2.4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Circles</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="165.4" y1="100.7" x2="170.8" y2="127.6"><stop offset="0" stop-color="#4f5460"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.4" y1="128.0" x2="157.6" y2="150.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#838994"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="157.6" y1="150.7" x2="163.4" y2="152.6"><stop offset="0" stop-color="#838994"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="155.8" y1="51.1" x2="151.6" y2="37.3"><stop offset="0" stop-color="#30a59a"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.2 152.0 L 183.6 161.1 L 206.7 156.3 L 144.4 147.2 Z" fill="none" stroke="#b9bec9" stroke-width="1.8" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 165.4 100.7 L 170.8 127.6 L 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 167.0 50.2 L 174.4 34.0 L 180.6 17.6" stroke="#86cfc5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 157.3 101.0 L 162.4 128.0 L 157.6 150.7 L 163.4 152.6" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 165.4 100.7 L 170.8 127.6" stroke="url(#grad-leg_l-0)" stroke-width="3.24456" stroke-linecap="round"/>
|
||||
<path d="M 170.8 127.6 L 162.4 149.6" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 167.0 50.2 L 174.4 34.0" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 174.4 34.0 L 180.6 17.6" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 157.3 101.0 L 162.4 128.0" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 162.4 128.0 L 157.6 150.7" stroke="url(#grad-leg_r-1)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
<path d="M 157.6 150.7 L 163.4 152.6" stroke="url(#grad-leg_r-2)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 167.0 50.2 L 160.0 50.2 L 155.8 51.1" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 165.4 100.7 L 160.0 100.4 L 157.3 101.0" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 100.4 Q 160.0 74.7 160.0 50.2" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 155.8 51.1 L 151.6 37.3 L 146.3 23.2" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 155.8 51.1 L 151.6 37.3" stroke="url(#grad-arm_r-0)" stroke-width="3.51254" stroke-linecap="round"/>
|
||||
<path d="M 151.6 37.3 L 146.3 23.2" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="160.3" cy="38.4" r="6.0" fill="white" stroke="#3a3f4b" stroke-width="3.6"/>
|
||||
<line id="nose" x1="166.3" y1="39.0" x2="169.5" y2="39.3" stroke="#3a3f4b" stroke-width="2.4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Circles</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="165.4" y1="100.7" x2="170.8" y2="127.6"><stop offset="0" stop-color="#4f5460"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.4" y1="128.0" x2="157.6" y2="150.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#838994"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="157.6" y1="150.7" x2="163.4" y2="152.6"><stop offset="0" stop-color="#838994"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.2 152.0 L 183.6 161.1 L 206.7 156.3 L 144.4 147.2 Z" fill="none" stroke="#b9bec9" stroke-width="1.8" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 167.0 50.2 L 178.0 47.7 L 189.1 43.7" stroke="#86cfc5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 165.4 100.7 L 170.8 127.6 L 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 157.3 101.0 L 162.4 128.0 L 157.6 150.7 L 163.4 152.6" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 167.0 50.2 L 178.0 47.7" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 178.0 47.7 L 189.1 43.7" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 165.4 100.7 L 170.8 127.6" stroke="url(#grad-leg_l-0)" stroke-width="3.24456" stroke-linecap="round"/>
|
||||
<path d="M 170.8 127.6 L 162.4 149.6" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 157.3 101.0 L 162.4 128.0" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 162.4 128.0 L 157.6 150.7" stroke="url(#grad-leg_r-1)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
<path d="M 157.6 150.7 L 163.4 152.6" stroke="url(#grad-leg_r-2)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 167.0 50.2 L 160.0 50.2 L 155.8 51.1" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 165.4 100.7 L 160.0 100.4 L 157.3 101.0" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 100.4 Q 160.0 74.7 160.0 50.2" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 155.8 51.1 L 143.7 53.4 L 131.7 54.1" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 155.8 51.1 L 143.7 53.4" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 143.7 53.4 L 131.7 54.1" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="160.3" cy="38.4" r="6.0" fill="white" stroke="#3a3f4b" stroke-width="3.6"/>
|
||||
<line id="nose" x1="166.3" y1="39.0" x2="169.5" y2="39.3" stroke="#3a3f4b" stroke-width="2.4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Circles</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="165.4" y1="100.7" x2="170.8" y2="127.6"><stop offset="0" stop-color="#4f5460"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.4" y1="128.0" x2="157.6" y2="150.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#838994"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="157.6" y1="150.7" x2="163.4" y2="152.6"><stop offset="0" stop-color="#838994"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.2 152.0 L 183.6 161.1 L 206.7 156.3 L 144.4 147.2 Z" fill="none" stroke="#b9bec9" stroke-width="1.8" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 165.4 100.7 L 170.8 127.6 L 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 167.0 50.2 L 173.1 65.8 L 180.4 81.4" stroke="#86cfc5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 157.3 101.0 L 162.4 128.0 L 157.6 150.7 L 163.4 152.6" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 165.4 100.7 L 170.8 127.6" stroke="url(#grad-leg_l-0)" stroke-width="3.24456" stroke-linecap="round"/>
|
||||
<path d="M 170.8 127.6 L 162.4 149.6" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 167.0 50.2 L 173.1 65.8" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 173.1 65.8 L 180.4 81.4" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 157.3 101.0 L 162.4 128.0" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 162.4 128.0 L 157.6 150.7" stroke="url(#grad-leg_r-1)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
<path d="M 157.6 150.7 L 163.4 152.6" stroke="url(#grad-leg_r-2)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 167.0 50.2 L 160.0 50.2 L 155.8 51.1" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 165.4 100.7 L 160.0 100.4 L 157.3 101.0" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 100.4 Q 160.0 74.7 160.0 50.2" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 155.8 51.1 L 153.2 68.5 L 151.8 85.8" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 155.8 51.1 L 153.2 68.5" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 153.2 68.5 L 151.8 85.8" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="160.3" cy="38.4" r="6.0" fill="white" stroke="#3a3f4b" stroke-width="3.6"/>
|
||||
<line id="nose" x1="166.3" y1="39.0" x2="169.5" y2="39.3" stroke="#3a3f4b" stroke-width="2.4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 233 KiB After Width: | Height: | Size: 249 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 146 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Circles</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="165.4" y1="100.7" x2="170.8" y2="127.6"><stop offset="0" stop-color="#4f5460"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.4" y1="128.0" x2="157.6" y2="150.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#838994"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="157.6" y1="150.7" x2="163.4" y2="152.6"><stop offset="0" stop-color="#838994"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="155.8" y1="51.1" x2="151.6" y2="37.3"><stop offset="0" stop-color="#30a59a"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.2 152.0 L 183.6 161.1 L 206.7 156.3 L 144.4 147.2 Z" fill="none" stroke="#b9bec9" stroke-width="1.8" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 165.4 100.7 L 170.8 127.6 L 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 167.0 50.2 L 174.4 34.0 L 180.6 17.6" stroke="#86cfc5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 157.3 101.0 L 162.4 128.0 L 157.6 150.7 L 163.4 152.6" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 165.4 100.7 L 170.8 127.6" stroke="url(#grad-leg_l-0)" stroke-width="3.24456" stroke-linecap="round"/>
|
||||
<path d="M 170.8 127.6 L 162.4 149.6" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 162.4 149.6 L 168.5 152.0" stroke="#a9afba" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 167.0 50.2 L 174.4 34.0" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
<path d="M 174.4 34.0 L 180.6 17.6" stroke="#86cfc5" stroke-width="3" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 157.3 101.0 L 162.4 128.0" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round"/>
|
||||
<path d="M 162.4 128.0 L 157.6 150.7" stroke="url(#grad-leg_r-1)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
<path d="M 157.6 150.7 L 163.4 152.6" stroke="url(#grad-leg_r-2)" stroke-width="3.40214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 167.0 50.2 L 160.0 50.2 L 155.8 51.1" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 165.4 100.7 L 160.0 100.4 L 157.3 101.0" stroke="#3a3f4b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 100.4 Q 160.0 74.7 160.0 50.2" stroke="#3a3f4b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 155.8 51.1 L 151.6 37.3 L 146.3 23.2" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 155.8 51.1 L 151.6 37.3" stroke="url(#grad-arm_r-0)" stroke-width="3.51254" stroke-linecap="round"/>
|
||||
<path d="M 151.6 37.3 L 146.3 23.2" stroke="#0d9488" stroke-width="3.6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="160.3" cy="38.4" r="6.0" fill="white" stroke="#3a3f4b" stroke-width="3.6"/>
|
||||
<line id="nose" x1="166.3" y1="39.0" x2="169.5" y2="39.3" stroke="#3a3f4b" stroke-width="2.4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Curl</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="135.9" y1="124.8" x2="179.4" y2="110.0"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#969ca7"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="179.4" y1="110.0" x2="180.0" y2="149.4"><stop offset="0" stop-color="#969ca7"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="173.8" y1="111.5" x2="176.0" y2="150.8"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3c424d"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="176.0" y1="150.8" x2="187.0" y2="150.2"><stop offset="0" stop-color="#3c424d"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 115.2 160.7 L 203.0 160.7 L 203.0 150.3 L 115.2 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 116.0 134.0 L 150.0 134.0 L 150.0 134.0 L 116.0 134.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 136.0 52.0 L 164.0 70.0 L 164.0 70.0 L 136.0 52.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 164.0 70.0 L 164.0 128.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 135.9 124.8 L 179.4 110.0 L 180.0 149.4 L 191.0 149.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 140.3 40.5 L 164.9 57.4 L 186.9 77.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 135.9 124.8 L 179.4 110.0" stroke="url(#grad-leg_l-0)" stroke-width="5.08538" stroke-linecap="round"/>
|
||||
<path d="M 179.4 110.0 L 180.0 149.4" stroke="url(#grad-leg_l-1)" stroke-width="5.08538" stroke-linecap="round"/>
|
||||
<path d="M 180.0 149.4 L 191.0 149.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 140.3 40.5 L 164.9 57.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 164.9 57.4 L 186.9 77.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 140.3 40.5 L 134.4 40.4 L 134.4 42.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 135.9 124.8 L 130.0 124.0 L 130.0 125.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 130.0 124.0 Q 130.8 81.1 134.4 40.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 130.0 125.2 L 173.8 111.5 L 176.0 150.8 L 187.0 150.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 134.4 42.3 L 159.0 59.3 L 180.9 79.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 130.0 125.2 L 173.8 111.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 173.8 111.5 L 176.0 150.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98876" stroke-linecap="round"/>
|
||||
<path d="M 176.0 150.8 L 187.0 150.2" stroke="url(#grad-leg_r-2)" stroke-width="5.98376" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 134.4 42.3 L 159.0 59.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 159.0 59.3 L 180.9 79.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 183.9 84.5 L 183.9 72.5" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="137.2" cy="20.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="146.7" y1="24.0" x2="153.4" y2="26.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Curl</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="135.9" y1="124.8" x2="179.4" y2="110.0"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#969ca7"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="179.4" y1="110.0" x2="180.0" y2="149.4"><stop offset="0" stop-color="#969ca7"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="173.8" y1="111.5" x2="176.0" y2="150.8"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3c424d"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="176.0" y1="150.8" x2="187.0" y2="150.2"><stop offset="0" stop-color="#3c424d"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 115.2 160.7 L 203.0 160.7 L 203.0 150.3 L 115.2 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 116.0 134.0 L 150.0 134.0 L 150.0 134.0 L 116.0 134.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 136.0 52.0 L 164.0 70.0 L 164.0 70.0 L 136.0 52.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 164.0 70.0 L 164.0 128.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 135.9 124.8 L 179.4 110.0 L 180.0 149.4 L 191.0 149.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 140.3 40.5 L 164.9 57.4 L 184.2 34.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 135.9 124.8 L 179.4 110.0" stroke="url(#grad-leg_l-0)" stroke-width="5.08538" stroke-linecap="round"/>
|
||||
<path d="M 179.4 110.0 L 180.0 149.4" stroke="url(#grad-leg_l-1)" stroke-width="5.08538" stroke-linecap="round"/>
|
||||
<path d="M 180.0 149.4 L 191.0 149.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 140.3 40.5 L 164.9 57.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 164.9 57.4 L 184.2 34.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 140.3 40.5 L 134.4 40.4 L 134.4 42.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 135.9 124.8 L 130.0 124.0 L 130.0 125.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 130.0 124.0 Q 130.8 81.1 134.4 40.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 130.0 125.2 L 173.8 111.5 L 176.0 150.8 L 187.0 150.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 134.4 42.3 L 159.0 59.3 L 178.3 36.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 130.0 125.2 L 173.8 111.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 173.8 111.5 L 176.0 150.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98876" stroke-linecap="round"/>
|
||||
<path d="M 176.0 150.8 L 187.0 150.2" stroke="url(#grad-leg_r-2)" stroke-width="5.98376" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 134.4 42.3 L 159.0 59.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 159.0 59.3 L 178.3 36.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 181.2 41.7 L 181.2 29.7" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="137.2" cy="20.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="146.7" y1="24.0" x2="153.4" y2="26.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 119 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Arm Curl</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="135.9" y1="124.8" x2="179.4" y2="110.0"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#969ca7"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="179.4" y1="110.0" x2="180.0" y2="149.4"><stop offset="0" stop-color="#969ca7"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="173.8" y1="111.5" x2="176.0" y2="150.8"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3c424d"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="176.0" y1="150.8" x2="187.0" y2="150.2"><stop offset="0" stop-color="#3c424d"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 115.2 160.7 L 203.0 160.7 L 203.0 150.3 L 115.2 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 116.0 134.0 L 150.0 134.0 L 150.0 134.0 L 116.0 134.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 136.0 52.0 L 164.0 70.0 L 164.0 70.0 L 136.0 52.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 164.0 70.0 L 164.0 128.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 135.9 124.8 L 179.4 110.0 L 180.0 149.4 L 191.0 149.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 140.3 40.5 L 164.9 57.4 L 184.2 34.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 135.9 124.8 L 179.4 110.0" stroke="url(#grad-leg_l-0)" stroke-width="5.08538" stroke-linecap="round"/>
|
||||
<path d="M 179.4 110.0 L 180.0 149.4" stroke="url(#grad-leg_l-1)" stroke-width="5.08538" stroke-linecap="round"/>
|
||||
<path d="M 180.0 149.4 L 191.0 149.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 140.3 40.5 L 164.9 57.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 164.9 57.4 L 184.2 34.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 140.3 40.5 L 134.4 40.4 L 134.4 42.3" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 135.9 124.8 L 130.0 124.0 L 130.0 125.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 130.0 124.0 Q 130.8 81.1 134.4 40.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 130.0 125.2 L 173.8 111.5 L 176.0 150.8 L 187.0 150.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 134.4 42.3 L 159.0 59.3 L 178.3 36.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 130.0 125.2 L 173.8 111.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 173.8 111.5 L 176.0 150.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98876" stroke-linecap="round"/>
|
||||
<path d="M 176.0 150.8 L 187.0 150.2" stroke="url(#grad-leg_r-2)" stroke-width="5.98376" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 134.4 42.3 L 159.0 59.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 159.0 59.3 L 178.3 36.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 181.2 41.7 L 181.2 29.7" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="137.2" cy="20.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="146.7" y1="24.0" x2="153.4" y2="26.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,16 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Back Extension</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="102.8" x2="113.8" y2="121.1"><stop offset="0" stop-color="#959aa6"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="72.0" y1="136.7" x2="76.9" y2="146.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#424753"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 60.0 160.4 L 264.9 160.4 L 264.9 150.0 L 60.0 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 102.0 124.0 L 154.0 106.0 L 154.0 106.0 L 102.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 130.0 122.0 L 130.0 150.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 142.0 L 88.0 142.0 L 88.0 142.0 L 58.0 142.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 230.6 141.1 L 200.7 139.0 L 222.3 159.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 102.8 L 113.8 121.1 L 76.8 135.9 L 83.0 144.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 230.6 141.1 L 200.7 139.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 200.7 139.0 L 222.3 159.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 102.8 L 113.8 121.1" stroke="url(#grad-leg_l-0)" stroke-width="5.09165" stroke-linecap="round"/>
|
||||
<path d="M 113.8 121.1 L 76.8 135.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 76.8 135.9 L 83.0 144.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 230.6 141.1 L 224.7 141.0 L 224.7 142.9" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 102.8 L 150.0 102.0 L 150.0 103.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 102.0 Q 192.4 114.2 224.7 141.0" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 224.7 142.9 L 194.8 140.8 L 216.3 161.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 103.2 L 110.7 126.8 L 72.0 136.7 L 76.9 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 224.7 142.9 L 194.8 140.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 194.8 140.8 L 216.3 161.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 103.2 L 110.7 126.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 110.7 126.8 L 72.0 136.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 72.0 136.7 L 76.9 146.4" stroke="url(#grad-leg_r-2)" stroke-width="5.96489" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle cx="80.1" cy="142.6" r="4.5" fill="#6b7180"/>
|
||||
<circle id="head" cx="239.1" cy="154.7" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="236.6" y1="164.4" x2="234.9" y2="171.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,16 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Back Extension</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="102.8" x2="113.8" y2="121.1"><stop offset="0" stop-color="#959aa6"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="72.0" y1="136.7" x2="76.9" y2="146.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#424753"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 60.0 160.4 L 264.9 160.4 L 264.9 150.0 L 60.0 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 102.0 124.0 L 154.0 106.0 L 154.0 106.0 L 102.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 130.0 122.0 L 130.0 150.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 142.0 L 88.0 142.0 L 88.0 142.0 L 58.0 142.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 102.8 L 113.8 121.1 L 76.8 135.9 L 83.0 144.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 230.9 62.9 L 216.3 88.7 L 244.3 78.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 102.8 L 113.8 121.1" stroke="url(#grad-leg_l-0)" stroke-width="5.09165" stroke-linecap="round"/>
|
||||
<path d="M 113.8 121.1 L 76.8 135.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 76.8 135.9 L 83.0 144.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 230.9 62.9 L 216.3 88.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 216.3 88.7 L 244.3 78.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 230.9 62.9 L 225.0 62.8 L 225.0 64.7" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 102.8 L 150.0 102.0 L 150.0 103.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 102.0 Q 190.5 85.8 225.0 62.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 103.2 L 110.7 126.8 L 72.0 136.7 L 76.9 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 225.0 64.7 L 210.4 90.6 L 238.4 80.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 103.2 L 110.7 126.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 110.7 126.8 L 72.0 136.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 72.0 136.7 L 76.9 146.4" stroke="url(#grad-leg_r-2)" stroke-width="5.96489" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 225.0 64.7 L 210.4 90.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 210.4 90.6 L 238.4 80.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle cx="80.1" cy="142.6" r="4.5" fill="#6b7180"/>
|
||||
<circle id="head" cx="242.9" cy="54.2" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="252.8" y1="55.7" x2="259.7" y2="56.8" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 357 KiB After Width: | Height: | Size: 371 KiB |
|
Before Width: | Height: | Size: 178 KiB After Width: | Height: | Size: 185 KiB |
@@ -1,16 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Back Extension</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="102.8" x2="113.8" y2="121.1"><stop offset="0" stop-color="#959aa6"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="72.0" y1="136.7" x2="76.9" y2="146.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#424753"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 60.0 160.4 L 264.9 160.4 L 264.9 150.0 L 60.0 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 102.0 124.0 L 154.0 106.0 L 154.0 106.0 L 102.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 130.0 122.0 L 130.0 150.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 142.0 L 88.0 142.0 L 88.0 142.0 L 58.0 142.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 102.8 L 113.8 121.1 L 76.8 135.9 L 83.0 144.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 230.9 62.9 L 216.3 88.7 L 244.3 78.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 102.8 L 113.8 121.1" stroke="url(#grad-leg_l-0)" stroke-width="5.09165" stroke-linecap="round"/>
|
||||
<path d="M 113.8 121.1 L 76.8 135.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 76.8 135.9 L 83.0 144.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 230.9 62.9 L 216.3 88.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 216.3 88.7 L 244.3 78.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 230.9 62.9 L 225.0 62.8 L 225.0 64.7" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 102.8 L 150.0 102.0 L 150.0 103.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 102.0 Q 190.5 85.8 225.0 62.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 103.2 L 110.7 126.8 L 72.0 136.7 L 76.9 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 225.0 64.7 L 210.4 90.6 L 238.4 80.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 103.2 L 110.7 126.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 110.7 126.8 L 72.0 136.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 72.0 136.7 L 76.9 146.4" stroke="url(#grad-leg_r-2)" stroke-width="5.96489" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 225.0 64.7 L 210.4 90.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 210.4 90.6 L 238.4 80.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle cx="80.1" cy="142.6" r="4.5" fill="#6b7180"/>
|
||||
<circle id="head" cx="242.9" cy="54.2" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="252.8" y1="55.7" x2="259.7" y2="56.8" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,16 +1,35 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Barbell Squat</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.1" y1="90.9" x2="169.8" y2="122.1"><stop offset="0" stop-color="#25a094"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="166.4" y1="122.3" x2="160.0" y2="149.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#31a69a"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="160.0" y1="149.2" x2="167.5" y2="150.9"><stop offset="0" stop-color="#31a69a"/><stop offset="1" stop-color="#37a99d"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.5 157.5 L 193.9 157.5 L 193.9 150.2 L 121.5 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 164.1 90.9 L 169.8 122.1 L 162.8 148.9 L 170.3 150.7" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 91.3 L 153.6 122.3 L 160.0 149.2 L 152.5 150.9" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 170.4 32.2 L 183.1 48.6 L 167.0 35.3" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.1 90.9 L 169.8 122.1" stroke="url(#grad-leg_l-0)" stroke-width="3.77978" stroke-linecap="round"/>
|
||||
<path d="M 169.8 122.1 L 162.8 148.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 162.8 148.9 L 170.3 150.7" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 91.3 L 166.4 122.3" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 166.4 122.3 L 160.0 149.2" stroke="url(#grad-leg_r-1)" stroke-width="4.09597" stroke-linecap="round"/>
|
||||
<path d="M 160.0 149.2 L 167.5 150.9" stroke="url(#grad-leg_r-2)" stroke-width="3.97337" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 170.4 32.2 L 183.1 48.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 183.1 48.6 L 174.3 29.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 170.4 32.2 L 166.2 32.1 L 166.2 33.5" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.1 90.9 L 160.0 90.4 L 160.0 91.3" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 90.4 Q 163.2 60.6 166.2 32.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 166.2 33.5 L 182.9 46.1 L 164.2 36.6" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 165.6 32.8 L 165.6 39.1" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="165.6" cy="32.8" r="9.799999999999999" fill="#6b7180"/>
|
||||
<circle cx="165.6" cy="39.1" r="9.799999999999999" fill="#6b7180"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 166.2 33.5 L 182.9 46.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 182.9 46.1 L 168.8 30.7" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 171.6 27.1 L 171.6 33.4" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="171.6" cy="27.1" r="9.799999999999999" fill="#6b7180"/>
|
||||
<circle cx="171.6" cy="33.4" r="9.799999999999999" fill="#6b7180"/>
|
||||
<circle id="head" cx="168.2" cy="18.5" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="175.2" y1="18.7" x2="180.1" y2="18.9" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Barbell Squat</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="134.0" y1="121.7" x2="166.2" y2="122.0"><stop offset="0" stop-color="#7dcbc1"/><stop offset="1" stop-color="#7ecbc1"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="166.2" y1="122.0" x2="162.8" y2="149.3"><stop offset="0" stop-color="#7ecbc1"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.1" y1="122.1" x2="160.0" y2="149.6"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#199a8e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="160.0" y1="149.6" x2="167.3" y2="147.3"><stop offset="0" stop-color="#199a8e"/><stop offset="1" stop-color="#11968a"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.5 157.9 L 193.9 157.9 L 193.9 150.6 L 121.5 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 134.0 121.7 L 166.2 122.0 L 162.8 149.3 L 170.2 147.4" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 166.4 72.1 L 185.5 63.4 L 164.9 67.5" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 129.9 122.1 L 162.1 122.1 L 160.0 149.6 L 167.3 147.3" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 134.0 121.7 L 166.2 122.0" stroke="url(#grad-leg_l-0)" stroke-width="3.54768" stroke-linecap="round"/>
|
||||
<path d="M 166.2 122.0 L 162.8 149.3" stroke="url(#grad-leg_l-1)" stroke-width="3.52262" stroke-linecap="round"/>
|
||||
<path d="M 162.8 149.3 L 170.2 147.4" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 166.4 72.1 L 185.5 63.4" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 185.5 63.4 L 164.9 67.5" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 129.9 122.1 L 162.1 122.1" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 162.1 122.1 L 160.0 149.6" stroke="url(#grad-leg_r-1)" stroke-width="4.16451" stroke-linecap="round"/>
|
||||
<path d="M 160.0 149.6 L 167.3 147.3" stroke="url(#grad-leg_r-2)" stroke-width="4.1536" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 166.4 72.1 L 162.3 72.1 L 162.3 73.4" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 134.0 121.7 L 129.9 121.2 L 129.9 122.1" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 129.9 121.2 Q 148.2 97.2 162.3 72.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 162.3 73.4 L 183.0 70.2 L 162.1 68.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 162.3 73.4 L 183.0 70.2" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 183.0 70.2 L 162.1 68.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 163.5 65.0 L 163.5 71.3" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="163.5" cy="65.0" r="9.799999999999999" fill="#6b7180"/>
|
||||
<circle cx="163.5" cy="71.3" r="9.799999999999999" fill="#6b7180"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 157 KiB After Width: | Height: | Size: 154 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Barbell Squat</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="134.0" y1="121.7" x2="166.2" y2="122.0"><stop offset="0" stop-color="#7dcbc1"/><stop offset="1" stop-color="#7ecbc1"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="166.2" y1="122.0" x2="162.8" y2="149.3"><stop offset="0" stop-color="#7ecbc1"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="162.1" y1="122.1" x2="160.0" y2="149.6"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#199a8e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="160.0" y1="149.6" x2="167.3" y2="147.3"><stop offset="0" stop-color="#199a8e"/><stop offset="1" stop-color="#11968a"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 121.5 157.9 L 193.9 157.9 L 193.9 150.6 L 121.5 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 134.0 121.7 L 166.2 122.0 L 162.8 149.3 L 170.2 147.4" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 166.4 72.1 L 185.5 63.4 L 164.9 67.5" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 129.9 122.1 L 162.1 122.1 L 160.0 149.6 L 167.3 147.3" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 134.0 121.7 L 166.2 122.0" stroke="url(#grad-leg_l-0)" stroke-width="3.54768" stroke-linecap="round"/>
|
||||
<path d="M 166.2 122.0 L 162.8 149.3" stroke="url(#grad-leg_l-1)" stroke-width="3.52262" stroke-linecap="round"/>
|
||||
<path d="M 162.8 149.3 L 170.2 147.4" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 166.4 72.1 L 185.5 63.4" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 185.5 63.4 L 164.9 67.5" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 129.9 122.1 L 162.1 122.1" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 162.1 122.1 L 160.0 149.6" stroke="url(#grad-leg_r-1)" stroke-width="4.16451" stroke-linecap="round"/>
|
||||
<path d="M 160.0 149.6 L 167.3 147.3" stroke="url(#grad-leg_r-2)" stroke-width="4.1536" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 166.4 72.1 L 162.3 72.1 L 162.3 73.4" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 134.0 121.7 L 129.9 121.2 L 129.9 122.1" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 129.9 121.2 Q 148.2 97.2 162.3 72.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 162.3 73.4 L 183.0 70.2 L 162.1 68.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 162.3 73.4 L 183.0 70.2" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 183.0 70.2 L 162.1 68.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 163.5 65.0 L 163.5 71.3" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="163.5" cy="65.0" r="9.799999999999999" fill="#6b7180"/>
|
||||
<circle cx="163.5" cy="71.3" r="9.799999999999999" fill="#6b7180"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bench Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="116.8" x2="201.2" y2="108.9"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9ba1ac"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="201.2" y1="108.9" x2="200.0" y2="148.3"><stop offset="0" stop-color="#9ba1ac"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="195.3" y1="109.3" x2="196.0" y2="148.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="196.0" y1="148.7" x2="206.9" y2="147.6"><stop offset="0" stop-color="#3f4450"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 23.2 160.6 L 223.0 160.6 L 223.0 150.2 L 23.2 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 124.0 L 162.0 124.0 L 162.0 124.0 L 58.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 78.0 129.0 L 78.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 144.0 129.0 L 144.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 70.9 116.1 L 97.4 129.9 L 97.0 100.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 116.8 L 201.2 108.9 L 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 70.9 116.1 L 97.4 129.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 97.4 129.9 L 97.0 100.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 116.8 L 201.2 108.9" stroke="url(#grad-leg_l-0)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 201.2 108.9 L 200.0 148.3" stroke="url(#grad-leg_l-1)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 70.9 116.1 L 65.0 116.0 L 65.0 117.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 116.8 L 150.0 116.0 L 150.0 117.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 116.0 Q 106.5 116.0 65.0 116.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 117.2 L 195.3 109.3 L 196.0 148.7 L 206.9 147.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 65.0 117.9 L 91.6 131.7 L 93.0 102.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 117.2 L 195.3 109.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.3 109.3 L 196.0 148.7" stroke="url(#grad-leg_r-1)" stroke-width="5.97557" stroke-linecap="round"/>
|
||||
<path d="M 196.0 148.7 L 206.9 147.6" stroke="url(#grad-leg_r-2)" stroke-width="5.96321" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 65.0 117.9 L 91.6 131.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 91.6 131.7 L 93.0 102.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 95.0 96.7 L 95.0 105.8" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="95.0" cy="96.7" r="12" fill="#6b7180"/>
|
||||
<circle cx="95.0" cy="105.8" r="12" fill="#6b7180"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,19 +1,41 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bench Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="116.8" x2="201.2" y2="108.9"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9ba1ac"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="201.2" y1="108.9" x2="200.0" y2="148.3"><stop offset="0" stop-color="#9ba1ac"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="65.4" y1="87.0" x2="49.6" y2="61.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#83cec4"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="195.3" y1="109.3" x2="196.0" y2="148.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="196.0" y1="148.7" x2="206.9" y2="147.6"><stop offset="0" stop-color="#3f4450"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="65.0" y1="117.9" x2="60.6" y2="88.7"><stop offset="0" stop-color="#12978b"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 23.2 160.6 L 223.0 160.6 L 223.0 150.2 L 23.2 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 124.0 L 162.0 124.0 L 162.0 124.0 L 58.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 78.0 129.0 L 78.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 144.0 129.0 L 144.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 116.8 L 201.2 108.9 L 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 70.9 116.1 L 65.4 87.0 L 71.0 58.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 116.8 L 201.2 108.9" stroke="url(#grad-leg_l-0)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 201.2 108.9 L 200.0 148.3" stroke="url(#grad-leg_l-1)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 70.9 116.1 L 65.4 87.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 65.4 87.0 L 49.6 61.9" stroke="url(#grad-arm_l-1)" stroke-width="5.01125" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 70.9 116.1 L 65.0 116.0 L 65.0 117.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 116.8 L 150.0 116.0 L 150.0 117.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 116.0 Q 106.5 116.0 65.0 116.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 117.2 L 195.3 109.3 L 196.0 148.7 L 206.9 147.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 65.0 117.9 L 60.6 88.7 L 67.0 59.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 69.0 54.4 L 69.0 63.4" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="69.0" cy="54.4" r="12" fill="#6b7180"/>
|
||||
<circle cx="69.0" cy="63.4" r="12" fill="#6b7180"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 117.2 L 195.3 109.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.3 109.3 L 196.0 148.7" stroke="url(#grad-leg_r-1)" stroke-width="5.97557" stroke-linecap="round"/>
|
||||
<path d="M 196.0 148.7 L 206.9 147.6" stroke="url(#grad-leg_r-2)" stroke-width="5.96321" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 65.0 117.9 L 60.6 88.7" stroke="url(#grad-arm_r-0)" stroke-width="5.97732" stroke-linecap="round"/>
|
||||
<path d="M 60.6 88.7 L 46.1 62.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 47.9 57.9 L 47.9 66.9" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="47.9" cy="57.9" r="12" fill="#6b7180"/>
|
||||
<circle cx="47.9" cy="66.9" r="12" fill="#6b7180"/>
|
||||
<circle id="head" cx="45.2" cy="113.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="46.6" y1="103.4" x2="47.6" y2="96.5" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 354 KiB After Width: | Height: | Size: 369 KiB |
|
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 157 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bench Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="116.8" x2="201.2" y2="108.9"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9ba1ac"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="201.2" y1="108.9" x2="200.0" y2="148.3"><stop offset="0" stop-color="#9ba1ac"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="195.3" y1="109.3" x2="196.0" y2="148.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="196.0" y1="148.7" x2="206.9" y2="147.6"><stop offset="0" stop-color="#3f4450"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 23.2 160.6 L 223.0 160.6 L 223.0 150.2 L 23.2 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 124.0 L 162.0 124.0 L 162.0 124.0 L 58.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 78.0 129.0 L 78.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 144.0 129.0 L 144.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 70.9 116.1 L 97.4 129.9 L 97.0 100.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 116.8 L 201.2 108.9 L 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 70.9 116.1 L 97.4 129.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 97.4 129.9 L 97.0 100.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 116.8 L 201.2 108.9" stroke="url(#grad-leg_l-0)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 201.2 108.9 L 200.0 148.3" stroke="url(#grad-leg_l-1)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 70.9 116.1 L 65.0 116.0 L 65.0 117.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 116.8 L 150.0 116.0 L 150.0 117.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 116.0 Q 106.5 116.0 65.0 116.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 117.2 L 195.3 109.3 L 196.0 148.7 L 206.9 147.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 65.0 117.9 L 91.6 131.7 L 93.0 102.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 117.2 L 195.3 109.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.3 109.3 L 196.0 148.7" stroke="url(#grad-leg_r-1)" stroke-width="5.97557" stroke-linecap="round"/>
|
||||
<path d="M 196.0 148.7 L 206.9 147.6" stroke="url(#grad-leg_r-2)" stroke-width="5.96321" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 65.0 117.9 L 91.6 131.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 91.6 131.7 L 93.0 102.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 95.0 96.7 L 95.0 105.8" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="95.0" cy="96.7" r="12" fill="#6b7180"/>
|
||||
<circle cx="95.0" cy="105.8" r="12" fill="#6b7180"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bird Dog</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="112.0" y1="93.0" x2="115.9" y2="122.2"><stop offset="0" stop-color="#7ecbc1"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="201.5" y2="151.7"><stop offset="0" stop-color="#53b6ab"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#0e9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="110.1" y1="124.1" x2="105.0" y2="153.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#15988c"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 37.3 160.4 L 298.0 160.4 L 298.0 150.0 L 37.3 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 112.0 93.0 L 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 201.5 151.7 L 241.5 151.7 L 250.5 157.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 112.0 93.0 L 115.9 122.2" stroke="url(#grad-arm_r-0)" stroke-width="5.03158" stroke-linecap="round"/>
|
||||
<path d="M 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 201.5 151.7" stroke="url(#grad-leg_r-0)" stroke-width="5.20929" stroke-linecap="round"/>
|
||||
<path d="M 201.5 151.7 L 241.5 151.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 241.5 151.7 L 250.5 157.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.9972" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 106.0 94.8 L 106.0 92.9 L 112.0 93.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 147.0 99.3 106.0 92.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 106.0 94.8 L 110.1 124.1 L 105.0 153.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 106.0 94.8 L 110.1 124.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 110.1 124.1 L 105.0 153.2" stroke="url(#grad-arm_l-1)" stroke-width="5.96886" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="86.2" cy="95.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="77.1" y1="99.5" x2="70.8" y2="102.4" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bird Dog</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="240.3" y2="95.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#72c5bb"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="240.3" y1="95.0" x2="279.0" y2="84.8"><stop offset="0" stop-color="#72c5bb"/><stop offset="1" stop-color="#58b8ae"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="279.0" y1="84.8" x2="286.0" y2="93.1"><stop offset="0" stop-color="#58b8ae"/><stop offset="1" stop-color="#6dc3b8"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="190.0" y1="107.2" x2="195.6" y2="152.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#3aaa9f"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#3aaa9f"/><stop offset="1" stop-color="#4ab2a7"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 37.3 160.4 L 298.0 160.4 L 298.0 150.0 L 37.3 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 112.0 93.0 L 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 240.3 95.0 L 279.0 84.8 L 286.0 93.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 112.0 93.0 L 115.9 122.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 240.3 95.0" stroke="url(#grad-leg_r-0)" stroke-width="5.0833" stroke-linecap="round"/>
|
||||
<path d="M 240.3 95.0 L 279.0 84.8" stroke="url(#grad-leg_r-1)" stroke-width="5.27526" stroke-linecap="round"/>
|
||||
<path d="M 279.0 84.8 L 286.0 93.1" stroke="url(#grad-leg_r-2)" stroke-width="5.29548" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="url(#grad-leg_l-0)" stroke-width="5.81247" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#3aaa9f" stroke-width="5.62495" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.55873" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 106.0 94.8 L 106.0 92.9 L 112.0 93.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 147.0 99.3 106.0 92.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 106.0 94.8 L 77.7 85.2 L 49.3 75.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 106.0 94.8 L 77.7 85.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 77.7 85.2 L 49.3 75.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="86.2" cy="95.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="76.5" y1="97.9" x2="69.8" y2="99.6" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bird Dog</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="112.0" y1="93.0" x2="115.9" y2="122.2"><stop offset="0" stop-color="#7ecbc1"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="201.5" y2="151.7"><stop offset="0" stop-color="#53b6ab"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#0e9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="110.1" y1="124.1" x2="105.0" y2="153.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#15988c"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 37.3 160.4 L 298.0 160.4 L 298.0 150.0 L 37.3 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 112.0 93.0 L 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 201.5 151.7 L 241.5 151.7 L 250.5 157.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 112.0 93.0 L 115.9 122.2" stroke="url(#grad-arm_r-0)" stroke-width="5.03158" stroke-linecap="round"/>
|
||||
<path d="M 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 201.5 151.7" stroke="url(#grad-leg_r-0)" stroke-width="5.20929" stroke-linecap="round"/>
|
||||
<path d="M 201.5 151.7 L 241.5 151.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 241.5 151.7 L 250.5 157.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.9972" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 106.0 94.8 L 106.0 92.9 L 112.0 93.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 147.0 99.3 106.0 92.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 106.0 94.8 L 110.1 124.1 L 105.0 153.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 106.0 94.8 L 110.1 124.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 110.1 124.1 L 105.0 153.2" stroke="url(#grad-arm_l-1)" stroke-width="5.96886" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="86.2" cy="95.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="77.1" y1="99.5" x2="70.8" y2="102.4" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bird Dog</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="83.6" y1="83.3" x2="55.2" y2="73.7"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#7fcbc1"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="110.1" y1="124.1" x2="105.0" y2="153.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#34a79c"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 37.3 160.4 L 298.0 160.4 L 298.0 150.0 L 37.3 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 201.5 151.7 L 241.5 151.7 L 250.5 157.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 112.0 93.0 L 83.6 83.3 L 55.2 73.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 201.5 151.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 201.5 151.7 L 241.5 151.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 241.5 151.7 L 250.5 157.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 112.0 93.0 L 83.6 83.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 83.6 83.3 L 55.2 73.7" stroke="url(#grad-arm_r-1)" stroke-width="5.03029" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 106.0 94.8 L 106.0 92.9 L 112.0 93.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 147.0 99.3 106.0 92.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 106.0 94.8 L 110.1 124.1 L 105.0 153.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 234.4 95.5 L 273.1 85.3 L 280.1 93.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 106.0 94.8 L 110.1 124.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 110.1 124.1 L 105.0 153.2" stroke="url(#grad-arm_l-1)" stroke-width="5.8371" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 234.4 95.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 234.4 95.5 L 273.1 85.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 273.1 85.3 L 280.1 93.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="86.2" cy="95.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="76.5" y1="97.9" x2="69.8" y2="99.6" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 626 KiB After Width: | Height: | Size: 804 KiB |
|
Before Width: | Height: | Size: 248 KiB After Width: | Height: | Size: 303 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bird Dog</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="240.3" y2="95.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#72c5bb"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="240.3" y1="95.0" x2="279.0" y2="84.8"><stop offset="0" stop-color="#72c5bb"/><stop offset="1" stop-color="#58b8ae"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="279.0" y1="84.8" x2="286.0" y2="93.1"><stop offset="0" stop-color="#58b8ae"/><stop offset="1" stop-color="#6dc3b8"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="190.0" y1="107.2" x2="195.6" y2="152.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#3aaa9f"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#3aaa9f"/><stop offset="1" stop-color="#4ab2a7"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 37.3 160.4 L 298.0 160.4 L 298.0 150.0 L 37.3 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 112.0 93.0 L 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 240.3 95.0 L 279.0 84.8 L 286.0 93.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 112.0 93.0 L 115.9 122.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 115.9 122.2 L 111.0 151.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 240.3 95.0" stroke="url(#grad-leg_r-0)" stroke-width="5.0833" stroke-linecap="round"/>
|
||||
<path d="M 240.3 95.0 L 279.0 84.8" stroke="url(#grad-leg_r-1)" stroke-width="5.27526" stroke-linecap="round"/>
|
||||
<path d="M 279.0 84.8 L 286.0 93.1" stroke="url(#grad-leg_r-2)" stroke-width="5.29548" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="url(#grad-leg_l-0)" stroke-width="5.81247" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#3aaa9f" stroke-width="5.62495" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.55873" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 106.0 94.8 L 106.0 92.9 L 112.0 93.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 147.0 99.3 106.0 92.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 106.0 94.8 L 77.7 85.2 L 49.3 75.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 106.0 94.8 L 77.7 85.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 77.7 85.2 L 49.3 75.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="86.2" cy="95.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="76.5" y1="97.9" x2="69.8" y2="99.6" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bodyweight Squat</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.1" y1="90.9" x2="169.8" y2="122.1"><stop offset="0" stop-color="#49b1a6"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="168.3" y1="32.0" x2="169.0" y2="52.7"><stop offset="0" stop-color="#a2a8b3"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="160.0" y1="123.4" x2="160.0" y2="149.2"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#55b7ac"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="160.0" y1="149.2" x2="160.0" y2="152.2"><stop offset="0" stop-color="#55b7ac"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="164.9" y1="54.0" x2="167.4" y2="74.5"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#414652"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 141.8 157.5 L 232.3 157.5 L 232.3 150.2 L 141.8 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 164.1 90.9 L 169.8 122.1 L 162.8 148.9 L 170.3 150.7" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 168.3 32.0 L 169.0 52.7 L 171.6 73.2" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 91.3 L 160.0 123.4 L 160.0 149.2 L 160.0 152.2" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.1 90.9 L 169.8 122.1" stroke="url(#grad-leg_l-0)" stroke-width="3.67613" stroke-linecap="round"/>
|
||||
<path d="M 169.8 122.1 L 162.8 148.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 162.8 148.9 L 170.3 150.7" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 168.3 32.0 L 169.0 52.7" stroke="url(#grad-arm_l-0)" stroke-width="3.52319" stroke-linecap="round"/>
|
||||
<path d="M 169.0 52.7 L 171.6 73.2" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 91.3 L 160.0 123.4" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 160.0 123.4 L 160.0 149.2" stroke="url(#grad-leg_r-1)" stroke-width="3.99232" stroke-linecap="round"/>
|
||||
<path d="M 160.0 149.2 L 160.0 152.2" stroke="url(#grad-leg_r-2)" stroke-width="3.99232" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 168.3 32.0 L 164.2 31.9 L 164.2 33.3" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.1 90.9 L 160.0 90.4 L 160.0 91.3" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 90.4 Q 162.1 60.5 164.2 31.9" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 164.2 33.3 L 164.9 54.0 L 167.4 74.5" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 164.2 33.3 L 164.9 54.0" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 164.9 54.0 L 167.4 74.5" stroke="url(#grad-arm_r-1)" stroke-width="4.17713" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="165.6" cy="18.2" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="172.6" y1="18.2" x2="177.5" y2="18.2" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bodyweight Squat</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="154.3" y1="120.3" x2="184.4" y2="131.7"><stop offset="0" stop-color="#6cc2b8"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="160.0" y1="149.6" x2="166.9" y2="152.9"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#199a8e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 141.8 157.9 L 232.3 157.9 L 232.3 150.6 L 141.8 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 154.3 120.3 L 184.4 131.7 L 162.8 149.3 L 169.6 152.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 182.3 68.1 L 203.3 67.4 L 223.9 63.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.2 120.7 L 180.6 131.0 L 160.0 149.6 L 166.9 152.9" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 154.3 120.3 L 184.4 131.7" stroke="url(#grad-leg_l-0)" stroke-width="3.57578" stroke-linecap="round"/>
|
||||
<path d="M 184.4 131.7 L 162.8 149.3" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 162.8 149.3 L 169.6 152.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 182.3 68.1 L 203.3 67.4" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 203.3 67.4 L 223.9 63.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.2 120.7 L 180.6 131.0" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 180.6 131.0 L 160.0 149.6" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 160.0 149.6 L 166.9 152.9" stroke="url(#grad-leg_r-2)" stroke-width="4.16575" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 182.3 68.1 L 178.1 68.1 L 178.1 69.4" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 154.3 120.3 L 150.2 119.8 L 150.2 120.7" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.2 119.8 Q 166.3 94.3 178.1 68.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 178.1 69.4 L 199.1 68.7 L 219.8 65.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 178.1 69.4 L 199.1 68.7" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 199.1 68.7 L 219.8 65.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="185.3" cy="56.3" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="192.3" y1="57.1" x2="197.2" y2="57.7" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 132 KiB After Width: | Height: | Size: 138 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Bodyweight Squat</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="154.3" y1="120.3" x2="184.4" y2="131.7"><stop offset="0" stop-color="#6cc2b8"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="160.0" y1="149.6" x2="166.9" y2="152.9"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#199a8e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 141.8 157.9 L 232.3 157.9 L 232.3 150.6 L 141.8 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 154.3 120.3 L 184.4 131.7 L 162.8 149.3 L 169.6 152.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 182.3 68.1 L 203.3 67.4 L 223.9 63.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.2 120.7 L 180.6 131.0 L 160.0 149.6 L 166.9 152.9" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 154.3 120.3 L 184.4 131.7" stroke="url(#grad-leg_l-0)" stroke-width="3.57578" stroke-linecap="round"/>
|
||||
<path d="M 184.4 131.7 L 162.8 149.3" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 162.8 149.3 L 169.6 152.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 182.3 68.1 L 203.3 67.4" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 203.3 67.4 L 223.9 63.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.2 120.7 L 180.6 131.0" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 180.6 131.0 L 160.0 149.6" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 160.0 149.6 L 166.9 152.9" stroke="url(#grad-leg_r-2)" stroke-width="4.16575" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 182.3 68.1 L 178.1 68.1 L 178.1 69.4" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 154.3 120.3 L 150.2 119.8 L 150.2 120.7" stroke="#3a3f4b" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.2 119.8 Q 166.3 94.3 178.1 68.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 178.1 69.4 L 199.1 68.7 L 219.8 65.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 178.1 69.4 L 199.1 68.7" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 199.1 68.7 L 219.8 65.1" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="185.3" cy="56.3" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="192.3" y1="57.1" x2="197.2" y2="57.7" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Butterfly Stretch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="213.3" y1="127.7" x2="191.3" y2="158.5"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#69c1b7"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="191.3" y1="158.5" x2="200.5" y2="163.6"><stop offset="0" stop-color="#69c1b7"/><stop offset="1" stop-color="#18998e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="154.5" y1="118.7" x2="154.0" y2="134.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="200.3" y1="84.6" x2="200.6" y2="114.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#a7adb8"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="179.4" y1="56.0" x2="179.4" y2="85.0"><stop offset="0" stop-color="#686e79"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 122.3 155.5 L 178.0 167.9 L 225.2 161.5 L 169.6 149.1 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 169.2 118.5 L 213.3 127.7 L 191.3 158.5 L 200.5 163.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 169.2 118.5 L 213.3 127.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 213.3 127.7 L 191.3 158.5" stroke="url(#grad-leg_l-1)" stroke-width="5.11794" stroke-linecap="round"/>
|
||||
<path d="M 191.3 158.5 L 200.5 163.6" stroke="url(#grad-leg_l-2)" stroke-width="5.57206" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 200.4 54.9 L 188.1 54.8 L 179.4 56.0" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 169.2 118.5 L 160.0 118.0 L 154.5 118.7" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 118.0 Q 167.5 77.0 188.1 54.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 154.5 118.7 L 154.0 134.0 L 176.8 158.8 L 178.7 164.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 200.4 54.9 L 200.3 84.6 L 199.5 114.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 179.4 56.0 L 179.4 85.0 L 178.9 114.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 154.5 118.7 L 154.0 134.0" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 154.0 134.0 L 176.8 158.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 176.8 158.8 L 178.7 164.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 200.4 54.9 L 200.3 84.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 200.3 84.6 L 200.6 114.2" stroke="url(#grad-arm_l-1)" stroke-width="5.01027" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 179.4 56.0 L 179.4 85.0" stroke="url(#grad-arm_r-0)" stroke-width="5.79181" stroke-linecap="round"/>
|
||||
<path d="M 179.4 85.0 L 179.8 113.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="198.0" cy="45.5" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="203.4" y1="53.9" x2="206.7" y2="59.0" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Butterfly Stretch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="193.5" y1="156.8" x2="202.9" y2="161.8"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#48b1a6"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="154.5" y1="118.7" x2="149.2" y2="133.4"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="185.5" y1="65.8" x2="183.4" y2="94.7"><stop offset="0" stop-color="#686d79"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 122.3 155.5 L 178.0 167.9 L 225.2 161.5 L 169.6 149.1 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 169.2 118.5 L 214.3 126.3 L 193.5 156.8 L 202.9 161.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 169.2 118.5 L 214.3 126.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 214.3 126.3 L 193.5 156.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 193.5 156.8 L 202.9 161.8" stroke="url(#grad-leg_l-2)" stroke-width="5.25531" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 206.5 64.6 L 194.2 64.6 L 185.5 65.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 169.2 118.5 L 160.0 118.0 L 154.5 118.7" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 118.0 Q 169.4 77.2 194.2 64.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 154.5 118.7 L 149.2 133.4 L 174.1 157.7 L 175.2 163.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 206.5 64.6 L 205.2 94.4 L 203.2 124.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 185.5 65.8 L 183.4 94.7 L 180.7 123.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 154.5 118.7 L 149.2 133.4" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 149.2 133.4 L 174.1 157.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 174.1 157.7 L 175.2 163.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 206.5 64.6 L 205.2 94.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 205.2 94.4 L 204.4 124.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 185.5 65.8 L 183.4 94.7" stroke="url(#grad-arm_r-0)" stroke-width="5.79336" stroke-linecap="round"/>
|
||||
<path d="M 183.4 94.7 L 181.7 123.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="205.6" cy="59.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="209.6" y1="68.9" x2="212.3" y2="74.9" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 329 KiB After Width: | Height: | Size: 368 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Butterfly Stretch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="193.5" y1="156.8" x2="202.9" y2="161.8"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#48b1a6"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="154.5" y1="118.7" x2="149.2" y2="133.4"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="185.5" y1="65.8" x2="183.4" y2="94.7"><stop offset="0" stop-color="#686d79"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 122.3 155.5 L 178.0 167.9 L 225.2 161.5 L 169.6 149.1 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 169.2 118.5 L 214.3 126.3 L 193.5 156.8 L 202.9 161.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 169.2 118.5 L 214.3 126.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 214.3 126.3 L 193.5 156.8" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 193.5 156.8 L 202.9 161.8" stroke="url(#grad-leg_l-2)" stroke-width="5.25531" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 206.5 64.6 L 194.2 64.6 L 185.5 65.8" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 169.2 118.5 L 160.0 118.0 L 154.5 118.7" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 118.0 Q 169.4 77.2 194.2 64.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 154.5 118.7 L 149.2 133.4 L 174.1 157.7 L 175.2 163.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 206.5 64.6 L 205.2 94.4 L 203.2 124.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 185.5 65.8 L 183.4 94.7 L 180.7 123.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 154.5 118.7 L 149.2 133.4" stroke="url(#grad-leg_r-0)" stroke-width="5.5" stroke-linecap="round"/>
|
||||
<path d="M 149.2 133.4 L 174.1 157.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 174.1 157.7 L 175.2 163.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 206.5 64.6 L 205.2 94.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 205.2 94.4 L 204.4 124.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 185.5 65.8 L 183.4 94.7" stroke="url(#grad-arm_r-0)" stroke-width="5.79336" stroke-linecap="round"/>
|
||||
<path d="M 183.4 94.7 L 181.7 123.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="205.6" cy="59.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="209.6" y1="68.9" x2="212.3" y2="74.9" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,5 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Calfs</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="186.0" y1="118.8" x2="212.0" y2="148.8"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#11968a"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="212.0" y1="148.8" x2="218.7" y2="140.2"><stop offset="0" stop-color="#11968a"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 109.6 160.6 L 238.3 160.6 L 238.3 150.2 L 109.6 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 124.0 126.0 L 158.0 124.0 L 158.0 124.0 L 124.0 126.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 138.0 128.0 L 138.0 150.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,13 +11,27 @@
|
||||
<path d="M 201.0 150.0 L 229.0 150.0 L 229.0 150.0 L 201.0 150.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 183.0 62.0 L 183.0 122.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 164.0 76.0 L 183.0 76.0" stroke="#6b7180" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 145.9 118.8 L 191.9 116.9 L 216.0 148.3 L 223.2 140.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 134.1 35.2 L 161.9 46.3 L 170.0 74.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 145.9 118.8 L 191.9 116.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 191.9 116.9 L 216.0 148.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 216.0 148.3 L 223.2 140.1" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 134.1 35.2 L 161.9 46.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 161.9 46.3 L 187.8 31.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 134.1 35.2 L 128.1 35.2 L 128.1 37.1" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 145.9 118.8 L 140.0 118.0 L 140.0 119.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 140.0 118.0 Q 131.0 76.0 128.1 35.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 140.0 119.2 L 186.0 118.8 L 212.0 148.8 L 218.7 140.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 128.1 37.1 L 155.7 48.8 L 166.0 76.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 140.0 119.2 L 186.0 118.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 186.0 118.8 L 212.0 148.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98397" stroke-linecap="round"/>
|
||||
<path d="M 212.0 148.8 L 218.7 140.2" stroke="url(#grad-leg_r-2)" stroke-width="5.98397" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 128.1 37.1 L 155.7 48.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 155.7 48.8 L 183.3 37.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 174.9 117.9 L 202.9 117.9" stroke="#6b7180" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 207.2 150.4 L 220.8 146.7" stroke="#6b7180" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="131.6" cy="15.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,5 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Calfs</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="145.9" y1="118.8" x2="190.8" y2="108.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#83cdc3"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="190.8" y1="108.9" x2="216.0" y2="139.5"><stop offset="0" stop-color="#83cdc3"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 109.6 160.6 L 238.3 160.6 L 238.3 150.2 L 109.6 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 124.0 126.0 L 158.0 124.0 L 158.0 124.0 L 124.0 126.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 138.0 128.0 L 138.0 150.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,13 +11,27 @@
|
||||
<path d="M 201.0 150.0 L 229.0 150.0 L 229.0 150.0 L 201.0 150.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 183.0 62.0 L 183.0 122.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 164.0 76.0 L 183.0 76.0" stroke="#6b7180" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 145.9 118.8 L 190.8 108.9 L 216.0 139.5 L 226.3 135.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 134.1 35.2 L 161.9 46.3 L 170.0 74.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 145.9 118.8 L 190.8 108.9" stroke="url(#grad-leg_l-0)" stroke-width="5.01331" stroke-linecap="round"/>
|
||||
<path d="M 190.8 108.9 L 216.0 139.5" stroke="url(#grad-leg_l-1)" stroke-width="5.01331" stroke-linecap="round"/>
|
||||
<path d="M 216.0 139.5 L 226.3 135.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 134.1 35.2 L 161.9 46.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 161.9 46.3 L 187.8 31.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 134.1 35.2 L 128.1 35.2 L 128.1 37.1" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 145.9 118.8 L 140.0 118.0 L 140.0 119.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 140.0 118.0 Q 131.0 76.0 128.1 35.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 140.0 119.2 L 185.2 110.7 L 212.0 139.9 L 222.0 135.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 128.1 37.1 L 155.7 48.8 L 166.0 76.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 140.0 119.2 L 185.2 110.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 185.2 110.7 L 212.0 139.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 212.0 139.9 L 222.0 135.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 128.1 37.1 L 155.7 48.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 155.7 48.8 L 183.3 37.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 174.0 109.8 L 202.0 109.8" stroke="#6b7180" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 207.2 141.5 L 220.8 137.9" stroke="#6b7180" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="131.6" cy="15.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 163 KiB |
@@ -1,5 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Calfs</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="145.9" y1="118.8" x2="190.8" y2="108.9"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#83cdc3"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="190.8" y1="108.9" x2="216.0" y2="139.5"><stop offset="0" stop-color="#83cdc3"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 109.6 160.6 L 238.3 160.6 L 238.3 150.2 L 109.6 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 124.0 126.0 L 158.0 124.0 L 158.0 124.0 L 124.0 126.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 138.0 128.0 L 138.0 150.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
@@ -7,13 +11,27 @@
|
||||
<path d="M 201.0 150.0 L 229.0 150.0 L 229.0 150.0 L 201.0 150.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 183.0 62.0 L 183.0 122.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 164.0 76.0 L 183.0 76.0" stroke="#6b7180" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 145.9 118.8 L 190.8 108.9 L 216.0 139.5 L 226.3 135.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 134.1 35.2 L 161.9 46.3 L 170.0 74.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 145.9 118.8 L 190.8 108.9" stroke="url(#grad-leg_l-0)" stroke-width="5.01331" stroke-linecap="round"/>
|
||||
<path d="M 190.8 108.9 L 216.0 139.5" stroke="url(#grad-leg_l-1)" stroke-width="5.01331" stroke-linecap="round"/>
|
||||
<path d="M 216.0 139.5 L 226.3 135.6" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 134.1 35.2 L 161.9 46.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 161.9 46.3 L 187.8 31.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 134.1 35.2 L 128.1 35.2 L 128.1 37.1" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 145.9 118.8 L 140.0 118.0 L 140.0 119.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 140.0 118.0 Q 131.0 76.0 128.1 35.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 140.0 119.2 L 185.2 110.7 L 212.0 139.9 L 222.0 135.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 128.1 37.1 L 155.7 48.8 L 166.0 76.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 140.0 119.2 L 185.2 110.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 185.2 110.7 L 212.0 139.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 212.0 139.9 L 222.0 135.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 128.1 37.1 L 155.7 48.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 155.7 48.8 L 183.3 37.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 174.0 109.8 L 202.0 109.8" stroke="#6b7180" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 207.2 141.5 L 220.8 137.9" stroke="#6b7180" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="131.6" cy="15.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Cat-Cow</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="115.3" y1="94.5" x2="120.9" y2="123.5"><stop offset="0" stop-color="#a3a9b4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="201.5" y2="151.7"><stop offset="0" stop-color="#7b808c"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="115.0" y1="125.3" x2="105.0" y2="153.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#404551"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 67.4 160.4 L 262.5 160.4 L 262.5 150.0 L 67.4 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 115.3 94.5 L 120.9 123.5 L 111.0 151.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 201.5 151.7 L 241.5 151.7 L 250.5 157.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 115.3 94.5 L 120.9 123.5" stroke="url(#grad-arm_r-0)" stroke-width="5.02758" stroke-linecap="round"/>
|
||||
<path d="M 120.9 123.5 L 111.0 151.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 201.5 151.7" stroke="url(#grad-leg_r-0)" stroke-width="5.20929" stroke-linecap="round"/>
|
||||
<path d="M 201.5 151.7 L 241.5 151.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 241.5 151.7 L 250.5 157.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.9972" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 109.4 96.3 L 109.4 94.4 L 115.3 94.5" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 145.2 123.6 109.4 94.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 109.4 96.3 L 115.0 125.3 L 105.0 153.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 109.4 96.3 L 115.0 125.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 115.0 125.3 L 105.0 153.2" stroke="url(#grad-arm_l-1)" stroke-width="5.9751" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="89.4" cy="96.1" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="79.8" y1="93.4" x2="73.1" y2="91.5" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Cat-Cow</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="115.9" y1="96.8" x2="124.6" y2="125.0"><stop offset="0" stop-color="#a4aab5"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="201.5" y2="151.7"><stop offset="0" stop-color="#7b808c"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="118.6" y1="126.9" x2="105.0" y2="153.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3e434f"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 67.4 160.4 L 262.5 160.4 L 262.5 150.0 L 67.4 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 115.9 96.8 L 124.6 125.0 L 111.0 151.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 201.5 151.7 L 241.5 151.7 L 250.5 157.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 115.9 96.8 L 124.6 125.0" stroke="url(#grad-arm_r-0)" stroke-width="5.02072" stroke-linecap="round"/>
|
||||
<path d="M 124.6 125.0 L 111.0 151.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 201.5 151.7" stroke="url(#grad-leg_r-0)" stroke-width="5.20929" stroke-linecap="round"/>
|
||||
<path d="M 201.5 151.7 L 241.5 151.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 241.5 151.7 L 250.5 157.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.9972" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 109.9 98.6 L 109.9 96.7 L 115.9 96.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 152.1 74.9 109.9 96.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 109.9 98.6 L 118.6 126.9 L 105.0 153.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 109.9 98.6 L 118.6 126.9" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 118.6 126.9 L 105.0 153.2" stroke="url(#grad-arm_l-1)" stroke-width="5.98377" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="93.6" cy="108.0" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="86.4" y1="115.0" x2="81.5" y2="119.9" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 361 KiB After Width: | Height: | Size: 384 KiB |
|
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 160 KiB |
@@ -1,13 +1,33 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Cat-Cow</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="115.3" y1="94.5" x2="120.9" y2="123.5"><stop offset="0" stop-color="#a3a9b4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="195.9" y1="106.8" x2="201.5" y2="151.7"><stop offset="0" stop-color="#7b808c"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="235.6" y1="152.2" x2="244.6" y2="158.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="115.0" y1="125.3" x2="105.0" y2="153.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#404551"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 67.4 160.4 L 262.5 160.4 L 262.5 150.0 L 67.4 150.0 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 115.3 94.5 L 120.9 123.5 L 111.0 151.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 195.9 106.8 L 201.5 151.7 L 241.5 151.7 L 250.5 157.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.0 107.2 L 195.6 152.2 L 235.6 152.2 L 244.6 158.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 115.3 94.5 L 120.9 123.5" stroke="url(#grad-arm_r-0)" stroke-width="5.02758" stroke-linecap="round"/>
|
||||
<path d="M 120.9 123.5 L 111.0 151.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 195.9 106.8 L 201.5 151.7" stroke="url(#grad-leg_r-0)" stroke-width="5.20929" stroke-linecap="round"/>
|
||||
<path d="M 201.5 151.7 L 241.5 151.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 241.5 151.7 L 250.5 157.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.0 107.2 L 195.6 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.6 152.2 L 235.6 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 235.6 152.2 L 244.6 158.4" stroke="url(#grad-leg_l-2)" stroke-width="5.9972" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 109.4 96.3 L 109.4 94.4 L 115.3 94.5" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.0 107.2 L 190.0 106.0 L 195.9 106.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 190.0 106.0 Q 145.2 123.6 109.4 94.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 109.4 96.3 L 115.0 125.3 L 105.0 153.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 109.4 96.3 L 115.0 125.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 115.0 125.3 L 105.0 153.2" stroke="url(#grad-arm_l-1)" stroke-width="5.9751" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="89.4" cy="96.1" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="79.8" y1="93.4" x2="73.1" y2="91.5" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Chest Opener</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.1" y1="92.3" x2="171.6" y2="123.2"><stop offset="0" stop-color="#515662"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="165.6" y1="123.9" x2="158.6" y2="150.6"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#5c616d"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="158.6" y1="150.6" x2="166.1" y2="152.5"><stop offset="0" stop-color="#5c616d"/><stop offset="1" stop-color="#626873"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="164.7" y1="33.3" x2="155.5" y2="51.8"><stop offset="0" stop-color="#81cdc3"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="151.3" y1="53.1" x2="154.2" y2="73.6"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#13978b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 124.9 157.5 L 180.0 157.5 L 180.0 150.2 L 124.9 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 164.1 92.3 L 171.6 123.2 L 161.4 148.9 L 168.6 151.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 92.7 L 165.6 123.9 L 158.6 150.6 L 166.1 152.5" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 164.7 33.3 L 155.5 51.8 L 158.4 72.3" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.1 92.3 L 171.6 123.2" stroke="url(#grad-leg_l-0)" stroke-width="3.77719" stroke-linecap="round"/>
|
||||
<path d="M 171.6 123.2 L 161.4 148.9" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 161.4 148.9 L 168.6 151.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 92.7 L 165.6 123.9" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 165.6 123.9 L 158.6 150.6" stroke="url(#grad-leg_r-1)" stroke-width="4.09338" stroke-linecap="round"/>
|
||||
<path d="M 158.6 150.6 L 166.1 152.5" stroke="url(#grad-leg_r-2)" stroke-width="3.96643" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 164.7 33.3 L 155.5 51.8" stroke="url(#grad-arm_l-0)" stroke-width="3.51367" stroke-linecap="round"/>
|
||||
<path d="M 155.5 51.8 L 158.4 72.3" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 164.7 33.3 L 160.5 33.2 L 160.5 34.5" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.1 92.3 L 160.0 91.8 L 160.0 92.7" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 91.8 Q 160.8 61.8 160.5 33.2" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 160.5 34.5 L 151.3 53.1 L 154.2 73.6" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 160.5 34.5 L 151.3 53.1" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 151.3 53.1 L 154.2 73.6" stroke="url(#grad-arm_r-1)" stroke-width="4.18205" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="160.0" cy="19.4" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="167.0" y1="18.5" x2="171.8" y2="17.8" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Chest Opener</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.1" y1="92.3" x2="171.6" y2="123.2"><stop offset="0" stop-color="#515662"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="165.6" y1="123.9" x2="158.6" y2="150.6"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#5c616d"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="158.6" y1="150.6" x2="166.1" y2="152.5"><stop offset="0" stop-color="#5c616d"/><stop offset="1" stop-color="#626873"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="150.8" y1="34.8" x2="147.0" y2="55.2"><stop offset="0" stop-color="#7fccc2"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="145.1" y1="56.7" x2="153.0" y2="75.9"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#13978b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 124.9 157.5 L 180.0 157.5 L 180.0 150.2 L 124.9 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 164.1 92.3 L 171.6 123.2 L 161.4 148.9 L 168.6 151.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 92.7 L 165.6 123.9 L 158.6 150.6 L 166.1 152.5" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 150.8 34.8 L 147.0 55.2 L 155.8 73.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.1 92.3 L 171.6 123.2" stroke="url(#grad-leg_l-0)" stroke-width="3.77719" stroke-linecap="round"/>
|
||||
<path d="M 171.6 123.2 L 161.4 148.9" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 161.4 148.9 L 168.6 151.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 92.7 L 165.6 123.9" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 165.6 123.9 L 158.6 150.6" stroke="url(#grad-leg_r-1)" stroke-width="4.09338" stroke-linecap="round"/>
|
||||
<path d="M 158.6 150.6 L 166.1 152.5" stroke="url(#grad-leg_r-2)" stroke-width="3.96643" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 150.8 34.8 L 147.0 55.2" stroke="url(#grad-arm_l-0)" stroke-width="3.51883" stroke-linecap="round"/>
|
||||
<path d="M 147.0 55.2 L 155.8 73.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 150.8 34.8 L 146.7 34.8 L 146.7 36.1" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.1 92.3 L 160.0 91.8 L 160.0 92.7" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 91.8 Q 156.2 61.9 146.7 34.8" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 146.7 36.1 L 145.1 56.7 L 153.0 75.9" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 146.7 36.1 L 145.1 56.7" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 145.1 56.7 L 153.0 75.9" stroke="url(#grad-arm_r-1)" stroke-width="4.18231" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="140.3" cy="22.5" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="145.6" y1="17.8" x2="149.2" y2="14.6" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 190 KiB After Width: | Height: | Size: 212 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Chest Opener</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.1" y1="92.3" x2="171.6" y2="123.2"><stop offset="0" stop-color="#515662"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="165.6" y1="123.9" x2="158.6" y2="150.6"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#5c616d"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="158.6" y1="150.6" x2="166.1" y2="152.5"><stop offset="0" stop-color="#5c616d"/><stop offset="1" stop-color="#626873"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="150.8" y1="34.8" x2="147.0" y2="55.2"><stop offset="0" stop-color="#7fccc2"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="145.1" y1="56.7" x2="153.0" y2="75.9"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#13978b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 124.9 157.5 L 180.0 157.5 L 180.0 150.2 L 124.9 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 164.1 92.3 L 171.6 123.2 L 161.4 148.9 L 168.6 151.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 92.7 L 165.6 123.9 L 158.6 150.6 L 166.1 152.5" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 150.8 34.8 L 147.0 55.2 L 155.8 73.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.1 92.3 L 171.6 123.2" stroke="url(#grad-leg_l-0)" stroke-width="3.77719" stroke-linecap="round"/>
|
||||
<path d="M 171.6 123.2 L 161.4 148.9" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 161.4 148.9 L 168.6 151.6" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 92.7 L 165.6 123.9" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 165.6 123.9 L 158.6 150.6" stroke="url(#grad-leg_r-1)" stroke-width="4.09338" stroke-linecap="round"/>
|
||||
<path d="M 158.6 150.6 L 166.1 152.5" stroke="url(#grad-leg_r-2)" stroke-width="3.96643" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 150.8 34.8 L 147.0 55.2" stroke="url(#grad-arm_l-0)" stroke-width="3.51883" stroke-linecap="round"/>
|
||||
<path d="M 147.0 55.2 L 155.8 73.9" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 150.8 34.8 L 146.7 34.8 L 146.7 36.1" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.1 92.3 L 160.0 91.8 L 160.0 92.7" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 91.8 Q 156.2 61.9 146.7 34.8" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 146.7 36.1 L 145.1 56.7 L 153.0 75.9" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 146.7 36.1 L 145.1 56.7" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 145.1 56.7 L 153.0 75.9" stroke="url(#grad-arm_r-1)" stroke-width="4.18231" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="140.3" cy="22.5" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="145.6" y1="17.8" x2="149.2" y2="14.6" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,17 +1,37 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Chest Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="121.9" y1="122.8" x2="166.4" y2="111.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#979da8"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="166.4" y1="111.2" x2="162.0" y2="150.4"><stop offset="0" stop-color="#979da8"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="160.7" y1="112.5" x2="158.0" y2="151.8"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="158.0" y1="151.8" x2="169.0" y2="152.5"><stop offset="0" stop-color="#3d424e"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 78.4 160.7 L 184.9 160.7 L 184.9 150.3 L 78.4 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 114.0 132.0 L 86.0 40.0 L 86.0 40.0 L 114.0 132.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 106.0 133.0 L 146.0 133.0 L 146.0 133.0 L 106.0 133.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 122.0 135.0 L 122.0 151.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 108.0 151.0 L 138.0 151.0 L 138.0 151.0 L 108.0 151.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 121.9 122.8 L 166.4 111.2 L 162.0 150.4 L 172.9 151.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 104.2 40.2 L 99.0 69.3 L 122.0 50.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 121.9 122.8 L 166.4 111.2" stroke="url(#grad-leg_l-0)" stroke-width="5.07892" stroke-linecap="round"/>
|
||||
<path d="M 166.4 111.2 L 162.0 150.4" stroke="url(#grad-leg_l-1)" stroke-width="5.07892" stroke-linecap="round"/>
|
||||
<path d="M 162.0 150.4 L 172.9 151.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 104.2 40.2 L 99.0 69.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 99.0 69.3 L 122.0 50.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 104.2 40.2 L 98.3 40.2 L 98.3 42.1" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 121.9 122.8 L 116.0 122.0 L 116.0 123.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 116.0 122.0 Q 104.0 80.7 98.3 40.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 116.0 123.2 L 160.7 112.5 L 158.0 151.8 L 169.0 152.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 98.3 42.1 L 93.1 71.2 L 116.1 52.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 116.0 123.2 L 160.7 112.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 160.7 112.5 L 158.0 151.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98479" stroke-linecap="round"/>
|
||||
<path d="M 158.0 151.8 L 169.0 152.5" stroke="url(#grad-leg_r-2)" stroke-width="5.96182" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 98.3 42.1 L 93.1 71.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 93.1 71.2 L 116.1 52.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 119.0 59.3 L 119.0 43.3" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="100.4" cy="20.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="110.4" y1="19.7" x2="117.3" y2="19.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,17 +1,37 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Chest Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="121.9" y1="122.8" x2="166.4" y2="111.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#979da8"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="166.4" y1="111.2" x2="162.0" y2="150.4"><stop offset="0" stop-color="#979da8"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="160.7" y1="112.5" x2="158.0" y2="151.8"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="158.0" y1="151.8" x2="169.0" y2="152.5"><stop offset="0" stop-color="#3d424e"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 78.4 160.7 L 184.9 160.7 L 184.9 150.3 L 78.4 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 114.0 132.0 L 86.0 40.0 L 86.0 40.0 L 114.0 132.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 106.0 133.0 L 146.0 133.0 L 146.0 133.0 L 106.0 133.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 122.0 135.0 L 122.0 151.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 108.0 151.0 L 138.0 151.0 L 138.0 151.0 L 108.0 151.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 121.9 122.8 L 166.4 111.2 L 162.0 150.4 L 172.9 151.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 104.2 40.2 L 134.0 43.3 L 163.2 50.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 121.9 122.8 L 166.4 111.2" stroke="url(#grad-leg_l-0)" stroke-width="5.07892" stroke-linecap="round"/>
|
||||
<path d="M 166.4 111.2 L 162.0 150.4" stroke="url(#grad-leg_l-1)" stroke-width="5.07892" stroke-linecap="round"/>
|
||||
<path d="M 162.0 150.4 L 172.9 151.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 104.2 40.2 L 134.0 43.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 134.0 43.3 L 163.2 50.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 104.2 40.2 L 98.3 40.2 L 98.3 42.1" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 121.9 122.8 L 116.0 122.0 L 116.0 123.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 116.0 122.0 Q 104.0 80.7 98.3 40.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 116.0 123.2 L 160.7 112.5 L 158.0 151.8 L 169.0 152.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 98.3 42.1 L 128.1 45.2 L 157.2 52.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 116.0 123.2 L 160.7 112.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 160.7 112.5 L 158.0 151.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98479" stroke-linecap="round"/>
|
||||
<path d="M 158.0 151.8 L 169.0 152.5" stroke="url(#grad-leg_r-2)" stroke-width="5.96182" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 98.3 42.1 L 128.1 45.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 128.1 45.2 L 157.2 52.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 160.2 59.4 L 160.2 43.4" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="100.4" cy="20.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="110.4" y1="19.7" x2="117.3" y2="19.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 161 KiB |
@@ -1,17 +1,37 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Chest Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="121.9" y1="122.8" x2="166.4" y2="111.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#979da8"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="166.4" y1="111.2" x2="162.0" y2="150.4"><stop offset="0" stop-color="#979da8"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="160.7" y1="112.5" x2="158.0" y2="151.8"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="158.0" y1="151.8" x2="169.0" y2="152.5"><stop offset="0" stop-color="#3d424e"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 78.4 160.7 L 184.9 160.7 L 184.9 150.3 L 78.4 150.3 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 114.0 132.0 L 86.0 40.0 L 86.0 40.0 L 114.0 132.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 106.0 133.0 L 146.0 133.0 L 146.0 133.0 L 106.0 133.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 122.0 135.0 L 122.0 151.0" stroke="#c5cad4" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 108.0 151.0 L 138.0 151.0 L 138.0 151.0 L 108.0 151.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 121.9 122.8 L 166.4 111.2 L 162.0 150.4 L 172.9 151.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 104.2 40.2 L 134.0 43.3 L 163.2 50.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 121.9 122.8 L 166.4 111.2" stroke="url(#grad-leg_l-0)" stroke-width="5.07892" stroke-linecap="round"/>
|
||||
<path d="M 166.4 111.2 L 162.0 150.4" stroke="url(#grad-leg_l-1)" stroke-width="5.07892" stroke-linecap="round"/>
|
||||
<path d="M 162.0 150.4 L 172.9 151.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 104.2 40.2 L 134.0 43.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 134.0 43.3 L 163.2 50.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 104.2 40.2 L 98.3 40.2 L 98.3 42.1" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 121.9 122.8 L 116.0 122.0 L 116.0 123.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 116.0 122.0 Q 104.0 80.7 98.3 40.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 116.0 123.2 L 160.7 112.5 L 158.0 151.8 L 169.0 152.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 98.3 42.1 L 128.1 45.2 L 157.2 52.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 116.0 123.2 L 160.7 112.5" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 160.7 112.5 L 158.0 151.8" stroke="url(#grad-leg_r-1)" stroke-width="5.98479" stroke-linecap="round"/>
|
||||
<path d="M 158.0 151.8 L 169.0 152.5" stroke="url(#grad-leg_r-2)" stroke-width="5.96182" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 98.3 42.1 L 128.1 45.2" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 128.1 45.2 L 157.2 52.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 160.2 59.4 L 160.2 43.4" stroke="#6b7180" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle id="head" cx="100.4" cy="20.6" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="110.4" y1="19.7" x2="117.3" y2="19.1" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Child's Pose</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="206.9" y1="108.8" x2="209.3" y2="154.0"><stop offset="0" stop-color="#898f9a"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="201.0" y1="109.2" x2="203.4" y2="154.5"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3b404c"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="203.4" y1="154.5" x2="241.7" y2="142.9"><stop offset="0" stop-color="#3b404c"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 66.0 160.5 L 269.8 160.5 L 269.8 150.1 L 66.0 150.1 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 130.4 141.4 L 107.1 160.1 L 80.0 147.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 206.9 108.8 L 209.3 154.0 L 247.6 142.5 L 257.8 146.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 130.4 141.4 L 107.1 160.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 107.1 160.1 L 80.0 147.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 206.9 108.8 L 209.3 154.0" stroke="url(#grad-leg_r-0)" stroke-width="5.14391" stroke-linecap="round"/>
|
||||
<path d="M 209.3 154.0 L 247.6 142.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 247.6 142.5 L 257.8 146.4" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 124.5 143.3 L 124.5 141.4 L 130.4 141.4" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 201.0 109.2 L 201.0 108.0 L 206.9 108.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 201.0 108.0 Q 155.8 111.8 124.5 141.4" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 124.5 143.3 L 109.0 168.6 L 84.0 152.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 201.0 109.2 L 203.4 154.5 L 241.7 142.9 L 251.9 146.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 124.5 143.3 L 109.0 168.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 109.0 168.6 L 84.0 152.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 201.0 109.2 L 203.4 154.5" stroke="url(#grad-leg_l-0)" stroke-width="5.9951" stroke-linecap="round"/>
|
||||
<path d="M 203.4 154.5 L 241.7 142.9" stroke="url(#grad-leg_l-1)" stroke-width="5.9951" stroke-linecap="round"/>
|
||||
<path d="M 241.7 142.9 L 251.9 146.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="111.3" cy="156.2" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="117.3" y1="164.3" x2="121.4" y2="169.9" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Child's Pose</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="207.9" y1="110.8" x2="209.5" y2="156.0"><stop offset="0" stop-color="#8c919d"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="202.0" y1="111.2" x2="203.6" y2="156.5"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3e434f"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="203.6" y1="156.5" x2="241.2" y2="143.0"><stop offset="0" stop-color="#3e434f"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 66.0 160.5 L 269.8 160.5 L 269.8 150.1 L 66.0 150.1 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 134.8 149.7 L 106.0 158.0 L 78.0 147.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 207.9 110.8 L 209.5 156.0 L 247.1 142.6 L 257.6 145.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 134.8 149.7 L 106.0 158.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 106.0 158.0 L 78.0 147.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 207.9 110.8 L 209.5 156.0" stroke="url(#grad-leg_r-0)" stroke-width="5.13234" stroke-linecap="round"/>
|
||||
<path d="M 209.5 156.0 L 247.1 142.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 247.1 142.6 L 257.6 145.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 128.9 151.6 L 128.9 149.7 L 134.8 149.7" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 202.0 111.2 L 202.0 110.0 L 207.9 110.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 202.0 110.0 Q 156.7 116.3 128.9 149.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 128.9 151.6 L 105.8 170.3 L 82.0 152.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 202.0 111.2 L 203.6 156.5 L 241.2 143.0 L 251.7 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 128.9 151.6 L 105.8 170.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 105.8 170.3 L 82.0 152.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 202.0 111.2 L 203.6 156.5" stroke="url(#grad-leg_l-0)" stroke-width="5.98316" stroke-linecap="round"/>
|
||||
<path d="M 203.6 156.5 L 241.2 143.0" stroke="url(#grad-leg_l-1)" stroke-width="5.98316" stroke-linecap="round"/>
|
||||
<path d="M 241.2 143.0 L 251.7 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="118.0" cy="166.2" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="124.8" y1="173.6" x2="129.5" y2="178.7" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 321 KiB After Width: | Height: | Size: 349 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Child's Pose</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="207.9" y1="110.8" x2="209.5" y2="156.0"><stop offset="0" stop-color="#8c919d"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="202.0" y1="111.2" x2="203.6" y2="156.5"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3e434f"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="203.6" y1="156.5" x2="241.2" y2="143.0"><stop offset="0" stop-color="#3e434f"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 66.0 160.5 L 269.8 160.5 L 269.8 150.1 L 66.0 150.1 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 134.8 149.7 L 106.0 158.0 L 78.0 147.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 207.9 110.8 L 209.5 156.0 L 247.1 142.6 L 257.6 145.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 134.8 149.7 L 106.0 158.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 106.0 158.0 L 78.0 147.5" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 207.9 110.8 L 209.5 156.0" stroke="url(#grad-leg_r-0)" stroke-width="5.13234" stroke-linecap="round"/>
|
||||
<path d="M 209.5 156.0 L 247.1 142.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 247.1 142.6 L 257.6 145.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 128.9 151.6 L 128.9 149.7 L 134.8 149.7" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 202.0 111.2 L 202.0 110.0 L 207.9 110.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 202.0 110.0 Q 156.7 116.3 128.9 149.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 128.9 151.6 L 105.8 170.3 L 82.0 152.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 202.0 111.2 L 203.6 156.5 L 241.2 143.0 L 251.7 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 128.9 151.6 L 105.8 170.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 105.8 170.3 L 82.0 152.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 202.0 111.2 L 203.6 156.5" stroke="url(#grad-leg_l-0)" stroke-width="5.98316" stroke-linecap="round"/>
|
||||
<path d="M 203.6 156.5 L 241.2 143.0" stroke="url(#grad-leg_l-1)" stroke-width="5.98316" stroke-linecap="round"/>
|
||||
<path d="M 241.2 143.0 L 251.7 146.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="118.0" cy="166.2" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="124.8" y1="173.6" x2="129.5" y2="178.7" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,13 +1,27 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Cobra Stretch</title>
|
||||
<path d="M 62.7 161.1 L 294.1 161.1 L 294.1 150.7 L 62.7 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 110.6 131.1 L 134.0 149.6 L 104.0 148.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 193.9 147.8 L 235.1 168.0 L 270.0 148.8 L 280.8 150.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 110.6 131.1 L 134.0 149.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 134.0 149.6 L 104.0 148.1" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 193.9 147.8 L 235.1 168.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 235.1 168.0 L 270.0 148.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 270.0 148.8 L 280.8 150.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 104.7 132.9 L 104.7 131.0 L 110.6 131.1" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 188.0 148.2 L 188.0 147.0 L 193.9 147.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 188.0 147.0 Q 146.2 134.5 104.7 131.0" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 188.0 148.2 L 233.9 151.0 L 273.9 152.2 L 282.1 159.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 104.7 132.9 L 78.5 147.4 L 108.0 152.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 188.0 148.2 L 233.9 151.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 233.9 151.0 L 273.9 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 273.9 152.2 L 282.1 159.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 104.7 132.9 L 78.5 147.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 78.5 147.4 L 89.1 119.7" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="84.7" cy="130.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="77.2" y1="136.9" x2="72.0" y2="141.6" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Cobra Stretch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="132.3" y1="90.6" x2="118.7" y2="117.0"><stop offset="0" stop-color="#a5abb6"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="117.2" y1="120.6" x2="107.1" y2="148.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#404551"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 62.7 161.1 L 294.1 161.1 L 294.1 150.7 L 62.7 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 193.9 147.8 L 235.1 168.0 L 270.0 148.8 L 280.8 150.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 132.3 90.6 L 118.7 117.0 L 106.0 143.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 188.0 148.2 L 233.9 151.0 L 273.9 152.2 L 282.1 159.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 193.9 147.8 L 235.1 168.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 235.1 168.0 L 270.0 148.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 270.0 148.8 L 280.8 150.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 132.3 90.6 L 118.7 117.0" stroke="url(#grad-arm_r-0)" stroke-width="5.01723" stroke-linecap="round"/>
|
||||
<path d="M 118.7 117.0 L 104.2 142.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 188.0 148.2 L 233.9 151.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 233.9 151.0 L 273.9 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 273.9 152.2 L 282.1 159.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 126.3 92.5 L 126.3 90.6 L 132.3 90.6" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 188.0 148.2 L 188.0 147.0 L 193.9 147.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 188.0 147.0 Q 148.4 126.6 126.3 90.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 126.3 92.5 L 117.2 120.6 L 109.1 149.1" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 126.3 92.5 L 117.2 120.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 117.2 120.6 L 107.1 148.4" stroke="url(#grad-arm_l-1)" stroke-width="5.97101" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="116.6" cy="73.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="106.8" y1="75.2" x2="100.0" y2="76.5" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 191 KiB After Width: | Height: | Size: 199 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Cobra Stretch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="132.3" y1="90.6" x2="118.7" y2="117.0"><stop offset="0" stop-color="#a5abb6"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="117.2" y1="120.6" x2="107.1" y2="148.4"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#404551"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 62.7 161.1 L 294.1 161.1 L 294.1 150.7 L 62.7 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 193.9 147.8 L 235.1 168.0 L 270.0 148.8 L 280.8 150.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 132.3 90.6 L 118.7 117.0 L 106.0 143.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 188.0 148.2 L 233.9 151.0 L 273.9 152.2 L 282.1 159.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 193.9 147.8 L 235.1 168.0" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 235.1 168.0 L 270.0 148.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 270.0 148.8 L 280.8 150.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 132.3 90.6 L 118.7 117.0" stroke="url(#grad-arm_r-0)" stroke-width="5.01723" stroke-linecap="round"/>
|
||||
<path d="M 118.7 117.0 L 104.2 142.9" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 188.0 148.2 L 233.9 151.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 233.9 151.0 L 273.9 152.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 273.9 152.2 L 282.1 159.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 126.3 92.5 L 126.3 90.6 L 132.3 90.6" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 188.0 148.2 L 188.0 147.0 L 193.9 147.8" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 188.0 147.0 Q 148.4 126.6 126.3 90.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 126.3 92.5 L 117.2 120.6 L 109.1 149.1" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 126.3 92.5 L 117.2 120.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 117.2 120.6 L 107.1 148.4" stroke="url(#grad-arm_l-1)" stroke-width="5.97101" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="116.6" cy="73.3" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="106.8" y1="75.2" x2="100.0" y2="76.5" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Crunch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="171.9" y1="146.8" x2="199.5" y2="110.5"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#8d939e"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="199.5" y1="110.5" x2="209.0" y2="148.8"><stop offset="0" stop-color="#8d939e"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 39.4 161.1 L 231.6 161.1 L 231.6 150.6 L 39.4 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 86.9 146.1 L 59.7 133.6 L 72.4 160.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 171.9 146.8 L 199.5 110.5 L 209.0 148.8 L 219.4 145.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 86.9 146.1 L 59.7 133.6" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 59.7 133.6 L 72.4 160.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 171.9 146.8 L 199.5 110.5" stroke="url(#grad-leg_l-0)" stroke-width="5.12442" stroke-linecap="round"/>
|
||||
<path d="M 199.5 110.5 L 209.0 148.8" stroke="url(#grad-leg_l-1)" stroke-width="5.12442" stroke-linecap="round"/>
|
||||
<path d="M 209.0 148.8 L 219.4 145.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 86.9 146.1 L 81.0 146.0 L 81.0 147.9" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 171.9 146.8 L 166.0 146.0 L 166.0 147.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 166.0 146.0 Q 122.5 146.0 81.0 146.0" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 166.0 147.2 L 194.0 111.3 L 205.0 149.2 L 215.3 145.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 81.0 147.9 L 53.8 135.4 L 66.5 162.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 166.0 147.2 L 194.0 111.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 194.0 111.3 L 205.0 149.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 205.0 149.2 L 215.3 145.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 81.0 147.9 L 53.8 135.4" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 53.8 135.4 L 66.5 162.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="61.4" cy="141.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="63.5" y1="132.1" x2="65.0" y2="125.4" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Crunch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="171.9" y1="144.8" x2="201.5" y2="110.0"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#8e939f"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="201.5" y1="110.0" x2="209.0" y2="148.7"><stop offset="0" stop-color="#8e939f"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 39.4 161.0 L 231.6 161.0 L 231.6 150.6 L 39.4 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 171.9 144.8 L 201.5 110.0 L 209.0 148.7 L 219.6 145.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 102.1 103.1 L 95.8 74.2 L 81.8 100.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 171.9 144.8 L 201.5 110.0" stroke="url(#grad-leg_l-0)" stroke-width="5.12386" stroke-linecap="round"/>
|
||||
<path d="M 201.5 110.0 L 209.0 148.7" stroke="url(#grad-leg_l-1)" stroke-width="5.12386" stroke-linecap="round"/>
|
||||
<path d="M 209.0 148.7 L 219.6 145.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 102.1 103.1 L 95.8 74.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 95.8 74.2 L 81.8 100.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 102.1 103.1 L 96.2 103.0 L 96.2 104.9" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 171.9 144.8 L 166.0 144.0 L 166.0 145.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 166.0 144.0 Q 117.5 144.0 96.2 103.0" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 166.0 145.2 L 195.9 110.8 L 205.0 149.2 L 215.5 145.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 96.2 104.9 L 89.9 76.0 L 75.9 102.1" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 166.0 145.2 L 195.9 110.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.9 110.8 L 205.0 149.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 205.0 149.2 L 215.5 145.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 96.2 104.9 L 89.9 76.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 89.9 76.0 L 75.9 102.1" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="92.0" cy="83.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="101.8" y1="81.7" x2="108.7" y2="80.3" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 152 KiB |
@@ -1,13 +1,31 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Crunch</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="171.9" y1="144.8" x2="201.5" y2="110.0"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#8e939f"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="201.5" y1="110.0" x2="209.0" y2="148.7"><stop offset="0" stop-color="#8e939f"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 39.4 161.0 L 231.6 161.0 L 231.6 150.6 L 39.4 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 171.9 144.8 L 201.5 110.0 L 209.0 148.7 L 219.6 145.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 102.1 103.1 L 95.8 74.2 L 81.8 100.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 171.9 144.8 L 201.5 110.0" stroke="url(#grad-leg_l-0)" stroke-width="5.12386" stroke-linecap="round"/>
|
||||
<path d="M 201.5 110.0 L 209.0 148.7" stroke="url(#grad-leg_l-1)" stroke-width="5.12386" stroke-linecap="round"/>
|
||||
<path d="M 209.0 148.7 L 219.6 145.8" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 102.1 103.1 L 95.8 74.2" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 95.8 74.2 L 81.8 100.3" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 102.1 103.1 L 96.2 103.0 L 96.2 104.9" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 171.9 144.8 L 166.0 144.0 L 166.0 145.2" stroke="#0d9488" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 166.0 144.0 Q 117.5 144.0 96.2 103.0" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 166.0 145.2 L 195.9 110.8 L 205.0 149.2 L 215.5 145.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 96.2 104.9 L 89.9 76.0 L 75.9 102.1" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 166.0 145.2 L 195.9 110.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.9 110.8 L 205.0 149.2" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 205.0 149.2 L 215.5 145.8" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 96.2 104.9 L 89.9 76.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 89.9 76.0 L 75.9 102.1" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="92.0" cy="83.8" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="101.8" y1="81.7" x2="108.7" y2="80.3" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dead Bug</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="105.9" y1="118.5" x2="105.9" y2="89.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#7ecbc1"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="185.0" y1="149.2" x2="205.2" y2="108.5"><stop offset="0" stop-color="#31a69a"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="100.0" y1="149.9" x2="100.0" y2="120.4"><stop offset="0" stop-color="#15988c"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 45.6 161.1 L 285.6 161.1 L 285.6 150.7 L 45.6 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 105.9 148.1 L 105.9 118.5 L 105.9 89.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.9 148.8 L 211.1 108.0 L 250.5 114.9 L 252.4 104.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 105.9 148.1 L 105.9 118.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 105.9 118.5 L 105.9 89.0" stroke="url(#grad-arm_l-1)" stroke-width="5.0337" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.9 148.8 L 211.1 108.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 211.1 108.0 L 250.5 114.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 250.5 114.9 L 252.4 104.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 105.9 148.1 L 100.0 148.0 L 100.0 149.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.9 148.8 L 185.0 148.0 L 185.0 149.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 185.0 148.0 Q 141.5 148.0 100.0 148.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 185.0 149.2 L 205.2 108.5 L 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 100.0 149.9 L 100.0 120.4 L 100.0 90.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 185.0 149.2 L 205.2 108.5" stroke="url(#grad-leg_r-0)" stroke-width="5.84924" stroke-linecap="round"/>
|
||||
<path d="M 205.2 108.5 L 244.6 115.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 100.0 149.9 L 100.0 120.4" stroke="url(#grad-arm_r-0)" stroke-width="5.9663" stroke-linecap="round"/>
|
||||
<path d="M 100.0 120.4 L 100.0 90.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="80.4" cy="143.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="80.4" y1="133.9" x2="80.4" y2="127.0" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dead Bug</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="105.9" y1="118.5" x2="105.9" y2="89.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#77c8bd"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="185.0" y1="149.2" x2="205.2" y2="108.5"><stop offset="0" stop-color="#229e92"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="100.0" y1="149.9" x2="78.8" y2="129.0"><stop offset="0" stop-color="#0e9589"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 45.6 161.1 L 285.6 161.1 L 285.6 150.7 L 45.6 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 105.9 148.1 L 105.9 118.5 L 105.9 89.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.9 148.8 L 235.1 136.3 L 273.6 125.4 L 270.5 115.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 105.9 148.1 L 105.9 118.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 105.9 118.5 L 105.9 89.0" stroke="url(#grad-arm_l-1)" stroke-width="5.06305" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.9 148.8 L 235.1 136.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 235.1 136.3 L 273.6 125.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 273.6 125.4 L 270.5 115.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 105.9 148.1 L 100.0 148.0 L 100.0 149.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.9 148.8 L 185.0 148.0 L 185.0 149.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 185.0 148.0 Q 141.5 148.0 100.0 148.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 185.0 149.2 L 205.2 108.5 L 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 100.0 149.9 L 78.8 129.0 L 57.6 108.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 185.0 149.2 L 205.2 108.5" stroke="url(#grad-leg_r-0)" stroke-width="5.91525" stroke-linecap="round"/>
|
||||
<path d="M 205.2 108.5 L 244.6 115.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 100.0 149.9 L 78.8 129.0" stroke="url(#grad-arm_r-0)" stroke-width="5.99564" stroke-linecap="round"/>
|
||||
<path d="M 78.8 129.0 L 57.6 108.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="80.4" cy="143.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="80.4" y1="133.9" x2="80.4" y2="127.0" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dead Bug</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="105.9" y1="118.5" x2="105.9" y2="89.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#7ecbc1"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="185.0" y1="149.2" x2="205.2" y2="108.5"><stop offset="0" stop-color="#31a69a"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="100.0" y1="149.9" x2="100.0" y2="120.4"><stop offset="0" stop-color="#15988c"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 45.6 161.1 L 285.6 161.1 L 285.6 150.7 L 45.6 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 105.9 148.1 L 105.9 118.5 L 105.9 89.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.9 148.8 L 211.1 108.0 L 250.5 114.9 L 252.4 104.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 105.9 148.1 L 105.9 118.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 105.9 118.5 L 105.9 89.0" stroke="url(#grad-arm_l-1)" stroke-width="5.0337" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.9 148.8 L 211.1 108.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 211.1 108.0 L 250.5 114.9" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 250.5 114.9 L 252.4 104.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 105.9 148.1 L 100.0 148.0 L 100.0 149.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.9 148.8 L 185.0 148.0 L 185.0 149.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 185.0 148.0 Q 141.5 148.0 100.0 148.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 185.0 149.2 L 205.2 108.5 L 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 100.0 149.9 L 100.0 120.4 L 100.0 90.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 185.0 149.2 L 205.2 108.5" stroke="url(#grad-leg_r-0)" stroke-width="5.84924" stroke-linecap="round"/>
|
||||
<path d="M 205.2 108.5 L 244.6 115.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 100.0 149.9 L 100.0 120.4" stroke="url(#grad-arm_r-0)" stroke-width="5.9663" stroke-linecap="round"/>
|
||||
<path d="M 100.0 120.4 L 100.0 90.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="80.4" cy="143.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="80.4" y1="133.9" x2="80.4" y2="127.0" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,13 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dead Bug</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="190.9" y1="148.8" x2="211.1" y2="108.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#82cdc3"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="211.1" y1="108.0" x2="250.5" y2="114.9"><stop offset="0" stop-color="#82cdc3"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="250.5" y1="114.9" x2="252.4" y2="104.2"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#78c8be"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="185.0" y1="149.2" x2="229.2" y2="136.7"><stop offset="0" stop-color="#229e92"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="100.0" y1="149.9" x2="100.0" y2="120.4"><stop offset="0" stop-color="#0e9589"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 45.6 161.1 L 285.6 161.1 L 285.6 150.7 L 45.6 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 105.9 148.1 L 84.7 127.2 L 63.5 106.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.9 148.8 L 211.1 108.0 L 250.5 114.9 L 252.4 104.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 105.9 148.1 L 84.7 127.2" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 84.7 127.2 L 63.5 106.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.9 148.8 L 211.1 108.0" stroke="url(#grad-leg_l-0)" stroke-width="5.01585" stroke-linecap="round"/>
|
||||
<path d="M 211.1 108.0 L 250.5 114.9" stroke="url(#grad-leg_l-1)" stroke-width="5.01585" stroke-linecap="round"/>
|
||||
<path d="M 250.5 114.9 L 252.4 104.2" stroke="url(#grad-leg_l-2)" stroke-width="5.05665" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 105.9 148.1 L 100.0 148.0 L 100.0 149.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.9 148.8 L 185.0 148.0 L 185.0 149.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 185.0 148.0 Q 141.5 148.0 100.0 148.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 185.0 149.2 L 229.2 136.7 L 267.7 125.9 L 264.6 115.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 100.0 149.9 L 100.0 120.4 L 100.0 90.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 185.0 149.2 L 229.2 136.7" stroke="url(#grad-leg_r-0)" stroke-width="5.91525" stroke-linecap="round"/>
|
||||
<path d="M 229.2 136.7 L 267.7 125.9" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 267.7 125.9 L 264.6 115.5" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 100.0 149.9 L 100.0 120.4" stroke="url(#grad-arm_r-0)" stroke-width="5.99564" stroke-linecap="round"/>
|
||||
<path d="M 100.0 120.4 L 100.0 90.8" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="80.4" cy="143.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="80.4" y1="133.9" x2="80.4" y2="127.0" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 233 KiB After Width: | Height: | Size: 281 KiB |
@@ -1,13 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dead Bug</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="105.9" y1="118.5" x2="105.9" y2="89.0"><stop offset="0" stop-color="#86cfc5"/><stop offset="1" stop-color="#77c8bd"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="185.0" y1="149.2" x2="205.2" y2="108.5"><stop offset="0" stop-color="#229e92"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="100.0" y1="149.9" x2="78.8" y2="129.0"><stop offset="0" stop-color="#0e9589"/><stop offset="1" stop-color="#0d9488"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 45.6 161.1 L 285.6 161.1 L 285.6 150.7 L 45.6 150.7 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 105.9 148.1 L 105.9 118.5 L 105.9 89.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 190.9 148.8 L 235.1 136.3 L 273.6 125.4 L 270.5 115.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 105.9 148.1 L 105.9 118.5" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 105.9 118.5 L 105.9 89.0" stroke="url(#grad-arm_l-1)" stroke-width="5.06305" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 190.9 148.8 L 235.1 136.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 235.1 136.3 L 273.6 125.4" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 273.6 125.4 L 270.5 115.0" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 105.9 148.1 L 100.0 148.0 L 100.0 149.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 190.9 148.8 L 185.0 148.0 L 185.0 149.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 185.0 148.0 Q 141.5 148.0 100.0 148.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 185.0 149.2 L 205.2 108.5 L 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 100.0 149.9 L 78.8 129.0 L 57.6 108.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 185.0 149.2 L 205.2 108.5" stroke="url(#grad-leg_r-0)" stroke-width="5.91525" stroke-linecap="round"/>
|
||||
<path d="M 205.2 108.5 L 244.6 115.3" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 244.6 115.3 L 246.5 104.7" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 100.0 149.9 L 78.8 129.0" stroke="url(#grad-arm_r-0)" stroke-width="5.99564" stroke-linecap="round"/>
|
||||
<path d="M 78.8 129.0 L 57.6 108.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="80.4" cy="143.9" r="10" fill="white" stroke="#3a3f4b" stroke-width="6"/>
|
||||
<line id="nose" x1="80.4" y1="133.9" x2="80.4" y2="127.0" stroke="#3a3f4b" stroke-width="4" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +1,37 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Deadlift</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="116.5" y1="109.1" x2="129.9" y2="138.0"><stop offset="0" stop-color="#2fa499"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="173.9" y1="93.5" x2="167.9" y2="113.3"><stop offset="0" stop-color="#a3a9b4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="127.4" y1="137.5" x2="122.5" y2="164.6"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#30a59a"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="122.5" y1="164.6" x2="130.1" y2="164.0"><stop offset="0" stop-color="#30a59a"/><stop offset="1" stop-color="#2ea499"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="164.3" y1="114.8" x2="159.5" y2="134.9"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#404551"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 104.0 157.7 L 198.8 157.7 L 198.8 150.5 L 104.0 150.5 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 116.5 109.1 L 129.9 138.0 L 155.8 148.4 L 151.1 154.5" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 173.9 93.5 L 167.9 113.3 L 161.1 132.9" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 112.4 109.5 L 127.4 137.5 L 153.0 148.7 L 148.1 154.6" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 116.5 109.1 L 129.9 138.0" stroke="url(#grad-leg_l-0)" stroke-width="3.75242" stroke-linecap="round"/>
|
||||
<path d="M 129.9 138.0 L 120.9 164.1" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 120.9 164.1 L 128.6 164.6" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 173.9 93.5 L 167.9 113.3" stroke="url(#grad-arm_l-0)" stroke-width="3.51858" stroke-linecap="round"/>
|
||||
<path d="M 167.9 113.3 L 162.5 133.3" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 112.4 109.5 L 127.4 137.5" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 127.4 137.5 L 122.5 164.6" stroke="url(#grad-leg_r-1)" stroke-width="4.09771" stroke-linecap="round"/>
|
||||
<path d="M 122.5 164.6 L 130.1 164.0" stroke="url(#grad-leg_r-2)" stroke-width="4.00214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 173.9 93.5 L 169.8 93.5 L 169.8 94.8" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 116.5 109.1 L 112.4 108.6 L 112.4 109.5" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 112.4 108.6 Q 142.6 103.8 169.8 93.5" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 169.8 94.8 L 164.3 114.8 L 158.1 134.6" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 159.6 130.6 L 159.6 136.9" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="159.6" cy="130.6" r="11.2" fill="#6b7180"/>
|
||||
<circle cx="159.6" cy="136.9" r="11.2" fill="#6b7180"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 169.8 94.8 L 164.3 114.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 164.3 114.8 L 159.5 134.9" stroke="url(#grad-arm_r-1)" stroke-width="4.17999" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 161.0 131.0 L 161.0 137.3" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="161.0" cy="131.0" r="11.2" fill="#6b7180"/>
|
||||
<circle cx="161.0" cy="137.3" r="11.2" fill="#6b7180"/>
|
||||
<circle id="head" cx="183.4" cy="90.4" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="190.4" y1="91.2" x2="195.3" y2="91.8" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Deadlift</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="157.1" y1="90.9" x2="164.2" y2="121.9"><stop offset="0" stop-color="#26a095"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="160.9" y1="122.0" x2="153.0" y2="148.5"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#30a599"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="153.0" y1="148.5" x2="160.4" y2="150.6"><stop offset="0" stop-color="#30a599"/><stop offset="1" stop-color="#37a99d"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="167.5" y1="32.7" x2="170.8" y2="53.2"><stop offset="0" stop-color="#a6acb7"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 104.0 157.5 L 198.8 157.5 L 198.8 150.2 L 104.0 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 157.1 90.9 L 148.6 121.5 L 155.8 148.2 L 148.4 150.1" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 153.0 91.3 L 145.1 122.0 L 153.0 148.5 L 145.6 150.6" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 167.5 32.7 L 170.8 53.2 L 163.5 72.5" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 157.1 90.9 L 164.2 121.9" stroke="url(#grad-leg_l-0)" stroke-width="3.77634" stroke-linecap="round"/>
|
||||
<path d="M 164.2 121.9 L 155.8 148.2" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 155.8 148.2 L 163.1 150.4" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 153.0 91.3 L 160.9 122.0" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 160.9 122.0 L 153.0 148.5" stroke="url(#grad-leg_r-1)" stroke-width="4.09987" stroke-linecap="round"/>
|
||||
<path d="M 153.0 148.5 L 160.4 150.6" stroke="url(#grad-leg_r-2)" stroke-width="3.97706" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 167.5 32.7 L 170.8 53.2" stroke="url(#grad-arm_l-0)" stroke-width="3.51071" stroke-linecap="round"/>
|
||||
<path d="M 170.8 53.2 L 183.9 69.3" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 167.5 32.7 L 163.3 32.7 L 163.3 34.0" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 157.1 90.9 L 153.0 90.4 L 153.0 91.3" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 153.0 90.4 Q 158.3 60.9 163.3 32.7" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 163.3 34.0 L 167.6 54.3 L 160.7 73.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 162.1 70.0 L 162.1 76.3" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="162.1" cy="70.0" r="11.2" fill="#6b7180"/>
|
||||
<circle cx="162.1" cy="76.3" r="11.2" fill="#6b7180"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 163.3 34.0 L 167.6 54.3" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 167.6 54.3 L 181.8 69.5" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 182.9 66.2 L 182.9 72.6" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="182.9" cy="66.2" r="11.2" fill="#6b7180"/>
|
||||
<circle cx="182.9" cy="72.6" r="11.2" fill="#6b7180"/>
|
||||
<circle id="head" cx="166.2" cy="19.2" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="173.2" y1="19.7" x2="178.1" y2="20.0" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 263 KiB After Width: | Height: | Size: 277 KiB |
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 180 KiB |
@@ -1,16 +1,37 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Deadlift</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="116.5" y1="109.1" x2="129.9" y2="138.0"><stop offset="0" stop-color="#2fa499"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="173.9" y1="93.5" x2="167.9" y2="113.3"><stop offset="0" stop-color="#a3a9b4"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="127.4" y1="137.5" x2="122.5" y2="164.6"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#30a59a"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="122.5" y1="164.6" x2="130.1" y2="164.0"><stop offset="0" stop-color="#30a59a"/><stop offset="1" stop-color="#2ea499"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="164.3" y1="114.8" x2="159.5" y2="134.9"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#404551"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 104.0 157.7 L 198.8 157.7 L 198.8 150.5 L 104.0 150.5 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 116.5 109.1 L 129.9 138.0 L 155.8 148.4 L 151.1 154.5" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 173.9 93.5 L 167.9 113.3 L 161.1 132.9" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 112.4 109.5 L 127.4 137.5 L 153.0 148.7 L 148.1 154.6" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 116.5 109.1 L 129.9 138.0" stroke="url(#grad-leg_l-0)" stroke-width="3.75242" stroke-linecap="round"/>
|
||||
<path d="M 129.9 138.0 L 120.9 164.1" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
<path d="M 120.9 164.1 L 128.6 164.6" stroke="#86cfc5" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 173.9 93.5 L 167.9 113.3" stroke="url(#grad-arm_l-0)" stroke-width="3.51858" stroke-linecap="round"/>
|
||||
<path d="M 167.9 113.3 L 162.5 133.3" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 112.4 109.5 L 127.4 137.5" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 127.4 137.5 L 122.5 164.6" stroke="url(#grad-leg_r-1)" stroke-width="4.09771" stroke-linecap="round"/>
|
||||
<path d="M 122.5 164.6 L 130.1 164.0" stroke="url(#grad-leg_r-2)" stroke-width="4.00214" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 173.9 93.5 L 169.8 93.5 L 169.8 94.8" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 116.5 109.1 L 112.4 108.6 L 112.4 109.5" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 112.4 108.6 Q 142.6 103.8 169.8 93.5" stroke="#0d9488" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 169.8 94.8 L 164.3 114.8 L 158.1 134.6" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 159.6 130.6 L 159.6 136.9" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="159.6" cy="130.6" r="11.2" fill="#6b7180"/>
|
||||
<circle cx="159.6" cy="136.9" r="11.2" fill="#6b7180"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 169.8 94.8 L 164.3 114.8" stroke="#3a3f4b" stroke-width="4.2" stroke-linecap="round"/>
|
||||
<path d="M 164.3 114.8 L 159.5 134.9" stroke="url(#grad-arm_r-1)" stroke-width="4.17999" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 161.0 131.0 L 161.0 137.3" stroke="#6b7180" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="161.0" cy="131.0" r="11.2" fill="#6b7180"/>
|
||||
<circle cx="161.0" cy="137.3" r="11.2" fill="#6b7180"/>
|
||||
<circle id="head" cx="183.4" cy="90.4" r="7.0" fill="white" stroke="#3a3f4b" stroke-width="4.2"/>
|
||||
<line id="nose" x1="190.4" y1="91.2" x2="195.3" y2="91.8" stroke="#3a3f4b" stroke-width="2.8" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,15 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dip</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.6" y1="101.1" x2="186.2" y2="129.3"><stop offset="0" stop-color="#8a909b"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-arm_l-0" gradientUnits="userSpaceOnUse" x1="173.8" y1="35.9" x2="168.3" y2="58.3"><stop offset="0" stop-color="#7fccc2"/><stop offset="1" stop-color="#86cfc5"/></linearGradient>
|
||||
<linearGradient id="grad-arm_r-1" gradientUnits="userSpaceOnUse" x1="164.4" y1="59.9" x2="170.9" y2="82.0"><stop offset="0" stop-color="#0d9488"/><stop offset="1" stop-color="#14978b"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 137.7 158.4 L 207.6 158.4 L 207.6 150.2 L 137.7 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="2.34" stroke-linejoin="round"/>
|
||||
<path d="M 172.5 84.9 L 172.5 150.4" stroke="#c5cad4" stroke-width="3.9000000000000004" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="172.5" cy="81.0" r="2.73" fill="#6b7180"/>
|
||||
<path id="leg_l" d="M 164.6 101.1 L 186.2 129.3 L 155.0 127.7 L 151.7 135.5" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 173.8 35.9 L 168.3 58.3 L 174.0 80.6" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 101.5 L 181.6 129.7 L 150.4 128.1 L 147.1 135.9" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.6 101.1 L 186.2 129.3" stroke="url(#grad-leg_l-0)" stroke-width="4.00772" stroke-linecap="round"/>
|
||||
<path d="M 186.2 129.3 L 155.0 127.7" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round"/>
|
||||
<path d="M 155.0 127.7 L 151.7 135.5" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 173.8 35.9 L 168.3 58.3" stroke="url(#grad-arm_l-0)" stroke-width="3.92183" stroke-linecap="round"/>
|
||||
<path d="M 168.3 58.3 L 174.0 80.6" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 101.5 L 181.6 129.7" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 181.6 129.7 L 150.4 128.1" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 150.4 128.1 L 147.1 135.9" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 173.8 35.9 L 169.2 35.9 L 169.2 37.4" stroke="#3a3f4b" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.6 101.1 L 160.0 100.5 L 160.0 101.5" stroke="#3a3f4b" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 100.5 Q 164.7 67.4 169.2 35.9" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 169.2 37.4 L 164.4 59.9 L 170.9 82.0" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 169.2 37.4 L 164.4 59.9" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 164.4 59.9 L 170.9 82.0" stroke="url(#grad-arm_r-1)" stroke-width="4.65877" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="172.7" cy="20.9" r="7.800000000000001" fill="white" stroke="#3a3f4b" stroke-width="4.68"/>
|
||||
<line id="nose" x1="180.5" y1="21.3" x2="186.0" y2="21.6" stroke="#3a3f4b" stroke-width="3.12" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,15 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dip</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.6" y1="124.5" x2="195.7" y2="142.2"><stop offset="0" stop-color="#9ea4af"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 137.7 158.7 L 207.6 158.7 L 207.6 150.6 L 137.7 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="2.34" stroke-linejoin="round"/>
|
||||
<path d="M 172.5 84.9 L 172.5 150.4" stroke="#c5cad4" stroke-width="3.9000000000000004" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="172.5" cy="81.0" r="2.73" fill="#6b7180"/>
|
||||
<path id="leg_l" d="M 164.6 124.5 L 195.7 142.2 L 164.5 143.2 L 161.8 151.3" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 187.2 62.6 L 164.0 60.2 L 174.0 81.0" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 124.9 L 191.1 142.5 L 159.9 143.6 L 157.2 151.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.6 124.5 L 195.7 142.2" stroke="url(#grad-leg_l-0)" stroke-width="3.93834" stroke-linecap="round"/>
|
||||
<path d="M 195.7 142.2 L 164.5 143.2" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round"/>
|
||||
<path d="M 164.5 143.2 L 161.8 151.3" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 187.2 62.6 L 164.0 60.2" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round"/>
|
||||
<path d="M 164.0 60.2 L 174.0 81.0" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 124.9 L 191.1 142.5" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 191.1 142.5 L 159.9 143.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 159.9 143.6 L 157.2 151.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 187.2 62.6 L 182.6 62.6 L 182.6 64.1" stroke="#3a3f4b" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.6 124.5 L 160.0 123.9 L 160.0 124.9" stroke="#3a3f4b" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 123.9 Q 169.4 91.8 182.6 62.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 182.6 64.1 L 159.3 62.4 L 170.9 82.4" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 182.6 64.1 L 159.3 62.4" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 159.3 62.4 L 170.9 82.4" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="190.4" cy="49.3" r="7.800000000000001" fill="white" stroke="#3a3f4b" stroke-width="4.68"/>
|
||||
<line id="nose" x1="198.0" y1="51.3" x2="203.3" y2="52.7" stroke="#3a3f4b" stroke-width="3.12" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 159 KiB After Width: | Height: | Size: 164 KiB |
@@ -1,15 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dip</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.6" y1="124.5" x2="195.7" y2="142.2"><stop offset="0" stop-color="#9ea4af"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 137.7 158.7 L 207.6 158.7 L 207.6 150.6 L 137.7 150.6 Z" fill="none" stroke="#b9bec9" stroke-width="2.34" stroke-linejoin="round"/>
|
||||
<path d="M 172.5 84.9 L 172.5 150.4" stroke="#c5cad4" stroke-width="3.9000000000000004" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="172.5" cy="81.0" r="2.73" fill="#6b7180"/>
|
||||
<path id="leg_l" d="M 164.6 124.5 L 195.7 142.2 L 164.5 143.2 L 161.8 151.3" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 187.2 62.6 L 164.0 60.2 L 174.0 81.0" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 160.0 124.9 L 191.1 142.5 L 159.9 143.6 L 157.2 151.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_l">
|
||||
<path d="M 164.6 124.5 L 195.7 142.2" stroke="url(#grad-leg_l-0)" stroke-width="3.93834" stroke-linecap="round"/>
|
||||
<path d="M 195.7 142.2 L 164.5 143.2" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round"/>
|
||||
<path d="M 164.5 143.2 L 161.8 151.3" stroke="#a9afba" stroke-width="3.9" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_l">
|
||||
<path d="M 187.2 62.6 L 164.0 60.2" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round"/>
|
||||
<path d="M 164.0 60.2 L 174.0 81.0" stroke="#86cfc5" stroke-width="3.9" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_r">
|
||||
<path d="M 160.0 124.9 L 191.1 142.5" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 191.1 142.5 L 159.9 143.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 159.9 143.6 L 157.2 151.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 187.2 62.6 L 182.6 62.6 L 182.6 64.1" stroke="#3a3f4b" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 164.6 124.5 L 160.0 123.9 L 160.0 124.9" stroke="#3a3f4b" stroke-width="3.9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 160.0 123.9 Q 169.4 91.8 182.6 62.6" stroke="#3a3f4b" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 182.6 64.1 L 159.3 62.4 L 170.9 82.4" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_r">
|
||||
<path d="M 182.6 64.1 L 159.3 62.4" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round"/>
|
||||
<path d="M 159.3 62.4 L 170.9 82.4" stroke="#0d9488" stroke-width="4.68" stroke-linecap="round"/>
|
||||
</g>
|
||||
<circle id="head" cx="190.4" cy="49.3" r="7.800000000000001" fill="white" stroke="#3a3f4b" stroke-width="4.68"/>
|
||||
<line id="nose" x1="198.0" y1="51.3" x2="203.3" y2="52.7" stroke="#3a3f4b" stroke-width="3.12" stroke-linecap="round"/>
|
||||
<g font-family="-apple-system, Helvetica, sans-serif" font-size="11" fill="#6b7180">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,16 +1,36 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
|
||||
<title>Dumbbell Bench Press</title>
|
||||
<defs>
|
||||
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="155.9" y1="116.8" x2="201.2" y2="108.9"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#9ba1ac"/></linearGradient>
|
||||
<linearGradient id="grad-leg_l-1" gradientUnits="userSpaceOnUse" x1="201.2" y1="108.9" x2="200.0" y2="148.3"><stop offset="0" stop-color="#9ba1ac"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-1" gradientUnits="userSpaceOnUse" x1="195.3" y1="109.3" x2="196.0" y2="148.7"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#3f4450"/></linearGradient>
|
||||
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="196.0" y1="148.7" x2="206.9" y2="147.6"><stop offset="0" stop-color="#3f4450"/><stop offset="1" stop-color="#3d424e"/></linearGradient>
|
||||
</defs>
|
||||
<path d="M 23.2 160.6 L 223.0 160.6 L 223.0 150.2 L 23.2 150.2 Z" fill="none" stroke="#b9bec9" stroke-width="3" stroke-linejoin="round"/>
|
||||
<path d="M 58.0 124.0 L 162.0 124.0 L 162.0 124.0 L 58.0 124.0 Z" fill="#c5cad4" stroke="#c5cad4" stroke-width="9" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 78.0 129.0 L 78.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M 144.0 129.0 L 144.0 150.0" stroke="#c5cad4" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_l" d="M 70.9 116.1 L 95.0 133.7 L 98.0 104.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_l" d="M 155.9 116.8 L 201.2 108.9 L 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="arm_l">
|
||||
<path d="M 70.9 116.1 L 95.0 133.7" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
<path d="M 95.0 133.7 L 98.0 104.3" stroke="#86cfc5" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="leg_l">
|
||||
<path d="M 155.9 116.8 L 201.2 108.9" stroke="url(#grad-leg_l-0)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 201.2 108.9 L 200.0 148.3" stroke="url(#grad-leg_l-1)" stroke-width="5.06155" stroke-linecap="round"/>
|
||||
<path d="M 200.0 148.3 L 211.0 147.7" stroke="#a9afba" stroke-width="5" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path id="girdle" d="M 70.9 116.1 L 65.0 116.0 L 65.0 117.9" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="pelvisBar" d="M 155.9 116.8 L 150.0 116.0 L 150.0 117.2" stroke="#3a3f4b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="spine" d="M 150.0 116.0 Q 106.5 116.0 65.0 116.0" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="leg_r" d="M 150.0 117.2 L 195.3 109.3 L 196.0 148.7 L 206.9 147.6" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="arm_r" d="M 65.0 117.9 L 89.0 135.6 L 90.0 106.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="leg_r">
|
||||
<path d="M 150.0 117.2 L 195.3 109.3" stroke="#3a3f4b" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 195.3 109.3 L 196.0 148.7" stroke="url(#grad-leg_r-1)" stroke-width="5.97557" stroke-linecap="round"/>
|
||||
<path d="M 196.0 148.7 L 206.9 147.6" stroke="url(#grad-leg_r-2)" stroke-width="5.96321" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g id="arm_r">
|
||||
<path d="M 65.0 117.9 L 89.0 135.6" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M 89.0 135.6 L 90.0 106.1" stroke="#0d9488" stroke-width="6" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M 83.0 105.9 L 97.0 106.3" stroke="#6b7180" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<circle cx="83.0" cy="105.9" r="4.5" fill="#6b7180"/>
|
||||
<circle cx="97.0" cy="106.3" r="4.5" fill="#6b7180"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 4.1 KiB |