switch to new theme due to old theme not liking newer versions. New theme seems kick-arse, however
|
After Width: | Height: | Size: 19 KiB |
606
themes/story/exampleSite/content/slides/adirondack/index.md
Normal file
|
|
@ -0,0 +1,606 @@
|
|||
---
|
||||
title: 'Creating Beautiful Presentations with Story'
|
||||
date: "2018-04-25T09:50:00-07:00"
|
||||
url: "slides/adirondack/"
|
||||
image: "slides/adirondack/leo-serrat-533922-unsplash.jpg"
|
||||
thumbnail: slides/adirondack/thumbnail.jpg
|
||||
description: "Story's Remark frameworks help you create sophisticated slides with simple, clean Markdown. There are predefined layouts for most presentation needs, beautiful typography and colors, precise image control, and a simple modular way to create custom layouts."
|
||||
ratio: "16:9"
|
||||
themes:
|
||||
- apron
|
||||
- descartes
|
||||
- adirondack
|
||||
classes:
|
||||
- feature-math
|
||||
- feature-qrcode
|
||||
- feature-nohighlight
|
||||
- feature-music
|
||||
---
|
||||
class: title, smokescreen, shelf, no-footer
|
||||
background-image: url(leo-serrat-533922-unsplash.jpg)
|
||||
|
||||
# Creating Beautiful Presentations
|
||||
### With Remark, Apron, Adirondack, and Descartes
|
||||
|
||||
---
|
||||
# The Story Remark Themes
|
||||
|
||||
[Story](https://github.com/xaprb/story) offers helper themes for creating
|
||||
beautiful presentations with [Remark](https://remarkjs.com/), using simple
|
||||
Markdown to create slide layouts.
|
||||
|
||||
- Apron defines the layouts' structure and size.
|
||||
- Adirondack adds typography, theme colors, and helpful features.
|
||||
- Descartes provides element and image positioning and colors.
|
||||
|
||||
Story has a design goal of clean, simple Markdown content. Avoiding "raw" HTML
|
||||
and Remark's Markdown extensions makes things easier.
|
||||
View the source of this page to see the Markdown that creates it.
|
||||
|
||||
These characteristics make it easy to build gorgeous slideshows. They're also
|
||||
a great foundation for creating your own themes.
|
||||
|
||||
---
|
||||
# What is Remark?
|
||||
|
||||
Remark (sometimes called RemarkJS) is a browser-based slideshow system. It's
|
||||
simple but surprisingly powerful:
|
||||
|
||||
- You write slides in simple Markdown
|
||||
- It supports a presenter mode, slide notes, and dual monitors
|
||||
- It supports slide layouts, templates, and incremental slides
|
||||
- It's easy to extend and customize with simple CSS
|
||||
|
||||
Story integrates Remark into Hugo, creating a live-reload editing experience,
|
||||
and a permanent home for your slides on your own website!
|
||||
|
||||
View this page's source to see how easily you can compose slideshows
|
||||
with Remark.
|
||||
|
||||
---
|
||||
name: getting-started
|
||||
# Getting Started
|
||||
|
||||
To get started, use `hugo new slides/my-presentation.md` and ensure that the
|
||||
following `themes` are in the front matter, for example:
|
||||
|
||||
```yaml
|
||||
---
|
||||
title: 'Creating Beautiful Presentations with Story'
|
||||
date: "2018-04-25T09:50:00-07:00"
|
||||
url: "/slides/adirondack/"
|
||||
ratio: "16:9"
|
||||
themes:
|
||||
- apron
|
||||
- descartes
|
||||
- adirondack
|
||||
```
|
||||
|
||||
---
|
||||
class: compact
|
||||
|
||||
# Apron's Slide Layouts
|
||||
|
||||
It's easy to create common slide layouts with Remark's slide classes.
|
||||
|
||||

|
||||
|
||||
---
|
||||
class: img-right
|
||||
|
||||
# Heading, Content, and Image
|
||||
|
||||

|
||||
|
||||
This is the `img-right` slide class. The content consists simply of a
|
||||
header, an image, and this text.
|
||||
|
||||
* The image's aspect ratio and cropping are not altered.
|
||||
* All content after the image goes in the lefthand column.
|
||||
|
||||
Although this text is in the lefthand column, the image comes _first_ in the
|
||||
markdown source.
|
||||
|
||||
---
|
||||
class: img-left
|
||||
|
||||
# Heading, Image, and Content
|
||||
|
||||

|
||||
|
||||
This is the `img-left` slide class. The content is structured in just the same
|
||||
way as the `img-right` slide class.
|
||||
|
||||
- All content after the image goes in the right-hand column.
|
||||
|
||||
--
|
||||
- These columns require no wrapper `<div>`, just plain Markdown.
|
||||
- This avoids interference with Remark features.
|
||||
|
||||
--
|
||||
- Incremental builds with `--` work fine, for example.
|
||||
|
||||
---
|
||||
class: img-right-full
|
||||
|
||||

|
||||
|
||||
# Content and Image
|
||||
|
||||
This is the `img-right-full` class. The content is simply an image and text
|
||||
(including a header in this case).
|
||||
|
||||
The image is 2x larger than the visible area and its position is set to `left`.
|
||||
This lets you pair this layout with the following one.
|
||||
|
||||
- A red flare silhouetted the jagged edge of a wing.
|
||||
- Almost before we knew it, we had left the ground.
|
||||
|
||||
---
|
||||
class: img-left-full
|
||||
|
||||

|
||||
|
||||
# The Other Side of the Coin
|
||||
|
||||
This slide's class is `img-left-full`. Like the previous slide, it's just an
|
||||
image and some content. The image is exactly the same as the previous slide, but
|
||||
it's positioned to reveal the other half.
|
||||
|
||||
- All their equipment and instruments are alive.
|
||||
- I watched the storm, so beautiful yet terrific.
|
||||
- Almost before we knew it, we had left the ground.
|
||||
|
||||
---
|
||||
class: img-caption
|
||||

|
||||
|
||||
This slide's class is `img-caption`. Its content is simply an image and this
|
||||
text.
|
||||
|
||||
---
|
||||
class: col-2
|
||||
|
||||
# Two-Column Layouts
|
||||
|
||||
This is a two-column layout, created with `class: col-2`.
|
||||
There's no columnar markup (no DIVs, for example) in the content.
|
||||
|
||||

|
||||
|
||||
The columns are created natively in CSS. The first H1 spans all columns.
|
||||
|
||||
> Relaxing in the Adirondack chair, I felt the gathering dusk creep on kitten
|
||||
feet. It came to me, then, that a day lived in this paradise was better than a
|
||||
lifetime anywhere else.
|
||||
|
||||
- I watched the storm, so beautiful yet terrific.
|
||||
|
||||
---
|
||||
class: col-3
|
||||
|
||||
# Three-Column Layouts
|
||||
|
||||
This is a three-column layout, created with `class: col-3`.
|
||||
|
||||
As with `col-2`, Apron assumes the slide begins with an H1 header.
|
||||
|
||||
Mist enveloped the ship three hours out from port.
|
||||
|
||||

|
||||
|
||||
- My two natures had memory in common.
|
||||
- The face of the moon was in shadow.
|
||||
|
||||
Call me Ishmael. Some years ago---never mind how long precisely---having little or
|
||||
no money in my purse, and nothing particular to interest me on shore, I thought
|
||||
I would sail about a little and see the watery part of the world.
|
||||
|
||||
---
|
||||
# Apron's Layout Classes
|
||||
|
||||
Here are the Apron slide layouts classes and how to use them:
|
||||
|
||||
| Class | Content structuring guidelines |
|
||||
|-------------------------------|-------------------------------------------------|
|
||||
| title | Add a background-image, H1, and optional H2/H3. |
|
||||
| img-caption | Add an image and optional caption text. |
|
||||
| img-right, img-left | Add a header, image, and content. |
|
||||
| img-right-full, img-left-full | Add an image, _then_ headers and content. |
|
||||
| col-2, col-3 | Add a header, then any content desired. |
|
||||
|
||||
---
|
||||
class: compact
|
||||
|
||||
# A Compact Slide
|
||||
|
||||
This slide's class is `compact`, which reduces font sizes, line heights, and
|
||||
slide padding. This makes it possible to fit more content on the slide, which
|
||||
can be useful.
|
||||
|
||||
- I watched the storm, so beautiful yet terrific.
|
||||
- Almost before we knew it, we had left the ground.
|
||||
|
||||
```javascript
|
||||
function $initHighlight(block, cls) {
|
||||
if (cls.search(/\bno\-highlight\b/) != -1)
|
||||
return process(block, true, 0x0F) + ` class="${cls}"`;
|
||||
for (var i = 0 / 2; i < classes.length; i++) {
|
||||
if (checkCondition(classes[i]) === undefined)
|
||||
console.log('undefined');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
class: compact, col-3
|
||||
|
||||
# Compact Three-Column Layout
|
||||
|
||||
This is a three-column layout,
|
||||
created with `class: col-3, compact`.
|
||||
|
||||
The `compact` class works well three columns, which have less room.
|
||||
|
||||

|
||||
|
||||
A shining crescent far beneath the flying vessel.
|
||||
|
||||
- It was going to be a lonely trip back.
|
||||
- Mist enveloped the ship three hours out from port.
|
||||
- My two natures had memory in common.
|
||||
- Silver mist suffused the deck of the ship.
|
||||
- The face of the moon was in shadow.
|
||||
|
||||
Call me Ishmael. Some years ago---never mind how long precisely---having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
|
||||
|
||||
---
|
||||
class: roomy
|
||||
# A Roomy Slide
|
||||
|
||||
This slide doesn't have as much content, so I gave it the class `roomy` to let
|
||||
its content stretch out a bit for readability.
|
||||
|
||||
- A red flare silhouetted the jagged edge of a wing.
|
||||
- I watched the storm, so beautiful yet terrific.
|
||||
- Almost before we knew it, we had left the ground.
|
||||
- All their equipment and instruments are alive.
|
||||
|
||||
---
|
||||
class: roomy, col-2
|
||||
# Room For Two Columns
|
||||
|
||||
This roomy slide has two columns: `class: roomy, col-2`. Bulleted lists
|
||||
shouldn't break across columns.
|
||||
|
||||
- A red flare silhouetted the jagged edge of a wing.
|
||||
- I watched the storm, so beautiful yet terrific.
|
||||
- Almost before we knew it, we had left the ground.
|
||||
- All their equipment and instruments are alive.
|
||||
|
||||
---
|
||||
class: compact
|
||||
# Apron's Auxiliary Classes
|
||||
|
||||
Apron offers the following additional slide classes:
|
||||
|
||||
| Class | Applies To | Content structuring guidelines |
|
||||
|------------|------------|------------------------------------------------------------------------------------|
|
||||
| top | title | Moves the title and subtitle to the top of the slide. |
|
||||
| bottom | title | Moves the title and subtitle to the bottom. |
|
||||
| shelf | title | Extends the title's background and locates the subtitle above it. |
|
||||
| compact | (all) | Reduces text size and margins to fit more content. |
|
||||
| roomy | (all) | Increases text size to fill more space. |
|
||||
| fullbleed | (all) | Removes margins from the slide and its text. |
|
||||
| no-footer | (all) | Hides the footer (including slide number). |
|
||||
| debug | (all) | Outlines elements in gold to make formatting visible. Variants: -white and -black. |
|
||||
| debug-grid | (all) | Displays a layout grid. Variants: -8, -16, -solid, and combinations of these. |
|
||||
|
||||
---
|
||||
class: title, fogscreen
|
||||
background-image: url(tanya-nevidoma-632010-unsplash.jpg)
|
||||
# Adirondack's Typography and Features
|
||||
|
||||
---
|
||||
# Adirondack
|
||||
|
||||
Adirondack is built on top of Apron, and adds beautiful typography, colors, and
|
||||
extra features. This section is a demo and documentation of those features.
|
||||
|
||||
# Heading Level 1
|
||||
## Heading Level 2
|
||||
### Heading Level 3
|
||||
|
||||
Text with _italics_, __bold__, ~~strikethrough~~, `<code>`,
|
||||
[link](https://www.wikipedia.org/).
|
||||
|
||||
---
|
||||
class: col-2
|
||||
|
||||
# Bulleted Lists Demo
|
||||
|
||||
This column illustrates bulleted lists.
|
||||
|
||||
* A bulleted list.
|
||||
* Another bullet.
|
||||
* Nested bullets.
|
||||
* Another.
|
||||
* Deeply nested.
|
||||
* Back to the top-level again.
|
||||
|
||||
This column has numbered lists.
|
||||
|
||||
2. Another bullet.
|
||||
3. The last bullet.
|
||||
1. Nested numbered lists.
|
||||
2. Another.
|
||||
3. Deeper.
|
||||
1. Top-level again.
|
||||
|
||||
---
|
||||
# Code Typography Demo
|
||||
|
||||
Remark offers [HighlightJS](https://highlightjs.org/) code syntax highlighting.
|
||||
Story enables/disables this with [feature flags](/features/).
|
||||
|
||||
```javascript
|
||||
function $initHighlight(block, cls) {
|
||||
if (cls.search(/\bno\-highlight\b/) != -1)
|
||||
return process(block, true, 0x0F) + ` class="${cls}"`;
|
||||
for (var i = 0 / 2; i < classes.length; i++) {
|
||||
if (checkCondition(classes[i]) === undefined)
|
||||
console.log('undefined');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
class: col-2
|
||||
# Math Typesetting
|
||||
|
||||
Story supports math equation typesetting using the KaTeX library,
|
||||
if [`feature-math`](/math/) is enabled.
|
||||
|
||||
\\[
|
||||
\left( \beta mc^2 + c \left ( \sum_{n=1}^3 \alpha_n p\_n \right ) \right) \psi(x,t) = i \hbar \frac{\partial \psi(x,t) }{\partial t}
|
||||
\\]
|
||||
|
||||
The coherence is the \\(\kappa\\) coefficient of \\(n^2\\),
|
||||
which is \\(e^{i\pi}-1=0\\).
|
||||
|
||||
\\[
|
||||
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
|
||||
\\]
|
||||
|
||||

|
||||
|
||||
You can also display equations inline, such as the quadratic equation, which is
|
||||
\\(x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}\\)
|
||||
|
||||
---
|
||||
class: compact
|
||||
# Music Notation and Sheet Music
|
||||
|
||||
Story supports [formatting sheet music from ABC](/music).
|
||||
|
||||
```abc
|
||||
X: 1
|
||||
T: Cooley's
|
||||
M: 4/4
|
||||
L: 1/8
|
||||
K: Emin
|
||||
|:D2|EB{c}BA B2 EB|~B2 AB dBAG|FDAD BDAD|FDAD dAFD|
|
||||
EBBA B2 EB|B2 AB defg|afe^c dBAF|DEFD E2:|
|
||||
```
|
||||
|
||||
---
|
||||
class: fit-h1, roomy
|
||||
# This Slide Has A Very Long Multi-Line Heading That Has Been Shrunk
|
||||
|
||||
The `fit-h1` slide class will automatically shrink the first H1 heading until it
|
||||
fits on a single line.
|
||||
|
||||
This doesn't work on title slides.
|
||||
|
||||
Story also applies 6'2" tall "smartypants" processing to replace 'straight
|
||||
quotes,' en- and em-dashes (boil for 12--15 minutes---longer if needed),
|
||||
and ellipses with their nicer typographical equivalents... isn't that nice?
|
||||
|
||||
---
|
||||
# Share Your Slides With QR Codes
|
||||
|
||||
.qrcode.db.fr.w-40pct.ml-4[]
|
||||
|
||||
Adirondack has built-in support for QR codes to share your slides easily. No
|
||||
more emailing links or files! Your audience can simply snap a picture of the
|
||||
screen.
|
||||
|
||||
Just enable the `feature-qrcode` [flag](/features/) and add markup like the
|
||||
following to your slide:
|
||||
|
||||
```
|
||||
.qrcode.db.fr.w-40pct.ml-4[]
|
||||
```
|
||||
|
||||
The `qrcode` class is important but the rest is up to you.
|
||||
|
||||
---
|
||||
# Export Your Slides To PDFs
|
||||
|
||||
Remark has support for printing slides to a PDF, using Google Chrome's print
|
||||
dialog (not the native system dialog).
|
||||
|
||||
There are some bugs in it... but Story implements workarounds so you don't even
|
||||
need to think about it.
|
||||
|
||||
Just print with Chrome and save to a PDF file.
|
||||
|
||||
This works for both 16:9 and 4:3 ratio slides. Speaking of which, you select
|
||||
that with the `ratio` in the front matter, as shown on the [getting
|
||||
started](#getting-started) slide.
|
||||
|
||||
---
|
||||
layout: true
|
||||
|
||||
.footer[
|
||||
- @xaprb
|
||||
- 
|
||||
]
|
||||
|
||||
---
|
||||
class: compact
|
||||
# Footer Content
|
||||
|
||||
This slide builds on content from the previous (hidden, layout) slide, whose
|
||||
content is:
|
||||
|
||||
```
|
||||
---
|
||||
layout: true
|
||||
.footer[
|
||||
- @xaprb
|
||||
- 
|
||||
]
|
||||
```
|
||||
|
||||
This content uses Adirondack's built-in `footer` css styling to define footer
|
||||
elements. You can see them at the bottom of this slide. In the next section,
|
||||
you'll learn Descartes classes you can add
|
||||
to the div to style it, e.g. `.footer.bt.bc-cornflower[...]`.
|
||||
|
||||
You can hide both the Remark and custom footer on any slide with `class: no-footer`.
|
||||
|
||||
---
|
||||
layout: false
|
||||
# Adirondack’s Slide Classes
|
||||
|
||||
Here are Adirondack's slide classes:
|
||||
|
||||
| Class | Notes |
|
||||
|---------------|----------------------------------------------------------------------|
|
||||
| `smokescreen` | Creates a dark shaded semi-transparent background on `title` slides. |
|
||||
| `fogscreen` | Similar to `smokescreen`, but uses a white shading. |
|
||||
| `fit-h1` | Shrinks the H1 heading's font-size to fit on a single line. |
|
||||
|
||||
---
|
||||
class: title, smokescreen, shelf
|
||||
background-image: url(will-turner-508747-unsplash.jpg)
|
||||
|
||||
# Positioning Images And Elements
|
||||
## Using Descartes To Create Intricate Layouts
|
||||
|
||||
---
|
||||
# Descartes' Styling Functionality
|
||||
|
||||
Descartes is an add-on that gives lots of power over image and element formatting with
|
||||
Markdown. It uses composable, functional pseudo-classes in the image's URL
|
||||
fragment (the part after the `#` character). For example, this image will be 33% width,
|
||||
display as block, 2rem right margin, and float left:
|
||||
|
||||
```
|
||||

|
||||
```
|
||||
|
||||

|
||||
|
||||
That URL has four "words" in the fragment, delimited by whitespace. The
|
||||
whitespace is important!
|
||||
|
||||
Image classes are also available for `<div>`s.
|
||||
|
||||
---
|
||||
class: center
|
||||
|
||||
This image collage has no "raw" markup or Remark `<div>` extensions. The next
|
||||
slide illustrates Descartes's grid of 12ths.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
---
|
||||
class: fullbleed
|
||||
background-color: black
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
.absolute.w-7-12th.pa-3.l-1-12th.t-20pct.ba.bw-4.br-4.bg-white-60pct[
|
||||
This slide is composed only of simple Markdown markup, no raw HTML.
|
||||
]
|
||||
|
||||
---
|
||||
# Using Descartes' Coordinate Grids
|
||||
|
||||
Descartes offers several length scales for element sizes and positions. For
|
||||
each, a class naming convention selects the value:
|
||||
|
||||
- rems, from 1 rem (-1) to 96rem (-9)
|
||||
- tenths, in 10% increments from -10pct to -100pct, plus -33pct, -34pct, and -75pct
|
||||
- twelfths, in 1/12th increments from -1-12th to -11-12th
|
||||
- thirds, as -third and -two-thirds
|
||||
|
||||
There's always a prefix that specifies what the item is, and a suffix that
|
||||
selects the units. So for example, if you want an element to have a width of
|
||||
50%, you can give it a class of `w-50pct`, and if you want it to be 25% width
|
||||
you can use `w-3-12th`.
|
||||
|
||||
---
|
||||
class: col-2
|
||||
# Descartes' Coordinate Selectors
|
||||
|
||||
You can apply the length scales from the previous slide to a variety of element
|
||||
properties (see right). The X can be any of the suffixes discussed on the
|
||||
previous slide.
|
||||
|
||||
These can be applied as classes to a DIV, or image pseudo-classes:
|
||||
|
||||
```
|
||||
.w-50pct.h-1-12th.t-0.l-50pct[....]
|
||||

|
||||
```
|
||||
|
||||
- w-X: width
|
||||
- maxw-X: max-width
|
||||
- minw-X: min-width
|
||||
- h-X: height
|
||||
- maxh-X: max-height
|
||||
- minh-X: min-height
|
||||
- t-X: top
|
||||
- r-X: right
|
||||
- b-X: bottom
|
||||
- l-X: left
|
||||
|
||||
---
|
||||
# Descartes' Other Features
|
||||
|
||||
Descartes also has classes to control color (text, border, background,
|
||||
transparency), opacity, borders (sides, width, radius), spacing (padding,
|
||||
margin), centering, display types, floats, clearfix, position types, background
|
||||
image fitting and positioning, and box shadows.
|
||||
|
||||
For many of these, there's a set of units and sizing scales.
|
||||
|
||||
These cannot be documented fully in this slideshow, but hopefully it gives you a
|
||||
sense of what's possible. You should read the `.less` files; they are short and
|
||||
easy to understand.
|
||||
|
||||
---
|
||||
# Where Did The Names Come From?
|
||||
|
||||
For some reason, I named my Remark slideshow layouts after iconic chair designs
|
||||
(Monobloc, Adirondack, etc).
|
||||
|
||||

|
||||
|
||||
The apron is the part of the chair upon which everything rests, so I gave the
|
||||
underlying "supporting" set of CSS that name. I named Descartes after the famous
|
||||
inventor of the Cartesian coordinate system.
|
||||
|
||||
Credit: http://www.props.eric-hart.com/
|
||||
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 221 KiB |
415
themes/story/exampleSite/content/slides/adirondack/linear3.svg
Normal file
|
|
@ -0,0 +1,415 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 731.0755 360.29779"
|
||||
height="360.29779"
|
||||
width="731.0755"
|
||||
xml:space="preserve"
|
||||
version="1.1"
|
||||
id="svg2"><metadata
|
||||
id="metadata8"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs6"><clipPath
|
||||
id="clipPath12"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
id="path14"
|
||||
d="M 0,0 612,0 612,360 0,360 0,0 Z" /></clipPath><clipPath
|
||||
id="clipPath22"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
id="path24"
|
||||
d="M 0,0 612,0 612,360 0,360 0,0 Z" /></clipPath><clipPath
|
||||
id="clipPath32"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
id="path34"
|
||||
d="m 59.04,73.44 522.72,0 0,227.52 -522.72,0 0,-227.52 z" /></clipPath><clipPath
|
||||
id="clipPath78"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
id="path80"
|
||||
d="M 0,0 612,0 612,360 0,360 0,0 Z" /></clipPath><clipPath
|
||||
id="clipPath158"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
id="path160"
|
||||
d="m 59.04,73.44 522.72,0 0,227.52 -522.72,0 0,-227.52 z" /></clipPath><clipPath
|
||||
id="clipPath204"
|
||||
clipPathUnits="userSpaceOnUse"><path
|
||||
id="path206"
|
||||
d="M 0,0 612,0 612,360 0,360 0,0 Z" /></clipPath></defs><g
|
||||
clip-path="url(#clipPath12)"
|
||||
transform="matrix(1.25,0,0,-1.25,0,380.214)"
|
||||
id="g10"><g
|
||||
id="g16" /><g
|
||||
id="g18"><g
|
||||
clip-path="url(#clipPath22)"
|
||||
id="g20"><path
|
||||
id="path26"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 612,0 612,360 0,360 0,0 Z" /></g></g><g
|
||||
id="g28"><g
|
||||
clip-path="url(#clipPath32)"
|
||||
id="g30"><path
|
||||
id="path36"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 133.5,103.45 35,13.71" /><path
|
||||
id="path38"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 181.9,122.41 35,13.71" /><path
|
||||
id="path40"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 230.3,141.37 35,13.71" /><path
|
||||
id="path42"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 278.7,160.33 35,13.71" /><path
|
||||
id="path44"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 327.1,179.29 35,13.71" /><path
|
||||
id="path46"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 375.5,198.25 35,13.71" /><path
|
||||
id="path48"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 423.9,217.21 35,13.71" /><path
|
||||
id="path50"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 472.3,236.17 35,13.71" /><path
|
||||
id="path52"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 520.7,255.13 35,13.71" /><path
|
||||
id="path54"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.1,100.83 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path56"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 172.5,119.79 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path58"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 220.9,138.75 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path60"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 269.3,157.71 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path62"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 317.7,176.67 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path64"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 366.1,195.63 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path66"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 414.5,214.59 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path68"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 462.9,233.55 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path70"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 511.3,252.51 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path72"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 559.7,271.47 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /></g></g><g
|
||||
id="g74"><g
|
||||
clip-path="url(#clipPath78)"
|
||||
id="g76"><path
|
||||
id="path82"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 78.4,73.44 484,0" /><path
|
||||
id="path84"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 78.4,73.44 0,-7.2" /><path
|
||||
id="path86"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 175.2,73.44 0,-7.2" /><path
|
||||
id="path88"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 272,73.44 0,-7.2" /><path
|
||||
id="path90"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 368.8,73.44 0,-7.2" /><path
|
||||
id="path92"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 465.6,73.44 0,-7.2" /><path
|
||||
id="path94"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 562.4,73.44 0,-7.2" /><text
|
||||
id="text96"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,73.95,47.52)"><tspan
|
||||
id="tspan98"
|
||||
y="0"
|
||||
x="0">0</tspan></text>
|
||||
<text
|
||||
id="text100"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,170.75,47.52)"><tspan
|
||||
id="tspan102"
|
||||
y="0"
|
||||
x="0">2</tspan></text>
|
||||
<text
|
||||
id="text104"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,267.55,47.52)"><tspan
|
||||
id="tspan106"
|
||||
y="0"
|
||||
x="0">4</tspan></text>
|
||||
<text
|
||||
id="text108"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,364.35,47.52)"><tspan
|
||||
id="tspan110"
|
||||
y="0"
|
||||
x="0">6</tspan></text>
|
||||
<text
|
||||
id="text112"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,461.15,47.52)"><tspan
|
||||
id="tspan114"
|
||||
y="0"
|
||||
x="0">8</tspan></text>
|
||||
<text
|
||||
id="text116"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,553.5,47.52)"><tspan
|
||||
id="tspan118"
|
||||
y="0"
|
||||
x="0 8.8959999">10</tspan></text>
|
||||
<path
|
||||
id="path120"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,81.87 0,210.66" /><path
|
||||
id="path122"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,81.87 -7.2,0" /><path
|
||||
id="path124"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,134.53 -7.2,0" /><path
|
||||
id="path126"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,187.2 -7.2,0" /><path
|
||||
id="path128"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,239.87 -7.2,0" /><path
|
||||
id="path130"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,292.53 -7.2,0" /><text
|
||||
id="text132"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,41.76,77.42)"><tspan
|
||||
id="tspan134"
|
||||
y="0"
|
||||
x="0">0</tspan></text>
|
||||
<text
|
||||
id="text136"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,41.76,116.74)"><tspan
|
||||
id="tspan138"
|
||||
y="0"
|
||||
x="0 8.8959999 17.792 26.688">5000</tspan></text>
|
||||
<text
|
||||
id="text140"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,41.76,217.63)"><tspan
|
||||
id="tspan142"
|
||||
y="0"
|
||||
x="0 8.8959999 17.792 26.688 35.584">15000</tspan></text>
|
||||
<path
|
||||
id="path144"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,73.44 522.72,0 0,227.52 -522.72,0 0,-227.52" /><text
|
||||
id="text146"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,298.61,18.72)"><tspan
|
||||
id="tspan148"
|
||||
y="0"
|
||||
x="0 8.8959999 17.792 26.688 35.584">nodes</tspan></text>
|
||||
<text
|
||||
id="text150"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,12.96,148.95)"><tspan
|
||||
id="tspan152"
|
||||
y="0"
|
||||
x="0 4.448 13.344 18.672001 27.568001 36.464001 45.360001 54.256001 63.152 72.047997">throughput</tspan></text>
|
||||
</g></g><g
|
||||
id="g154"><g
|
||||
clip-path="url(#clipPath158)"
|
||||
id="g156"><path
|
||||
id="path162"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 133.64,103.07 34.72,11.35" /><path
|
||||
id="path164"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 182.19,118.37 34.42,8.41" /><path
|
||||
id="path166"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 230.7,129.65 34.2,5.61" /><path
|
||||
id="path168"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 279.17,137.12 34.06,3.3" /><path
|
||||
id="path170"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 327.59,141.45 34.02,1.57" /><path
|
||||
id="path172"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 376,143.43 34,0.38" /><path
|
||||
id="path174"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 424.4,143.8 34,-0.43" /><path
|
||||
id="path176"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 472.8,143.08 34,-0.93" /><path
|
||||
id="path178"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 521.2,141.69 34,-1.23" /><path
|
||||
id="path180"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.1,100.83 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path182"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 172.5,116.66 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path184"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 220.9,128.49 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path186"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 269.3,136.43 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path188"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 317.7,141.12 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path190"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 366.1,143.35 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path192"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 414.5,143.89 c 0,1.48 1.21,2.7 2.7,2.7 1.49,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.21,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path194"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 462.9,143.28 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path196"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 511.3,141.95 c 0,1.48 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.22 2.7,-2.7 0,-1.49 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.21 -2.7,2.7" /><path
|
||||
id="path198"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 559.7,140.2 c 0,1.49 1.21,2.7 2.7,2.7 1.48,0 2.7,-1.21 2.7,-2.7 0,-1.48 -1.22,-2.7 -2.7,-2.7 -1.49,0 -2.7,1.22 -2.7,2.7" /></g></g><g
|
||||
id="g200"><g
|
||||
clip-path="url(#clipPath204)"
|
||||
id="g202"><path
|
||||
id="path208"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 78.4,73.44 484,0" /><path
|
||||
id="path210"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 78.4,73.44 0,-7.2" /><path
|
||||
id="path212"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 175.2,73.44 0,-7.2" /><path
|
||||
id="path214"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 272,73.44 0,-7.2" /><path
|
||||
id="path216"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 368.8,73.44 0,-7.2" /><path
|
||||
id="path218"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 465.6,73.44 0,-7.2" /><path
|
||||
id="path220"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 562.4,73.44 0,-7.2" /><text
|
||||
id="text222"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,73.95,47.52)"><tspan
|
||||
id="tspan224"
|
||||
y="0"
|
||||
x="0">0</tspan></text>
|
||||
<text
|
||||
id="text226"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,170.75,47.52)"><tspan
|
||||
id="tspan228"
|
||||
y="0"
|
||||
x="0">2</tspan></text>
|
||||
<text
|
||||
id="text230"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,267.55,47.52)"><tspan
|
||||
id="tspan232"
|
||||
y="0"
|
||||
x="0">4</tspan></text>
|
||||
<text
|
||||
id="text234"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,364.35,47.52)"><tspan
|
||||
id="tspan236"
|
||||
y="0"
|
||||
x="0">6</tspan></text>
|
||||
<text
|
||||
id="text238"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,461.15,47.52)"><tspan
|
||||
id="tspan240"
|
||||
y="0"
|
||||
x="0">8</tspan></text>
|
||||
<text
|
||||
id="text242"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,553.5,47.52)"><tspan
|
||||
id="tspan244"
|
||||
y="0"
|
||||
x="0 8.8959999">10</tspan></text>
|
||||
<path
|
||||
id="path246"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,81.87 0,210.66" /><path
|
||||
id="path248"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,81.87 -7.2,0" /><path
|
||||
id="path250"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,134.53 -7.2,0" /><path
|
||||
id="path252"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,187.2 -7.2,0" /><path
|
||||
id="path254"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,239.87 -7.2,0" /><path
|
||||
id="path256"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,292.53 -7.2,0" /><text
|
||||
id="text258"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,41.76,77.42)"><tspan
|
||||
id="tspan260"
|
||||
y="0"
|
||||
x="0">0</tspan></text>
|
||||
<text
|
||||
id="text262"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,41.76,116.74)"><tspan
|
||||
id="tspan264"
|
||||
y="0"
|
||||
x="0 8.8959999 17.792 26.688">5000</tspan></text>
|
||||
<text
|
||||
id="text266"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,41.76,217.63)"><tspan
|
||||
id="tspan268"
|
||||
y="0"
|
||||
x="0 8.8959999 17.792 26.688 35.584">15000</tspan></text>
|
||||
<path
|
||||
id="path270"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 59.04,73.44 522.72,0 0,227.52 -522.72,0 0,-227.52" /><text
|
||||
id="text272"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,298.61,18.72)"><tspan
|
||||
id="tspan274"
|
||||
y="0"
|
||||
x="0 8.8959999 17.792 26.688 35.584">nodes</tspan></text>
|
||||
<text
|
||||
id="text276"
|
||||
style="font-variant:normal;font-weight:normal;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(0,1,1,0,12.96,148.95)"><tspan
|
||||
id="tspan278"
|
||||
y="0"
|
||||
x="0 4.448 13.344 18.672001 27.568001 36.464001 45.360001 54.256001 63.152 72.047997">throughput</tspan></text>
|
||||
</g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
BIN
themes/story/exampleSite/content/slides/adirondack/nasa-53884-unsplash.jpg
Executable file
|
After Width: | Height: | Size: 114 KiB |
|
|
@ -0,0 +1,894 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 2560 1440" height="1440" width="2560" id="svg2" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs id="defs6">
|
||||
<clipPath id="clipPath20" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path18" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath30" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path28" d="m 702.5,789.0737 h 515 V 1080 h -515 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath42" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path40" d="m 722.3505,999.6307 h 472.7713 v 63.7405 H 722.3505 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath54" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path52" d="m 715.3145,1002.131 h 486.8433 v 58.7405 H 715.3145 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath68" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path66" d="m 722.3505,805.7762 h 472.7713 V 991.4357 H 722.3505 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath80" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path78" d="m 718.8905,808.2762 h 479.6913 V 994.8957 H 718.8905 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath94" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path92" d="m 1429.028,999.7702 h 472.7713 v 63.7405 H 1429.028 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath106" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path104" d="m 1421.992,1002.27 h 486.8433 v 58.7405 H 1421.992 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath120" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path118" d="m 1429.028,805.9157 h 233 v 185.6595 h -233 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath132" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path130" d="m 1425.568,808.4157 h 239.92 v 186.6195 h -239.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath146" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path144" d="m 1407.913,789.2132 h 512.0869 V 1080 H 1407.913 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath158" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path156" d="m 1668.799,805.9157 h 233 v 185.6595 h -233 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath172" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path170" d="m 1665.339,808.4157 h 239.92 v 186.6195 h -239.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath182" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path180" d="m 1694.12,838.0164 h 160.0969 v 69.96136 H 1694.12 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath192" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path190" d="m 1812.06,900.5397 h 68.3471 v 68.34713 H 1812.06 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath202" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path200" d="M 0,789.2132 H 514.6147 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath214" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path212" d="m 20.72905,933.7011 h 472.7713 v 63.74047 H 20.72905 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath226" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path224" d="m 13.69304,936.2011 h 486.8433 v 58.74047 H 13.69304 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath240" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path238" d="m 20.72905,871.9849 h 472.7713 v 63.74047 H 20.72905 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath252" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path250" d="m 15.48104,874.4849 h 483.2673 v 58.74047 H 15.48104 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath266" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path264" d="m 0,418.725 h 514.6147 v 291 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath278" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path276" d="m 20.72903,629.282 h 472.7713 v 63.74047 H 20.72903 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath290" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path288" d="m 13.69302,631.782 h 486.8433 v 58.74047 H 13.69302 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath304" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path302" d="m 260.5003,435.4276 h 233 v 185.6595 h -233 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath316" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path314" d="m 257.0403,437.9276 h 239.92 v 186.6195 h -239.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath330" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path328" d="m 20.22903,435.9276 h 233 v 185.6595 h -233 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath344" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path342" d="m 16.76902,438.4276 h 239.92 v 186.6195 h -239.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath354" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path352" d="m 45.5497,468.0282 h 160.0969 v 69.96136 H 45.5497 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath364" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path362" d="m 163.49,530.5515 h 68.34713 v 68.34713 H 163.49 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath374" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path372" d="m 702.5,418.725 h 515 v 291 h -515 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath386" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path384" d="m 722.3505,629.282 h 282 v 63.74047 h -282 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath398" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path396" d="m 715.3145,631.782 h 296.072 v 58.74047 h -296.072 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath412" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path410" d="m 722.3505,435.4275 h 282 V 621.087 h -282 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath424" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path422" d="m 718.8905,437.9275 h 288.92 V 624.547 h -288.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath438" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path436" d="M 1023.128,418.725 H 1218 v 291 h -194.872 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath452" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path450" d="m 1019.668,421.225 h 201.792 v 291.96 h -201.792 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath462" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path460" d="m 1053.611,543.8921 h 133.9063 v 58.70277 H 1053.611 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath472" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path470" d="m 1145.361,600.7861 h 68.3471 v 68.34713 h -68.3471 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath482" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path480" d="m 1099.136,435.4276 h 102.0742 V 537.3532 H 1099.136 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath492" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path490" d="m 1407.913,418.225 h 512.0869 v 291 H 1407.913 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath504" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path502" d="m 1620.793,628.782 h 282 v 63.74047 h -282 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath516" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path514" d="m 1613.757,631.282 h 296.072 v 58.74047 h -296.072 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath530" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path528" d="m 1620.793,434.9275 h 282 V 620.587 h -282 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath542" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path540" d="m 1617.333,437.4275 h 288.92 V 624.047 h -288.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath556" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path554" d="m 1406.972,418.725 h 194.872 v 291 h -194.872 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath570" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path568" d="m 1403.512,421.225 h 201.792 v 291.96 h -201.792 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath580" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path578" d="m 1437.455,543.8921 h 133.9063 v 58.70277 H 1437.455 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath590" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path588" d="m 1529.205,600.7861 h 68.3471 v 68.34713 h -68.3471 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath600" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path598" d="m 1482.98,435.4276 h 102.0742 V 537.3532 H 1482.98 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath610" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path608" d="m 0,50.23682 h 514.6147 v 291 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath622" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path620" d="M 0,103.6825 H 515.2623 V 341.2368 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath636" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path634" d="M 0,106.1825 H 518.7223 V 344.6968 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath646" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path644" d="M 19.5018,199.3335 H 253.9564 V 301.2591 H 19.5018 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath656" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path654" d="m 391.4636,232.2979 h 68.34713 v 68.34713 H 391.4636 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath666" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path664" d="M 257.9662,114.7986 H 360.0404 V 216.7242 H 257.9662 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath676" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path674" d="m 0,51.17502 h 514.6147 v 55.85416 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath688" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path686" d="m 0,53.67502 h 518.0748 v 50.85416 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath702" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path700" d="m 702.5,50.23682 h 515 v 291 h -515 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath714" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path712" d="m 723.6144,259.7938 h 472.7713 v 63.74047 H 723.6144 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath726" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path724" d="m 716.5784,262.2938 h 486.8433 v 58.74047 H 716.5784 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath740" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path738" d="m 723.6144,66.4393 h 233 v 185.6595 h -233 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath752" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path750" d="m 720.1544,68.9393 h 239.92 v 186.6195 h -239.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath766" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path764" d="m 963.3856,66.93936 h 233 v 185.6595 h -233 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath778" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path776" d="m 959.9256,69.43936 h 239.92 v 186.6195 h -239.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath792" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path790" d="m 1407.913,50.23682 h 512.0869 v 291 H 1407.913 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath804" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path802" d="m 1429.028,260.7938 h 472.7713 v 63.74047 H 1429.028 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath816" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path814" d="m 1421.992,263.2938 h 486.8433 v 58.74047 H 1421.992 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath830" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path828" d="m 1429.028,67.93936 h 153 v 185.6595 h -153 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath842" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path840" d="m 1425.568,70.43936 h 159.92 v 186.6195 h -159.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath856" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path854" d="m 1588.913,67.93936 h 153 v 185.6595 h -153 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath868" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path866" d="m 1585.453,70.43936 h 159.92 v 186.6195 h -159.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath882" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path880" d="m 1748.799,67.93936 h 153 v 185.6595 h -153 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath894" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path892" d="m 1745.339,70.43936 h 159.92 v 186.6195 h -159.92 z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath908" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path906" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath922" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path920" d="m 813.3313,740.6621 h 293.3866 v 43.30402 H 813.3313 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath936" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path934" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath950" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path948" d="m 107.9182,740.6621 h 293.3866 v 43.30402 H 107.9182 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath964" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path962" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath978" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path976" d="m 1518.744,740.6621 h 293.3866 v 43.30402 H 1518.744 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath992" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path990" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1006" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1004" d="m 813.3313,370.2971 h 293.3866 v 43.30402 H 813.3313 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1020" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1018" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1034" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1032" d="m 107.9182,370.2971 h 293.3866 v 43.30402 H 107.9182 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1048" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1046" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1062" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1060" d="m 1518.744,370.2971 h 293.3866 v 43.30402 H 1518.744 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1076" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1074" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1090" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1088" d="m 813.3313,1.739593 h 293.3866 v 43.30402 H 813.3313 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1104" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1102" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1118" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1116" d="m 107.9182,1.739593 h 293.3866 v 43.30402 H 107.9182 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1132" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1130" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clipPath1146" clipPathUnits="userSpaceOnUse">
|
||||
<path id="path1144" d="m 1518.744,1.739593 h 293.3866 v 43.30402 H 1518.744 Z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g transform="matrix(1.3333333,0,0,-1.3333333,0,1440)" id="g10">
|
||||
<g id="g12"/>
|
||||
<g id="g14">
|
||||
<g clip-path="url(#clipPath20)" id="g16">
|
||||
<path id="path22" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 0,0 H 1920 V 1080 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g24">
|
||||
<g clip-path="url(#clipPath30)" id="g26">
|
||||
<g transform="matrix(1,0,0,-1,704,1078.574)" id="g32">
|
||||
<path id="path34" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g36">
|
||||
<g clip-path="url(#clipPath42)" id="g38">
|
||||
<g transform="matrix(1,0,0,-1,723.8505,1061.871)" id="g44">
|
||||
<path id="path46" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g48">
|
||||
<g clip-path="url(#clipPath54)" id="g50">
|
||||
<g transform="translate(725,1020)" id="g56">
|
||||
<text id="text60" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan58" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g62">
|
||||
<g clip-path="url(#clipPath68)" id="g64">
|
||||
<g transform="matrix(1,0,0,-1,723.8505,989.9356)" id="g70">
|
||||
<path id="path72" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g74">
|
||||
<g clip-path="url(#clipPath80)" id="g76">
|
||||
<g transform="translate(725,969)" id="g82">
|
||||
<text id="text86" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan84" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g88">
|
||||
<g clip-path="url(#clipPath94)" id="g90">
|
||||
<g transform="matrix(1,0,0,-1,1430.528,1062.011)" id="g96">
|
||||
<path id="path98" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g100">
|
||||
<g clip-path="url(#clipPath106)" id="g102">
|
||||
<g transform="translate(1432,1020)" id="g108">
|
||||
<text id="text112" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan110" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g114">
|
||||
<g clip-path="url(#clipPath120)" id="g116">
|
||||
<g transform="matrix(1,0,0,-1,1430.528,990.0752)" id="g122">
|
||||
<path id="path124" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 230 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g126">
|
||||
<g clip-path="url(#clipPath132)" id="g128">
|
||||
<g transform="translate(1432,969)" id="g134">
|
||||
<text id="text138" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan136" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g140">
|
||||
<g clip-path="url(#clipPath146)" id="g142">
|
||||
<g transform="matrix(1,0,0,-1,1409.413,1078.713)" id="g148">
|
||||
<path id="path150" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M -0.163 0 L 509.837 0 L 509.837 288 L -0.163 288 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g152">
|
||||
<g clip-path="url(#clipPath158)" id="g154">
|
||||
<path id="path160" style="fill:#5e5e5e;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1670.299,990.0752 h 230 V 807.4157 h -230 z"/>
|
||||
<g transform="matrix(1,0,0,-1,1670.299,990.0752)" id="g162">
|
||||
<path id="path164" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 230 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g166">
|
||||
<g clip-path="url(#clipPath172)" id="g168">
|
||||
<g transform="translate(1671,969)" id="g174"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g176">
|
||||
<g clip-path="url(#clipPath182)" id="g178">
|
||||
<path id="path184" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1764.311,906.9777 c -0.551,0 -1.1,-0.2656 -1.415,-0.7379 -28.965,-42.6216 -67.776,-67.2234 -67.776,-67.2234 h 158.096 c 0,0 -38.772,24.6018 -67.776,67.2234 -0.315,0.4723 -0.824,0.7379 -1.415,0.7379 z m 2.238,-3.8494 h 15.349 c 0.551,0 1.065,-0.278 1.34,-0.7502 2.243,-3.542 5.313,-8.1121 7.281,-10.3553 1.771,-2.0071 -0.827,-3.6182 -2.558,-2.0047 -1.535,1.4562 -3.031,3.5838 -3.936,4.8825 -0.984,1.3774 -2.516,0.7896 -2.201,-0.824 0.708,-3.6994 4.174,-14.3671 5.079,-17.0826 0.945,-2.7155 -2.051,-3.4288 -2.878,-1.3036 -1.889,4.8407 -5.072,15.6633 -6.174,20.8582 -0.314,1.6136 -2.41,1.2692 -2.41,-0.3443 0,-1.6136 0.553,-7.3644 1.144,-13.5038 0.275,-2.7155 -3.306,-3.1902 -3.542,0.0369 -0.158,2.2039 -0.35,3.6625 -0.468,5.4728 -0.157,2.1646 -2.127,2.1301 -2.718,0.3198 -1.731,-5.3523 -2.681,-7.1306 -3.665,-8.7442 -1.338,-2.2039 -3.856,-0.8658 -2.951,1.1806 1.377,3.0304 4.294,11.2999 5.436,15.6683 0.393,1.4955 -1.065,2.3957 -2.128,0.8609 -1.928,-2.7549 -2.674,-3.938 -5.153,-6.4567 -1.456,-1.4561 -3.699,0.007 -2.361,2.0538 2.282,3.4633 4.523,6.3362 6.137,9.2485 0.275,0.5116 0.826,0.7871 1.377,0.7871 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g186">
|
||||
<g clip-path="url(#clipPath192)" id="g188">
|
||||
<path id="path194" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1846.233,967.8868 -5.798,-12.006 c 1.676,0.4358 3.671,0.6914 5.783,0.6915 2.129,0 4.125,-0.2546 5.835,-0.7072 z m 23.436,-9.7064 -12.587,-4.3949 c 1.525,-0.8884 3.097,-2.112 4.588,-3.6039 1.509,-1.5086 2.737,-3.101 3.625,-4.6096 z m -46.903,-0.0367 4.395,-12.5874 c 0.889,1.5254 2.112,3.1021 3.604,4.5939 1.509,1.5086 3.101,2.7312 4.61,3.6196 z m 23.467,-4.5729 c -10.442,0 -18.941,-8.4985 -18.941,-18.9414 0,-10.4429 8.499,-18.9413 18.941,-18.9413 10.443,0 18.942,8.4984 18.942,18.9413 0,10.4429 -8.499,18.9414 -18.942,18.9414 z m -21.151,-13.0432 -12.022,-5.8144 12.006,-5.7987 c -0.436,1.693 -0.692,3.6709 -0.692,5.783 0,2.1288 0.255,4.1204 0.708,5.8301 z m 42.324,0 c 0.436,-1.693 0.686,-3.6709 0.686,-5.7829 0,-2.1289 -0.249,-4.1204 -0.701,-5.8302 l 12.016,5.8144 z m -2.095,-16.6627 c -0.888,-1.5254 -2.112,-3.0968 -3.604,-4.5887 -1.509,-1.5086 -3.101,-2.7364 -4.61,-3.6248 l 12.604,-4.3739 z m -38.134,-0.0157 -4.374,-12.6031 12.587,4.3896 c -1.525,0.8884 -3.102,2.1121 -4.594,3.6039 -1.508,1.5086 -2.731,3.101 -3.619,4.6096 z m 13.242,-10.2931 5.814,-12.0164 5.799,12.0007 c -1.676,-0.4358 -3.671,-0.6862 -5.783,-0.6862 -2.129,0 -4.12,0.2493 -5.83,0.7019 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g196">
|
||||
<g clip-path="url(#clipPath202)" id="g198">
|
||||
<g transform="matrix(1,0,0,-1,1.114689,1078.713)" id="g204">
|
||||
<path id="path206" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g208">
|
||||
<g clip-path="url(#clipPath214)" id="g210">
|
||||
<g transform="matrix(1,0,0,-1,22.22905,995.9416)" id="g216">
|
||||
<path id="path218" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g220">
|
||||
<g clip-path="url(#clipPath226)" id="g222">
|
||||
<g transform="translate(208,954)" id="g228">
|
||||
<text id="text232" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan230" y="0" x="0 17.792 26.688 45.664001 53.375999 64.031998 71.744003"># Title</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g234">
|
||||
<g clip-path="url(#clipPath240)" id="g236">
|
||||
<g transform="matrix(1,0,0,-1,22.22905,934.2254)" id="g242">
|
||||
<path id="path244" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g246">
|
||||
<g clip-path="url(#clipPath252)" id="g248">
|
||||
<g transform="translate(193,894)" id="g254">
|
||||
<text id="text258" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 26px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan256" y="0" x="0 14.456 28.912001 36.139999 52.987999 67.912003 83.797997 92.456001 98.722 107.38 113.646">## Subtitle</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g260">
|
||||
<g clip-path="url(#clipPath266)" id="g262">
|
||||
<g transform="matrix(1,0,0,-1,1.114689,708.225)" id="g268">
|
||||
<path id="path270" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g272">
|
||||
<g clip-path="url(#clipPath278)" id="g274">
|
||||
<g transform="matrix(1,0,0,-1,22.22903,691.5225)" id="g280">
|
||||
<path id="path282" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g284">
|
||||
<g clip-path="url(#clipPath290)" id="g286">
|
||||
<g transform="translate(23,649)" id="g292">
|
||||
<text id="text296" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan294" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g298">
|
||||
<g clip-path="url(#clipPath304)" id="g300">
|
||||
<g transform="matrix(1,0,0,-1,262.0003,619.587)" id="g306">
|
||||
<path id="path308" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 230 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g310">
|
||||
<g clip-path="url(#clipPath316)" id="g312">
|
||||
<g transform="translate(263,599)" id="g318">
|
||||
<text id="text322" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan320" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g324">
|
||||
<g clip-path="url(#clipPath330)" id="g326">
|
||||
<path id="path332" style="fill:#5e5e5e;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 21.72903,620.087 H 251.729 V 437.4276 H 21.72903 Z"/>
|
||||
<g transform="matrix(1,0,0,-1,21.72903,620.087)" id="g334">
|
||||
<path id="path336" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 230 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g338">
|
||||
<g clip-path="url(#clipPath344)" id="g340">
|
||||
<g transform="translate(23,599)" id="g346"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g348">
|
||||
<g clip-path="url(#clipPath354)" id="g350">
|
||||
<path id="path356" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 115.7409,536.9895 c -0.551,0 -1.0995,-0.2656 -1.4143,-0.7379 C 85.36122,493.6301 46.54969,469.0282 46.5497,469.0282 h 158.0969 c 0,0 -38.7722,24.6019 -67.7769,67.2234 -0.3149,0.4723 -0.824,0.738 -1.4143,0.7379 z m 2.2383,-3.8494 h 15.3485 c 0.551,0 1.0651,-0.2779 1.3406,-0.7502 2.2432,-3.5419 5.3129,-8.112 7.2807,-10.3553 1.7709,-2.0071 -0.8265,-3.6182 -2.5581,-2.0046 -1.5349,1.4561 -3.0304,3.5837 -3.9355,4.8824 -0.9839,1.3775 -2.5163,0.7896 -2.2015,-0.824 0.7084,-3.6993 4.1741,-14.367 5.0793,-17.0825 0.9445,-2.7155 -2.0514,-3.4289 -2.8778,-1.3037 -1.8891,4.8407 -5.0719,15.6634 -6.1739,20.8582 -0.3148,1.6136 -2.4105,1.2692 -2.4105,-0.3443 0,-1.6136 0.5535,-7.3643 1.1438,-13.5037 0.2755,-2.7155 -3.3059,-3.1903 -3.542,0.0369 -0.1574,2.2038 -0.3492,3.6624 -0.4673,5.4728 -0.1574,2.1645 -2.1277,2.1301 -2.718,0.3197 -1.7316,-5.3523 -2.6811,-7.1306 -3.6649,-8.7442 -1.3381,-2.2039 -3.8568,-0.8658 -2.9517,1.1807 1.3775,3.0303 4.2947,11.2998 5.436,15.6682 0.3935,1.4955 -1.0651,2.3958 -2.1277,0.8609 -1.9284,-2.7548 -2.6737,-3.9379 -5.153,-6.4567 -1.4562,-1.4561 -3.6994,0.007 -2.3613,2.0539 2.2826,3.4632 4.5234,6.3361 6.1369,9.2484 0.2755,0.5116 0.8264,0.7871 1.3774,0.7871 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g358">
|
||||
<g clip-path="url(#clipPath364)" id="g360">
|
||||
<path id="path366" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 197.6636,597.8986 -5.7987,-12.006 c 1.6762,0.4359 3.6709,0.6914 5.783,0.6915 2.1288,0 4.1255,-0.2546 5.8353,-0.7072 z m 23.4357,-9.7064 -12.5874,-4.3949 c 1.5254,-0.8884 3.0968,-2.112 4.5887,-3.6038 1.5086,-1.5086 2.7364,-3.1011 3.6248,-4.6097 z m -46.9029,-0.0367 4.3949,-12.5874 c 0.8884,1.5254 2.112,3.1021 3.6039,4.5939 1.5086,1.5086 3.101,2.7312 4.6096,3.6196 z m 23.4672,-4.5729 c -10.4429,0 -18.9414,-8.4985 -18.9414,-18.9414 0,-10.4429 8.4985,-18.9413 18.9414,-18.9413 10.4429,0 18.9413,8.4984 18.9413,18.9413 0,10.4429 -8.4984,18.9414 -18.9413,18.9414 z m -21.1519,-13.0432 -12.0217,-5.8144 12.006,-5.7987 c -0.4358,1.693 -0.6914,3.671 -0.6915,5.783 0,2.1288 0.2546,4.1204 0.7072,5.8301 z m 42.3247,0 c 0.4358,-1.6929 0.6862,-3.6709 0.6862,-5.7829 0,-2.1288 -0.2493,-4.1204 -0.7019,-5.8302 l 12.0164,5.8145 z m -2.0953,-16.6627 c -0.8884,-1.5254 -2.112,-3.0968 -3.6039,-4.5887 -1.5086,-1.5086 -3.101,-2.7364 -4.6096,-3.6248 l 12.6031,-4.3739 z m -38.1341,-0.0157 -4.3739,-12.6031 12.5874,4.3896 c -1.5254,0.8884 -3.1021,2.1121 -4.5939,3.6039 -1.5086,1.5086 -2.7312,3.101 -3.6196,4.6096 z m 13.2422,-10.2931 5.8144,-12.0164 5.7987,12.0007 c -1.6762,-0.4358 -3.671,-0.6862 -5.783,-0.6862 -2.1288,0 -4.1203,0.2493 -5.8301,0.7019 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g368">
|
||||
<g clip-path="url(#clipPath374)" id="g370">
|
||||
<g transform="matrix(1,0,0,-1,704,708.225)" id="g376">
|
||||
<path id="path378" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g380">
|
||||
<g clip-path="url(#clipPath386)" id="g382">
|
||||
<g transform="matrix(1,0,0,-1,723.8505,691.5225)" id="g388">
|
||||
<path id="path390" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 279 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g392">
|
||||
<g clip-path="url(#clipPath398)" id="g394">
|
||||
<g transform="translate(725,649)" id="g400">
|
||||
<text id="text404" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan402" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g406">
|
||||
<g clip-path="url(#clipPath412)" id="g408">
|
||||
<g transform="matrix(1,0,0,-1,723.8505,619.587)" id="g414">
|
||||
<path id="path416" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 279 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g418">
|
||||
<g clip-path="url(#clipPath424)" id="g420">
|
||||
<g transform="translate(725,599)" id="g426">
|
||||
<text id="text430" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan428" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g432">
|
||||
<g clip-path="url(#clipPath438)" id="g434">
|
||||
<path id="path440" style="fill:#5e5e5e;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 1024.628,708.225 H 1216.5 v -288 h -191.872 z"/>
|
||||
<g transform="matrix(1,0,0,-1,1024.628,708.225)" id="g442">
|
||||
<path id="path444" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 191.872 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g446">
|
||||
<g clip-path="url(#clipPath452)" id="g448">
|
||||
<g transform="translate(1026,687)" id="g454"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g456">
|
||||
<g clip-path="url(#clipPath462)" id="g458">
|
||||
<path id="path464" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1112.34,601.5948 c -0.46,0 -0.918,-0.2216 -1.18,-0.6156 -24.167,-35.5609 -56.549,-56.0871 -56.549,-56.0871 h 131.906 c 0,0 -32.349,20.5262 -56.549,56.0871 -0.262,0.394 -0.687,0.6156 -1.18,0.6156 z m 1.867,-3.2117 h 12.806 c 0.46,0 0.889,-0.2319 1.119,-0.6259 1.871,-2.9552 4.432,-6.7682 6.074,-8.6399 1.478,-1.6746 -0.689,-3.0188 -2.134,-1.6725 -1.281,1.2149 -2.529,2.9901 -3.284,4.0736 -0.821,1.1493 -2.099,0.6588 -1.836,-0.6875 0.591,-3.0865 3.482,-11.987 4.237,-14.2526 0.788,-2.2656 -1.711,-2.8608 -2.401,-1.0877 -1.576,4.0388 -4.231,13.0685 -5.151,17.4028 -0.263,1.3463 -2.011,1.059 -2.011,-0.2873 0,-1.3462 0.462,-6.1443 0.954,-11.2667 0.23,-2.2656 -2.758,-2.6617 -2.955,0.0308 -0.131,1.8388 -0.291,3.0558 -0.39,4.5662 -0.131,1.806 -1.775,1.7772 -2.268,0.2668 -1.444,-4.4656 -2.236,-5.9494 -3.057,-7.2956 -1.117,-1.8388 -3.218,-0.7224 -2.463,0.985 1.149,2.5284 3.583,9.4279 4.535,13.0727 0.329,1.2477 -0.888,1.9988 -1.775,0.7182 -1.609,-2.2985 -2.231,-3.2856 -4.299,-5.387 -1.215,-1.215 -3.087,0.006 -1.97,1.7136 1.904,2.8895 3.774,5.2865 5.12,7.7163 0.23,0.4269 0.69,0.6567 1.149,0.6567 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g466">
|
||||
<g clip-path="url(#clipPath472)" id="g468">
|
||||
<path id="path474" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1179.534,668.1332 -5.799,-12.0059 c 1.677,0.4358 3.671,0.6914 5.783,0.6914 2.129,0 4.126,-0.2546 5.836,-0.7072 z m 23.436,-9.7064 -12.588,-4.3948 c 1.526,-0.8884 3.097,-2.1121 4.589,-3.6039 1.509,-1.5086 2.737,-3.101 3.625,-4.6096 z m -46.903,-0.0366 4.395,-12.5875 c 0.888,1.5254 2.112,3.1021 3.604,4.594 1.508,1.5086 3.101,2.7312 4.609,3.6196 z m 23.467,-4.573 c -10.443,0 -18.941,-8.4985 -18.941,-18.9414 0,-10.4428 8.498,-18.9413 18.941,-18.9413 10.443,0 18.942,8.4985 18.942,18.9413 0,10.4429 -8.499,18.9414 -18.942,18.9414 z m -21.152,-13.0431 -12.021,-5.8144 12.006,-5.7987 c -0.436,1.693 -0.692,3.6709 -0.692,5.7829 0,2.1289 0.255,4.1204 0.707,5.8302 z m 42.325,0 c 0.436,-1.693 0.686,-3.6709 0.686,-5.783 0,-2.1288 -0.249,-4.1204 -0.702,-5.8301 l 12.017,5.8144 z m -2.095,-16.6628 c -0.889,-1.5253 -2.112,-3.0968 -3.604,-4.5886 -1.509,-1.5086 -3.101,-2.7365 -4.61,-3.6249 l 12.603,-4.3739 z m -38.134,-0.0157 -4.374,-12.6031 12.587,4.3896 c -1.525,0.8884 -3.102,2.1121 -4.594,3.6039 -1.508,1.5086 -2.731,3.101 -3.619,4.6096 z m 13.242,-10.2931 5.814,-12.0164 5.799,12.0007 c -1.676,-0.4358 -3.671,-0.6861 -5.783,-0.6862 -2.129,0 -4.12,0.2493 -5.83,0.7019 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g476">
|
||||
<g clip-path="url(#clipPath482)" id="g478">
|
||||
<path id="path484" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1147.327,536.3529 c -0.225,0 -0.279,-0.3731 -0.054,-0.3981 3.772,-0.6995 18.061,-1.3537 21.234,-5.3008 2.748,-3.3974 -13.662,-5.2928 -26.902,-10.539 -14.14,-5.6208 -19.411,-15.9131 -14.115,-22.2334 5.296,-6.3202 32.354,-15.017 27.683,-23.6854 -4.672,-8.6685 -22.408,-10.7154 -37.972,-20.8828 -15.563,-10.1674 -17.065,-16.8858 -17.065,-16.8858 h 61.477 c 4.197,3.3225 12.316,8.7919 19.611,13.5133 10.967,7.0947 26.257,19.7837 15.09,30.7505 -16.488,16.1379 -46.393,19.5401 -43.67,27.1594 2.722,7.6193 34.249,12.4859 28.978,22.1787 -3.547,6.4702 -26.7,6.3235 -34.295,6.3234 z m -5.074,-4.5747 c -0.4,0 -0.726,-0.3185 -0.726,-0.7182 0,-0.3997 0.326,-0.726 0.726,-0.726 h 15.793 c 0.399,0 0.718,0.3263 0.718,0.726 0,0.3997 -0.319,0.7182 -0.718,0.7182 z m -4.372,-3.3413 c -0.4,0 -0.726,-0.3263 -0.726,-0.726 0,-0.3997 0.326,-0.726 0.726,-0.726 h 15.793 c 0.4,0 0.718,0.3263 0.718,0.726 0,0.3997 -0.318,0.726 -0.718,0.726 z m 30.228,-15.7382 c -0.525,0 -0.976,-0.4262 -0.976,-0.9758 0,-0.5496 0.426,-0.9759 0.976,-0.9759 h 18.938 c 0.55,0 0.976,0.4263 0.976,0.9759 0,0.5496 -0.426,0.9758 -0.976,0.9758 z m -5.816,-4.6215 c -0.55,0 -0.976,-0.4263 -0.976,-0.9759 0,-0.5496 0.426,-0.9758 0.976,-0.9758 h 18.931 c 0.524,0 0.976,0.4512 0.976,0.9758 0,0.5496 -0.427,0.9759 -0.976,0.9759 z m 5.714,-4.5982 c -0.55,0 -0.968,-0.4262 -0.968,-0.9758 0,-0.5496 0.418,-0.9758 0.968,-0.9758 h 18.939 c 0.55,0 0.976,0.4262 0.976,0.9758 0,0.5496 -0.426,0.9758 -0.976,0.9758 z m -49.057,-20.4144 c -0.675,0 -1.226,-0.5433 -1.226,-1.2178 0,-0.6745 0.551,-1.2256 1.226,-1.2257 h 18.931 c 0.675,0 1.226,0.5512 1.226,1.2257 0,0.6745 -0.551,1.2177 -1.226,1.2178 z m 6.995,-5.9955 c -0.675,0 -1.226,-0.5434 -1.226,-1.2179 0,-0.6745 0.551,-1.2255 1.226,-1.2256 h 18.931 c 0.674,0 1.225,0.5511 1.226,1.2256 0,0.6745 -0.552,1.2178 -1.226,1.2179 z m -6.574,-5.9956 c -0.674,0 -1.225,-0.5433 -1.225,-1.2178 0,-0.6745 0.551,-1.2256 1.225,-1.2256 h 18.939 c 0.675,0 1.218,0.5511 1.218,1.2256 0,0.6745 -0.543,1.2178 -1.218,1.2178 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g486">
|
||||
<g clip-path="url(#clipPath492)" id="g488">
|
||||
<g transform="matrix(1,0,0,-1,1409.413,707.725)" id="g494">
|
||||
<path id="path496" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M -0.163 0 L 509.837 0 L 509.837 288 L -0.163 288 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g498">
|
||||
<g clip-path="url(#clipPath504)" id="g500">
|
||||
<g transform="matrix(1,0,0,-1,1622.293,691.0225)" id="g506">
|
||||
<path id="path508" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 279 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g510">
|
||||
<g clip-path="url(#clipPath516)" id="g512">
|
||||
<g transform="translate(1623,649)" id="g518">
|
||||
<text id="text522" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan520" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g524">
|
||||
<g clip-path="url(#clipPath530)" id="g526">
|
||||
<g transform="matrix(1,0,0,-1,1622.293,619.087)" id="g532">
|
||||
<path id="path534" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 279 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g536">
|
||||
<g clip-path="url(#clipPath542)" id="g538">
|
||||
<g transform="translate(1623,598)" id="g544">
|
||||
<text id="text548" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan546" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g550">
|
||||
<g clip-path="url(#clipPath556)" id="g552">
|
||||
<path id="path558" style="fill:#5e5e5e;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1408.472,708.225 h 191.872 v -288 h -191.872 z"/>
|
||||
<g transform="matrix(1,0,0,-1,1408.472,708.225)" id="g560">
|
||||
<path id="path562" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 191.872 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g564">
|
||||
<g clip-path="url(#clipPath570)" id="g566">
|
||||
<g transform="translate(1409,687)" id="g572"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g574">
|
||||
<g clip-path="url(#clipPath580)" id="g576">
|
||||
<path id="path582" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1496.184,601.5948 c -0.46,0 -0.917,-0.2216 -1.18,-0.6156 -24.167,-35.5609 -56.549,-56.0871 -56.549,-56.0871 h 131.906 c 0,0 -32.349,20.5262 -56.548,56.0871 -0.263,0.394 -0.688,0.6156 -1.18,0.6156 z m 1.868,-3.2117 h 12.805 c 0.46,0 0.889,-0.2319 1.119,-0.6259 1.871,-2.9552 4.433,-6.7682 6.074,-8.6399 1.478,-1.6746 -0.689,-3.0188 -2.134,-1.6725 -1.28,1.2149 -2.528,2.9901 -3.283,4.0736 -0.821,1.1493 -2.1,0.6588 -1.837,-0.6875 0.591,-3.0865 3.482,-11.987 4.238,-14.2526 0.788,-2.2656 -1.712,-2.8608 -2.401,-1.0877 -1.577,4.0388 -4.232,13.0685 -5.152,17.4028 -0.262,1.3463 -2.011,1.059 -2.011,-0.2873 0,-1.3462 0.462,-6.1443 0.955,-11.2667 0.229,-2.2656 -2.759,-2.6617 -2.956,0.0308 -0.131,1.8388 -0.291,3.0558 -0.39,4.5662 -0.131,1.806 -1.775,1.7772 -2.267,0.2668 -1.445,-4.4656 -2.237,-5.9494 -3.058,-7.2956 -1.116,-1.8388 -3.218,-0.7224 -2.463,0.985 1.15,2.5284 3.583,9.4279 4.536,13.0727 0.328,1.2477 -0.889,1.9988 -1.775,0.7182 -1.609,-2.2985 -2.231,-3.2856 -4.3,-5.387 -1.215,-1.215 -3.086,0.006 -1.97,1.7136 1.904,2.8895 3.774,5.2865 5.12,7.7163 0.23,0.4269 0.69,0.6567 1.15,0.6567 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g584">
|
||||
<g clip-path="url(#clipPath590)" id="g586">
|
||||
<path id="path592" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1563.378,668.1332 -5.798,-12.0059 c 1.676,0.4358 3.671,0.6914 5.783,0.6914 2.129,0 4.125,-0.2546 5.835,-0.7072 z m 23.436,-9.7064 -12.587,-4.3948 c 1.525,-0.8884 3.097,-2.1121 4.588,-3.6039 1.509,-1.5086 2.737,-3.101 3.625,-4.6096 z m -46.903,-0.0366 4.395,-12.5875 c 0.889,1.5254 2.112,3.1021 3.604,4.594 1.509,1.5086 3.101,2.7312 4.61,3.6196 z m 23.467,-4.573 c -10.442,0 -18.941,-8.4985 -18.941,-18.9414 0,-10.4428 8.499,-18.9413 18.941,-18.9413 10.443,0 18.942,8.4985 18.942,18.9413 0,10.4429 -8.499,18.9414 -18.942,18.9414 z m -21.151,-13.0431 -12.022,-5.8144 12.006,-5.7987 c -0.436,1.693 -0.692,3.6709 -0.692,5.7829 0,2.1289 0.255,4.1204 0.708,5.8302 z m 42.324,0 c 0.436,-1.693 0.686,-3.6709 0.686,-5.783 0,-2.1288 -0.249,-4.1204 -0.701,-5.8301 l 12.016,5.8144 z m -2.095,-16.6628 c -0.888,-1.5253 -2.112,-3.0968 -3.604,-4.5886 -1.508,-1.5086 -3.101,-2.7365 -4.61,-3.6249 l 12.604,-4.3739 z m -38.134,-0.0157 -4.374,-12.6031 12.587,4.3896 c -1.525,0.8884 -3.102,2.1121 -4.594,3.6039 -1.508,1.5086 -2.731,3.101 -3.619,4.6096 z m 13.242,-10.2931 5.814,-12.0164 5.799,12.0007 c -1.676,-0.4358 -3.671,-0.6861 -5.783,-0.6862 -2.129,0 -4.12,0.2493 -5.83,0.7019 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g594">
|
||||
<g clip-path="url(#clipPath600)" id="g596">
|
||||
<path id="path602" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1531.171,536.3529 c -0.224,0 -0.279,-0.3731 -0.054,-0.3981 3.772,-0.6995 18.061,-1.3537 21.234,-5.3008 2.748,-3.3974 -13.662,-5.2928 -26.902,-10.539 -14.139,-5.6208 -19.41,-15.9131 -14.114,-22.2334 5.296,-6.3202 32.354,-15.017 27.682,-23.6854 -4.671,-8.6685 -22.408,-10.7154 -37.971,-20.8828 -15.564,-10.1674 -17.066,-16.8858 -17.066,-16.8858 h 61.478 c 4.197,3.3225 12.316,8.7919 19.61,13.5133 10.967,7.0947 26.257,19.7837 15.09,30.7505 -16.487,16.1379 -46.393,19.5401 -43.67,27.1594 2.723,7.6193 34.249,12.4859 28.978,22.1787 -3.547,6.4702 -26.7,6.3235 -34.295,6.3234 z m -5.074,-4.5747 c -0.4,0 -0.726,-0.3185 -0.726,-0.7182 0,-0.3997 0.326,-0.726 0.726,-0.726 h 15.793 c 0.4,0 0.718,0.3263 0.718,0.726 0,0.3997 -0.318,0.7182 -0.718,0.7182 z m -4.372,-3.3413 c -0.399,0 -0.726,-0.3263 -0.726,-0.726 0,-0.3997 0.327,-0.726 0.726,-0.726 h 15.793 c 0.4,0 0.718,0.3263 0.718,0.726 0,0.3997 -0.318,0.726 -0.718,0.726 z m 30.228,-15.7382 c -0.525,0 -0.976,-0.4262 -0.976,-0.9758 0,-0.5496 0.426,-0.9759 0.976,-0.9759 h 18.939 c 0.549,0 0.976,0.4263 0.976,0.9759 0,0.5496 -0.427,0.9758 -0.976,0.9758 z m -5.816,-4.6215 c -0.55,0 -0.976,-0.4263 -0.976,-0.9759 0,-0.5496 0.426,-0.9758 0.976,-0.9758 h 18.931 c 0.525,0 0.976,0.4512 0.976,0.9758 0,0.5496 -0.426,0.9759 -0.976,0.9759 z m 5.714,-4.5982 c -0.549,0 -0.968,-0.4262 -0.968,-0.9758 0,-0.5496 0.419,-0.9758 0.968,-0.9758 h 18.939 c 0.55,0 0.976,0.4262 0.976,0.9758 0,0.5496 -0.426,0.9758 -0.976,0.9758 z m -49.057,-20.4144 c -0.674,0 -1.225,-0.5433 -1.225,-1.2178 0,-0.6745 0.551,-1.2256 1.225,-1.2257 h 18.931 c 0.675,0 1.226,0.5512 1.226,1.2257 0,0.6745 -0.551,1.2177 -1.226,1.2178 z m 6.995,-5.9955 c -0.674,0 -1.226,-0.5434 -1.226,-1.2179 0,-0.6745 0.552,-1.2255 1.226,-1.2256 h 18.931 c 0.675,0 1.226,0.5511 1.226,1.2256 0,0.6745 -0.551,1.2178 -1.226,1.2179 z m -6.573,-5.9956 c -0.675,0 -1.226,-0.5433 -1.226,-1.2178 0,-0.6745 0.551,-1.2256 1.226,-1.2256 h 18.939 c 0.674,0 1.218,0.5511 1.218,1.2256 0,0.6745 -0.544,1.2178 -1.218,1.2178 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g604">
|
||||
<g clip-path="url(#clipPath610)" id="g606">
|
||||
<g transform="matrix(1,0,0,-1,1.11475,339.7368)" id="g612">
|
||||
<path id="path614" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g616">
|
||||
<g clip-path="url(#clipPath622)" id="g618">
|
||||
<path id="path624" style="fill:#5e5e5e;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 1.467129,339.7368 H 513.7623 V 105.1825 H 1.467129 Z"/>
|
||||
<g transform="matrix(1,0,0,-1,1.467129,339.7368)" id="g626">
|
||||
<path id="path628" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512.2952 V 234.5543 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g630">
|
||||
<g clip-path="url(#clipPath636)" id="g632">
|
||||
<g transform="translate(2,319)" id="g638"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g640">
|
||||
<g clip-path="url(#clipPath646)" id="g642">
|
||||
<path id="path648" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 122.2357,300.2591 c -0.8101,0 -1.6166,-0.3906 -2.0795,-1.085 C 77.56755,236.5063 20.50179,200.3335 20.5018,200.3335 h 232.4546 c 0,0 -57.0079,36.1728 -99.6544,98.8406 -0.4629,0.6944 -1.2116,1.085 -2.0795,1.085 z m 3.2911,-5.6599 h 22.5673 c 0.8101,0 1.566,-0.4087 1.9711,-1.1031 3.2983,-5.2078 7.8117,-11.9274 10.705,-15.2257 2.6039,-2.9511 -1.2151,-5.32 -3.7612,-2.9475 -2.2568,2.141 -4.4556,5.2694 -5.7865,7.1789 -1.4467,2.0252 -3.6998,1.1609 -3.2369,-1.2116 1.0416,-5.4393 6.1374,-21.1243 7.4682,-25.117 1.3888,-3.9927 -3.0162,-5.0415 -4.2313,-1.9168 -2.7775,7.1174 -7.4574,23.0303 -9.0776,30.6685 -0.4629,2.3724 -3.5443,1.8661 -3.5442,-0.5064 0,-2.3724 0.8137,-10.8279 1.6817,-19.8549 0.405,-3.9927 -4.8607,-4.6907 -5.2079,0.0543 -0.2314,3.2404 -0.5135,5.385 -0.6871,8.0468 -0.2315,3.1826 -3.1284,3.132 -3.9963,0.4702 -2.5461,-7.8697 -3.9421,-10.4844 -5.3887,-12.8569 -1.9674,-3.2405 -5.6708,-1.273 -4.3399,1.7359 2.0253,4.4557 6.3145,16.6146 7.9926,23.0375 0.5787,2.1989 -1.566,3.5226 -3.1283,1.2658 -2.8354,-4.0505 -3.9312,-5.79 -7.5767,-9.4934 -2.141,-2.141 -5.4393,0.0108 -3.4719,3.0198 3.3562,5.0921 6.6509,9.3163 9.0233,13.5983 0.4051,0.7522 1.2151,1.1573 2.0253,1.1573 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g650">
|
||||
<g clip-path="url(#clipPath656)" id="g652">
|
||||
<path id="path658" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 425.6372,299.645 -5.7987,-12.006 c 1.6762,0.4359 3.6709,0.6915 5.7829,0.6915 2.1289,0 4.1256,-0.2546 5.8354,-0.7072 z m 23.4357,-9.7064 -12.5874,-4.3948 c 1.5254,-0.8884 3.0968,-2.1121 4.5887,-3.6039 1.5086,-1.5086 2.7364,-3.101 3.6248,-4.6096 z m -46.9029,-0.0366 4.3948,-12.5875 c 0.8884,1.5254 2.1121,3.1021 3.6039,4.594 1.5086,1.5086 3.1011,2.7312 4.6097,3.6196 z m 23.4672,-4.573 c -10.4429,0 -18.9414,-8.4985 -18.9414,-18.9414 0,-10.4428 8.4985,-18.9413 18.9414,-18.9413 10.4428,0 18.9413,8.4985 18.9413,18.9413 0,10.4429 -8.4985,18.9414 -18.9413,18.9414 z m -21.1519,-13.0431 -12.0217,-5.8144 12.006,-5.7987 c -0.4359,1.6929 -0.6915,3.6709 -0.6915,5.7829 0,2.1288 0.2546,4.1204 0.7072,5.8302 z m 42.3247,0 c 0.4358,-1.693 0.6862,-3.6709 0.6862,-5.783 0,-2.1288 -0.2493,-4.1204 -0.7019,-5.8301 l 12.0164,5.8144 z m -2.0953,-16.6628 c -0.8884,-1.5253 -2.1121,-3.0968 -3.6039,-4.5886 -1.5086,-1.5086 -3.101,-2.7365 -4.6096,-3.6249 l 12.6031,-4.3739 z m -38.1341,-0.0157 -4.3739,-12.6031 12.5874,4.3896 c -1.5254,0.8884 -3.1021,2.1121 -4.5939,3.6039 -1.5086,1.5086 -2.7312,3.101 -3.6196,4.6096 z m 13.2422,-10.2931 5.8144,-12.0164 5.7987,12.0007 c -1.6763,-0.4358 -3.671,-0.6861 -5.783,-0.6862 -2.1288,0 -4.1203,0.2493 -5.8301,0.7019 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g660">
|
||||
<g clip-path="url(#clipPath666)" id="g662">
|
||||
<path id="path668" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 306.1575,215.724 c -0.2249,0 -0.2796,-0.3732 -0.0547,-0.3982 3.7722,-0.6995 18.0614,-1.3536 21.2342,-5.3007 2.7479,-3.3975 -13.6617,-5.2929 -26.9018,-10.539 -14.1395,-5.6208 -19.4105,-15.9131 -14.1145,-22.2334 5.2961,-6.3203 32.3539,-15.017 27.6825,-23.6854 -4.6715,-8.6686 -22.4082,-10.7154 -37.9717,-20.8829 -15.5633,-10.1674 -17.0654,-16.8857 -17.0653,-16.8858 h 61.4775 c 4.1968,3.3225 12.3159,8.792 19.6103,13.5133 10.9668,7.0948 26.2571,19.7838 15.0903,30.7505 -16.4877,16.138 -46.3935,19.5401 -43.6705,27.1594 2.723,7.6193 34.2494,12.486 28.9784,22.1788 -3.5474,6.4701 -26.7003,6.3234 -34.2947,6.3234 z m -5.0744,-4.5748 c -0.3997,0 -0.726,-0.3185 -0.726,-0.7182 0,-0.3997 0.3263,-0.726 0.726,-0.726 h 15.7929 c 0.3997,0 0.7182,0.3263 0.7182,0.726 0,0.3997 -0.3185,0.7182 -0.7182,0.7182 z m -4.3717,-3.3412 c -0.3997,0 -0.726,-0.3263 -0.726,-0.726 0,-0.3997 0.3263,-0.726 0.726,-0.726 h 15.7929 c 0.3997,0 0.7182,0.3263 0.7182,0.726 0,0.3997 -0.3185,0.726 -0.7182,0.726 z m 30.2274,-15.7382 c -0.5246,0 -0.9758,-0.4263 -0.9758,-0.9759 0,-0.5496 0.4262,-0.9758 0.9758,-0.9758 h 18.939 c 0.5496,0 0.9757,0.4262 0.9758,0.9758 0,0.5496 -0.4262,0.9759 -0.9758,0.9759 z m -5.816,-4.6216 c -0.5495,0 -0.9757,-0.4262 -0.9758,-0.9758 0,-0.5496 0.4263,-0.9759 0.9758,-0.9759 h 18.9312 c 0.5246,0 0.9758,0.4513 0.9758,0.9759 0,0.5496 -0.4262,0.9758 -0.9758,0.9758 z m 5.7145,-4.5981 c -0.5496,0 -0.9679,-0.4263 -0.968,-0.9759 0,-0.5495 0.4184,-0.9758 0.968,-0.9758 h 18.939 c 0.5496,0 0.9758,0.4263 0.9758,0.9758 0,0.5496 -0.4262,0.9759 -0.9758,0.9759 z m -49.0571,-20.4145 c -0.6745,0 -1.2256,-0.5433 -1.2256,-1.2178 0,-0.6745 0.5511,-1.2256 1.2256,-1.2256 h 18.9312 c 0.6745,0 1.2256,0.5511 1.2256,1.2256 0,0.6745 -0.5511,1.2178 -1.2256,1.2178 z m 6.9948,-5.9955 c -0.6745,0 -1.2255,-0.5433 -1.2256,-1.2178 0,-0.6745 0.5511,-1.2256 1.2256,-1.2257 h 18.9312 c 0.6745,0 1.2255,0.5512 1.2256,1.2257 0,0.6745 -0.5511,1.2177 -1.2256,1.2178 z m -6.5732,-5.9955 c -0.6745,0 -1.2256,-0.5433 -1.2257,-1.2178 0,-0.6745 0.5512,-1.2256 1.2257,-1.2257 h 18.939 c 0.6745,0 1.2177,0.5512 1.2178,1.2257 0,0.6745 -0.5433,1.2177 -1.2178,1.2178 z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g670">
|
||||
<g clip-path="url(#clipPath676)" id="g672">
|
||||
<g transform="matrix(1,0,0,-1,1.114689,105.5292)" id="g678">
|
||||
<path id="path680" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512.0001 V 52.85416 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g682">
|
||||
<g clip-path="url(#clipPath688)" id="g684">
|
||||
<g transform="translate(215,71)" id="g690">
|
||||
<text id="text694" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan692" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g696">
|
||||
<g clip-path="url(#clipPath702)" id="g698">
|
||||
<g transform="matrix(1,0,0,-1,704,339.7368)" id="g704">
|
||||
<path id="path706" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 512 V 288 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g708">
|
||||
<g clip-path="url(#clipPath714)" id="g710">
|
||||
<g transform="matrix(1,0,0,-1,725.1144,322.0342)" id="g716">
|
||||
<path id="path718" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g720">
|
||||
<g clip-path="url(#clipPath726)" id="g722">
|
||||
<g transform="translate(726,280)" id="g728">
|
||||
<text id="text732" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan730" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g734">
|
||||
<g clip-path="url(#clipPath740)" id="g736">
|
||||
<g transform="matrix(1,0,0,-1,725.1144,250.5988)" id="g742">
|
||||
<path id="path744" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 230 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g746">
|
||||
<g clip-path="url(#clipPath752)" id="g748">
|
||||
<g transform="translate(726,230)" id="g754">
|
||||
<text id="text758" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan756" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g760">
|
||||
<g clip-path="url(#clipPath766)" id="g762">
|
||||
<g transform="matrix(1,0,0,-1,964.8856,251.0988)" id="g768">
|
||||
<path id="path770" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 230 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g772">
|
||||
<g clip-path="url(#clipPath778)" id="g774">
|
||||
<g transform="translate(966,230)" id="g780">
|
||||
<text id="text784" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan782" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g786">
|
||||
<g clip-path="url(#clipPath792)" id="g788">
|
||||
<g transform="matrix(1,0,0,-1,1409.413,339.7368)" id="g794">
|
||||
<path id="path796" style="fill:none;stroke:#000000;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M -0.163 0 L 509.837 0 L 509.837 288 L -0.163 288 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g798">
|
||||
<g clip-path="url(#clipPath804)" id="g800">
|
||||
<g transform="matrix(1,0,0,-1,1430.528,323.0342)" id="g806">
|
||||
<path id="path808" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 469.7713 V 60.74047 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g810">
|
||||
<g clip-path="url(#clipPath816)" id="g812">
|
||||
<g transform="translate(1432,281)" id="g818">
|
||||
<text id="text822" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 32px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,8.896,0)"><tspan id="tspan820" y="0" x="0 17.792 26.688 49.792 67.584 85.375999 104.928 112.64 131.008"># Heading</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g824">
|
||||
<g clip-path="url(#clipPath830)" id="g826">
|
||||
<g transform="matrix(1,0,0,-1,1430.528,252.0988)" id="g832">
|
||||
<path id="path834" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 150 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g836">
|
||||
<g clip-path="url(#clipPath842)" id="g838">
|
||||
<g transform="translate(1432,231)" id="g844">
|
||||
<text id="text848" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan846" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g850">
|
||||
<g clip-path="url(#clipPath856)" id="g852">
|
||||
<g transform="matrix(1,0,0,-1,1590.413,252.0988)" id="g858">
|
||||
<path id="path860" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 150 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g862">
|
||||
<g clip-path="url(#clipPath868)" id="g864">
|
||||
<g transform="translate(1591,231)" id="g870">
|
||||
<text id="text874" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan872" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g876">
|
||||
<g clip-path="url(#clipPath882)" id="g878">
|
||||
<g transform="matrix(1,0,0,-1,1750.299,252.0988)" id="g884">
|
||||
<path id="path886" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 H 150 V 182.6595 H 0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g888">
|
||||
<g clip-path="url(#clipPath894)" id="g890">
|
||||
<g transform="translate(1751,231)" id="g896">
|
||||
<text id="text900" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 20px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="matrix(1,0,0,-1,11.12,0)"><tspan id="tspan898" y="0" x="0 14.44 26.299999 37.779999 44.439999 55.560001 67.040001">Content</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g902">
|
||||
<g clip-path="url(#clipPath908)" id="g904">
|
||||
<path id="path910" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 827.3325,782.9391 h 265.3355 c 2.191,0 3.304,0 4.485,-0.3745 1.294,-0.4708 2.313,-1.4896 2.783,-2.7829 0.375,-1.1819 0.375,-2.2946 0.375,-4.5199 v -26.8657 c 0,-2.1913 0,-3.304 -0.375,-4.4858 -0.47,-1.2934 -1.489,-2.3122 -2.783,-2.783 -1.181,-0.3745 -2.294,-0.3745 -4.519,-0.3745 H 827.3325 c -2.1914,0 -3.304,0 -4.4859,0.3745 -1.2933,0.4708 -2.3122,1.4896 -2.7829,2.783 -0.3746,1.1818 -0.3746,2.2945 -0.3746,4.5198 v 26.8657 c 0,2.1913 0,3.304 0.3746,4.4859 0.4707,1.2933 1.4896,2.3121 2.7829,2.7829 1.1819,0.3745 2.2945,0.3745 4.5199,0.3745 z"/>
|
||||
<g transform="matrix(1,0,0,-1,819.6891,782.9391)" id="g912">
|
||||
<path id="path914" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g916">
|
||||
<g clip-path="url(#clipPath922)" id="g918">
|
||||
<g transform="translate(907,754)" id="g924">
|
||||
<text id="text928" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan926" y="0" x="0 7.1040001 20.879999 35.112 41.784 55.127998 60.911999 74.255997 86.711998 99.167999">[no class]</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g930">
|
||||
<g clip-path="url(#clipPath936)" id="g932">
|
||||
<path id="path938" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 121.9193,782.9391 h 265.3351 c 2.1913,0 3.304,0 4.4858,-0.3745 1.2934,-0.4708 2.3122,-1.4896 2.783,-2.7829 0.3745,-1.1819 0.3745,-2.2946 0.3745,-4.5199 v -26.8657 c 0,-2.1913 0,-3.304 -0.3745,-4.4858 -0.4708,-1.2934 -1.4896,-2.3122 -2.783,-2.783 -1.1818,-0.3745 -2.2945,-0.3745 -4.5198,-0.3745 H 121.9193 c -2.1913,0 -3.3039,0 -4.4858,0.3745 -1.2934,0.4708 -2.3122,1.4896 -2.7829,2.783 -0.3746,1.1818 -0.3746,2.2945 -0.3746,4.5198 v 26.8657 c 0,2.1913 0,3.304 0.3746,4.4859 0.4707,1.2933 1.4895,2.3121 2.7829,2.7829 1.1819,0.3745 2.2945,0.3745 4.5198,0.3745 z"/>
|
||||
<g transform="matrix(1,0,0,-1,114.276,782.9391)" id="g940">
|
||||
<path id="path942" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g944">
|
||||
<g clip-path="url(#clipPath950)" id="g946">
|
||||
<g transform="translate(199,754)" id="g952">
|
||||
<text id="text956" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan954" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 78.720001 84.503998 92.496002 98.279999">class: title</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g958">
|
||||
<g clip-path="url(#clipPath964)" id="g960">
|
||||
<path id="path966" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1532.746,782.9391 h 265.335 c 2.191,0 3.304,0 4.486,-0.3745 1.293,-0.4708 2.312,-1.4896 2.782,-2.7829 0.375,-1.1819 0.375,-2.2946 0.375,-4.5199 v -26.8657 c 0,-2.1913 0,-3.304 -0.375,-4.4858 -0.47,-1.2934 -1.489,-2.3122 -2.782,-2.783 -1.182,-0.3745 -2.295,-0.3745 -4.52,-0.3745 h -265.301 c -2.192,0 -3.304,0 -4.486,0.3745 -1.294,0.4708 -2.312,1.4896 -2.783,2.783 -0.375,1.1818 -0.375,2.2945 -0.375,4.5198 v 26.8657 c 0,2.1913 0,3.304 0.375,4.4859 0.471,1.2933 1.489,2.3121 2.783,2.7829 1.182,0.3745 2.294,0.3745 4.52,0.3745 z"/>
|
||||
<g transform="matrix(1,0,0,-1,1525.102,782.9391)" id="g968">
|
||||
<path id="path970" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g972">
|
||||
<g clip-path="url(#clipPath978)" id="g974">
|
||||
<g transform="translate(1580,754)" id="g980">
|
||||
<text id="text984" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan982" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 76.512001 97.391998 111.624 120.96 129.408 135.192 149.424 163.2">class: img-right</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g986">
|
||||
<g clip-path="url(#clipPath992)" id="g988">
|
||||
<path id="path994" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 827.3325,412.5741 h 265.3355 c 2.191,0 3.304,0 4.485,-0.3746 1.294,-0.4707 2.313,-1.4895 2.783,-2.7829 0.375,-1.1819 0.375,-2.2945 0.375,-4.5198 v -26.8657 c 0,-2.1914 0,-3.304 -0.375,-4.4859 -0.47,-1.2933 -1.489,-2.3122 -2.783,-2.7829 -1.181,-0.3746 -2.294,-0.3746 -4.519,-0.3746 H 827.3325 c -2.1914,0 -3.304,0 -4.4859,0.3746 -1.2933,0.4707 -2.3122,1.4896 -2.7829,2.7829 -0.3746,1.1819 -0.3746,2.2945 -0.3746,4.5199 v 26.8657 c 0,2.1913 0,3.3039 0.3746,4.4858 0.4707,1.2934 1.4896,2.3122 2.7829,2.7829 1.1819,0.3746 2.2945,0.3746 4.5199,0.3746 z"/>
|
||||
<g transform="matrix(1,0,0,-1,819.6891,412.5741)" id="g996">
|
||||
<path id="path998" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1000">
|
||||
<g clip-path="url(#clipPath1006)" id="g1002">
|
||||
<g transform="translate(853,383)" id="g1008">
|
||||
<text id="text1012" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan1010" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 76.512001 97.391998 111.624 120.96 129.408 135.192 149.424 163.2 171.192 180.528 188.088 201.864 207.64799">class: img-right-full</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1014">
|
||||
<g clip-path="url(#clipPath1020)" id="g1016">
|
||||
<path id="path1022" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 121.9193,412.5741 h 265.3351 c 2.1913,0 3.304,0 4.4858,-0.3746 1.2934,-0.4707 2.3122,-1.4895 2.7829,-2.7829 0.3746,-1.1819 0.3746,-2.2945 0.3746,-4.5198 v -26.8657 c 0,-2.1914 0,-3.304 -0.3746,-4.4859 -0.4707,-1.2933 -1.4895,-2.3122 -2.7829,-2.7829 -1.1818,-0.3746 -2.2945,-0.3746 -4.5198,-0.3746 H 121.9193 c -2.1913,0 -3.304,0 -4.4858,0.3746 -1.2934,0.4707 -2.3122,1.4896 -2.7829,2.7829 -0.3746,1.1819 -0.3746,2.2945 -0.3746,4.5199 v 26.8657 c 0,2.1913 0,3.3039 0.3746,4.4858 0.4707,1.2934 1.4895,2.3122 2.7829,2.7829 1.1818,0.3746 2.2945,0.3746 4.5198,0.3746 z"/>
|
||||
<g transform="matrix(1,0,0,-1,114.276,412.5741)" id="g1024">
|
||||
<path id="path1026" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1028">
|
||||
<g clip-path="url(#clipPath1034)" id="g1030">
|
||||
<g transform="translate(177,383)" id="g1036">
|
||||
<text id="text1040" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan1038" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 76.512001 97.391998 111.624 120.96 126.744 140.088 147.64799">class: img-left</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1042">
|
||||
<g clip-path="url(#clipPath1048)" id="g1044">
|
||||
<path id="path1050" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1532.746,412.5741 h 265.335 c 2.191,0 3.304,0 4.486,-0.3746 1.293,-0.4707 2.312,-1.4895 2.782,-2.7829 0.375,-1.1819 0.375,-2.2945 0.375,-4.5198 v -26.8657 c 0,-2.1914 0,-3.304 -0.375,-4.4859 -0.47,-1.2933 -1.489,-2.3122 -2.782,-2.7829 -1.182,-0.3746 -2.295,-0.3746 -4.52,-0.3746 h -265.301 c -2.192,0 -3.304,0 -4.486,0.3746 -1.294,0.4707 -2.312,1.4896 -2.783,2.7829 -0.375,1.1819 -0.375,2.2945 -0.375,4.5199 v 26.8657 c 0,2.1913 0,3.3039 0.375,4.4858 0.471,1.2934 1.489,2.3122 2.783,2.7829 1.182,0.3746 2.294,0.3746 4.52,0.3746 z"/>
|
||||
<g transform="matrix(1,0,0,-1,1525.102,412.5741)" id="g1052">
|
||||
<path id="path1054" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1056">
|
||||
<g clip-path="url(#clipPath1062)" id="g1058">
|
||||
<g transform="translate(1566,383)" id="g1064">
|
||||
<text id="text1068" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan1066" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 76.512001 97.391998 111.624 120.96 126.744 140.088 147.64799 155.64 164.976 172.536 186.312 192.09599">class: img-left-full</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1070">
|
||||
<g clip-path="url(#clipPath1076)" id="g1072">
|
||||
<path id="path1078" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 827.3325,44.0166 h 265.3355 c 2.191,0 3.304,0 4.485,-0.37456 1.294,-0.47074 2.313,-1.48956 2.783,-2.78291 0.375,-1.18188 0.375,-2.29453 0.375,-4.51984 V 9.473585 c 0,-2.191324 0,-3.303977 -0.375,-4.485856 -0.47,-1.293349 -1.489,-2.312171 -2.783,-2.782912 -1.181,-0.374557 -2.294,-0.374557 -4.519,-0.374557 H 827.3325 c -2.1914,0 -3.304,0 -4.4859,0.374557 -1.2933,0.470741 -2.3122,1.489563 -2.7829,2.782912 -0.3746,1.181879 -0.3746,2.294532 -0.3746,4.519839 V 36.37328 c 0,2.19132 0,3.30397 0.3746,4.48585 0.4707,1.29335 1.4896,2.31217 2.7829,2.78291 1.1819,0.37456 2.2945,0.37456 4.5199,0.37456 z"/>
|
||||
<g transform="matrix(1,0,0,-1,819.6891,44.0166)" id="g1080">
|
||||
<path id="path1082" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1084">
|
||||
<g clip-path="url(#clipPath1090)" id="g1086">
|
||||
<g transform="translate(897,15)" id="g1092">
|
||||
<text id="text1096" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan1094" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 84.071999 98.304001 104.088 113.424">class: col-2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1098">
|
||||
<g clip-path="url(#clipPath1104)" id="g1100">
|
||||
<path id="path1106" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 121.9193,44.0166 h 265.3351 c 2.1913,0 3.304,0 4.4858,-0.37456 1.2934,-0.47074 2.3122,-1.48956 2.7829,-2.78291 0.3746,-1.18188 0.3746,-2.29453 0.3746,-4.51984 V 9.473585 c 0,-2.191324 0,-3.303977 -0.3746,-4.485856 C 394.0524,3.69438 393.0336,2.675558 391.7402,2.204817 390.5584,1.83026 389.4457,1.83026 387.2204,1.83026 H 121.9193 c -2.1913,0 -3.304,0 -4.4858,0.374557 -1.2934,0.470741 -2.3122,1.489563 -2.7829,2.782912 -0.3746,1.181879 -0.3746,2.294532 -0.3746,4.519839 V 36.37328 c 0,2.19132 0,3.30397 0.3746,4.48585 0.4707,1.29335 1.4895,2.31217 2.7829,2.78291 1.1818,0.37456 2.2945,0.37456 4.5198,0.37456 z"/>
|
||||
<g transform="matrix(1,0,0,-1,114.276,44.0166)" id="g1108">
|
||||
<path id="path1110" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1112">
|
||||
<g clip-path="url(#clipPath1118)" id="g1114">
|
||||
<g transform="translate(153,15)" id="g1120">
|
||||
<text id="text1124" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan1122" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 76.512001 97.391998 111.624 120.96 134.304 147.64799 162.312 170.304 176.088 190.32001">class: img-caption</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1126">
|
||||
<g clip-path="url(#clipPath1132)" id="g1128">
|
||||
<path id="path1134" style="fill:#d5d5d5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1532.746,44.0166 h 265.335 c 2.191,0 3.304,0 4.486,-0.37456 1.293,-0.47074 2.312,-1.48956 2.782,-2.78291 0.375,-1.18188 0.375,-2.29453 0.375,-4.51984 V 9.473585 c 0,-2.191324 0,-3.303977 -0.375,-4.485856 -0.47,-1.293349 -1.489,-2.312171 -2.782,-2.782912 -1.182,-0.374557 -2.295,-0.374557 -4.52,-0.374557 h -265.301 c -2.192,0 -3.304,0 -4.486,0.374557 -1.294,0.470741 -2.312,1.489563 -2.783,2.782912 -0.375,1.181879 -0.375,2.294532 -0.375,4.519839 V 36.37328 c 0,2.19132 0,3.30397 0.375,4.48585 0.471,1.29335 1.489,2.31217 2.783,2.78291 1.182,0.37456 2.294,0.37456 4.52,0.37456 z"/>
|
||||
<g transform="matrix(1,0,0,-1,1525.102,44.0166)" id="g1136">
|
||||
<path id="path1138" style="fill:none;stroke:#5e5e5e;stroke-width:1.10000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 7.643325,0 H 272.9784 c 2.1913,0 3.304,0 4.4858,0.3745569 1.2934,0.4707409 2.3122,1.4895621 2.7829,2.7829121 0.3746,1.181879 0.3746,2.294532 0.3746,4.519838 V 34.54302 c 0,2.19132 0,3.30397 -0.3746,4.48585 -0.4707,1.29335 -1.4895,2.31217 -2.7829,2.78291 -1.1818,0.37456 -2.2945,0.37456 -4.5198,0.37456 H 7.643325 c -2.191324,0 -3.303977,0 -4.485856,-0.37456 C 1.864119,41.34104 0.8452978,40.32222 0.3745569,39.02887 0,37.84699 0,36.73434 0,34.50903 V 7.643325 C 0,5.452001 0,4.339348 0.3745569,3.157469 0.8452978,1.864119 1.864119,0.8452978 3.157469,0.3745569 4.339348,0 5.452001,0 7.677307,0 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1140">
|
||||
<g clip-path="url(#clipPath1146)" id="g1142">
|
||||
<g transform="translate(1602,15)" id="g1148">
|
||||
<text id="text1152" style="font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 500; font-size: 24px; font-family: HelveticaNeue; writing-mode: lr-tb; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; stroke: none; white-space: pre;" transform="scale(1,-1)"><tspan id="tspan1150" y="0" x="0 13.344 19.128 32.472 44.928001 57.383999 64.056 70.727997 84.071999 98.304001 104.088 113.424">class: col-3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 331 KiB |
BIN
themes/story/exampleSite/content/slides/adirondack/thumbnail.jpg
Normal file
|
After Width: | Height: | Size: 153 KiB |
|
After Width: | Height: | Size: 222 KiB |
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="270px" height="62px" viewBox="0 0 270 62" enable-background="new 0 0 270 62" xml:space="preserve">
|
||||
<g>
|
||||
<polygon fill="#4F4F56" points="88.743,35.763 83.886,20.086 81.576,20.086 87.624,39.387 89.859,39.387 95.906,20.086
|
||||
93.597,20.086 "/>
|
||||
<rect x="102.516" y="25.601" fill="#4F4F56" width="2.22" height="13.786"/>
|
||||
<rect x="102.516" y="20.086" fill="#4F4F56" width="2.22" height="2.734"/>
|
||||
<polygon fill="#4F4F56" points="116.851,35.902 113.647,25.601 111.33,25.601 115.744,39.387 117.972,39.387 122.375,25.601
|
||||
120.054,25.601 "/>
|
||||
<rect x="128.986" y="20.086" fill="#4F4F56" width="2.197" height="2.734"/>
|
||||
<rect x="128.986" y="25.601" fill="#4F4F56" width="2.197" height="13.786"/>
|
||||
<path fill="#4F4F56" d="M146.641,25.601h-4.246c-2.102,0-3.762,1.634-3.762,3.695v4.747c0,2.98,2.374,5.344,5.314,5.344h4.873
|
||||
v-19.3h-2.18V25.601z M146.641,37.451h-2.693c-1.713,0-3.109-1.389-3.109-3.15v-5.246c0-0.853,0.678-1.521,1.557-1.521h4.246
|
||||
V37.451z"/>
|
||||
<path fill="#4F4F56" d="M156.283,25.211v7.167c0,3.844,3.088,7.008,6.953,7.008h4.594v-1.936h-4.594
|
||||
c-2.584,0-4.744-2.189-4.744-4.788v-7.739c0-1.555,1.323-2.916,2.925-2.916h6.413v-1.922h-6.413
|
||||
C158.554,20.086,156.283,22.361,156.283,25.211z"/>
|
||||
<path fill="#4F4F56" d="M180.388,25.601h-3.023c-2.058,0-3.739,1.634-3.739,3.695v5.806c0,2.397,1.885,4.285,4.284,4.285h1.933
|
||||
c2.393,0,4.291-1.888,4.291-4.285v-5.806C184.133,27.235,182.443,25.601,180.388,25.601z M181.914,35.396
|
||||
c0,1.136-0.939,2.056-2.072,2.056h-1.933c-1.138,0-2.079-0.92-2.079-2.056v-6.341c0-0.853,0.688-1.521,1.534-1.521h3.023
|
||||
c0.887,0,1.526,0.668,1.526,1.521V35.396z"/>
|
||||
<path fill="#4F4F56" d="M193.767,26.813l-0.804-1.212h-1.438v13.786h2.242v-8.826c0-1.666,1.329-3.026,3.041-3.026h3.293v-1.933
|
||||
h-3.293C195.526,25.601,194.565,26.012,193.767,26.813z"/>
|
||||
<path fill="#4F4F56" d="M209.174,20.086h-2.18v15.599c0,2.058,1.665,3.701,3.871,3.701h1.638v-1.936h-1.638
|
||||
c-0.925,0-1.691-0.798-1.691-1.766v-8.151h3.329v-1.933h-3.329V20.086z"/>
|
||||
<path fill="#4F4F56" d="M225.787,33c1.612-0.432,2.979-1.935,2.979-3.704c0-2.061-1.688-3.695-3.87-3.695h-2.464
|
||||
c-2.158,0-3.844,1.634-3.844,3.695v4.747c0,2.98,2.317,5.344,5.287,5.344h4.322v-1.936h-4.322c-1.76,0-3.093-1.389-3.093-3.15
|
||||
v-0.136L225.787,33z M220.783,29.296c0-0.961,0.704-1.762,1.649-1.762h2.464c0.901,0,1.689,0.801,1.689,1.762
|
||||
c0,0.973-0.6,1.601-1.305,1.77l-4.498,1.091V29.296z"/>
|
||||
<path fill="#4F4F56" d="M245.576,25.601h-2.481c-0.928,1.532-1.922,3.214-2.883,4.837l-2.883-4.837h-2.514l4.115,6.893
|
||||
l-4.115,6.893h2.514c0.94-1.562,1.922-3.239,2.883-4.836l2.883,4.836h2.481l-4.114-6.893L245.576,25.601z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="35.798,17.375 25.766,0 0,0 35.798,62 71.59,0 45.828,0 "/>
|
||||
<polygon fill="#02BAD1" points="33.879,17.957 24.653,2 5.537,2 "/>
|
||||
<polygon fill="#02BAD1" points="32.842,19.667 4.43,3.672 13.665,19.667 "/>
|
||||
<polygon fill="#4F4F56" points="34.879,23.145 25.27,39.766 34.879,56.41 "/>
|
||||
<polygon fill="#008EAA" points="33.423,21.667 14.82,21.667 24.115,37.766 "/>
|
||||
<polygon fill="#02BAD1" points="37.746,17.957 46.972,2 66.089,2 "/>
|
||||
<polygon fill="#02BAD1" points="38.784,19.667 67.195,3.672 57.96,19.667 "/>
|
||||
<polygon fill="#4F4F56" points="36.746,23.145 46.356,39.766 36.746,56.41 "/>
|
||||
<polygon fill="#008EAA" points="38.203,21.667 56.806,21.667 47.511,37.766 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 422 KiB |